@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');


/* =========================================
   ROOT
========================================= */

:root {
    --bg: #202326;
    --bg-soft: #24272b;
    --panel: #2a2e32;
    --panel-hover: #30353a;

    --text: #f3f0eb;
    --muted: #b0b4b8;
    --muted-soft: #9da3a8;

    --line: rgba(255, 255, 255, 0.07);
    --line-light: rgba(255, 255, 255, 0.13);

  --cyan: #E34234;
    --cyan-soft: rgba(227, 66, 52, 0.12);
    --cyan-glow: rgba(227, 66, 52, 0.32);

    --header-height: 78px;

    --page-padding: 48px;

    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 30px;

    --transition:
        220ms cubic-bezier(0.22, 1, 0.36, 1);
        --font-display-size: clamp(64px, 9vw, 150px);
--font-section-size: clamp(40px, 5vw, 76px);
--font-lead-size: clamp(17px, 1.5vw, 20px);
--font-body-size: 14px;
--font-micro-size: 11px;

--line-display: 0.9;
--line-section: 0.96;
--line-body: 1.7;
}


/* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
    background: var(--bg);
}


body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(227, 66, 52, 0.025),
            transparent 35%
        ),
        var(--bg);

    color: var(--text);

    font-family:
        "Inter",
        Arial,
        Helvetica,
        sans-serif;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


body.no-scroll {
    overflow: hidden;
}


button,
input {
    font: inherit;
}


button {
    cursor: pointer;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    display: block;
    max-width: 100%;
}


::selection {
    background: var(--cyan);
    color: #000;
}


::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}


::-webkit-scrollbar-track {
    background: #050505;
}


::-webkit-scrollbar-thumb {
    background: #242424;
    border-radius: 20px;
}


::-webkit-scrollbar-thumb:hover {
    background: #343434;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================================
   INTRO
========================================= */

.site-intro {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #030303;

    transition:
        opacity 700ms ease,
        visibility 700ms ease;
}


.site-intro.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.site-intro-inner {
    overflow: hidden;
}


.site-intro-logo {
    display: block;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(42px, 8vw, 110px);
    font-weight: 700;

    letter-spacing: 0.16em;

    transform: translateX(0.08em);

    animation: introLogo 1.1s ease both;
}


@keyframes introLogo {

    from {
        opacity: 0;
        transform:
            translateY(30px)
            translateX(0.08em);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            translateX(0.08em);
        filter: blur(0);
    }

}


/* =========================================
   SITE
========================================= */

.site {
    position: relative;
    min-height: 100vh;
}


/* =========================================
   ANNOUNCEMENT
========================================= */

.announcement-bar {
    position: relative;
    z-index: 120;

    padding: 9px var(--page-padding);

    background: var(--cyan);
    color: #000;

    text-align: center;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    z-index: 100;

    height: var(--header-height);

    display: flex;
    align-items: center;

    border-bottom: 1px solid rgba(255,255,255,0.07);

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.45),
            rgba(0,0,0,0)
        );

    transition:
        background var(--transition),
        backdrop-filter var(--transition),
        border-color var(--transition);
}


.site-header.scrolled {
    position: fixed;

    background: rgba(5, 5, 5, 0.86);

    backdrop-filter: blur(18px);

    border-color: var(--line);
}


.header-inner {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    padding: 0 var(--page-padding);
}


.site-logo {
    justify-self: start;

    font-family: "Space Grotesk", sans-serif;

    font-size: 19px;
    font-weight: 700;

    letter-spacing: 0.22em;

    transition: color var(--transition);
}


.site-logo:hover {
    color: var(--cyan);
}


.desktop-navigation {
    display: flex;
    align-items: center;

    gap: 30px;
}


.desktop-navigation a {
    position: relative;

    color: #c0c0c0;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition: color var(--transition);
}


.desktop-navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;
    bottom: -8px;

    height: 1px;

    background: var(--cyan);

    transition: right var(--transition);
}


.desktop-navigation a:hover {
    color: #fff;
}


.desktop-navigation a:hover::after {
    right: 0;
}


.header-actions {
    justify-self: end;

    display: flex;
    align-items: center;

    gap: 10px;
}


.header-icon-button {
    min-height: 38px;

    padding: 0 12px;

    border: 1px solid transparent;
    border-radius: var(--radius-sm);

    background: transparent;
    color: #d7d7d7;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}


.header-icon-button:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--line-light);
    color: var(--cyan);
}


.header-bag-button {
    display: flex;
    align-items: center;

    gap: 8px;
}


.bag-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 19px;
    height: 19px;

    padding: 0 5px;

    border-radius: 20px;

    background: var(--cyan);
    color: #000;

    font-size: 9px;
    font-weight: 700;
}


.mobile-menu-button {
    display: none;

    width: 42px;
    padding: 0;
}


.mobile-menu-button span {
    display: block;

    width: 20px;
    height: 1px;

    margin: 5px auto;

    background: #fff;
}


/* =========================================
   HERO
========================================= */

.hero-section {
    position: relative;

    min-height: 100svh;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: #080808;
}


.hero-media {
    position: absolute;
    inset: 0;
}


.hero-background {
    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    transform: scale(1.035);

    transition:
        opacity 900ms ease,
        transform 5s ease;
}


.hero-background.loaded {
    opacity: 1;
    transform: scale(1);
}


.hero-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.82) 0%,
            rgba(0,0,0,0.50) 40%,
            rgba(0,0,0,0.12) 75%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,0.68) 0%,
            transparent 45%
        );
}


.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 950px;

    padding:
        138px
        var(--page-padding)
        78px;
}


.hero-badge {
    width: fit-content;

    margin-bottom: 18px;

    padding: 8px 11px;

    border: 1px solid rgba(227, 66, 52, 0.35);

    background: rgba(227, 66, 52, 0.08);

    color: var(--cyan);

    font-size: var(--font-micro-size);
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.hero-badge:empty {
    display: none;
}


.hero-title {
    max-width: 1000px;

    font-family: "Space Grotesk", sans-serif;

    font-size: var(--font-display-size);
    font-weight: 600;

    line-height: 0.86;

    letter-spacing: -0.055em;

    text-transform: uppercase;
}


.hero-description {
    max-width: 88%;

    margin-top: 28px;

    font-size: 13px;
    line-height: 1.6;
}

.hero-description:empty {
    display: none;
}


.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 145px;

    margin-top: 30px;

    padding: 16px 20px;

    border: 1px solid #fff;

    background: #fff;
    color: #000;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.35);

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}


.hero-cta:hover {
    transform: translateY(-3px);

    background: var(--cyan);
    border-color: var(--cyan);

    box-shadow:
        0 12px 35px rgba(227, 66, 52,0.15);
}


.hero-scroll-indicator {
    position: absolute;

    right: var(--page-padding);
    bottom: 42px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 14px;

    color: #777;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}


.hero-scroll-line {
    position: relative;

    width: 54px;
    height: 1px;

    overflow: hidden;

    background: #444;
}


.hero-scroll-line::after {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: var(--cyan);

    animation: scrollLine 2s infinite ease;
}


@keyframes scrollLine {

    0% {
        left: -100%;
    }

    60%,
    100% {
        left: 100%;
    }

}


/* =========================================
   GENERAL SECTIONS
========================================= */

.store-section {
    position: relative;

    padding:
        120px
        var(--page-padding);

    border-top: 1px solid var(--line);
}


.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 24px;

    margin-bottom: 34px;
}


.section-eyebrow {
    margin-bottom: 10px;

    color: var(--cyan);

    font-size: var(--font-micro-size);
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.section-title {
    font-family: "Space Grotesk", sans-serif;

    font-size: var(--font-section-size);
    font-weight: 600;

    line-height: var(--line-section);

    letter-spacing: -0.045em;

    text-transform: uppercase;
}


/* =========================================
   PRODUCT SLIDERS
========================================= */

.product-slider-section {
    overflow: hidden;
}


.slider-controls {
    display: flex;
    gap: 8px;
}


.slider-button {
    
    width: 44px;
    height: 44px;

    border: 1px solid var(--line-light);
    border-radius: var(--radius-sm);

    background:
        linear-gradient(
            145deg,
            #101010,
            #080808
        );

    color: #bbb;
font-size: 14px;
font-weight: 500;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.035),
        0 6px 18px rgba(0,0,0,0.28);

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        transform var(--transition);
}


.slider-button:hover {
    transform: translateY(-2px);

    border-color: rgba(227, 66, 52,0.55);

    background: var(--cyan-soft);
    color: var(--cyan);
}


.product-slider {
    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;
}


.product-slider::-webkit-scrollbar {
    display: none;
}


.product-slider-track {
    display: flex;

    width: 100%;
}


.product-slide {
    flex: 0 0 100%;

    width: 100%;

    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, 0.85fr);

    gap: 44px;

    scroll-snap-align: start;

    padding-right: 1px;
}


.product-slide-media {
    position: relative;

    min-height: 620px;

    overflow: hidden;

    background: #0a0a0a;

    border: 1px solid var(--line);

    border-radius: var(--radius-md);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.025),
        0 16px 50px rgba(0,0,0,0.22);
}


.product-slide-media img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;

    transition:
        transform 650ms cubic-bezier(0.22,1,0.36,1),
        filter 650ms ease;
}


.product-slide:hover .product-slide-media img {
    transform: scale(1.025);
}


.product-slide-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 32px 0;
}


.product-slide-label {
    margin-bottom: 15px;

    color: var(--cyan);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}


.product-slide-title {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(34px, 4vw, 62px);
    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.045em;
}


.product-slide-price {
    margin-top: 18px;

    color: #d7d7d7;

    font-size: 14px;
}


.product-slide-description {
    max-width: 470px;

    margin-top: 22px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;
}


.product-slide-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 30px;
}


.product-view-button,
.product-add-button {
    min-height: 46px;

    padding: 0 22px;

    border-radius: var(--radius-sm);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}


.product-view-button {
    border: 1px solid var(--line-light);

    background: #0c0c0c;
    color: #ddd;
}


.product-view-button:hover {
    transform: translateY(-2px);

    border-color: #555;

    background: #111;
}


.product-add-button {
    border: 1px solid var(--cyan);

    background: var(--cyan);
    color: #000;
}


.product-add-button:hover {
    transform: translateY(-2px);

    background: transparent;
    color: var(--cyan);
}


.slider-progress {
    width: 100%;
    height: 1px;

    margin-top: 36px;

    overflow: hidden;

    background: var(--line);
}


.slider-progress-bar {
    width: 0%;
    height: 100%;

    background: var(--cyan);

    transition: width 300ms ease;
}


.section-loading {
    width: 100%;

    padding: 80px 0;

    color: var(--muted-soft);

    font-size: 11px;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================
   COLLECTIONS
========================================= */

.collections-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}


.collection-card {
    position: relative;

    min-height: 440px;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: var(--radius-md);

    background: var(--panel);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.025),
        0 14px 36px rgba(0,0,0,0.16);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.collection-card-wide {
    grid-column: 1 / -1;

    min-height: 500px;
}


.collection-card:hover {
    transform: translateY(-5px);

    border-color: rgba(227, 66, 52,0.28);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 20px 50px rgba(0,0,0,0.25);
}


.collection-card-media {
    position: absolute;
    inset: 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #111,
            #080808
        );
}


.collection-card-media::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,0.72),
            transparent 55%
        );
}


.collection-card-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 700ms cubic-bezier(0.22,1,0.36,1),
        filter 700ms ease;
}


.collection-card:hover .collection-card-image {
    transform: scale(1.035);
}


.collection-card-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    display: grid;
    grid-template-columns: auto 1fr auto;

    align-items: end;

    gap: 18px;

    padding: 26px;
}


.collection-number {
    color: var(--cyan);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.1em;
}


.collection-card h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.035em;

    text-transform: uppercase;
}


.collection-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;

    color: #fff;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}


.collection-card:hover .collection-arrow {
    transform: rotate(45deg);

    border-color: var(--cyan);

    background: var(--cyan);
    color: #000;
}


/* =========================================
   LOOKBOOK
========================================= */

.lookbook-section {
    padding:
        120px
        var(--page-padding);

    border-top: 1px solid var(--line);
}


.lookbook-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 48px;
}


.text-link {
    position: relative;

    padding-bottom: 6px;

    color: #d6d6d6;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.text-link::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background: var(--cyan);

    transform: scaleX(0);
    transform-origin: right;

    transition: transform var(--transition);
}


.text-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


.lookbook-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(280px, 0.85fr);

    grid-template-rows:
        repeat(2, minmax(0, 1fr));

    gap: 18px;

    min-height: 760px;
}

.lookbook-item {
    min-height: 320px;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: var(--radius-md);

    background: #0b0b0b;
}

.lookbook-item-large {
    grid-column: 1;
    grid-row: 1 / 3;
}
.lookbook-item:not(.lookbook-item-large) {
    min-height: 0;
}


.lookbook-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}


.lookbook-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}
@media (max-width: 800px) {

    .lookbook-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;

        min-height: 0;

        gap: 12px;
    }


    .lookbook-item-large,
    .lookbook-item:nth-child(2),
    .lookbook-item:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
    }


    .lookbook-item {
        aspect-ratio: 4 / 5;
    }

}


.lookbook-image-frame {
    width: 100%;
    height: 100%;

    overflow: hidden;
}


.lookbook-image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 800ms cubic-bezier(0.22,1,0.36,1),
        filter 800ms ease;
}


.lookbook-item:hover img {
    transform: scale(1.035);
}


/* =========================================
   BRAND STORY
========================================= */

.brand-story-section {
    padding:
        140px
        var(--page-padding);

    border-top: 1px solid var(--line);

   background:
    radial-gradient(
        circle at 80% 50%,
        rgba(227, 66, 52, 0.04),
        transparent 30%
    ),
    #070707;
}


.brand-story-inner {
    display: grid;

    grid-template-columns:
        minmax(180px, 0.4fr)
        minmax(0, 1.6fr);

    gap: 70px;
}


.brand-story-content {
    max-width: 1100px;
}


.brand-story-title {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(42px, 6vw, 92px);
    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -0.055em;

    text-transform: uppercase;
}


.brand-story-copy {
    display: grid;

    grid-template-columns:
        minmax(0, 520px)
        auto;

    align-items: end;

    gap: 40px;

    margin-top: 48px;
}


.brand-story-copy p {
    color: #979797;

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================
   NEWSLETTER
========================================= */

.newsletter-section {
    padding:
        130px
        var(--page-padding);

    border-top: 1px solid var(--line);

    background:
        linear-gradient(
            180deg,
            #080808,
            #050505
        );
}


.newsletter-inner {
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}

.newsletter-title {
    font-family: "Space Grotesk", sans-serif;

    font-size: var(--font-section-size);
    font-weight: 600;

    line-height: var(--line-section);

    letter-spacing: -0.045em;

    text-transform: uppercase;
}


.newsletter-description {
    margin-top: 18px;

    max-width: 560px;

    color: rgba(255, 255, 255, 0.64);

    font-size: var(--font-body-size);
    font-weight: 400;

    line-height: var(--line-body);
}

.newsletter-form {
    max-width: 650px;

    display: grid;
    grid-template-columns: 1fr auto;

    margin:
        42px
        auto
        0;

    border: 1px solid var(--line-light);
    border-radius: var(--radius-sm);

    background: #090909;

    overflow: hidden;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}


.newsletter-form:focus-within {
    border-color: rgba(227, 66, 52,0.55);

    box-shadow:
        0 0 0 4px rgba(227, 66, 52,0.04);
}


.newsletter-form input {
    width: 100%;

    padding: 18px 20px;

    border: 0;
    outline: 0;

    background: transparent;
    color: #fff;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.04em;
}

.newsletter-form input::placeholder {
    color: #555;
}


.newsletter-submit {
    padding: 0 26px;

    border: 0;

    background: var(--cyan);
    color: #000;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition:
        background var(--transition),
        color var(--transition);
}


.newsletter-submit:hover {
    background: #fff;
}


.newsletter-message {
    min-height: 18px;

    margin-top: 14px;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    border-top: 1px solid var(--line);

    background: #040404;
}


.footer-main {
    display: grid;

    grid-template-columns:
        2fr
        repeat(3, 1fr);

    gap: 50px;

    padding:
        80px
        var(--page-padding);
}


.footer-logo {
    display: inline-block;

    font-family: "Space Grotesk", sans-serif;

    font-size: 32px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.12em;

    transition: color var(--transition);
}


.footer-logo:hover {
    color: var(--cyan);
}


.footer-tagline {
    max-width: 280px;

    margin-top: 16px;

    color: rgba(255, 255, 255, 0.54);

    font-size: 13px;
    font-weight: 400;

    line-height: 1.65;
}


.footer-links-group {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}


.footer-heading {
    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.38);

    font-size: var(--font-micro-size);
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}


.footer-links-group a {
    color: rgba(255, 255, 255, 0.62);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;

    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-links-group a:hover {
    transform: translateX(3px);

    color: var(--cyan);
}


.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding:
        24px
        var(--page-padding);

    border-top: 1px solid var(--line);

    color: rgba(255, 255, 255, 0.34);

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.04em;
}


.footer-legal {
    display: flex;
    gap: 24px;
}


.footer-legal a {
    transition: color var(--transition);
}


.footer-legal a:hover {
    color: #aaa;
}


/* =========================================
   FLOATING BAG
========================================= */

.floating-bag-button {
    position: fixed;

    left: 22px;
    bottom: 22px;

    z-index: 200;

    min-width: 102px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    padding: 0 10px 0 18px;

    border: 1px solid rgba(227, 66, 52,0.32);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(20,20,20,0.96),
            rgba(7,7,7,0.96)
        );

    color: #fff;

    backdrop-filter: blur(16px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 14px 38px rgba(0,0,0,0.45),
        0 0 30px rgba(227, 66, 52,0.025);

    transition:
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}


.floating-bag-button:hover {
    transform: translateY(-4px);

    border-color: var(--cyan);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 18px 45px rgba(0,0,0,0.52),
        0 0 30px rgba(227, 66, 52,0.09);
}


.floating-bag-label {
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.floating-bag-count {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--cyan);
    color: #000;

    font-size: 10px;
    font-weight: 800;
}


/* =========================================
   BAG DRAWER
========================================= */

.bag-overlay,
.product-modal-overlay {
    position: fixed;
    inset: 0;

    z-index: 400;

    background: rgba(0,0,0,0.72);

    backdrop-filter: blur(3px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity var(--transition),
        visibility var(--transition);
}


.bag-overlay.open,
.product-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}


.bag-drawer {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;

    z-index: 410;

    width: min(470px, 100%);

    display: flex;
    flex-direction: column;

    transform: translateX(100%);

    background: #080808;

    border-left: 1px solid var(--line-light);

    box-shadow:
        -30px 0 80px rgba(0,0,0,0.45);

    transition:
        transform 420ms cubic-bezier(0.22,1,0.36,1);
}


.bag-drawer.open {
    transform: translateX(0);
}


.bag-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 28px;

    border-bottom: 1px solid var(--line);
}


.bag-eyebrow {
    margin-bottom: 5px;

    color: var(--cyan);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}


.bag-header h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 34px;
    font-weight: 500;
}


.bag-close-button,
.product-modal-close {
    width: 42px;
    height: 42px;

    border: 1px solid var(--line-light);
    border-radius: 50%;

    background: #0c0c0c;
    color: #bbb;

    font-size: 21px;

    transition:
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}


.bag-close-button:hover,
.product-modal-close:hover {
    transform: rotate(90deg);

    color: var(--cyan);
    border-color: var(--cyan);
}


.bag-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px 28px;
}


.bag-empty {
    min-height: 300px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 18px;

    color: var(--muted);

    text-align: center;
}


.bag-empty a {
    color: var(--cyan);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.bag-item {
    display: grid;

    grid-template-columns:
        92px
        1fr;

    gap: 16px;

    padding: 16px 0;

    border-bottom: 1px solid var(--line);
}


.bag-item-image {
    width: 92px;
    height: 110px;

    object-fit: cover;

    background: #111;
}


.bag-item-name {
    font-family: "Space Grotesk", sans-serif;

    font-size: 15px;
    font-weight: 600;
}


.bag-item-meta {
    margin-top: 6px;

    color: var(--muted);

    font-size: 10px;
}


.bag-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin-top: 15px;
}


.quantity-control {
    display: flex;
    align-items: center;

    border: 1px solid var(--line-light);
}


.quantity-control button {
    width: 31px;
    height: 31px;

    border: 0;

    background: transparent;
    color: #aaa;

    transition:
        color var(--transition),
        background var(--transition);
}


.quantity-control button:hover {
    background: var(--cyan-soft);
    color: var(--cyan);
}


.quantity-control span {
    min-width: 30px;

    text-align: center;

    font-size: 10px;
}


.bag-remove-button {
    border: 0;

    background: transparent;
    color: #666;

    font-size: 9px;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    transition: color var(--transition);
}


.bag-remove-button:hover {
    color: #ff6a6a;
}


.bag-summary {
    padding: 24px 28px;

    border-top: 1px solid var(--line);

    background: #070707;
}


.bag-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    font-size: 13px;
}


.bag-summary-row strong {
    font-family: "Space Grotesk", sans-serif;

    font-size: 20px;
}


.bag-summary-note {
    margin-top: 8px;

    color: var(--muted-soft);

    font-size: 9px;
}


.checkout-button {
    width: 100%;
    height: 52px;

    margin-top: 22px;

    border: 1px solid var(--cyan);
    border-radius: var(--radius-sm);

    background: var(--cyan);
    color: #000;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.13em;
    text-transform: uppercase;

    transition:
        background var(--transition),
        color var(--transition);
}


.checkout-button:hover {
    background: transparent;
    color: var(--cyan);
}


/* =========================================
   PRODUCT MODAL
========================================= */

.product-modal {
    position: fixed;

    left: 50%;
    top: 50%;

    z-index: 420;

    width: min(1050px, calc(100% - 40px));
    max-height: calc(100vh - 50px);

    overflow-y: auto;

    transform:
        translate(-50%, -46%)
        scale(0.98);

    opacity: 0;
    visibility: hidden;

    border: 1px solid var(--line-light);
    border-radius: var(--radius-md);

    background: #080808;

    box-shadow:
        0 40px 120px rgba(0,0,0,0.65);

    transition:
        opacity var(--transition),
        transform var(--transition),
        visibility var(--transition);
}


.product-modal.open {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, -50%)
        scale(1);
}


.product-modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 5;
}


.product-modal-content {
    min-height: 500px;
}


/* =========================================
   SEARCH
========================================= */

.search-overlay {
    position: fixed;
    inset: 0;

    z-index: 500;

    padding: 28px;

    background: rgba(0,0,0,0.84);

    backdrop-filter: blur(18px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity var(--transition),
        visibility var(--transition);
}


.search-overlay.open {
    opacity: 1;
    visibility: visible;
}


.search-panel {
    width: min(1000px, 100%);

    margin: 30px auto;
}


.search-header {
    display: grid;
    grid-template-columns: 1fr auto;

    border-bottom: 1px solid var(--line-light);
}


.search-header input {
    min-width: 0;

    padding: 24px 0;

    border: 0;
    outline: 0;

    background: transparent;
    color: #fff;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(28px, 5vw, 60px);
    font-weight: 500;

    letter-spacing: -0.04em;
}


.search-header input::placeholder {
    color: #2f2f2f;
}


.search-header button {
    width: 60px;

    border: 0;

    background: transparent;
    color: #777;

    font-size: 25px;

    transition: color var(--transition);
}


.search-header button:hover {
    color: var(--cyan);
}


.search-results {
    padding-top: 25px;
}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 600;

    padding: 26px;

    transform: translateX(-100%);

    background: #050505;

    transition:
        transform 420ms cubic-bezier(0.22,1,0.36,1);
}


.mobile-menu.open {
    transform: translateX(0);
}


.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--line);

    padding-bottom: 24px;
}


.mobile-menu-logo {
    font-family: "Space Grotesk", sans-serif;

    font-weight: 700;

    letter-spacing: 0.18em;
}


.mobile-menu-close {
    width: 42px;
    height: 42px;

    border: 0;

    background: transparent;
    color: #fff;

    font-size: 26px;
}


.mobile-navigation {
    display: flex;
    flex-direction: column;

    padding-top: 30px;
}


.mobile-navigation a {
    padding: 20px 0;

    border-bottom: 1px solid var(--line);

    font-family: "Space Grotesk", sans-serif;

    font-size: 30px;
    font-weight: 500;

    letter-spacing: -0.03em;

    transition:
        color var(--transition),
        padding-left var(--transition);
}


.mobile-navigation a:hover {
    padding-left: 8px;

    color: var(--cyan);
}


/* =========================================
   SCROLL REVEAL
========================================= */

.reveal-text,
.reveal-item {
    opacity: 0;

    transform: translateY(28px);

    transition:
        opacity 850ms cubic-bezier(0.22,1,0.36,1),
        transform 850ms cubic-bezier(0.22,1,0.36,1);
}


.reveal-text.revealed,
.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}


.reveal-item:nth-child(2) {
    transition-delay: 80ms;
}


.reveal-item:nth-child(3) {
    transition-delay: 160ms;
}


.reveal-item:nth-child(4) {
    transition-delay: 240ms;
}


.reveal-item:nth-child(5) {
    transition-delay: 320ms;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    :root {
        --page-padding: 30px;
    }


    .desktop-navigation {
        gap: 18px;
    }


    .product-slide {
        gap: 28px;

        grid-template-columns:
            minmax(0, 1.1fr)
            minmax(280px, 0.9fr);
    }


    .product-slide-media {
        min-height: 520px;
    }


    .footer-main {
        grid-template-columns:
            1.5fr
            repeat(3, 1fr);
    }

}


@media (max-width: 800px) {

    :root {
        --page-padding: 20px;
        --header-height: 68px;
    }


    .desktop-navigation,
    .header-action-text {
        display: none;
    }


    .mobile-menu-button {
        display: block;
        justify-self: start;
    }


    .header-inner {
        grid-template-columns:
            1fr
            auto
            1fr;
    }


    .site-logo {
        justify-self: center;

        font-size: 17px;
    }


    .header-actions {
        justify-self: end;
    }


    .header-icon-button {
        padding: 0 5px;
    }


   .hero-content {
    padding:
        96px
        var(--page-padding)
        48px;
}
.hero-badge {
    margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(48px, 15vw, 82px);

    line-height: 0.92;

    letter-spacing: -0.055em;
}

    .hero-description {
        max-width: 90%;

        margin-top: 20px;

        font-size: 12px;
    }


    .hero-scroll-indicator {
        display: none;
    }


    .store-section,
    .lookbook-section {
        padding:
            86px
            var(--page-padding);
    }


    .section-heading,
    .lookbook-header {
        align-items: flex-start;
    }


    .product-slide {
        display: block;
    }


    .product-slide-media {
        min-height: 0;

        aspect-ratio: 4 / 5;
    }


    .product-slide-info {
        padding:
            26px
            0
            10px;
    }


    .product-slide-title {
        font-size: 40px;
    }


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


    .collection-card,
    .collection-card-wide {
        grid-column: auto;

        min-height: 440px;
    }


    .lookbook-grid {
        display: grid;

        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }


    .lookbook-item,
    .lookbook-item-large {
        grid-row: auto;

        min-height: 0;
        aspect-ratio: 4 / 5;
    }


    .brand-story-section {
        padding:
            90px
            var(--page-padding);
    }


    .brand-story-inner {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .brand-story-copy {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    .newsletter-section {
        padding:
            90px
            var(--page-padding);
    }


    .footer-main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 45px 30px;

        padding:
            60px
            var(--page-padding);
    }


    .footer-brand {
        grid-column: 1 / -1;
    }

}


@media (max-width: 520px) {

    .section-heading,
    .lookbook-header {
        gap: 18px;
    }


    .slider-controls {
        gap: 5px;
    }


    .slider-button {
        width: 39px;
        height: 39px;
    }

.hero-title {
    font-size: clamp(42px, 13vw, 56px);
    line-height: 0.88;
    letter-spacing: -0.06em;
}
    .hero-description {
        max-width: 100%;
    }


    .collection-card,
    .collection-card-wide {
        min-height: 390px;
    }


    .collection-card-content {
        padding: 20px;
    }


    .collection-card h3 {
        font-size: 31px;
    }


    .newsletter-form {
        grid-template-columns: 1fr;

        border: 0;

        background: transparent;
    }


    .newsletter-form input {
        border: 1px solid var(--line-light);
        border-radius: var(--radius-sm);

        background: #090909;
    }


    .newsletter-submit {
        height: 50px;

        margin-top: 10px;

        border-radius: var(--radius-sm);
    }


    .footer-main {
        grid-template-columns: 1fr;
    }


    .footer-brand {
        grid-column: auto;
    }


    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }


    .floating-bag-button {
        left: 14px;
        bottom: 14px;
    }


    .bag-header,
    .bag-items,
    .bag-summary {
        padding-left: 20px;
        padding-right: 20px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}
/* =========================================
   PRODUCT QUICK VIEW CONTENT
========================================= */

.product-quick-view {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    min-height: 620px;
}


.product-quick-view-media {
    min-height: 620px;
    background: #0b0b0b;
}


.product-quick-view-media img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
}


.product-quick-view-no-image {
    width: 100%;
    height: 100%;
    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #555;

    font-size: 10px;
    letter-spacing: 0.15em;
}


.product-quick-view-info {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 60px;
}


.product-quick-view-info h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(38px, 5vw, 68px);
    font-weight: 500;

    line-height: 0.95;
    letter-spacing: -0.05em;
}


.product-quick-view-price {
    margin-top: 20px;

    font-size: 15px;
}


.product-quick-view-description {
    margin-top: 24px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;
}


.product-quick-view-sizes {
    margin-top: 36px;
}


.product-option-label {
    margin-bottom: 12px;

    color: #777;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}


.product-size-options {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}


.product-size-button {
    min-width: 52px;
    height: 44px;

    padding: 0 14px;

    border: 1px solid var(--line-light);
    border-radius: var(--radius-sm);

    background: #0b0b0b;
    color: #999;

    font-size: 10px;
    font-weight: 700;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}


.product-size-button:hover {
    border-color: #555;
    color: #fff;
}


.product-size-button.selected {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #000;
}


.product-size-empty {
    color: #666;
    font-size: 11px;
}


.product-modal-add-button {
    width: 100%;
    height: 52px;

    margin-top: 36px;

    border: 1px solid var(--cyan);
    border-radius: var(--radius-sm);

    background: var(--cyan);
    color: #000;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.13em;
    text-transform: uppercase;

    transition:
        background var(--transition),
        color var(--transition),
        opacity var(--transition);
}


.product-modal-add-button:hover:not(:disabled) {
    background: transparent;
    color: var(--cyan);
}


.product-modal-add-button:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}


@media (max-width: 800px) {

    .product-quick-view {
        grid-template-columns: 1fr;
    }


    .product-quick-view-media,
    .product-quick-view-media img,
    .product-quick-view-no-image {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }


    .product-quick-view-info {
        padding: 30px 22px 36px;
    }

}
/* =========================================
   PRODUCT QUICK VIEW CONTENT
========================================= */

.product-quick-view {
    display: grid;

    grid-template-columns:
        1.08fr
        0.92fr;

    min-height: 620px;
}


.product-quick-view-media {
    min-height: 620px;

    overflow: hidden;

    background: #0b0b0b;
}


.product-quick-view-media img {
    width: 100%;
    height: 100%;

    min-height: 620px;

    object-fit: cover;
}


.product-quick-view-no-image {
    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #555;

    font-size: 10px;

    letter-spacing: 0.15em;
}


.product-quick-view-info {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 60px;
}


.product-quick-view-info h2 {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(38px, 5vw, 68px);

    font-weight: 500;

    line-height: 0.95;

    letter-spacing: -0.05em;

    text-transform: uppercase;
}


.product-quick-view-price {
    margin-top: 20px;

    font-size: 15px;
}


.product-quick-view-description {
    margin-top: 24px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


.product-quick-view-sizes {
    margin-top: 36px;
}


.product-option-label {
    margin-bottom: 12px;

    color: #777;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.product-size-options {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}


.product-size-button {
    min-width: 52px;
    height: 44px;

    padding: 0 14px;

    border:
        1px solid
        var(--line-light);

    border-radius:
        var(--radius-sm);

    background: #0b0b0b;

    color: #999;

    font-size: 10px;
    font-weight: 700;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}


.product-size-button:hover {
    transform: translateY(-2px);

    border-color: #555;

    color: #fff;
}


.product-size-button.selected {
    background: var(--cyan);

    border-color: var(--cyan);

    color: #000;
}


.product-size-empty {
    color: #666;

    font-size: 11px;
}


.product-modal-add-button {
    width: 100%;
    height: 52px;

    margin-top: 36px;

    border:
        1px solid
        var(--cyan);

    border-radius:
        var(--radius-sm);

    background: var(--cyan);

    color: #000;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    transition:
        background var(--transition),
        color var(--transition),
        opacity var(--transition),
        transform var(--transition);
}


.product-modal-add-button:hover:not(:disabled) {
    transform: translateY(-2px);

    background: transparent;

    color: var(--cyan);
}


.product-modal-add-button:disabled {
    cursor: not-allowed;

    opacity: 0.4;
}


@media (max-width: 800px) {

    .product-quick-view {
        grid-template-columns: 1fr;
    }


    .product-quick-view-media {
        min-height: 0;

        aspect-ratio: 4 / 5;
    }


    .product-quick-view-media img {
        min-height: 0;

        height: 100%;
    }


    .product-quick-view-no-image {
        min-height: 0;

        height: 100%;
    }


    .product-quick-view-info {
        padding:
            30px
            22px
            36px;
    }

}
/* =========================================
   CENTERED PRODUCT SLIDER
========================================= */

.product-slider-shell {
    position: relative;

    width: 100%;
    max-width: 820px;

    margin: 0 auto;
}


.product-slider {
    position: relative;

    width: 100%;
    max-width: none;

    margin: 0;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;
}


.product-slider::-webkit-scrollbar {
    display: none;
}


.product-slider-track {
    display: flex;

    width: 100%;
}


.product-slide {
    flex: 0 0 100%;

    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 0;

    padding: 0 58px;

    scroll-snap-align: start;
}


.product-slide-media {
    position: relative;

    width: 100%;
    max-width: 600px;

   height: min(50vh, 460px);

    margin: 0 auto;

    overflow: hidden;

    border-radius: var(--radius-md);

    background: #0a0a0a;
}


.product-slide-media img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.product-slide-info {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    padding: 28px 0 0;
}


/* =========================================
   SLIDER ARROWS
========================================= */

.product-slider-controls {
    position: absolute;

    top: 50%;
    left: 0;
    right: 0;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: space-between;

    transform: translateY(-50%);

    pointer-events: none;
}
.product-slider-controls .slider-button {
    pointer-events: auto;
}


.product-slider-controls .slider-button {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    pointer-events: auto;

    border: 1px solid var(--line-light);

    background: rgba(8, 8, 8, 0.94);

    backdrop-filter: blur(10px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.4);
}


.product-slider-controls .slider-button:hover {
    border-color: var(--cyan);

    color: var(--cyan);
}


/* =========================================
   MOBILE PRODUCT SLIDER
========================================= */

@media (max-width: 800px) {

    .product-slider-shell {
        max-width: 100%;
    }


    .product-slide {
        padding: 0 42px;
    }


    .product-slider-controls {
        top: 38%;
    }


    .product-slider-controls .slider-button {
        width: 38px;
        height: 38px;
    }


    .product-slide-info {
        padding-top: 22px;
    }

}
/* =========================================
   BAG STOCK LIMIT
========================================= */

.quantity-control button:disabled {
    cursor: not-allowed;

    opacity: 0.25;

    background: transparent;

    color: #555;
}


.bag-max-stock {
    color: var(--cyan);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}
/* =========================================
   CHECKOUT
========================================= */

.checkout-overlay {
    position: fixed;
    inset: 0;

    z-index: 700;

    background: rgba(0, 0, 0, 0.78);

    backdrop-filter: blur(5px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity var(--transition),
        visibility var(--transition);
}


.checkout-overlay.open {
    opacity: 1;
    visibility: visible;
}


.checkout-panel {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;

    z-index: 710;

    width: min(900px, 100%);

    overflow-y: auto;

    transform: translateX(100%);

    background: #070707;

    border-left: 1px solid var(--line);

    transition:
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}


.checkout-panel.open {
    transform: translateX(0);
}


.checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 28px 32px;

    border-bottom: 1px solid var(--line);
}


.checkout-eyebrow {
    margin-bottom: 5px;

    color: var(--cyan);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}


.checkout-header h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 34px;
    font-weight: 500;
}


.checkout-close-button {
    width: 42px;
    height: 42px;

    border: 1px solid var(--line-light);
    border-radius: 50%;

    background: #0c0c0c;
    color: #aaa;

    font-size: 22px;
}


.checkout-body {
    display: grid;

    grid-template-columns:
        1fr
        0.8fr;

    min-height: calc(100vh - 100px);
}


.checkout-form-area {
    padding: 36px 32px;

    border-right: 1px solid var(--line);
}


.checkout-summary {
    padding: 36px 32px;

    background: #090909;
}


.checkout-section-label {
    margin: 22px 0 12px;

    color: var(--cyan);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}


.checkout-section-label:first-child {
    margin-top: 0;
}


.checkout-input {
    width: 100%;

    margin-bottom: 10px;

    padding: 15px 16px;

    border: 1px solid var(--line-light);
    border-radius: var(--radius-sm);

    outline: none;

    background: #0b0b0b;
    color: #fff;
}


.checkout-input:focus {
    border-color: var(--cyan);
}


.checkout-textarea {
    min-height: 110px;

    resize: vertical;
}


.checkout-item {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding: 14px 0;

    border-bottom: 1px solid var(--line);

    font-size: 11px;
}


.checkout-item-meta {
    margin-top: 5px;

    color: var(--muted);

    font-size: 9px;
}


.checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 28px;

    padding-top: 20px;

    border-top: 1px solid var(--line);
}


.checkout-total-row strong {
    font-size: 20px;
}


.place-order-button {
    width: 100%;
    height: 52px;

    margin-top: 24px;

    border: 1px solid var(--cyan);
    border-radius: var(--radius-sm);

    background: var(--cyan);
    color: #000;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}


@media (max-width: 800px) {

    .checkout-body {
        grid-template-columns: 1fr;
    }


    .checkout-form-area {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

}
/* =========================================
   CHECKOUT MESSAGE
========================================= */

.checkout-message {
    min-height: 18px;

    margin-top: 18px;

    font-size: 10px;
    line-height: 1.6;

    letter-spacing: 0.04em;
}


.checkout-message.error {
    color: #ff7777;
}


.checkout-message.success {
    color: var(--cyan);
}


.place-order-button:disabled {
    cursor: not-allowed;

    opacity: 0.55;
}
/* =========================================
   ORDER SUCCESS
========================================= */

.order-success {
    min-height: calc(100vh - 100px);

    display: none;

    align-items: center;
    justify-content: center;

    padding: 60px 32px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 38%,
            rgba(227, 66, 52, 0.07),
            transparent 34%
        ),
        #070707;
}


.order-success.active {
    display: flex;
}


.order-success-inner {
    width: 100%;
    max-width: 580px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    opacity: 0;

    transform: translateY(24px);

    animation:
        orderSuccessReveal
        800ms
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}


@keyframes orderSuccessReveal {

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


/* =========================================
   ANIMATED CHECK
========================================= */

.order-success-check {
    position: relative;

    width: 94px;
    height: 94px;

    margin-bottom: 34px;

    border: 1px solid rgba(227, 66, 52, 0.22);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(227, 66, 52, 0.13),
            rgba(227, 66, 52, 0.025)
        );

    box-shadow:
        0 0 0 0 rgba(227, 66, 52, 0.18),
        inset 0 0 30px rgba(227, 66, 52, 0.04);

    opacity: 0;

    transform: scale(0.65);

    animation:
        orderCheckCircle
        650ms
        cubic-bezier(0.34, 1.56, 0.64, 1)
        180ms
        forwards;
}


@keyframes orderCheckCircle {

    0% {
        opacity: 0;

        transform: scale(0.65);

        box-shadow:
            0 0 0 0 rgba(227, 66, 52, 0.18);
    }


    70% {
        opacity: 1;

        transform: scale(1.07);

        box-shadow:
            0 0 0 14px rgba(227, 66, 52, 0.035);
    }


    100% {
        opacity: 1;

        transform: scale(1);

        box-shadow:
            0 0 0 8px rgba(227, 66, 52, 0);
    }

}


.order-success-check span {
    position: absolute;

    left: 36px;
    top: 25px;

    width: 20px;
    height: 36px;

    border-right: 3px solid var(--cyan);
    border-bottom: 3px solid var(--cyan);

    opacity: 0;

    transform:
        rotate(45deg)
        scale(0.5);

    transform-origin: center;

    animation:
        orderCheckTick
        420ms
        cubic-bezier(0.22, 1, 0.36, 1)
        610ms
        forwards;
}


@keyframes orderCheckTick {

    to {
        opacity: 1;

        transform:
            rotate(45deg)
            scale(1);
    }

}


/* =========================================
   SUCCESS TEXT
========================================= */

.order-success-eyebrow {
    margin-bottom: 15px;

    color: var(--cyan);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    opacity: 0;

    transform: translateY(12px);

    animation:
        orderSuccessText
        650ms
        cubic-bezier(0.22, 1, 0.36, 1)
        720ms
        forwards;
}


.order-success-title {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(38px, 5vw, 64px);

    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.05em;

    text-transform: uppercase;

    opacity: 0;

    transform: translateY(16px);

    animation:
        orderSuccessText
        700ms
        cubic-bezier(0.22, 1, 0.36, 1)
        830ms
        forwards;
}


.order-success-message {
    max-width: 430px;

    margin-top: 22px;

    color: #8f8f8f;

    font-size: 13px;

    line-height: 1.8;

    opacity: 0;

    transform: translateY(16px);

    animation:
        orderSuccessText
        700ms
        cubic-bezier(0.22, 1, 0.36, 1)
        950ms
        forwards;
}


@keyframes orderSuccessText {

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


/* =========================================
   CONTINUE SHOPPING
========================================= */

.continue-shopping-button {
    min-width: 210px;
    height: 52px;

    margin-top: 36px;

    padding: 0 28px;

    border: 1px solid var(--cyan);

    border-radius: var(--radius-sm);

    background: var(--cyan);

    color: #000;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    opacity: 0;

    transform: translateY(16px);

    animation:
        orderSuccessText
        700ms
        cubic-bezier(0.22, 1, 0.36, 1)
        1080ms
        forwards;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}


.continue-shopping-button:hover {
    background: transparent;

    color: var(--cyan);

    transform: translateY(-3px);

    box-shadow:
        0 12px 35px
        rgba(227, 66, 52, 0.08);
}


@media (max-width: 600px) {

    .order-success {
        min-height: calc(100svh - 90px);

        padding:
            50px
            22px;
    }


    .order-success-check {
        width: 82px;
        height: 82px;
    }


    .order-success-check span {
        left: 31px;
        top: 21px;

        width: 18px;
        height: 33px;
    }


    .order-success-title {
        font-size: 38px;
    }


    .continue-shopping-button {
        width: 100%;
    }

}
/* =========================================
   ORDER REFERENCE
========================================= */

.order-reference {
    margin-top: 18px;

    color: #666;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}
/* =========================================
   PRODUCT IMAGE GALLERY
========================================= */

.product-quick-view-media {
    display: flex;
    flex-direction: column;

    min-height: 620px;

    background: #0b0b0b;

    overflow: hidden;
}


.product-gallery-main {
    flex: 1;

    min-height: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #0a0a0a;
}


.product-gallery-main img {
    width: 100%;
    height: 100%;

    min-height: 0;

    object-fit: contain;

    transition:
        opacity 160ms ease,
        transform 300ms
        cubic-bezier(0.22, 1, 0.36, 1);
}


.product-gallery-main img.changing {
    opacity: 0;

    transform: scale(0.985);
}


/* THUMBNAILS */

.product-gallery-thumbnails {
    flex-shrink: 0;

    display: flex;

    gap: 8px;

    padding: 12px;

    overflow-x: auto;

    border-top: 1px solid var(--line);

    background: #070707;

    scrollbar-width: none;
}


.product-gallery-thumbnails::-webkit-scrollbar {
    display: none;
}


.product-gallery-thumbnail {
    position: relative;

    flex: 0 0 70px;

    width: 70px;
    height: 82px;

    padding: 0;

    overflow: hidden;

    border: 1px solid var(--line-light);

    border-radius: 5px;

    background: #0b0b0b;

    opacity: 0.55;

    transition:
        opacity var(--transition),
        border-color var(--transition),
        transform var(--transition);
}


.product-gallery-thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.product-gallery-thumbnail:hover {
    opacity: 0.85;

    transform: translateY(-2px);
}


.product-gallery-thumbnail.active {
    opacity: 1;

    border-color: var(--cyan);
}


/* MOBILE */

@media (max-width: 800px) {

    .product-quick-view-media {
        min-height: 0;
    }


    .product-gallery-main {
        aspect-ratio: 1 / 1;
    }


    .product-gallery-thumbnail {
        flex-basis: 62px;

        width: 62px;
        height: 72px;
    }

}
/* =========================================
   COLLECTION BROWSER
========================================= */

.collection-overlay {
    position: fixed;
    inset: 0;

    z-index: 650;

    background: rgba(0, 0, 0, 0.82);

    backdrop-filter: blur(6px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 300ms ease,
        visibility 300ms ease;
}


.collection-overlay.open {
    opacity: 1;
    visibility: visible;
}


.collection-browser {
    position: fixed;
    inset: 0;

    z-index: 660;

    overflow-y: auto;

    background:
    radial-gradient(
        circle at 50% 0%,
        rgba(227, 66, 52, 0.04),
        transparent 28%
    ),
    #050505;

    opacity: 0;
    visibility: hidden;

    transform: translateY(30px);

    transition:
        opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 420ms ease;
}


.collection-browser.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.collection-browser-header {
    position: sticky;
    top: 0;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding:
        28px
        var(--page-padding);

    border-bottom: 1px solid var(--line);

    background: rgba(5, 5, 5, 0.9);

    backdrop-filter: blur(18px);
}


.collection-browser-eyebrow {
    margin-bottom: 8px;

    color: var(--cyan);

    font-size: var(--font-micro-size);
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.collection-browser-header h2 {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: var(--font-section-size);
    font-weight: 600;

    line-height: var(--line-section);

    letter-spacing: -0.045em;

    text-transform: uppercase;
}


.collection-browser-close {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    border: 1px solid var(--line-light);
    border-radius: 50%;

    background: #0c0c0c;

    color: #aaa;

    font-size: 24px;

    transition:
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}


.collection-browser-close:hover {
    transform: rotate(90deg);

    color: var(--cyan);

    border-color: var(--cyan);
}


.collection-browser-products {
    min-height: calc(100vh - 120px);

    padding:
        60px
        var(--page-padding);
}


.collection-browser-loading {
    color: #555;

    font-size: 10px;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


@media (max-width: 700px) {

    .collection-browser-header {
        padding:
            20px
            var(--page-padding);
    }


    .collection-browser-products {
        padding:
            35px
            var(--page-padding);
    }

}
/* =========================================
   COLLECTION PRODUCT GRID
========================================= */

.collection-product-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;
}


.collection-product-card {
    width: 100%;

    padding: 0;

    border: 1px solid var(--line);
    border-radius: var(--radius-md);

    overflow: hidden;

    background: #090909;
    color: #fff;

    text-align: left;

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.collection-product-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(227, 66, 52, 0.35);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.28);
}

.collection-product-image {
    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #0d0d0d;
}


.collection-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        600ms
        cubic-bezier(0.22, 1, 0.36, 1);
}


.collection-product-card:hover
.collection-product-image img {
    transform: scale(1.035);
}


.collection-product-info {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 16px;
}


.collection-product-info h3 {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.2;

    letter-spacing: -0.02em;
}


.collection-product-info p {
    flex-shrink: 0;

    color: #777;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.02em;
}


@media (max-width: 900px) {

    .collection-product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 520px) {

    .collection-product-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   PRODUCT MODAL ABOVE COLLECTION BROWSER
========================================= */

.product-modal-overlay {
    z-index: 680;
}


.product-modal {
    z-index: 690;
}
/* =========================================
   COLLECTION HEADER DETAILS
========================================= */

.collection-browser-heading {
    min-width: 0;
}


.collection-browser-title-row {
    display: flex;
    align-items: flex-end;

    gap: 16px;
}


.collection-browser-count {
    margin-bottom: 6px;

    color: #5f5f5f;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


@media (max-width: 600px) {

    .collection-browser-title-row {
        align-items: flex-start;
        flex-direction: column;

        gap: 6px;
    }


    .collection-browser-count {
        margin-bottom: 0;
    }

}
/* =========================================
   COLLECTION PRODUCT REVEAL
========================================= */

.collection-product-reveal {
    opacity: 0;

    transform:
        translateY(26px)
        scale(0.985);

    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}


.collection-product-reveal.visible {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}
/* =========================================
   COLLECTION PRODUCT HOVER
========================================= */

.collection-product-image {
    position: relative;
}


.collection-product-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(0, 0, 0, 0.38);

    opacity: 0;

    transition:
        opacity 260ms ease;
}


.collection-product-overlay span {
    padding: 11px 16px;

    border: 1px solid rgba(227, 66, 52, 0.5);

    background:
        rgba(5, 5, 5, 0.82);

    color: var(--cyan);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    transform: translateY(8px);

    transition:
        transform 260ms ease;
}


.collection-product-card:hover
.collection-product-overlay {
    opacity: 1;
}


.collection-product-card:hover
.collection-product-overlay span {
    transform: translateY(0);
}
/* =========================================
   COLLECTION EMPTY STATE
========================================= */

.collection-empty-state {
    min-height: 60vh;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 60px 20px;
}


.collection-empty-icon {
    margin-bottom: 22px;

    color: var(--cyan);

    font-size: 28px;
}


.collection-empty-eyebrow {
    margin-bottom: 12px;

    color: var(--cyan);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.collection-empty-state h3 {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(34px, 5vw, 58px);

    font-weight: 500;

    letter-spacing: -0.04em;

    text-transform: uppercase;
}


.collection-empty-text {
    max-width: 430px;

    margin-top: 18px;

    color: #777;

    font-size: 12px;

    line-height: 1.7;
}


.collection-empty-back {
    margin-top: 28px;

    min-width: 170px;
    height: 46px;

    padding: 0 20px;

    border: 1px solid var(--cyan);

    border-radius: var(--radius-sm);

    background: transparent;

    color: var(--cyan);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}


.collection-empty-back:hover {
    transform: translateY(-2px);

    background: var(--cyan);

    color: #000;
}
/* =========================================
   LOOKBOOK EDITORIAL
========================================= */

.lookbook-caption {
    color: #555;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.lookbook-item {
    position: relative;

    padding: 0;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: var(--radius-md);

    background: #0a0a0a;

    cursor: pointer;
}


.lookbook-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 500ms ease;
}


.lookbook-item:hover img {
    transform: scale(1.04);

    filter: brightness(0.72);
}


.lookbook-hover-label {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -40%);

    padding: 10px 16px;

    border: 1px solid rgba(227, 66, 52, 0.5);

    background: rgba(5, 5, 5, 0.75);

    color: var(--cyan);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    opacity: 0;

    transition:
        opacity 250ms ease,
        transform 250ms ease;
}


.lookbook-item:hover
.lookbook-hover-label {
    opacity: 1;

    transform:
        translate(-50%, -50%);
}


/* =========================================
   LOOKBOOK LIGHTBOX
========================================= */

.lookbook-lightbox {
    position: fixed;
    inset: 0;

    z-index: 800;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 80px;

    background: rgba(0, 0, 0, 0.94);

    backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 320ms ease,
        visibility 320ms ease;
}


.lookbook-lightbox.open {
    opacity: 1;
    visibility: visible;
}


.lookbook-lightbox-image-wrap {
    width: min(900px, 100%);

    max-height: 88vh;

    display: flex;
    align-items: center;
    justify-content: center;
}


.lookbook-lightbox-image {
    max-width: 100%;
    max-height: 88vh;

    object-fit: contain;

    opacity: 0;

    transform: scale(0.985);

    transition:
        opacity 260ms ease,
        transform 260ms ease;
}


.lookbook-lightbox.open
.lookbook-lightbox-image {
    opacity: 1;

    transform: scale(1);
}


.lookbook-lightbox-close {
    position: absolute;

    top: 24px;
    right: 28px;

    width: 46px;
    height: 46px;

    border: 1px solid var(--line-light);
    border-radius: 50%;

    background: #0b0b0b;

    color: #aaa;

    font-size: 24px;

    transition:
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}


.lookbook-lightbox-close:hover {
    transform: rotate(90deg);

    color: var(--cyan);

    border-color: var(--cyan);
}


.lookbook-lightbox-arrow {
    position: absolute;

    top: 50%;

    width: 48px;
    height: 48px;

    transform: translateY(-50%);

    border: 1px solid var(--line-light);
    border-radius: 50%;

    background: rgba(8, 8, 8, 0.9);

    color: #aaa;

    font-size: 18px;

    transition:
        color var(--transition),
        border-color var(--transition);
}


.lookbook-lightbox-arrow:hover {
    color: var(--cyan);

    border-color: var(--cyan);
}


.lookbook-lightbox-prev {
    left: 24px;
}


.lookbook-lightbox-next {
    right: 24px;
}


@media (max-width: 700px) {

    .lookbook-lightbox {
        padding: 20px 50px;
    }


    .lookbook-lightbox-arrow {
        width: 40px;
        height: 40px;
    }


    .lookbook-lightbox-prev {
        left: 8px;
    }


    .lookbook-lightbox-next {
        right: 8px;
    }

}
/* =========================================
   LOOKBOOK HEADER POLISH
========================================= */

.lookbook-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 24px;

    margin-bottom: 28px;
}


.lookbook-header .section-title {
    margin-top: 4px;

    font-size: var(--font-section-size);
    line-height: var(--line-section);

    letter-spacing: -0.045em;
}


.lookbook-header .section-eyebrow {
    margin-bottom: 10px;
}


.lookbook-caption {
    padding-bottom: 6px;

    color: rgba(255, 255, 255, 0.38);

    font-size: var(--font-micro-size);
    font-weight: 600;

    line-height: 1.2;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


@media (max-width: 700px) {

    .lookbook-header {
        align-items: flex-start;
        flex-direction: column;

        gap: 12px;

        margin-bottom: 18px;
    }


    .lookbook-caption {
        padding-bottom: 0;
    }

}
/* =========================================
   LOOKBOOK NUMBERING
========================================= */

.lookbook-number {
    position: absolute;

    left: 14px;
    bottom: 14px;

    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 34px;
    height: 24px;

    padding: 0 8px;

    border: 1px solid rgba(255, 255, 255, 0.14);

    background: rgba(0, 0, 0, 0.55);

    backdrop-filter: blur(6px);

    color: #bdbdbd;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.14em;

    transition:
        color 220ms ease,
        border-color 220ms ease;
}


.lookbook-item:hover
.lookbook-number {
    color: var(--cyan);

    border-color:
        rgba(227, 66, 52, 0.45);
}
/* =========================================
   BRAND STORY IMAGE
========================================= */

.brand-story-image-wrap {
    width: 100%;
    margin: 26px 0 34px;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: var(--radius-md);

    background: #0a0a0a;
}


.brand-story-image {
    display: none;

    width: 100%;
    height: clamp(320px, 48vw, 640px);

    object-fit: cover;

    transition:
        transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 500ms ease;
}


.brand-story-image-wrap:hover
.brand-story-image {
    transform: scale(1.02);

    filter: brightness(0.92);
}
/* =========================================
   BRAND STORY EDITORIAL LAYOUT
========================================= */

.brand-story-inner {
    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    gap: clamp(28px, 5vw, 72px);

    align-items: start;
}


.brand-story-label {
    grid-column: 1 / -1;
}


.brand-story-image-wrap {
    margin: 0;
}


.brand-story-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 100%;
}


.brand-story-title {
    max-width: 760px;

    font-size: var(--font-section-size);
    font-weight: 600;

    line-height: var(--line-section);

    letter-spacing: -0.045em;
}

.brand-story-copy {
    margin-top: 42px;

    max-width: 520px;
}


.brand-story-copy p {
    color: rgba(255, 255, 255, 0.68);

    font-size: var(--font-body-size);
    font-weight: 400;

    line-height: var(--line-body);
}

.brand-story-copy .text-link {
    display: inline-flex;

    margin-top: 28px;

    color: var(--cyan);

    font-size: var(--font-micro-size);
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


@media (max-width: 850px) {

    .brand-story-inner {
        grid-template-columns: 1fr;

        gap: 24px;
    }


    .brand-story-label,
    .brand-story-image-wrap,
    .brand-story-content {
        grid-column: 1;
    }


    .brand-story-image {
        height: clamp(320px, 90vw, 520px);
    }


    .brand-story-copy {
        margin-top: 24px;
    }

}
/* =========================================
   OUTKST / SOFT SURFACE SYSTEM
   Layout, visibility states and slider geometry remain owned by the rules above.
========================================= */
:root {
    color-scheme: dark;
    --accent: #E34234;
    --accent-readable: #ff8678;
    --cyan: var(--accent); /* Compatibility with existing markup and scripts. */
    --cyan-soft: rgba(227, 66, 52, 0.12);
    --cyan-glow: rgba(227, 66, 52, 0.22);
    --surface: linear-gradient(145deg, #2e3237, #25292d);
    --shadow-raised: 9px 9px 24px rgba(10, 12, 14, 0.48), -5px -5px 18px rgba(255, 255, 255, 0.035);
    --shadow-inset: inset 4px 4px 10px rgba(10, 12, 14, 0.42), inset -3px -3px 8px rgba(255, 255, 255, 0.035);
    --shadow-control: 4px 4px 10px rgba(10, 12, 14, 0.48), -3px -3px 9px rgba(255, 255, 255, 0.045);
}
body { background: radial-gradient(ellipse at 85% 0%, rgba(227,66,52,.045), transparent 38%), var(--bg); }
[hidden] { display: none !important; }
::selection { background: var(--accent); color: #17191b; }
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
    outline: 2px solid var(--accent-readable); outline-offset: 5px;
}
button:disabled { cursor: not-allowed; }
html { scroll-padding-top: calc(var(--header-height) + 24px); }
.site-header { background: rgba(32,35,38,.84); border-color: var(--line); backdrop-filter: blur(18px); }
.site-header.scrolled { background: rgba(32,35,38,.94); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.site-logo, .footer-logo, .mobile-menu-logo { color: var(--text); letter-spacing: -.055em; }
.desktop-navigation a { color: #bfc3c6; font-size: 11px; }
.announcement-bar { background: var(--panel); color: var(--text); border-bottom: 1px solid var(--line); }
.header-icon-button, .slider-button, .product-slider-controls .slider-button,
.collection-arrow, .bag-close-button, .product-modal-close, .collection-browser-close,
.lookbook-lightbox-close, .lookbook-lightbox-arrow, .checkout-close-button, .mobile-menu-close {
    background: var(--surface); border: 1px solid var(--line); color: var(--text);
    box-shadow: var(--shadow-control);
}
.header-icon-button { border-radius: 100px; }
.bag-count, .floating-bag-count { background: var(--accent); color: #17191b; font-weight: 700; }
.hero-section { background: #25292d; isolation: isolate; border-radius: 0 0 32px 32px; box-shadow: 0 18px 40px rgba(0,0,0,.22); }
.hero-shade { background: linear-gradient(90deg, rgba(20,23,26,.86), rgba(20,23,26,.48) 55%, rgba(20,23,26,.12)), linear-gradient(0deg, rgba(25,28,31,.8), transparent 65%); }
.hero-title { font-size: clamp(58px, 9vw, 140px); line-height: .9; letter-spacing: -.06em; text-wrap: balance; overflow-wrap: normal; }
.hero-description { max-width: 440px; font-size: clamp(14px,1.2vw,17px); color: #d0d1d1; line-height: 1.75; }
.hero-badge { color: var(--accent-readable); background: rgba(35,38,42,.7); border: 1px solid rgba(227,66,52,.28); border-radius: 100px; padding: 10px 15px; box-shadow: var(--shadow-inset); }
.hero-cta, .product-add-button, .checkout-button, .product-modal-add-button,
.place-order-button, .newsletter-submit, .continue-shopping-button {
    background: var(--accent); color: #17191b; border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius-sm); box-shadow: 5px 5px 16px rgba(10,12,14,.35), inset 0 1px 0 rgba(255,255,255,.2);
    min-height: 48px; font-weight: 700;
}
.hero-cta:hover, .product-add-button:hover, .checkout-button:hover,
.product-modal-add-button:hover:not(:disabled), .newsletter-submit:hover,
.continue-shopping-button:hover, .place-order-button:hover:not(:disabled) { background: #ee5547; color: #17191b; }
.product-view-button, .collection-empty-back { background: var(--surface); color: var(--accent-readable); border-color: var(--line-light); box-shadow: var(--shadow-control); }
.store-section { padding-top: clamp(64px,8vw,112px); padding-bottom: clamp(64px,8vw,112px); }
.section-title, .brand-story-title, .newsletter-title { font-size: clamp(34px,5vw,72px); line-height: 1.02; letter-spacing: -.045em; text-wrap: balance; }
.section-heading { gap: 24px; }
.section-eyebrow, .collection-browser-eyebrow, .bag-eyebrow, .checkout-eyebrow,
.product-slide-label, .text-link, .brand-story-copy .text-link, .collection-empty-eyebrow { color: var(--accent-readable); }
.product-slider-shell { padding-block: 18px; }
.product-slide-media { border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-inset); }
.product-slide-media img { padding: 12px; }
.product-slide-title { font-size: clamp(24px,3vw,38px); letter-spacing: -.035em; line-height: 1.1; }
.product-slide-price, .product-slide-description { color: var(--muted); }
.slider-progress { background: #191c1f; border-radius: 8px; box-shadow: var(--shadow-inset); overflow: hidden; }
.slider-progress-bar { background: var(--accent); border-radius: inherit; box-shadow: none; }
.collection-card, .collection-product-card, .lookbook-item, .brand-story-image-wrap {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-raised);
}
.collection-card-content { background: linear-gradient(0deg, rgba(22,25,28,.96), rgba(22,25,28,.08)); }
.collection-card h3 { letter-spacing: -.035em; }
.collection-number { color: #d0d3d5; }
.collection-product-image { background: #24282c; }
.collection-product-info { padding: 20px; align-items: baseline; flex-wrap: wrap; gap: 8px 16px; }
.collection-product-info h3 { font-size: 17px; line-height: 1.35; }
.collection-product-info p { color: var(--muted); font-size: 12px; }
.lookbook-section { background: transparent; }
.lookbook-caption, .collection-browser-count, .collection-empty-text,
.section-loading, .collection-browser-loading { color: var(--muted); }
.lookbook-hover-label, .collection-product-overlay span { background: rgba(32,35,38,.92); border-radius: 100px; color: var(--accent-readable); box-shadow: var(--shadow-control); }
.lookbook-number { border-radius: 8px; }
.brand-story-section { background: #24272b; border-block: 1px solid var(--line); padding-block: clamp(64px,8vw,112px); }
.brand-story-copy p { color: #bcc1c5; font-size: 15px; line-height: 1.85; }
.newsletter-section { background: var(--bg); padding-block: clamp(64px,9vw,128px); }
.newsletter-inner { padding: clamp(28px,5vw,64px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-raised); }
.newsletter-description { margin-inline: auto; color: var(--muted); }
.newsletter-form { background: #24272b; padding: 6px; border-radius: 16px; box-shadow: var(--shadow-inset); gap: 8px; }
.newsletter-form input { min-width: 0; color: var(--text); background: transparent; border-radius: 10px; }
.newsletter-form input::placeholder, .checkout-input::placeholder { color: #a9afb4; opacity: 1; }
.newsletter-submit { padding-inline: 24px; }
.site-footer { background: #1d2023; border-top: 1px solid var(--line); }
.footer-tagline, .footer-links-group a, .footer-bottom, .footer-legal a { color: #aeb4b9; }
.footer-heading { color: var(--text); font-size: 11px; }
.floating-bag-button { background: var(--surface); color: var(--text); border-color: var(--line-light); box-shadow: var(--shadow-raised); border-radius: 100px; }
.bag-drawer, .product-modal, .checkout-panel, .mobile-menu { background: var(--bg-soft); border-color: var(--line-light); box-shadow: 0 24px 80px rgba(0,0,0,.5); }
.product-modal { border-radius: var(--radius-lg); }
.bag-header, .bag-summary, .checkout-header, .checkout-summary { background: #282c30; border-color: var(--line); }
.bag-item { border-color: var(--line); }
.bag-item-image, .product-quick-view-media, .product-gallery-main { background: #22262a; border-radius: var(--radius-sm); }
.bag-item-meta, .bag-summary-note, .bag-empty, .bag-max-stock,
.product-quick-view-description, .product-option-label, .product-size-empty,
.checkout-item-meta, .checkout-section-label { color: var(--muted); }
.quantity-control, .checkout-input, .search-header input { background: #22262a; color: var(--text); border: 1px solid var(--line-light); border-radius: var(--radius-sm); box-shadow: var(--shadow-inset); }
.quantity-control button { min-width: 36px; min-height: 40px; color: var(--text); }
.bag-remove-button { color: #c5c9cc; }
.product-size-button { min-width: 46px; min-height: 46px; background: var(--surface); color: var(--text); border-color: var(--line-light); box-shadow: var(--shadow-control); border-radius: 10px; }
.product-size-button.selected { background: var(--cyan-soft); color: var(--accent-readable); border-color: var(--accent); box-shadow: var(--shadow-inset); }
.product-size-button:disabled, .product-modal-add-button:disabled, .place-order-button:disabled { opacity: .45; box-shadow: none; }
.product-gallery-thumbnail { border-radius: 10px; background: var(--panel); }
.product-quick-view-price { color: var(--accent-readable); }
.search-overlay { background: rgba(29,32,35,.98); }
.search-header input { padding: 16px; }
.collection-browser { background: var(--bg); }
.collection-browser-header { background: rgba(32,35,38,.95); }
.bag-overlay, .product-modal-overlay, .checkout-overlay, .collection-overlay { background: rgba(10,12,14,.72); backdrop-filter: blur(8px); }
.order-success { background: var(--bg); }
.order-success-inner { background: var(--surface); border-radius: var(--radius-lg); border-color: var(--line); box-shadow: var(--shadow-raised); }
.order-success-message, .order-reference { color: var(--muted); }
/* Progressive enhancement: text stays readable if animation setup is unavailable. */
.reveal-text, .reveal-item, .collection-product-reveal { opacity: 1; transform: none; }
.outkst-reveal-managed { transition: opacity 650ms ease, transform 750ms cubic-bezier(.22,1,.36,1); transition-delay: var(--reveal-delay, 0ms); }
.outkst-reveal-managed.outkst-reveal-pending { opacity: 0; transform: translateY(22px); }
.section-eyebrow.outkst-reveal-pending, .lookbook-caption.outkst-reveal-pending { transform: translate(12px, 10px); }
.section-title.outkst-reveal-pending, .brand-story-title.outkst-reveal-pending, .newsletter-title.outkst-reveal-pending { transform: translate(-10px, 22px) skewY(.7deg); }
.outkst-intro-active #hero .reveal-text:not(.revealed) { opacity: 0; transform: translateY(18px); }
#hero .reveal-text { transition-delay: var(--reveal-delay, 0ms); }
.site-intro { background: radial-gradient(ellipse at center, #2b3035, #202326 70%); transition: opacity 480ms ease, visibility 480ms ease; animation: introFailOpen 0s 4s forwards; }
.site-intro-inner { padding: 30px; overflow: visible; }
.site-intro-logo { animation: none; color: var(--text); text-shadow: 4px 5px 10px rgba(0,0,0,.3); }
.intro-letter { display: inline-block; opacity: 0; animation: introLetter 380ms cubic-bezier(.22,1,.36,1) both; animation-delay: var(--letter-delay,0ms); }
.site-intro-logo::after { content: ''; display: inline-block; width: .055em; height: .7em; margin-left: .03em; background: var(--accent); animation: introCursor 650ms steps(1) infinite; }
@keyframes introLetter { from { opacity: 0; transform: translateY(.16em); filter: blur(3px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes introCursor { 50% { opacity: 0; } }
@keyframes introFailOpen { to { opacity: 0; visibility: hidden; pointer-events: none; } }
@media (hover: hover) and (pointer: fine) {
    .collection-card:hover, .collection-product-card:hover { border-color: rgba(227,66,52,.35); box-shadow: var(--shadow-raised); }
    .header-icon-button:hover, .slider-button:hover, .product-slider-controls .slider-button:hover { background: var(--panel-hover); color: var(--accent-readable); border-color: rgba(227,66,52,.35); }
}
@media (max-width: 800px) {
    .header-actions { gap: 8px; }
    .header-icon-button { position: relative; width: 44px; height: 44px; min-width: 44px; padding: 0; }
    .header-bag-button { justify-content: center; }
    #search-button::before { content: ''; display: block; width: 13px; height: 13px; border: 1.5px solid currentColor; border-radius: 50%; position: absolute; left: 12px; top: 11px; }
    #search-button::after { content: ''; width: 7px; height: 1.5px; background: currentColor; position: absolute; left: 25px; top: 26px; transform: rotate(45deg); }
    .header-bag-button::before { content: ''; width: 15px; height: 15px; border: 1.5px solid currentColor; border-radius: 2px; }
    .header-bag-button::after { content: ''; position: absolute; width: 7px; height: 5px; border: 1.5px solid currentColor; border-bottom: 0; border-radius: 4px 4px 0 0; top: 10px; left: 17px; }
    .header-bag-button .bag-count { position: absolute; top: -3px; right: -3px; width: 18px; min-width: 18px; height: 18px; font-size: 9px; }
    .hero-section { border-radius: 0 0 24px 24px; }
    .hero-title { font-size: clamp(48px,10.5vw,84px); }
    .hero-content { padding-top: 124px; padding-bottom: 64px; }
    .newsletter-inner { padding: 32px 20px; border-radius: 24px; }
    .product-modal { border-radius: 22px; }
    .checkout-input, .newsletter-form input, .search-header input { font-size: 16px; }
    .lookbook-caption { line-height: 1.5; }
}
@media (max-width: 520px) {
    .hero-title { font-size: clamp(38px,10.3vw,54px); }
    .hero-badge { font-size: 10px; }
    .section-heading { gap: 16px; }
    .newsletter-form { grid-template-columns: 1fr; }
    .newsletter-form input { min-height: 52px; width: 100%; }
    .newsletter-submit { width: 100%; }
    .collection-product-info { padding: 16px; }
    .site-intro-logo { font-size: clamp(36px,10vw,52px); }
}
@media (hover: none) {
    .lookbook-hover-label, .collection-product-overlay { opacity: 1; }
    .collection-product-overlay { align-items: flex-end; padding-bottom: 16px; background: linear-gradient(transparent 60%,rgba(0,0,0,.3)); }
    .collection-product-overlay span { transform: none; }
    .lookbook-hover-label { top: auto; bottom: 16px; transform: translateX(-50%); white-space: nowrap; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-delay: 0ms !important; transition-delay: 0ms !important; animation-duration: .01ms !important; transition-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .reveal-text, .reveal-item, .collection-product-reveal, .outkst-reveal-managed.outkst-reveal-pending,
    .outkst-intro-active #hero .reveal-text:not(.revealed) { opacity: 1; transform: none; }
    .intro-letter { opacity: 1; transform: none; filter: none; }
    .site-intro-logo::after { display: none; }
    .hero-background, .lookbook-item:hover img, .product-slide:hover img,
    .collection-card:hover .collection-card-image, .brand-story-image-wrap:hover .brand-story-image { transform: none; }
}

/* Per-product measurement guides */
.sg-table-wrap { max-width:100%; overflow-x:auto; overscroll-behavior-x:contain; border:1px solid rgba(255,255,255,.12); border-radius:12px; margin:18px 0; }
.sg-table { width:100%; border-collapse:collapse; font-size:13px; text-align:left; color:#e8e9ea; }
.sg-table caption { padding:12px 16px; text-align:left; color:#b7bec3; font-size:12px; }
.sg-table th,.sg-table td { padding:13px 16px; border-bottom:1px solid rgba(255,255,255,.08); white-space:nowrap; }
.sg-table thead { background:rgba(255,255,255,.04); }
.sg-table th { font-weight:600; }
.sg-table tbody tr:last-child>* { border-bottom:0; }
.sg-table tbody tr:hover { background:rgba(227,66,52,.06); }
.sg-note,.sg-copy { color:#b7bec3; font-size:13px; line-height:1.75; white-space:pre-line; overflow-wrap:anywhere; }
.sg-units { display:flex; flex-wrap:wrap; align-items:center; gap:12px; margin-top:16px; font-size:12px; color:#b7bec3; }
.sg-units select { padding:10px; background:#24282c; color:#f3f0eb; border:1px solid #555; border-radius:8px; }
.sg-content section { margin-top:20px; }
.sg-content h3 { font-size:20px; letter-spacing:-.02em; }
.sg-content h4 { font-size:13px; margin-bottom:6px; color:#f3f0eb; }
.product-size-guide { margin:22px 0 0; border:1px solid rgba(255,255,255,.12); border-radius:12px; background:rgba(0,0,0,.1); }
.product-size-guide summary { padding:16px; color:#ff8678; font-size:13px; font-weight:600; cursor:pointer; min-height:48px; }
.product-size-guide summary:focus-visible,.sg-table-wrap:focus-visible { outline:2px solid #ff8678; outline-offset:3px; }
.product-size-guide[open] summary { border-bottom:1px solid rgba(255,255,255,.08); }
.sg-content { padding:18px; min-width:0; }
.product-quick-view-info { min-width:0; }
.sg-editor { min-width:0; }
.sg-editor fieldset { border:0; min-width:0; padding:0; margin-top:18px; }
.sg-editor fieldset>label { display:block; margin:18px 0; color:#ddd; font-size:13px; }
.sg-editor input:not([type=checkbox]),.sg-editor textarea,.sg-editor select { width:100%; display:block; padding:12px; margin-top:8px; background:#17191b; color:#eee; border:1px solid #444; border-radius:8px; font:inherit; }
.sg-editor textarea { min-height:88px; resize:vertical; }
.sg-editor input[type=checkbox] { margin-right:8px; }
.sg-edit-table input { min-width:110px; }
.sg-edit-table button { padding:8px; margin:6px 4px 0 0; font-size:11px; min-height:36px; }
.sg-preview:not(:empty) { margin-top:20px; padding:20px; background:#24282c; border:1px solid #444; border-radius:12px; }
.sg-editor :disabled { opacity:.5; cursor:not-allowed; }
.sg-editor [hidden] { display:none!important; }
@media(max-width:600px){.sg-units select,.sg-editor input:not([type=checkbox]),.sg-editor textarea,.sg-editor select {font-size:16px;} .sg-content {padding:14px;} .sg-table th,.sg-table td {padding:12px;} }

/* Search results */
.search-overlay { overflow-y:auto; overscroll-behavior:contain; }
.search-header { gap:12px; align-items:center; }
.search-header input { font-size:clamp(20px,4vw,40px); }
.search-header input::placeholder { color:#a9afb4; }
.search-header button { min-height:48px; color:#ddd; }
.search-status { color:#b7bec3; font-size:13px; margin-top:20px; line-height:1.6; }
.search-results { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; padding-block:20px; }
.search-product { display:flex; align-items:center; gap:16px; min-width:0; width:100%; padding:14px; text-align:left; color:var(--text); background:var(--surface,#292d31); border:1px solid var(--line-light); border-radius:16px; box-shadow:var(--shadow-control); }
.search-product:hover { border-color:#E34234; }
.search-product img { width:76px; height:92px; object-fit:contain; border-radius:8px; background:#222; flex-shrink:0; }
.search-product>span { display:grid; gap:10px; min-width:0; }
.search-product strong { font-size:15px; overflow-wrap:anywhere; }
.search-product span span { font-size:13px; color:#b7bec3; }
.search-more { grid-column:1/-1; min-height:48px; padding:12px 20px; border:1px solid var(--line-light); border-radius:12px; background:var(--panel); color:var(--text); }
@media(max-width:600px){.search-overlay{padding:18px;}.search-panel{margin:12px auto;}.search-results{grid-template-columns:1fr;}.search-header button{width:44px;}}
/* =========================================
   PRODUCT DELIVERY DETAILS
========================================= */

.product-delivery-details {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line-light);
}


.product-delivery-heading {
    margin-bottom: 16px;

    color: var(--accent-readable);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}


.product-delivery-row {
    display: grid;
    grid-template-columns: 135px minmax(0, 1fr);
    gap: 18px;

    padding: 11px 0;

    border-bottom: 1px solid var(--line);
}


.product-delivery-row:last-child {
    border-bottom: none;
}


.product-delivery-label {
    color: var(--muted-soft);

    font-size: 11px;
    font-weight: 600;

    line-height: 1.5;
}


.product-delivery-value {
    color: var(--text);

    font-size: 12px;
    line-height: 1.6;

    overflow-wrap: anywhere;
}


@media (max-width: 600px) {

    .product-delivery-details {
        margin-top: 24px;
        padding-top: 20px;
    }


    .product-delivery-row {
        grid-template-columns: 1fr;
        gap: 4px;

        padding: 10px 0;
    }


    .product-delivery-label {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

}
/* =========================================
   LOW STOCK LABEL
========================================= */

.product-low-stock {
    width: fit-content;

    margin-top: 8px;
    padding: 6px 9px;

    border: 1px solid rgba(227, 66, 52, 0.35);
    border-radius: 999px;

    background: rgba(227, 66, 52, 0.08);
    color: var(--accent-readable);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}
/* =========================================
   CHECKOUT PROMO CODE
========================================= */

.checkout-promo-section {
    margin-top: 24px;
}


.checkout-promo-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}


.checkout-promo-controls .checkout-input {
    margin-bottom: 0;
}


.checkout-promo-apply {
    min-width: 90px;
    padding: 0 18px;

    border: 1px solid var(--line-light);
    border-radius: var(--radius-sm);

    background: var(--surface);
    color: var(--text);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    cursor: pointer;
}


.checkout-promo-apply:hover {
    border-color: var(--accent);
    color: var(--accent-readable);
}


.checkout-promo-message {
    min-height: 16px;

    margin-top: 8px;

    color: var(--muted);

    font-size: 10px;
    line-height: 1.5;
}


.checkout-promo-discount-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 14px;
    padding-top: 14px;

    border-top: 1px solid var(--line);

    font-size: 11px;
}


.checkout-promo-discount-row strong {
    color: var(--accent-readable);
}


@media (max-width: 480px) {

    .checkout-promo-controls {
        grid-template-columns: 1fr;
    }


    .checkout-promo-apply {
        min-height: 44px;
    }

}
/* =========================================
   ORDER TRACKING
========================================= */

.order-tracking-section {
    padding: clamp(70px, 9vw, 120px) 24px;

    border-top: 1px solid var(--line);

    background: var(--bg);
}


.order-tracking-inner {
    width: min(820px, 100%);
    margin: 0 auto;
}


.order-tracking-heading {
    max-width: 620px;
    margin-bottom: 34px;
}


.order-tracking-heading h2 {
    margin-top: 8px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(36px, 5vw, 64px);
    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.045em;
}


.order-tracking-description {
    max-width: 520px;

    margin-top: 16px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;
}


.order-tracking-form {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr)
        auto;

    gap: 12px;

    align-items: end;
}


.order-tracking-form label {
    display: block;

    margin-bottom: 8px;

    color: var(--muted);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.order-tracking-form input {
    width: 100%;
    min-height: 50px;

    padding: 0 15px;

    border: 1px solid var(--line-light);
    border-radius: var(--radius-sm);

    outline: none;

    background: var(--surface);
    color: var(--text);

    box-shadow: var(--shadow-inset);
}


.order-tracking-form input:focus {
    border-color: var(--accent);
}


#track-order-button {
    min-height: 50px;

    padding: 0 24px;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius-sm);

    background: var(--accent);
    color: #17191b;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    cursor: pointer;
}


.order-tracking-message {
    min-height: 18px;

    margin-top: 14px;

    color: var(--muted);

    font-size: 11px;
}


.order-tracking-result {
    margin-top: 26px;

    padding: 24px;

    border: 1px solid var(--line);
    border-radius: var(--radius-md);

    background: var(--surface);

    box-shadow: var(--shadow-raised);
}


@media (max-width: 720px) {

    .order-tracking-form {
        grid-template-columns: 1fr;
    }


    #track-order-button {
        width: 100%;
    }

}
/* =========================================
   ORDER TRACKING RESULT
========================================= */

.order-tracking-message.success {
    color: var(--accent-readable);
}


.order-tracking-message.error {
    color: #ff7777;
}


#track-order-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}


.order-tracking-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--line);
}


.order-tracking-small-label {
    display: block;

    margin-bottom: 6px;

    color: var(--muted);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.order-tracking-reference {
    font-size: 16px;

    letter-spacing: 0.04em;
}


.order-tracking-status {
    padding: 7px 10px;

    border: 1px solid rgba(227, 66, 52, 0.35);
    border-radius: 999px;

    background: rgba(227, 66, 52, 0.08);
    color: var(--accent-readable);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.12em;
}


.order-tracking-status.cancelled {
    border-color: rgba(255, 119, 119, 0.3);

    color: #ff7777;
}


.order-tracking-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 32px;
}


.order-tracking-step {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;

    color: var(--muted);

    text-align: center;
}


.order-tracking-step:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 7px;
    left: calc(50% + 11px);

    width: calc(100% - 22px);
    height: 1px;

    background: var(--line-light);
}


.order-tracking-dot {
    position: relative;
    z-index: 2;

    width: 15px;
    height: 15px;

    border: 2px solid var(--line-light);
    border-radius: 50%;

    background: var(--surface);
}


.order-tracking-step.complete {
    color: var(--text);
}


.order-tracking-step.complete
.order-tracking-dot {
    border-color: var(--accent);
    background: var(--accent);
}


.order-tracking-step.complete:not(:last-child)::after {
    background: var(--accent);
}


.order-tracking-step.current
.order-tracking-dot {
    box-shadow:
        0 0 0 5px
        rgba(227, 66, 52, 0.1);
}


.order-tracking-step-label {
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.05em;
}


.order-tracking-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

    margin-top: 30px;
    padding-top: 22px;

    border-top: 1px solid var(--line);
}


.order-tracking-info > div {
    display: flex;
    flex-direction: column;

    gap: 6px;
}


.order-tracking-info span {
    color: var(--muted);

    font-size: 9px;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.order-tracking-info strong {
    font-size: 12px;
}


.order-tracking-cancelled {
    margin-top: 26px;
    padding: 16px;

    border: 1px solid rgba(255, 119, 119, 0.25);
    border-radius: var(--radius-sm);

    color: #ff7777;

    font-size: 12px;
}


@media (max-width: 600px) {

    .order-tracking-progress {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .order-tracking-step {
        flex-direction: row;

        justify-content: flex-start;

        text-align: left;
    }


    .order-tracking-step:not(:last-child)::after {
        display: none;
    }


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

}
/* =========================================
   ORDER SUCCESS - REFERENCE REMINDER
========================================= */

.order-success .order-reference {
    max-width: 520px;

    margin-top: 22px;
    padding: 16px 18px;

    border: 1px solid rgba(227, 66, 52, 0.35);
    border-radius: var(--radius-sm);

    background: rgba(227, 66, 52, 0.08);
    color: var(--text);

    font-size: 11px;
    font-weight: 700;
    line-height: 1.7;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.copy-order-reference-button {
    margin-top: 12px;
    padding: 11px 18px;

    border: 1px solid var(--line-light);
    border-radius: var(--radius-sm);

    background: var(--surface);
    color: var(--text);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        border-color 160ms ease,
        color 160ms ease,
        background 160ms ease;
}


.copy-order-reference-button:hover {
    border-color: var(--accent);
    color: var(--accent-readable);
}


.copy-order-reference-button[hidden] {
    display: none;
}

/* =========================================
   STOREFRONT MOTION / original palette and layout
========================================= */
.site-header::after {
    content: '';
    position: absolute;
    inset: auto 0 -1px;
    height: 2px;
    background: var(--cyan);
    transform: scaleX(var(--outkst-scroll-progress, 0));
    transform-origin: left;
    pointer-events: none;
}
.desktop-navigation a[aria-current="location"] { color: var(--text); }
.desktop-navigation a[aria-current="location"]::after { right: 0; }
.mobile-navigation a[aria-current="location"] { color: var(--accent-readable, var(--cyan)); }

.outkst-motion-word {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    vertical-align: top;
}
/* The words own heading motion; avoid combining it with a second parent transition. */
:is(.hero-title, .section-title, .brand-story-title, .newsletter-title).outkst-reveal-managed {
    transition: none;
    transform: none;
}
.outkst-reveal-managed { transition-duration: 620ms, 850ms; }
.outkst-reveal-managed.outkst-reveal-pending { transform: translateY(26px); }
:is(.hero-title, .section-title, .brand-story-title, .newsletter-title).outkst-reveal-pending { transform: none; }
.outkst-reveal-managed:focus-within { opacity: 1; transform: none; transition: none; }

.section-heading, .lookbook-header { position: relative; }
:is(.section-heading, .lookbook-header).outkst-reveal-managed { opacity: 1; transform: none; }
:is(.section-heading, .lookbook-header)::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -16px;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan) 0 52px, var(--line-light) 52px);
    transform-origin: left;
    transform: scaleX(1);
    transition: transform 1000ms cubic-bezier(.22,1,.36,1);
    pointer-events: none;
}
:is(.section-heading, .lookbook-header).outkst-reveal-pending::after { transform: scaleX(0); }
.collection-card.outkst-reveal-pending .collection-card-image,
.lookbook-item.outkst-reveal-pending > img { transform: scale(1.07); }

@media (prefers-reduced-motion: no-preference) and (min-width: 900px) and (hover: hover) and (pointer: fine) {
    .outkst-depth-enabled .outkst-depth-media {
        translate: 0 var(--outkst-depth-y, 0px);
        scale: 1.065;
    }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
    .collection-card, .lookbook-item, .collection-product-card {
        transition: opacity 620ms ease, transform 850ms cubic-bezier(.22,1,.36,1),
                    border-color 220ms ease, box-shadow 300ms ease;
    }
    .collection-card.revealed:hover, .lookbook-item.revealed:hover,
    .collection-product-card.visible:hover {
        transform: translateY(-5px);
        border-color: rgba(227,66,52,.4);
        box-shadow: 0 18px 36px rgba(10,12,14,.3);
        transition-delay: 0ms;
    }
    .collection-card.revealed:active, .lookbook-item.revealed:active { transform: translateY(-1px); }
    .product-add-button, .product-view-button, .newsletter-submit, .slider-button {
        transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }
    .product-add-button:hover, .product-view-button:hover, .newsletter-submit:hover { transform: translateY(-2px); }
    .product-add-button:active, .product-view-button:active, .newsletter-submit:active { transform: translateY(0); }
    .slider-button:hover:not(:disabled) { transform: translateY(-2px); }
    .footer-links-group a { transition: color 200ms ease; }
    .footer-links-group a:hover { color: var(--accent-readable, var(--cyan)); }
}

@media (max-width: 899px) {
    .outkst-reveal-managed.outkst-reveal-pending { transform: translateY(14px); }
    :is(.hero-title, .section-title, .brand-story-title, .newsletter-title, .section-heading, .lookbook-header).outkst-reveal-pending { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
    .outkst-reveal-managed.outkst-reveal-pending { opacity: 1; transform: none; }
    .outkst-depth-media { translate: none; scale: none; }
    .outkst-motion-word { opacity: 1; transform: none; clip-path: none; }
    :is(.section-heading, .lookbook-header)::after { transform: none; transition: none; }
    .collection-card.outkst-reveal-pending .collection-card-image,
    .lookbook-item.outkst-reveal-pending > img { transform: none; }
}
