:root {
    --bg: #f5f3ef;
    --dark: #111111;
    --dark-soft: #1f1f1f;
    --gold: #c8a45d;
    --gold-dark: #a98235;
    --red: #e30613;
    --white: #ffffff;
    --text: #171717;
    --muted: #6b6b6b;
    --border: #e2ddd4;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Compact admin orders status controls */
.admin-orders-table th,
.admin-orders-table td {
    padding: 8px 9px !important;
    vertical-align: middle !important;
}

.admin-orders-table details {
    max-width: 220px !important;
}

.admin-orders-table summary {
    cursor: pointer !important;
    white-space: nowrap !important;
}

.admin-orders-table details ul {
    margin: 8px 0 0 !important;
    padding-left: 16px !important;
}

.status-update-form {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
    min-width: 430px !important;
    margin: 0 !important;
}

.status-update-form label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.status-update-form select {
    width: auto !important;
    min-width: 112px !important;
    max-width: 135px !important;
    margin: 0 !important;
    padding: 7px 8px !important;
    border-radius: 7px !important;
    font-size: 12px !important;
}

.status-update-form button {
    margin: 0 !important;
    padding: 8px 10px !important;
    border-radius: 7px !important;
    font-size: 12px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background: var(--bg);
    color: var(--text);
}

.topbar {
    background: var(--dark);
    color: white;
    padding: 10px 22px;
    font-size: 14px;
}

.topbar-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.swiss-flag {
    width: 28px;
    height: 20px;
    background: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    position: relative;
    flex-shrink: 0;
}

.swiss-flag::before {
    content: "";
    width: 12px;
    height: 4px;
    background: white;
    position: absolute;
}

.swiss-flag::after {
    content: "";
    width: 4px;
    height: 12px;
    background: white;
    position: absolute;
}

.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 20;
}

.navbar-inner {
    max-width: 1200px;
    margin: auto;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--dark), #353535);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    letter-spacing: 1px;
}

.brand-text strong {
    display: block;
    font-size: 20px;
}

.brand-text span {
    color: var(--muted);
    font-size: 13px;
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--dark);
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: bold;
    transition: 0.2s;
}

.cart-link:hover {
    background: var(--gold-dark);
}

.cart-icon {
    font-size: 20px;
}

.cart-count {
    background: var(--red);
    color: white;
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.hero {
    background:
        linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.82) 42%, rgba(0,0,0,0.35) 72%, rgba(0,0,0,0.15) 100%),
        url("/static/hero-athletes.png");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    color: white;
    padding: 95px 22px;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 1200px;
    margin: auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 8px 12px;
    border-radius: 999px;
    color: #f3e2bd;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.05;
    max-width: 760px;
    margin: 0;
}

.hero p {
    max-width: 650px;
    font-size: 19px;
    line-height: 1.6;
    color: #e7e7e7;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.button,
button {
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 13px 18px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
}

.button.gold,
button.gold {
    background: var(--gold);
    color: #111;
}

.button.danger,
button.danger {
    background: #8d0000;
}

.button:hover,
button:hover {
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: 45px auto;
    padding: 0 22px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}

.info-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--card-shadow);
}

.info-card h3 {
    margin-top: 0;
}

.info-card p {
    color: var(--muted);
    line-height: 1.5;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 22px;
}

.section-title h2 {
    font-size: 32px;
    margin: 0;
}

.section-title p {
    color: var(--muted);
    margin: 7px 0 0;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

.product {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.product-image {
    background: #f0ede7;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.product-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

.product p {
    color: var(--muted);
    line-height: 1.5;
}

.price {
    font-size: 28px;
    font-weight: 900;
    margin: 18px 0;
    color: var(--dark);
}

.product form {
    margin-top: auto;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
}

input,
textarea,
select {
    width: 100%;
    padding: 13px;
    margin-bottom: 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    background: white;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
    background: white;
}

th,
td {
    border-bottom: 1px solid var(--border);
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

th {
    background: var(--dark);
    color: white;
}

.box {
    max-width: 1000px;
    margin: 45px auto;
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}

.box.wide {
    max-width: 1300px;
}

.summary,
.status,
.empty {
    background: #f1eee7;
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: 12px;
    margin: 18px 0;
}

.total {
    font-size: 26px;
    font-weight: 900;
    margin: 24px 0;
}

pre {
    white-space: pre-wrap;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

.footer {
    background: var(--dark);
    color: white;
    margin-top: 60px;
    padding: 35px 22px;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    color: #d7d7d7;
}

.footer strong {
    color: white;
}

.small {
    font-size: 13px;
    color: var(--muted);
}

@media (max-width: 760px) {
    .navbar-inner,
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-link {
        width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 12px;
    }
}
\n
.hero h1,
.hero p,
.hero .badge,
.hero-actions {
    position: relative;
    z-index: 2;
}

.hero h1 {
    text-shadow: 0 4px 18px rgba(0,0,0,0.55);
}

.hero p {
    text-shadow: 0 3px 14px rgba(0,0,0,0.55);
}

.hero-inner {
    width: 100%;
}



/* FORCE HERO ATHLETES VISUAL */
.hero {
    position: relative !important;
    overflow: hidden !important;
    background: #050505 !important;
    min-height: 560px !important;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.86) 42%, rgba(0,0,0,0.35) 72%, rgba(0,0,0,0.15) 100%),
        radial-gradient(circle at 80% 45%, rgba(200,164,93,0.32), transparent 45%);
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 62%;
    height: 100%;
    background-image: url("/static/hero-athletes.png?v=99");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    z-index: 0;
    opacity: 1;
}

.hero-inner {
    position: relative !important;
    z-index: 2 !important;
}

@media (max-width: 760px) {
    .hero::after {
        opacity: 0.32;
        width: 100%;
        background-position: center bottom;
    }
}



/* NORMAL VISIBLE HERO PHOTO */
.hero-with-photo {
    position: relative !important;
    overflow: hidden !important;
    background: #050505 !important;
    min-height: 560px !important;
    display: flex !important;
    align-items: center !important;
}

.hero-with-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.88) 45%, rgba(0,0,0,0.38) 72%, rgba(0,0,0,0.12) 100%),
        radial-gradient(circle at 80% 45%, rgba(200,164,93,0.28), transparent 42%);
    z-index: 1;
}

.hero-with-photo .hero-inner {
    position: relative !important;
    z-index: 3 !important;
    max-width: 1200px !important;
    margin: auto !important;
    padding: 0 22px !important;
    width: 100% !important;
}

.hero-photo-box {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 52%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

.hero-photo-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.95;
}

@media (max-width: 760px) {
    .hero-photo-box {
        width: 100%;
        opacity: 0.28;
    }
}



/* FINAL HERO PHOTO FIX */
.hero-with-photo {
    position: relative !important;
    background: #050505 !important;
    min-height: 620px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
}

.hero-with-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000000 0%, #000000 42%, rgba(0,0,0,0.45) 65%, rgba(0,0,0,0.08) 100%);
    z-index: 1;
}

.hero-with-photo::after {
    display: none !important;
}

.hero-with-photo .hero-inner {
    position: relative !important;
    z-index: 5 !important;
    width: 50% !important;
    max-width: 650px !important;
    margin-left: calc((100vw - min(1200px, 100vw)) / 2 + 22px) !important;
    margin-right: 0 !important;
}

.hero-photo-box {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 55% !important;
    height: 100% !important;
    z-index: 3 !important;
    display: block !important;
    opacity: 1 !important;
}

.hero-photo-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    opacity: 1 !important;
    filter: contrast(1.08) brightness(1.05) !important;
}

@media (max-width: 760px) {
    .hero-with-photo .hero-inner {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 22px !important;
    }

    .hero-photo-box {
        width: 100% !important;
        opacity: 0.28 !important;
    }
}



/* HERO TWO ATHLETES FINAL FIX */
.hero-with-photo {
    position: relative !important;
    background: #050505 !important;
    min-height: 620px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
}

.hero-with-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #000000 0%,
        #000000 38%,
        rgba(0,0,0,0.72) 52%,
        rgba(0,0,0,0.18) 100%
    );
    z-index: 2;
}

.hero-with-photo::after {
    display: none !important;
}

.hero-with-photo .hero-inner {
    position: relative !important;
    z-index: 5 !important;
    width: 43% !important;
    max-width: 580px !important;
    margin-left: calc((100vw - min(1200px, 100vw)) / 2 + 22px) !important;
    margin-right: 0 !important;
}

.hero-photo-box {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 68% !important;
    height: 100% !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

.hero-photo-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: right center !important;
    display: block !important;
    opacity: 1 !important;
    filter: contrast(1.08) brightness(1.05) !important;
}

@media (max-width: 760px) {
    .hero-with-photo .hero-inner {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 22px !important;
    }

    .hero-photo-box {
        width: 100% !important;
        opacity: 0.32 !important;
    }

    .hero-photo-box img {
        object-fit: cover !important;
    }
}

/* PREMIUM DARK PRODUCT BACKGROUND */
body {
    background:
        linear-gradient(
            135deg,
            #050505 0%,
            #121212 28%,
            #2b2b2b 55%,
            #3a3a3a 72%,
            #101010 100%
        ) !important;
    background-attachment: fixed !important;
}

.container {
    background:
        radial-gradient(circle at top left, rgba(200,164,93,0.12), transparent 35%),
        linear-gradient(135deg, rgba(10,10,10,0.92), rgba(45,45,45,0.88), rgba(12,12,12,0.94)) !important;
    border-radius: 28px !important;
    padding: 45px 28px !important;
    box-shadow: 0 18px 50px rgba(0,0,0,0.35) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
}

.section-title h2 {
    color: white !important;
}

.section-title p {
    color: #d0d0d0 !important;
}

.info-card {
    background: rgba(255,255,255,0.94) !important;
}

.product {
    background: rgba(255,255,255,0.97) !important;
    border: 1px solid rgba(200,164,93,0.18) !important;
}

.product-image {
    background:
        linear-gradient(145deg, #efefef, #d8d8d8) !important;
}

.footer {
    margin-top: 0 !important;
}

/* ANIMATED PREMIUM BACKGROUND */
body {
    background: #050505 !important;
    position: relative !important;
    min-height: 100vh !important;
    overflow-x: hidden !important;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 15% 20%, rgba(200,164,93,0.22), transparent 28%),
        radial-gradient(circle at 80% 25%, rgba(100,100,100,0.28), transparent 30%),
        radial-gradient(circle at 50% 90%, rgba(35,35,35,0.85), transparent 45%),
        linear-gradient(135deg, #030303, #151515, #2a2a2a, #090909);
    background-size: 180% 180%;
    animation: premiumWave 18s ease-in-out infinite;
}

body::after {
    content: "";
    position: fixed;
    inset: -30%;
    z-index: -1;
    background:
        linear-gradient(
            120deg,
            transparent 0%,
            rgba(255,255,255,0.035) 35%,
            rgba(200,164,93,0.06) 50%,
            rgba(255,255,255,0.025) 65%,
            transparent 100%
        );
    transform: rotate(8deg);
    animation: softLightMove 22s ease-in-out infinite;
    pointer-events: none;
}

@keyframes premiumWave {
    0% {
        background-position: 0% 50%;
        filter: brightness(0.92) contrast(1.04);
    }

    35% {
        background-position: 65% 40%;
        filter: brightness(1.05) contrast(1.08);
    }

    70% {
        background-position: 100% 70%;
        filter: brightness(0.98) contrast(1.12);
    }

    100% {
        background-position: 0% 50%;
        filter: brightness(0.92) contrast(1.04);
    }
}

@keyframes softLightMove {
    0% {
        transform: translateX(-18%) translateY(-6%) rotate(8deg);
        opacity: 0.35;
    }

    50% {
        transform: translateX(18%) translateY(6%) rotate(8deg);
        opacity: 0.75;
    }

    100% {
        transform: translateX(-18%) translateY(-6%) rotate(8deg);
        opacity: 0.35;
    }
}

/* Product section glass effect over animated background */
.container {
    background:
        linear-gradient(
            135deg,
            rgba(5,5,5,0.88),
            rgba(38,38,38,0.78),
            rgba(8,8,8,0.9)
        ) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

/* Cards stay readable */
.product,
.info-card {
    position: relative !important;
    z-index: 1 !important;
}

/* STRONGER PREMIUM COLOR ANIMATION */
body::before {
    background:
        radial-gradient(circle at 12% 18%, rgba(227,6,19,0.36), transparent 26%),
        radial-gradient(circle at 82% 22%, rgba(200,164,93,0.42), transparent 30%),
        radial-gradient(circle at 40% 82%, rgba(35,85,135,0.32), transparent 34%),
        radial-gradient(circle at 70% 75%, rgba(115,115,115,0.42), transparent 38%),
        linear-gradient(135deg, #000000, #0c0c0c, #2f2f2f, #151515, #000000) !important;
    background-size: 220% 220% !important;
    animation: premiumWaveStrong 14s ease-in-out infinite !important;
}

body::after {
    background:
        linear-gradient(
            120deg,
            transparent 0%,
            rgba(227,6,19,0.10) 25%,
            rgba(200,164,93,0.18) 48%,
            rgba(255,255,255,0.07) 58%,
            rgba(35,85,135,0.10) 72%,
            transparent 100%
        ) !important;
    animation: softLightMoveStrong 16s ease-in-out infinite !important;
}

@keyframes premiumWaveStrong {
    0% {
        background-position: 0% 50%;
        filter: brightness(0.9) contrast(1.12) saturate(1.15);
    }

    30% {
        background-position: 70% 35%;
        filter: brightness(1.12) contrast(1.22) saturate(1.35);
    }

    60% {
        background-position: 100% 75%;
        filter: brightness(1.02) contrast(1.28) saturate(1.45);
    }

    100% {
        background-position: 0% 50%;
        filter: brightness(0.9) contrast(1.12) saturate(1.15);
    }
}

@keyframes softLightMoveStrong {
    0% {
        transform: translateX(-22%) translateY(-8%) rotate(8deg);
        opacity: 0.42;
    }

    50% {
        transform: translateX(22%) translateY(8%) rotate(8deg);
        opacity: 0.95;
    }

    100% {
        transform: translateX(-22%) translateY(-8%) rotate(8deg);
        opacity: 0.42;
    }
}

.container {
    background:
        linear-gradient(
            135deg,
            rgba(0,0,0,0.92),
            rgba(40,40,40,0.82),
            rgba(75,58,24,0.68),
            rgba(0,0,0,0.92)
        ) !important;
    border: 1px solid rgba(200,164,93,0.32) !important;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.55),
        0 0 35px rgba(200,164,93,0.12) !important;
}

.product {
    border: 1px solid rgba(200,164,93,0.38) !important;
    box-shadow:
        0 12px 35px rgba(0,0,0,0.32),
        0 0 18px rgba(200,164,93,0.10) !important;
}

.product:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 45px rgba(0,0,0,0.38),
        0 0 24px rgba(200,164,93,0.22) !important;
    transition: 0.25s ease;
}

.button.gold,
button.gold {
    background: linear-gradient(135deg, #f0cf7a, #c8a45d, #9d7425) !important;
    color: #080808 !important;
    box-shadow: 0 6px 20px rgba(200,164,93,0.35) !important;
}

.cart-link {
    background: linear-gradient(135deg, #111111, #2f2f2f) !important;
    border: 1px solid rgba(200,164,93,0.45) !important;
}

.cart-count {
    background: #e30613 !important;
    box-shadow: 0 0 14px rgba(227,6,19,0.45) !important;
}

.section-title h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 14px rgba(200,164,93,0.22) !important;
}

.section-title p {
    color: #e4d6b7 !important;
}



/* HERO VIDEO BACKGROUND */
.hero-photo-box {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 68% !important;
    height: 100% !important;
    z-index: 1 !important;
    overflow: hidden !important;
    display: block !important;
}

.hero-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    opacity: 0.92 !important;
    filter: contrast(1.12) brightness(0.86) saturate(1.18) !important;
}

.hero-fallback-image {
    display: none !important;
}

.hero-with-photo::before {
    background: linear-gradient(
        90deg,
        #000000 0%,
        #000000 37%,
        rgba(0,0,0,0.74) 53%,
        rgba(0,0,0,0.25) 100%
    ) !important;
    z-index: 2 !important;
}

.hero-with-photo .hero-inner {
    z-index: 5 !important;
}

@media (max-width: 760px) {
    .hero-photo-box {
        width: 100% !important;
        opacity: 0.35 !important;
    }
}

/* LANGUAGE SWITCHER SAFE */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.language-switcher a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    padding: 6px 10px;
    opacity: 0.78;
}

.language-switcher a.active,
.language-switcher a:hover {
    background: #c8a45d;
    border-color: #c8a45d;
    color: #050505;
    opacity: 1;
}

/* LANGUAGE SWITCHER FINAL */
.language-switcher {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.language-switcher a {
    color: #ffffff !important;
    text-decoration: none !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    opacity: 0.8 !important;
    transition: 0.2s ease !important;
}

.language-switcher a:hover,
.language-switcher a.active {
    background: #c8a45d !important;
    color: #050505 !important;
    border-color: #c8a45d !important;
    opacity: 1 !important;
}

/* ADMIN POLISH PANEL */
.box.wide {
    max-width: 1400px !important;
}

.box .top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
}

table pre {
    white-space: pre-wrap !important;
    font-family: inherit !important;
    font-size: 13px !important;
}

/* PAYMENT BUTTONS CARD + TWINT */
.payment-box {
    margin: 25px 0 !important;
    padding: 22px !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, rgba(0,0,0,0.86), rgba(45,45,45,0.84)) !important;
    border: 1px solid rgba(200,164,93,0.35) !important;
    box-shadow: 0 14px 35px rgba(0,0,0,0.25) !important;
}

.payment-box h3 {
    margin-top: 0 !important;
    color: #ffffff !important;
}

.twint-button {
    background: linear-gradient(135deg, #00b140, #008a35) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 12px 18px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    box-shadow: 0 8px 22px rgba(0,177,64,0.28) !important;
}

.payment-note {
    color: #d8d8d8 !important;
    font-size: 13px !important;
    margin-bottom: 0 !important;
}

/* PAYMENT STATUS BADGES */
.paid-badge {
    display: inline-block !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    background: #00b140 !important;
    color: white !important;
    font-weight: 800 !important;
    font-size: 12px !important;
}

.pending-badge {
    display: inline-block !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    background: #c8a45d !important;
    color: #050505 !important;
    font-weight: 800 !important;
    font-size: 12px !important;
}

/* SAFE PRODUCT DETAILS LAYOUT */
.product-details {
    margin: 14px 0 18px 0 !important;
    border-top: 1px solid rgba(0,0,0,0.08) !important;
}

.product-details details {
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    padding: 8px 0 !important;
}

.product-details summary {
    cursor: pointer !important;
    font-weight: 900 !important;
    color: #111111 !important;
}

.product-details p {
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: #333333 !important;
    margin: 8px 0 2px 0 !important;
}

/* FA CATALOG PAGE */
.catalog-hero {
    max-width: 1200px !important;
    margin: 34px auto 0 auto !important;
    min-height: 300px !important;
    padding: 54px 34px !important;
    color: white !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 24px !important;
    background: #111111 !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.28) !important;
    display: flex !important;
    align-items: flex-end !important;
}

.catalog-hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.38), rgba(0,0,0,0.18)) !important;
}

.catalog-hero-video {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
}

.catalog-hero-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 760px !important;
}

.catalog-hero h1 {
    font-size: 42px !important;
    margin-bottom: 10px !important;
}

.catalog-hero p {
    color: #e4d6b7 !important;
    max-width: 800px !important;
}

.catalog-container {
    margin-top: 10px !important;
}

.catalog-chips {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 18px !important;
}

.catalog-chip {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 38px !important;
    padding: 8px 14px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.22) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.catalog-chip.active {
    background: #c8a45d !important;
    border-color: #c8a45d !important;
    color: #111111 !important;
}

.catalog-filters {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-bottom: 22px !important;
    align-items: center !important;
    padding: 16px !important;
    border-radius: 22px !important;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
}

.catalog-filters input,
.catalog-filters select {
    padding: 13px 14px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    min-width: 220px !important;
    min-height: 46px !important;
    flex: 1 1 220px !important;
}

.catalog-count {
    color: #ffffff !important;
    margin-bottom: 18px !important;
}

.catalog-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 22px !important;
}

.catalog-card {
    background: rgba(255,255,255,0.96) !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    border: 1px solid rgba(200,164,93,0.22) !important;
    box-shadow: 0 14px 35px rgba(0,0,0,0.24) !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 520px !important;
}

.catalog-image-placeholder {
    height: 170px !important;
    background: linear-gradient(135deg, #050505, #2c2c2c, #c8a45d) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.catalog-image-placeholder span {
    color: white !important;
    font-size: 46px !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
}

.catalog-card-content {
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.catalog-card h2 {
    font-size: 20px !important;
    margin: 10px 0 !important;
    color: #111111 !important;
}

.catalog-card p {
    color: #333333 !important;
    font-size: 14px !important;
}

.catalog-description {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 63px !important;
}

.product-card-price,
.product-detail-price {
    font-weight: 800 !important;
    color: #111111 !important;
    margin: 10px 0 14px !important;
    letter-spacing: 0 !important;
}

.product-detail-price {
    font-size: 1.35rem !important;
}

.product-stock {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    padding: 7px 12px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    background: #f7f1e4 !important;
    color: #111111 !important;
    margin-bottom: 10px !important;
}

.product-stock-in_stock {
    background: #e6f5ea !important;
    color: #146b2e !important;
}

.product-stock-available_2_5_days,
.product-stock-preorder {
    background: #fff4d8 !important;
    color: #73510e !important;
}

.product-stock-out_of_stock {
    background: #f8dddd !important;
    color: #8c1f1f !important;
}

.add-to-cart-form,
.product-detail-cart-form,
.cart-clear-form {
    margin-top: 12px !important;
}

.product-detail-cart-form {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-bottom: 22px !important;
}

.product-detail-cart-form label {
    font-weight: 700 !important;
}

.product-detail-cart-form input[type="number"] {
    width: 88px !important;
    min-height: 42px !important;
}

.button:disabled {
    opacity: 0.55 !important;
    cursor: not-allowed !important;
}

.catalog-small {
    font-size: 12px !important;
    color: #666666 !important;
    margin: 14px 0 !important;
    margin-top: auto !important;
}

.product-detail-page {
    max-width: 1200px !important;
    margin: 40px auto !important;
    padding: 24px !important;
    display: grid !important;
    grid-template-columns: 380px 1fr !important;
    gap: 30px !important;
}

.product-detail-image {
    min-height: 430px !important;
    border-radius: 28px !important;
    background: linear-gradient(135deg, #050505, #2c2c2c, #c8a45d) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35) !important;
}

.product-detail-image span {
    font-size: 70px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
}

.product-detail-content {
    background: rgba(255,255,255,0.96) !important;
    padding: 32px !important;
    border-radius: 28px !important;
}

.product-detail-content h1 {
    margin-top: 12px !important;
    color: #111111 !important;
}

.lead {
    font-size: 18px !important;
    color: #333333 !important;
}

@media (max-width: 850px) {
    .product-detail-page {
        grid-template-columns: 1fr !important;
    }
}

/* CATALOG REAL PDF PREVIEW - NO FA LOGO PLACEHOLDER */
.catalog-image-wrap {
    height: 220px !important;
    background: #f4f4f4 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.catalog-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
}

.catalog-no-image {
    color: #222 !important;
    font-weight: 800 !important;
    padding: 20px !important;
    text-align: center !important;
}

.product-detail-image {
    background: #f4f4f4 !important;
    overflow: hidden !important;
}

.product-detail-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: top center !important;
    display: block !important;
    background: #ffffff !important;
}

.catalog-text {
    white-space: pre-wrap !important;
    font-family: inherit !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    background: #f7f7f7 !important;
    border-radius: 14px !important;
    padding: 14px !important;
    color: #222 !important;
}

/* EXTRACTED FA PRODUCT IMAGES */
.catalog-image-wrap {
    background: #ffffff !important;
}

.catalog-image-wrap img {
    object-fit: contain !important;
    object-position: center center !important;
    padding: 14px !important;
    box-sizing: border-box !important;
}

.product-detail-image {
    background: #ffffff !important;
}

.product-detail-image img {
    object-fit: contain !important;
    object-position: center center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

/* IMPROVED PRODUCT DETAIL PAGE */
.product-detail-page.improved-detail {
    max-width: 1450px !important;
    grid-template-columns: minmax(520px, 1.15fr) minmax(460px, 0.85fr) !important;
    gap: 34px !important;
    align-items: start !important;
}

.product-detail-media {
    display: grid !important;
    gap: 18px !important;
}

.large-product-image {
    min-height: 680px !important;
    max-height: 760px !important;
    border-radius: 30px !important;
    background: #ffffff !important;
    box-shadow: 0 22px 60px rgba(0,0,0,0.42) !important;
}

.large-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center top !important;
    padding: 18px !important;
    box-sizing: border-box !important;
}

.large-product-image.product-image-placeholder {
    min-height: 520px !important;
    background:
        linear-gradient(135deg, rgba(17,17,17,0.96), rgba(48,48,48,0.96)),
        #111111 !important;
}

.product-photo-pending {
    width: calc(100% - 56px) !important;
    min-height: 360px !important;
    border: 1px solid rgba(215,177,95,0.45) !important;
    border-radius: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 28px !important;
    box-sizing: border-box !important;
    background: rgba(255,255,255,0.06) !important;
}

.product-photo-pending span {
    color: #d7b15f !important;
    font-size: 22px !important;
    font-weight: 800 !important;
}

.catalog-preview-card {
    background: rgba(255,255,255,0.96) !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 18px !important;
    padding: 16px !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18) !important;
}

.catalog-preview-card h2 {
    margin: 0 0 12px 0 !important;
    font-size: 16px !important;
    color: #111111 !important;
}

.catalog-preview-card img {
    width: 100% !important;
    max-height: 280px !important;
    object-fit: contain !important;
    object-position: center top !important;
    display: block !important;
    background: #f6f6f6 !important;
    border-radius: 12px !important;
}

.improved-detail-content {
    max-height: none !important;
}

.clean-details {
    margin-top: 20px !important;
}

.clean-details details {
    background: #f7f7f7 !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 16px !important;
    padding: 12px 14px !important;
    margin-bottom: 10px !important;
}

.clean-details summary {
    font-size: 15px !important;
}

.clean-details p {
    font-size: 14px !important;
    line-height: 1.65 !important;
}

.product-source-box {
    max-width: 1450px !important;
    margin: 10px auto 60px auto !important;
    padding: 28px !important;
    background: rgba(255,255,255,0.96) !important;
    border-radius: 28px !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25) !important;
}

.product-source-box h2 {
    color: #111111 !important;
    margin-top: 0 !important;
}

.product-source-box p {
    color: #333333 !important;
}

.product-source-box .catalog-text {
    max-height: 460px !important;
    overflow-y: auto !important;
}

@media (max-width: 980px) {
    .product-detail-page.improved-detail {
        grid-template-columns: 1fr !important;
    }

    .large-product-image {
        min-height: 520px !important;
    }

    .large-product-image.product-image-placeholder {
        min-height: 360px !important;
    }

    .product-photo-pending {
        min-height: 240px !important;
    }
}

/* PRODUCT DETAIL TEXT SECTIONS */
.detail-pre {
    white-space: pre-wrap !important;
    font-family: inherit !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    color: #222222 !important;
    background: transparent !important;
    margin: 8px 0 0 0 !important;
}

/* EMPTY DETAIL FIELD */
.detail-empty {
    font-size: 14px !important;
    line-height: 1.65 !important;
    color: #7a5a00 !important;
    background: #fff7df !important;
    border: 1px solid rgba(200,164,93,0.35) !important;
    border-radius: 14px !important;
    padding: 12px 14px !important;
}

/* ACTIVE SUBSTANCES TABLE */
.serving-info {
    background: #fff8e6 !important;
    border: 1px solid rgba(200,164,93,0.35) !important;
    border-radius: 14px !important;
    padding: 10px 12px !important;
    margin: 10px 0 14px 0 !important;
    font-size: 14px !important;
    color: #222 !important;
}

.active-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-top: 12px !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    background: #ffffff !important;
}

.active-table th {
    text-align: left !important;
    background: #111111 !important;
    color: #d7b15f !important;
    padding: 12px !important;
    font-size: 13px !important;
}

.active-table td {
    padding: 10px 12px !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    font-size: 14px !important;
    color: #222222 !important;
}

.active-table td:last-child {
    text-align: right !important;
    font-weight: 700 !important;
}

/* HOME / CATALOG CONNECTION POLISH */
.nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
}

.nav-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 10px 15px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(17,17,17,0.1) !important;
    color: #111111 !important;
    background: #f7f1e4 !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    transition: 0.2s ease !important;
}

.nav-link:hover,
.nav-link.active {
    background: #c8a45d !important;
    border-color: #c8a45d !important;
    color: #111111 !important;
}

.nav-cart-link {
    min-height: 42px !important;
    padding: 9px 14px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
}

.nav-cart-link .cart-icon {
    font-size: 17px !important;
}

.nav-cart-link .cart-count {
    min-width: 22px !important;
    height: 22px !important;
    font-size: 12px !important;
}

.hero-actions .button,
.catalog-card .button,
.catalog-filters .button,
.catalog-filters button {
    min-height: 46px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.1 !important;
}

.hero-with-photo {
    position: relative !important;
    overflow: hidden !important;
}

.hero-with-photo .hero-inner {
    width: 100% !important;
    padding-right: min(42vw, 520px) !important;
    box-sizing: border-box !important;
}

.catalog-hero {
    min-height: 340px !important;
    margin-top: 28px !important;
    border-radius: 28px !important;
}

.catalog-hero-content {
    padding-bottom: 4px !important;
}

.catalog-hero h1 {
    line-height: 1.05 !important;
}

.catalog-container {
    margin-top: 22px !important;
}

.catalog-chips {
    align-items: center !important;
}

.catalog-chip {
    white-space: nowrap !important;
}

.catalog-filters {
    margin-top: 8px !important;
}

.catalog-card {
    border-radius: 18px !important;
    min-height: 500px !important;
}

.catalog-image-wrap {
    height: 210px !important;
    background: #ffffff !important;
}

.catalog-card-content {
    gap: 8px !important;
}

.catalog-card-content .button {
    margin-top: auto !important;
}

@media (max-width: 760px) {
    .navbar-inner {
        align-items: flex-start !important;
        gap: 14px !important;
    }

    .nav-actions {
        width: 100% !important;
        justify-content: flex-start !important;
    }

    .nav-link,
    .cart-link {
        min-height: 40px !important;
        padding: 9px 13px !important;
        font-size: 13px !important;
    }

    .hero {
        min-height: 560px !important;
        padding: 72px 20px !important;
    }

    .hero-with-photo .hero-inner {
        padding-right: 0 !important;
    }

    .hero h1 {
        font-size: 40px !important;
    }

    .hero-actions {
        width: 100% !important;
    }

    .hero-actions .button {
        flex: 1 1 180px !important;
    }

    .catalog-hero {
        min-height: 300px !important;
        margin: 18px 14px 0 14px !important;
        padding: 38px 22px !important;
        border-radius: 22px !important;
    }

    .catalog-hero h1 {
        font-size: 34px !important;
    }

    .catalog-chips {
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        padding-bottom: 4px !important;
    }

    .catalog-chip {
        flex: 0 0 auto !important;
    }

    .catalog-filters input,
    .catalog-filters select,
    .catalog-filters button,
    .catalog-filters .button {
        flex: 1 1 100% !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .catalog-grid {
        grid-template-columns: 1fr !important;
    }

    .catalog-card {
        min-height: auto !important;
    }
}

/* HOME LANDING PAGE */
.topbar-inner {
    min-height: 34px !important;
}

.navbar-inner {
    min-height: 64px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.home-hero {
    min-height: 500px !important;
    height: min(560px, calc(100vh - 118px)) !important;
    padding: 64px 22px !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

.home-hero .hero-inner {
    max-width: 1200px !important;
    padding-right: 42% !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 5 !important;
}

.home-hero h1,
.home-hero p,
.home-hero .badge,
.home-hero .hero-actions {
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    max-width: 720px !important;
}

.home-hero h1 {
    font-size: clamp(38px, 5vw, 62px) !important;
    line-height: 1.03 !important;
}

.home-hero p {
    max-width: 660px !important;
    font-size: 18px !important;
}

.home-hero .hero-photo-box {
    width: 64% !important;
}

.home-hero.hero-with-photo::before {
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.96) 0%,
        rgba(0,0,0,0.88) 38%,
        rgba(0,0,0,0.58) 62%,
        rgba(0,0,0,0.22) 100%
    ) !important;
}

.home-landing {
    margin-top: 34px !important;
}

.home-landing .info-grid {
    margin-bottom: 28px !important;
}

.lifestyle-section {
    position: relative !important;
    min-height: 460px !important;
    margin: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    color: #ffffff !important;
    isolation: isolate !important;
}

.lifestyle-bg {
    position: absolute !important;
    inset: 0 !important;
    background-image: url("/static/hero-athletes.png") !important;
    background-size: cover !important;
    background-position: center center !important;
    filter: grayscale(100%) contrast(1.08) brightness(0.72) !important;
    transform: scale(1.03) !important;
    z-index: -2 !important;
}

.lifestyle-overlay {
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.88), rgba(0,0,0,0.64), rgba(0,0,0,0.38)),
        rgba(0,0,0,0.35) !important;
    z-index: -1 !important;
}

.lifestyle-content {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 72px 22px !important;
    box-sizing: border-box !important;
}

.lifestyle-content h2 {
    max-width: 760px !important;
    margin: 0 0 18px 0 !important;
    font-size: clamp(34px, 4.5vw, 58px) !important;
    line-height: 1.05 !important;
    color: #ffffff !important;
    letter-spacing: 0 !important;
}

.lifestyle-content p {
    max-width: 740px !important;
    margin: 0 0 16px 0 !important;
    color: rgba(255,255,255,0.9) !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
}

.lifestyle-content .button {
    margin-top: 14px !important;
}

.home-catalog-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    padding: 28px !important;
    border-radius: 22px !important;
    background: rgba(255,255,255,0.94) !important;
    border: 1px solid rgba(200,164,93,0.28) !important;
    box-shadow: 0 14px 34px rgba(0,0,0,0.2) !important;
}

.home-catalog-cta h2 {
    margin: 0 0 8px 0 !important;
    color: #111111 !important;
}

.home-catalog-cta p {
    margin: 0 !important;
    max-width: 760px !important;
    color: #333333 !important;
    line-height: 1.6 !important;
}

@media (max-width: 760px) {
    .topbar-inner {
        min-height: 30px !important;
    }

    .navbar-inner {
        min-height: auto !important;
        padding: 10px 16px !important;
    }

    .brand-mark {
        width: 38px !important;
        height: 38px !important;
        border-radius: 10px !important;
    }

    .brand-text strong {
        font-size: 17px !important;
    }

    .brand-text span {
        font-size: 12px !important;
    }

    .home-hero {
        min-height: 460px !important;
        height: auto !important;
        padding: 52px 20px !important;
    }

    .home-hero .hero-inner {
        padding-right: 0 !important;
        width: 100% !important;
    }

    .home-hero .hero-photo-box {
        width: 100% !important;
        opacity: 0.42 !important;
    }

    .home-hero.hero-with-photo::before {
        background: linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.72)) !important;
    }

    .home-hero h1 {
        font-size: clamp(34px, 10vw, 44px) !important;
        max-width: 100% !important;
    }

    .home-hero p {
        max-width: 100% !important;
        font-size: 16px !important;
    }

    .home-catalog-cta {
        align-items: flex-start !important;
        flex-direction: column !important;
        padding: 22px !important;
    }

    .home-catalog-cta .button {
        width: 100% !important;
    }

    .lifestyle-section {
        min-height: 520px !important;
    }

    .lifestyle-overlay {
        background: linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.72)) !important;
    }

    .lifestyle-content {
        padding: 54px 20px !important;
    }

    .lifestyle-content h2 {
        font-size: clamp(32px, 9vw, 42px) !important;
    }

    .lifestyle-content p {
        font-size: 16px !important;
        line-height: 1.65 !important;
    }

    .lifestyle-content .button {
        width: 100% !important;
    }
}

/* FULL SCREEN HOME VIDEO + STATIC SHOP HERO */
.home-hero {
    min-height: 80vh !important;
    height: calc(100vh - 98px) !important;
    padding: 78px 22px !important;
    display: flex !important;
    align-items: center !important;
}

.home-hero .hero-photo-box {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
}

.home-hero .hero-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.home-hero.hero-with-photo::before {
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.78) 38%,
        rgba(0,0,0,0.48) 68%,
        rgba(0,0,0,0.28) 100%
    ) !important;
}

.home-hero .hero-inner {
    max-width: 1200px !important;
    width: 100% !important;
    padding-right: 36% !important;
}

.home-hero h1,
.home-hero p,
.home-hero .badge {
    display: block !important;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
}

.home-hero h1 {
    max-width: 760px !important;
}

.home-hero p {
    max-width: 700px !important;
}

.catalog-hero {
    background:
        linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.52), rgba(0,0,0,0.28)),
        url("/static/hero-athletes.png") center center / cover no-repeat !important;
}

.catalog-hero::before {
    background: rgba(0,0,0,0.18) !important;
}

.catalog-hero-video {
    display: none !important;
}

.catalog-hero h1,
.catalog-hero p {
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    white-space: normal !important;
    word-break: normal !important;
}

@media (max-width: 760px) {
    .home-hero {
        min-height: 82vh !important;
        height: auto !important;
        padding: 62px 20px !important;
    }

    .home-hero .hero-inner {
        padding-right: 0 !important;
    }

    .home-hero.hero-with-photo::before {
        background: linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7)) !important;
    }

    .catalog-hero {
        min-height: 280px !important;
        background-position: center center !important;
    }
}

/* CLEAN HOME VIDEO ONLY */
.home-page {
    min-height: 100vh !important;
    overflow-x: hidden !important;
    background: #000000 !important;
}

.home-page .navbar {
    position: relative !important;
    top: auto !important;
    z-index: 20 !important;
}

.home-page .navbar-inner {
    min-height: 64px !important;
    padding: 10px 22px !important;
}

.brand-logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex: 0 0 auto !important;
}

.brand-flag {
    width: 18px !important;
    height: 18px !important;
    border-radius: 4px !important;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08) !important;
}

.brand-flag::before {
    width: 12px !important;
    height: 4px !important;
}

.brand-flag::after {
    width: 4px !important;
    height: 12px !important;
}

.home-language-switcher {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-left: 4px !important;
    padding-left: 10px !important;
    border-left: 1px solid rgba(17,17,17,0.12) !important;
}

.home-language-switcher span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 34px !important;
    height: 34px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(17,17,17,0.12) !important;
    background: #ffffff !important;
    color: #111111 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
}

.home-language-switcher span:hover {
    background: #c8a45d !important;
    border-color: #c8a45d !important;
}

.home-page .home-hero {
    position: relative !important;
    min-height: calc(100vh - 64px) !important;
    height: calc(100vh - 64px) !important;
    padding: 0 !important;
    display: block !important;
    overflow: hidden !important;
    background: #000000 !important;
}

.home-page .home-hero.hero-with-photo::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.48) 42%,
        rgba(0,0,0,0.18) 72%,
        rgba(0,0,0,0.04) 100%
    ) !important;
    pointer-events: none !important;
}

.home-page .home-hero.hero-with-photo::after {
    display: none !important;
    content: none !important;
}

.home-page .home-hero .hero-photo-box {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
    z-index: 1 !important;
}

.home-page .home-hero .hero-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: 1 !important;
    filter: none !important;
}

.home-page .home-hero .hero-fallback-image {
    display: none !important;
}

.home-video-copy {
    position: relative !important;
    z-index: 3 !important;
    max-width: 720px !important;
    margin-left: clamp(24px, 8vw, 132px) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.home-video-copy h1,
.home-video-copy p {
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    letter-spacing: 0 !important;
}

.home-video-copy h1 {
    margin: 0 0 22px 0 !important;
    max-width: 720px !important;
    color: #ffffff !important;
    font-size: clamp(42px, 5vw, 72px) !important;
    line-height: 1.05 !important;
    text-shadow: 0 3px 26px rgba(0,0,0,0.72) !important;
}

.home-video-copy p {
    margin: 0 0 18px 0 !important;
    max-width: 680px !important;
    color: rgba(255,255,255,0.88) !important;
    font-size: clamp(15px, 1.45vw, 18px) !important;
    line-height: 1.78 !important;
    text-shadow: 0 2px 18px rgba(0,0,0,0.76) !important;
}

.home-video-copy p:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 760px) {
    .home-page .navbar-inner {
        min-height: 58px !important;
        padding: 9px 14px !important;
        align-items: center !important;
    }

    .home-page .brand {
        gap: 9px !important;
        min-width: 0 !important;
    }

    .home-page .brand-text strong {
        font-size: 15px !important;
        line-height: 1.1 !important;
    }

    .home-page .brand-text span {
        display: none !important;
    }

    .home-page .nav-actions {
        width: auto !important;
        justify-content: flex-end !important;
        gap: 7px !important;
    }

    .home-page .nav-link {
        min-height: 36px !important;
        padding: 8px 10px !important;
        font-size: 12px !important;
    }

    .home-language-switcher {
        gap: 4px !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        border-left: 0 !important;
    }

    .home-language-switcher span {
        min-width: 30px !important;
        height: 30px !important;
        font-size: 11px !important;
    }

    .home-page .home-hero {
        min-height: calc(100vh - 58px) !important;
        height: calc(100vh - 58px) !important;
    }

    .home-video-copy {
        max-width: calc(100% - 24px) !important;
        margin: 0 12px !important;
        top: 50% !important;
        padding: 0 !important;
        border-radius: 0 !important;
        text-align: center !important;
    }

    .home-video-copy h1 {
        font-size: clamp(38px, 11vw, 52px) !important;
        line-height: 1.08 !important;
    }

    .home-video-copy p {
        font-size: clamp(20px, 5.8vw, 25px) !important;
        line-height: 1.34 !important;
    }
}
