.limited-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid #e53935;
    background: #fff8f8;
    color: #e53935;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 8px;
}
/* removed stray closing brace */
@media (max-width: 700px) {
    .site-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .site-header > .branding {
        flex: 1 1 auto;
        min-width: 0;
    }
    .nav-toggle, .language-switcher {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        align-self: center;
    }
    .site-header > .nav-toggle, .site-header > .language-switcher {
        order: 2;
    }
    .site-header > .site-nav {
        order: 3;
        width: 100%;
    }
}
/* About page styles */
.about-page .about-images {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}
.about-page .about-image-row {
    display: flex;
    flex-direction: row;
    width: 100vw;
    margin: 0;
    padding: 0;
}
.about-page .about-img {
    width: 50vw;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    object-fit: cover;
}
@media (max-width: 700px) {
    .about-page .about-image-row {
        flex-direction: column;
    }
    .about-page .about-img {
        width: 100vw;
        max-width: 100vw;
    }
}
:root {
    color-scheme: light;
    --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --bg: #f6f5f3;
    --surface: rgba(255, 255, 255, 0.9);
    --text: #1c1a19;
    --muted: #6b6a68;
    --accent: #c96f47;
    --accent-dark: #9a4e2d;
    --border: rgba(28, 26, 25, 0.08);
    --shadow: 0 24px 48px rgba(28, 26, 25, 0.08);
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

.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;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background:
        radial-gradient(150% 150% at 85% 0%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(165deg, #ffffff 0%, #f5f1ec 48%, #f7f5f1 100%);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: -80px;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 210, 148, 0.28) 0%, rgba(255, 210, 148, 0) 52%),
        radial-gradient(circle at 82% 12%, rgba(173, 196, 255, 0.22) 0%, rgba(173, 196, 255, 0) 48%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.55) 65%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: -1;
}

body.look {
    --accent: #ff6f61;
    --accent-dark: #ff2f87;
    --accent-soft: rgba(255, 111, 97, 0.22);
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: rgba(255, 255, 255, 0.97);
    --ink: #140f1a;
    --ink-muted: rgba(20, 15, 26, 0.64);
    --panel-border: rgba(20, 15, 26, 0.08);
    --card-shadow: 0 30px 60px rgba(71, 54, 92, 0.18);
    background:
        radial-gradient(140% 120% at 12% 8%, rgba(255, 203, 219, 0.55) 0%, rgba(255, 203, 219, 0) 52%),
        radial-gradient(120% 130% at 85% 6%, rgba(202, 213, 255, 0.45) 0%, rgba(202, 213, 255, 0) 48%),
        linear-gradient(160deg, #fff6fb 0%, #f8f5ff 58%, #ffffff 100%);
    color: var(--ink);
}

body.look::before {
    background:
        conic-gradient(from 120deg at 20% 15%, rgba(255, 209, 229, 0.4) 0%, rgba(255, 209, 229, 0) 38%, rgba(202, 213, 255, 0.26) 52%, rgba(255, 255, 255, 0) 100%),
        radial-gradient(circle at 82% 8%, rgba(255, 182, 215, 0.28) 0%, rgba(255, 182, 215, 0) 60%),
        radial-gradient(circle at 50% 92%, rgba(186, 204, 255, 0.22) 0%, rgba(186, 204, 255, 0) 65%);
}

body.look-dawn {
    --accent: #eadf9f;
    --accent-dark: #c9c274;
    --accent-soft: rgba(234, 223, 159, 0.26);
    --accent-secondary: #c9c274;
    --ink: #0a0f24;
    --ink-muted: rgba(10, 15, 36, 0.6);
    --panel-border: rgba(201, 194, 116, 0.38);
    --card-shadow: 0 26px 60px rgba(201, 194, 116, 0.22);
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: rgba(255, 255, 255, 0.97);
    background: #ffffff;
}

body.look-dawn::before {
    background: #ffffff;
}

body.look-noir {
    --accent: #F4C2C2;
    --accent-dark: #ffaad6;
    --accent-soft: rgba(255, 170, 214, 0.3);
    --accent-secondary: #ffaad6;
    --ink: #060915;
    --ink-muted: rgba(6, 9, 21, 0.55);
    --panel-border: rgba(255, 170, 214, 0.34);
    --card-shadow: 0 28px 70px rgba(255, 170, 214, 0.24);
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: rgba(255, 255, 255, 0.97);
    background: #ffffff;
}

body.look-noir::before {
    background: #ffffff;
}

body.look-terra {
    --accent: #B0A4B8;
    --accent-dark: #9f958f;
    --accent-soft: rgba(159, 149, 143, 0.32);
    --accent-secondary: #9f958f;
    --ink: #120800;
    --ink-muted: rgba(18, 8, 0, 0.58);
    --panel-border: rgba(159, 149, 143, 0.38);
    --card-shadow: 0 30px 80px rgba(159, 149, 143, 0.28);
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: rgba(255, 255, 255, 0.97);
    background: #ffffff;
}

body.look-terra::before {
    background: #ffffff;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
    flex-wrap: wrap;
    padding: 18px clamp(20px, 4vw, 60px);
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(246, 245, 243, 0.85);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.home .site-header {
    background: rgba(255, 255, 255, 0.92);
    color: inherit;
    border-bottom: 1px solid rgba(28, 26, 25, 0.06);
    box-shadow: 0 16px 40px rgba(28, 26, 25, 0.08);
}

.home .tagline {
    color: rgba(28, 26, 25, 0.55);
}

.home .cart-toggle {
    border-color: rgba(28, 26, 25, 0.08);
    background: rgba(255, 255, 255, 0.8);
    color: inherit;
}

.home .cart-toggle:hover {
    box-shadow: 0 12px 30px rgba(28, 26, 25, 0.18);
}

.branding {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 48.3px;
    height: 48.3px;
    object-fit: contain;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(28, 26, 25, 0.12);
    background: var(--surface);
    color: inherit;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(28, 26, 25, 0.12);
}

.nav-toggle:focus-visible {
    outline: 2px solid rgba(28, 26, 25, 0.28);
    outline-offset: 4px;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    display: block;
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle-icon {
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav-toggle-icon::before {
    content: "";
    top: -6px;
    transform: translateX(-50%);
}

.nav-toggle-icon::after {
    content: "";
    top: 6px;
    transform: translateX(-50%);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
    transform: translate(-50%, 0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    transform: translate(-50%, 0) rotate(-45deg);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(16px, 3vw, 34px);
    flex-wrap: wrap;
    margin-left: auto;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: inherit;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 10px 24px rgba(28, 26, 25, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(28, 26, 25, 0.1);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 24px rgba(28, 26, 25, 0.08);
    margin-left: clamp(12px, 2vw, 18px);
}

.language-button {
    appearance: none;
    border: none;
    background: transparent;
    font: inherit;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: inherit;
    padding: 4px 10px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.language-button:hover,
.language-button:focus-visible {
    background: rgba(201, 111, 71, 0.12);
    outline: none;
}

.language-button.is-active {
    background: var(--accent);
    color: #fff;
}

.home .site-nav a {
    background: rgba(255, 255, 255, 0.72);
}

.site-nav a:not(.cart-link):hover {
    transform: translateY(-2px);
    border-color: rgba(28, 26, 25, 0.16);
    box-shadow: 0 16px 36px rgba(28, 26, 25, 0.16);
    background: rgba(255, 255, 255, 0.9);
}

.site-nav a.cart-link {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 18px 36px rgba(201, 111, 71, 0.32);
}

.site-nav a.cart-link.is-pulse {
    animation: cartPulse 1.2s ease;
}

.site-nav a.cart-link:hover {
    transform: translateY(-2px);
    background: var(--accent-dark);
}

.site-nav a.cart-link .cart-count {
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

@keyframes cartPulse {
    0% {
        box-shadow: 0 18px 36px rgba(201, 111, 71, 0.32);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 0 0 18px rgba(201, 111, 71, 0.16);
        transform: translateY(-2px);
    }
    100% {
        box-shadow: 0 18px 36px rgba(201, 111, 71, 0.32);
        transform: translateY(0);
    }
}

.logo-mark {
    display: block;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.95rem;
    text-decoration: none;
    color: inherit;
}

.collection-hero {
    margin: 0 0 clamp(32px, 6vw, 68px);
}

.collection-hero-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-position: center;
    border-radius: clamp(18px, 4vw, 32px);
    box-shadow: 0 24px 60px rgba(28, 26, 25, 0.16);
}

@media (max-width: 1100px) {
    .collection-hero-image {
        max-height: clamp(320px, 70vw, 700px);
        object-fit: cover;
    }
}

@media (max-width: 600px) {
    .collection-hero {
        margin-bottom: clamp(20px, 10vw, 36px);
    }

    .collection-hero-image {
        max-height: clamp(200px, 65vw, 420px);
        border-radius: clamp(16px, 8vw, 24px);
    }
}

.cart-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-left: auto;
}

.cart-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(28, 26, 25, 0.12);
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}

main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(60px, 10vw, 120px);
    padding: 0 clamp(20px, 4vw, 60px) clamp(40px, 6vw, 80px);
}


.home main {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 32px 32px 0 0;
    margin-top: clamp(24px, 4vw, 60px);
    padding-top: clamp(36px, 6vw, 80px);
    box-shadow: 0 24px 70px rgba(198, 191, 183, 0.28);
}

@media (max-width: 720px) {
    .home main {
        margin-top: clamp(12px, 5vw, 36px);
        padding-top: clamp(18px, 9vw, 36px);
    }
}

body.look main {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: clamp(20px, 5vw, 70px) clamp(20px, 5vw, 70px) clamp(60px, 8vw, 120px);
    gap: clamp(48px, 9vw, 100px);
    align-items: center;
}


.section-heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: clamp(24px, 4vw, 48px);
}

.section-heading h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    max-width: 420px;
}

.outfit-grid {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 244, 238, 0.78) 100%);
    padding: clamp(16px, 5vw, 40px);
    border-radius: 28px;
    color: var(--text);
    box-shadow: 0 34px 70px rgba(198, 191, 183, 0.28);
}

#collection,
#faq,
#contact {
    scroll-margin-top: clamp(90px, 14vh, 160px);
}

.outfit-grid .grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(28, 26, 25, 0.08);
}

.outfit-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.outfit-card:hover {
    transform: translateY(-4px);
}

.outfit-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top;
}

.outfit-card + .outfit-card {
    border-left: 1px solid rgba(28, 26, 25, 0.08);
}

.card-body {
    padding: clamp(20px, 3vw, 30px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.card-title-row .limited-badge {
    margin: 0;
}

.card-body .limited-badge {
    margin: 0;
}

.card-body h3 {
    margin: 0;
    font-size: 1.2rem;
}

.card-body p {
    margin: 0;
    color: var(--muted);
}

.card-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-weight: 600;
}

.stock-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(28, 26, 25, 0.12);
    background: rgba(255, 255, 255, 0.85);
    color: rgba(28, 26, 25, 0.58);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 12px 0 0;
}

body.look .stock-chip {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(28, 26, 25, 0.16);
    color: var(--ink-muted);
}

.price-tag {
    font-size: 1.1rem;
}

.card-cta {
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.card-cta::after {
    content: "→";
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.outfit-card:hover .card-cta::after {
    transform: translateX(4px);
}

.faq, .contact {
    background: var(--surface);
    border-radius: var(--radius);
    padding: clamp(24px, 3vw, 40px);
    box-shadow: var(--shadow);
}

.faq details {
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.faq details:last-of-type {
    border-bottom: none;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(16px, 3vw, 28px);
    margin-top: clamp(18px, 3vw, 28px);
}

.contact-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: clamp(16px, 3vw, 24px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 16px 32px rgba(28, 26, 25, 0.08);
}

.contact-card h3 {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(28, 26, 25, 0.6);
}

.contact-link {
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    word-break: break-word;
}

.contact-link--with-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-link--with-icon .contact-link-label {
    display: inline-block;
}

.contact-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-link:hover {
    color: var(--accent);
}

.contact-card p {
    margin: 0;
    color: rgba(28, 26, 25, 0.62);
    font-size: 0.9rem;
}

.contact-button {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(201, 111, 71, 0.28);
}

.contact-button:hover {
    background: var(--accent-dark);
}

.site-footer {
    padding: 24px clamp(20px, 4vw, 60px) 48px;
    text-align: center;
    color: var(--muted);
}

/* Look pages */

body.look .look-layout {
    --look-column-gap: clamp(24px, 2.6vw, 30px);
    --look-row-gap: clamp(22px, 3vw, 30px);
    display: grid;
    column-gap: var(--look-column-gap);
    row-gap: var(--look-row-gap);
    grid-template-columns: minmax(0, clamp(710px, 58vw, 840px)) minmax(320px, 1fr);
    grid-template-rows: auto;
    padding: clamp(28px, 5vw, 60px);
    flex: 1 1 auto;
    align-items: start;
    background: var(--surface);
    border-radius: 34px;
    border: 1px solid var(--panel-border);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    max-width: calc(clamp(710px, 58vw, 840px) + var(--look-column-gap) + 680px);
}

body.look .look-layout::after {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

body.look .look-gallery {
    display: grid;
    grid-template-columns: minmax(520px, 1fr) minmax(160px, 240px);
    grid-template-areas: "stage thumbs";
    column-gap: var(--look-column-gap);
    row-gap: var(--look-row-gap);
    grid-column: 1 / 2;
    align-items: stretch;
    justify-self: start;
    width: 100%;
    max-width: clamp(710px, 58vw, 840px);
}

.gallery-thumbs {
    grid-area: thumbs;
}

.gallery-stage {
    grid-area: stage;
}

@media (min-width: 1400px) {
    body.look .look-gallery {
        grid-template-columns: minmax(640px, 1fr) minmax(180px, 260px);
    }

    .gallery-stage {
        min-height: 640px;
        max-height: clamp(640px, 78vh, 1200px);
    }
}


.gallery-stage {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius) + 12px);
    box-shadow: 0 32px 80px rgba(186, 176, 164, 0.28);
    border: 1px solid rgba(20, 15, 26, 0.08);
    background: #ffffff;
    touch-action: pan-y;
    aspect-ratio: 4 / 5;
    min-height: 560px;
    max-height: clamp(560px, 82vh, 1200px);
    grid-area: stage;
    justify-self: stretch;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-stage img {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.gallery-index {
    position: absolute;
    bottom: 18px;
    right: 20px;
    background: rgba(255, 255, 255, 0.88);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(20, 15, 26, 0.6);
    border: 1px solid rgba(20, 15, 26, 0.08);
}

.gallery-thumbs {
    --thumb-size-desktop: 150px;
    --thumb-size-current: var(--thumb-size-desktop);
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1vw, 12px);
    padding: clamp(6px, 1vw, 12px);
    border-radius: calc(var(--radius) - 6px);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(20, 15, 26, 0.08);
    box-shadow: 0 22px 60px rgba(186, 176, 164, 0.2);
    backdrop-filter: blur(6px);
    align-items: stretch;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: clamp(345px, 66.7vh, 943px);
    min-height: clamp(276px, 59.8vh, 874px);
    max-width: min(var(--thumb-size-desktop), 22vw);
    grid-area: thumbs;
    justify-content: flex-start;
    width: 100%;
}

.gallery-thumb {
    border: 1px solid rgba(20, 15, 26, 0.12);
    border-radius: calc(var(--radius) - 8px);
    padding: 0;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    display: block;
    flex: 0 0 auto;
    max-width: 100%;
}

.gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.gallery-thumb:is(:hover, :focus-visible) {
    border-color: var(--accent);
    box-shadow: 0 14px 34px rgba(186, 176, 164, 0.28);
    transform: translateY(-2px);
    outline: none;
}

.gallery-thumb.is-active {
    border-color: var(--accent);
    box-shadow: 0 16px 40px rgba(186, 176, 164, 0.32);
    transform: translateY(-3px);
}

@media (max-width: 1220px) {
    body.look .look-layout {
        grid-template-columns: minmax(0, clamp(660px, 60vw, 760px)) minmax(280px, 1fr);
    }
}

@media (max-width: 960px) {
    body.look .look-layout {
        --look-column-gap: clamp(20px, 6vw, 30px);
        --look-row-gap: clamp(22px, 6vw, 30px);
        display: flex;
        flex-direction: column;
        gap: clamp(24px, 7vw, 30px);
        padding: clamp(20px, 7vw, 40px);
        overflow: visible;
    }

    body.look .look-gallery {
        display: flex;
        flex-direction: column;
        gap: clamp(22px, 6vw, 30px);
        width: 100%;
    }

    .gallery-thumbs {
        --thumb-size-current: calc(var(--thumb-size-desktop) * 0.75);
        order: 2;
        flex-direction: row;
        gap: clamp(8px, 3.6vw, 16px);
        overflow-x: auto;
        overflow-y: hidden;
        padding: clamp(8px, 3.2vw, 14px);
        max-height: none;
        min-height: auto;
        height: auto;
        max-width: none;
        width: 100%;
        border-radius: calc(var(--radius) - 4px);
    }

    .gallery-thumb {
        flex: 0 0 min(var(--thumb-size-current), 34vw);
        width: min(var(--thumb-size-current), 34vw);
        height: min(calc(var(--thumb-size-current) * 1.25), 45vw);
    }

    .gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-stage {
        order: 1;
        margin-top: 0;
        width: 100%;
        max-width: none;
        min-height: 0;
        height: auto;
        aspect-ratio: 3 / 4;
        box-shadow: 0 22px 60px rgba(186, 176, 164, 0.22);
    }

    .gallery-stage img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    body.look .look-details {
        order: 3;
        max-width: none;
        width: 100%;
        margin-top: 0;
        padding: clamp(20px, 7vw, 32px);
    }

    .piece-toggle {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .piece-toggle button {
        width: clamp(100px, 32vw, 132px);
    }
}

@media (max-width: 600px) {
    .gallery-thumbs {
        --thumb-size-current: calc(var(--thumb-size-desktop) * 0.5);
    }

    .gallery-thumb {
        flex: 0 0 min(var(--thumb-size-current), 38vw);
        width: min(var(--thumb-size-current), 38vw);
        height: min(calc(var(--thumb-size-current) * 1.25), 48vw);
    }

    .piece-toggle button {
        width: clamp(66px, 32vw, 66px);
    }
}

@media (max-width: 440px) {
    .gallery-thumbs {
        --thumb-size-current: calc(var(--thumb-size-desktop) * 0.45);
    }

    .gallery-thumb {
        flex: 0 0 min(var(--thumb-size-current), 42vw);
        width: min(var(--thumb-size-current), 42vw);
        height: min(calc(var(--thumb-size-current) * 1.25), 52vw);
    }

    .gallery-thumbs {
        gap: clamp(6px, 4vw, 12px);
        padding: clamp(6px, 4vw, 12px);
    }

    .piece-toggle button {
        width: clamp(60px, 38vw, 60px);
    }
}

body.look .look-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 680px;
    position: relative;
    background: var(--surface-strong);
    border-radius: 28px;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--panel-border);
    box-shadow: var(--card-shadow);
    z-index: 1;
    grid-column: 2;
    width: 100%;
    justify-self: stretch;
}

body.look .look-details::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 65%);
    pointer-events: none;
}

.back-link {
    text-decoration: none;
    color: var(--accent);
    font-weight: 600;
    align-self: flex-start;
}

.piece-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.piece-toggle button {
    appearance: none;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    color: var(--ink-muted);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    padding: 10px;
    text-transform: uppercase;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
    width: clamp(92px, 12vw, 132px);
    align-items: center;
    flex: 0 0 auto;
    box-shadow: 0 14px 32px rgba(186, 176, 164, 0.18);
}

.piece-toggle button img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(20, 15, 26, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.piece-toggle button .piece-label {
    display: block;
    text-align: center;
}

.piece-toggle button:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    color: var(--ink);
    box-shadow: 0 18px 40px rgba(186, 176, 164, 0.26);
}

.piece-toggle button.is-active {
    border-color: var(--accent);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.74) 100%);
    color: var(--ink);
    box-shadow: 0 20px 46px rgba(201, 111, 71, 0.28);
}

.piece-toggle button:focus-visible {
    outline: 2px solid rgba(201, 111, 71, 0.45);
    outline-offset: 3px;
}

@media (max-width: 600px) {
    .piece-toggle {
        gap: 12px;
    }

    .piece-toggle button {
        width: clamp(90px, 32vw, 136px);
    }
}


.look-heading {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

.look-heading .look-label {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.75rem;
    color: var(--ink-muted);
}

.look-details h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0;
}

.look-details .subtitle {
    color: var(--ink-muted);
    font-size: 1rem;
    max-width: 420px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.stock-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 0;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(176, 45, 45, 0.24);
    background: rgba(176, 45, 45, 0.12);
    color: #9c2323;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.stock-indicator:empty,
.stock-indicator[hidden] {
    display: none !important;
}

.availability {
    font-size: 0.95rem;
    color: var(--ink-muted);
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
}

.description {
    color: var(--ink-muted);
    line-height: 1.6;
}

.outfit-story {
    color: var(--ink-muted);
    line-height: 1.6;
    font-size: 1rem;
    margin: 8px 0 14px;
}

.description {
    font-size: 1rem;
    margin: 4px 0 14px;
}

.feature-list {
    padding-left: 20px;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--ink-muted);
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.look-metrics {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.look-options {
    display: grid;
    gap: 16px;
}

.size-picker {
    margin: 0;
    padding: clamp(16px, 3vw, 22px);
    border-radius: 20px;
    border: 1px solid var(--panel-border);
    background: rgba(255, 255, 255, 0.74);
    display: grid;
    gap: 14px;
}

.size-picker legend {
    font-size: 0.85rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-muted);
    padding: 0 4px;
}

.size-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    min-width: 52px;
    padding: 10px 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.size-pill[data-status="preorder"] {
    border-style: dashed;
    background: rgba(255, 255, 255, 0.45);
}

.size-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(186, 176, 164, 0.22);
}

.size-pill input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}


.size-pill input:focus-visible + span {
    outline: none;
}

.size-pill span {
    position: relative;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.size-pill span::after {
    content: "";
    position: absolute;
    inset: -10px -18px;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: -1;
}

.size-pill input:checked + span::after {
    opacity: 1;
}

.size-pill input:checked + span {
    color: #fff;
}

.size-note {
    margin: 0;
    padding: 10px 16px;
    border-radius: 16px;
    border: 1px dashed rgba(28, 26, 25, 0.18);
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.size-pill input:focus-visible + span,
.size-pill:focus-visible span {
    box-shadow: 0 0 0 2px rgba(28, 26, 25, 0.12), 0 0 0 6px rgba(255, 111, 97, 0.25);
}

.metric-card {
    background: var(--accent-soft);
    border-radius: 20px;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.metric-card span {
    display: block;
}

.metric-card .metric-label {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 10px;
}

.metric-card .metric-value {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
}

.swatch-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.swatch {
    --swatch-color: #ccc;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    color: var(--ink);
}

.swatch::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--swatch-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.look-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(18px, 4vw, 32px);
}

.panel {
    background: rgba(255, 255, 255, 0.82);
    border-radius: 24px;
    padding: clamp(18px, 3vw, 28px);
    border: 1px solid var(--panel-border);
    box-shadow: 0 22px 50px rgba(186, 176, 164, 0.22);
}

.panel h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.panel p {
    margin: 0;
    color: var(--ink-muted);
}

.look-logistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(16px, 3vw, 26px);
}

.logistics-card {
    background: rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    padding: clamp(18px, 3vw, 26px);
    border: 1px solid rgba(28, 26, 25, 0.08);
    display: grid;
    gap: 10px;
}

.logistics-card h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--ink);
}

.logistics-card p {
    margin: 0;
    color: var(--ink-muted);
}

body.look-dawn .panel,
body.look-dawn .logistics-card {
    background: linear-gradient(150deg, rgba(255, 241, 224, 0.9) 0%, rgba(213, 238, 125, 0.78) 100%);
    border-color: rgba(213, 238, 125, 0.38);
    box-shadow: 0 26px 60px rgba(213, 238, 125, 0.28);
}

body.look-dawn .metric-card {
    background: linear-gradient(145deg, rgba(255, 203, 190, 0.42) 0%, rgba(213, 238, 125, 0.36) 100%);
    border-color: rgba(213, 238, 125, 0.32);
}

body.look-dawn .size-picker {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(213, 238, 125, 0.38);
    color: var(--ink);
}

body.look-dawn .size-pill span::after {
    background: linear-gradient(135deg, #ff7a6f 0%, #ff2f96 50%, var(--accent-secondary) 100%);
}

body.look-noir .panel,
body.look-noir .logistics-card {
    background: linear-gradient(150deg, rgba(231, 245, 255, 0.92) 0%, rgba(255, 170, 214, 0.82) 100%);
    border-color: rgba(255, 170, 214, 0.34);
    box-shadow: 0 26px 60px rgba(255, 170, 214, 0.26);
}

body.look-noir .metric-card {
    background: linear-gradient(150deg, rgba(198, 247, 255, 0.42) 0%, rgba(255, 170, 214, 0.36) 100%);
    border-color: rgba(255, 170, 214, 0.34);
}

body.look-noir .size-picker {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 170, 214, 0.34);
    color: var(--ink);
}

body.look-noir .size-pill span::after {
    background: linear-gradient(135deg, #5cf0ff 0%, #4c5dff 45%, var(--accent-secondary) 100%);
}

body.look-terra .panel,
body.look-terra .logistics-card {
    background: linear-gradient(155deg, rgba(255, 237, 212, 0.9) 0%, rgba(159, 149, 143, 0.78) 100%);
    border-color: rgba(159, 149, 143, 0.38);
    box-shadow: 0 28px 70px rgba(159, 149, 143, 0.28);
}

body.look-terra .metric-card {
    background: linear-gradient(150deg, rgba(255, 203, 160, 0.38) 0%, rgba(159, 149, 143, 0.34) 100%);
    border-color: rgba(159, 149, 143, 0.34);
}

body.look-terra .size-picker {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(159, 149, 143, 0.38);
    color: var(--ink);
}

body.look-terra .size-pill span::after {
    background: linear-gradient(135deg, #ff8c3f 0%, #ff3f8b 45%, var(--accent-secondary) 100%);
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; 
}

.btn[disabled],
.btn.is-disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
    box-shadow: none;
    transform: none;
}

.btn.primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 18px 34px rgba(201, 111, 71, 0.25);
}

.btn.primary.is-sold-out {
    background: #b6b4bb;
    color: white;
}

.btn.primary.is-added {
    background: var(--accent-dark);
    box-shadow: 0 16px 30px rgba(201, 111, 71, 0.32);
}

.btn.primary:hover {
    transform: translateY(-2px);
    background: var(--accent-dark);
}

.btn.secondary {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn.secondary:hover {
    background: rgba(201, 111, 71, 0.1);
}

/* Cart page */

body.cart-page {
    --accent: #ff6f61;
    --accent-dark: #ff2f87;
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(255, 223, 211, 0.45) 0%, rgba(255, 223, 211, 0) 55%),
        radial-gradient(120% 120% at 100% 0%, rgba(202, 210, 255, 0.42) 0%, rgba(202, 210, 255, 0) 45%),
        linear-gradient(165deg, #ffffff 0%, #f2f0ff 52%, #fff6ef 100%);
    color: var(--text);
}

.cart-page::before {
    content: "";
    position: fixed;
    inset: -120px;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 191, 176, 0.45) 0%, rgba(255, 191, 176, 0) 58%),
        radial-gradient(circle at 82% 12%, rgba(206, 213, 255, 0.48) 0%, rgba(206, 213, 255, 0) 65%),
        radial-gradient(circle at 50% 88%, rgba(255, 214, 178, 0.32) 0%, rgba(255, 214, 178, 0) 55%);
    pointer-events: none;
    z-index: -1;
}

.cart-page .site-header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(28, 26, 25, 0.06);
    color: inherit;
    box-shadow: 0 16px 40px rgba(198, 191, 183, 0.2);
}

.site-nav .cart-link.is-active {
    background: rgba(255, 111, 97, 0.15);
    color: var(--accent);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: clamp(28px, 6vw, 60px);
    padding: clamp(28px, 6vw, 72px);
}

.cart-summary {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 28px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(28, 26, 25, 0.08);
    box-shadow: 0 30px 80px rgba(198, 191, 183, 0.28);
    display: grid;
    gap: clamp(20px, 3vw, 30px);
    width: 100%;
    max-width: 900px;
}

.cart-summary-header h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.cart-subtitle,
.destination-subtitle,
.cart-note {
    margin: 0;
    color: rgba(28, 26, 25, 0.58);
}

.cart-alert {
    margin: 0;
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid #ff9500;
    background: white;
    box-shadow: 
        0 4px 16px rgba(255, 149, 0, 0.08),
        0 1px 4px rgba(28, 26, 25, 0.04);
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cart-alert::before {
    content: '⚠';
    font-size: 18px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-alert[hidden] {
    display: none;
}

.cart-actions {
    display: flex;
    justify-content: center;
    margin-top: clamp(16px, 3vw, 28px);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 22px;
    border: 1px solid rgba(28, 26, 25, 0.08);
    padding: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 20px;
    align-items: start;
}

.cart-item h3 {
    margin: 0;
    font-size: 1.05rem;
}

.cart-item .meta {
    color: rgba(28, 26, 25, 0.55);
    font-size: 0.9rem;
}

.cart-actions-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(28, 26, 25, 0.1);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.quantity-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 111, 97, 0.16);
}

.quantity-btn:focus-visible {
    outline: 2px solid rgba(255, 111, 97, 0.45);
    outline-offset: 2px;
}

.remove-link {
    background: none;
    border: none;
    color: rgba(255, 111, 97, 0.8);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: rgba(255, 111, 97, 0.4);
}

.cart-price {
    font-weight: 600;
    font-size: 1.1rem;
}

.cart-totals dl {
    margin: 0;
    display: grid;
    gap: 14px;
}

.cart-totals dl > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(28, 26, 25, 0.65);
}

.cart-total-line {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
}

.cart-empty {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 22px;
    padding: 32px;
    text-align: center;
    color: rgba(28, 26, 25, 0.6);
}

.destination-form {
    display: grid;
    gap: 22px;
}

.delivery-method {
    margin: 0;
    padding: clamp(14px, 3vw, 20px);
    border-radius: 20px;
    border: 1px solid rgba(28, 26, 25, 0.08);
    background: rgba(255, 255, 255, 0.92);
    display: grid;
    gap: 14px;
}

.delivery-method legend {
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(28, 26, 25, 0.6);
    padding: 0 4px;
}

.choice-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 18px;
    border: 1px solid rgba(28, 26, 25, 0.12);
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-weight: 600;
    text-transform: none;
    color: rgba(28, 26, 25, 0.8);
}

.choice-pill input {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(28, 26, 25, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, background 0.2s ease;
    flex: 0 0 auto;
}

.choice-pill input::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.2s ease;
}

.choice-pill input:checked {
    border-color: var(--accent);
    background: rgba(255, 111, 97, 0.18);
}

.choice-pill input:checked::after {
    background: var(--accent);
}

.choice-pill input:checked + span {
    color: var(--accent);
}

.choice-pill input:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.28);
}

.choice-pill span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.locker-picker {
    display: grid;
    gap: 12px;
    padding: clamp(14px, 3vw, 20px);
    border-radius: 20px;
    border: 1px dashed rgba(28, 26, 25, 0.18);
    background: rgba(255, 255, 255, 0.9);
}

.locker-picker.is-error {
    border-color: rgba(255, 111, 97, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 111, 97, 0.22);
}

.locker-summary {
    font-size: 0.92rem;
    color: rgba(28, 26, 25, 0.64);
}

.locker-summary strong {
    color: var(--accent);
}

.locker-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Cleaner delivery toggle (no frame, inline pills) */
.delivery-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.delivery-toggle .choice-pill {
    background: rgba(255, 255, 255, 0.92);
}

/* Limited edition badge */
.limited-badge {


.destination-form .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.destination-form label:not(.choice-pill) {
    display: grid;
    gap: 10px;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(28, 26, 25, 0.6);
}

.destination-form input,
.destination-form textarea {
    border-radius: 18px;
    border: 1px solid rgba(28, 26, 25, 0.12);
    background: rgba(255, 255, 255, 0.88);
    padding: 14px 16px;
    color: var(--text);
    font-size: 0.98rem;
    font-family: inherit;
}

.destination-form .input-error {
    border-color: rgba(255, 111, 97, 0.55);
    box-shadow: 0 0 0 2px rgba(255, 111, 97, 0.18);
}

.destination-form input:focus-visible,
.destination-form textarea:focus-visible {
    outline: 2px solid rgba(255, 111, 97, 0.45);
    outline-offset: 2px;
}

.form-wide {
    width: 100%;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.form-actions .btn {
    min-width: 180px;
}

.btn.tertiary {
    background: rgba(28, 26, 25, 0.05);
    border: 1px dashed rgba(28, 26, 25, 0.15);
    color: rgba(28, 26, 25, 0.65);
}

.btn.tertiary:hover {
    background: rgba(255, 255, 255, 0.6);
    color: var(--accent);
    border-color: rgba(255, 111, 97, 0.32);
}

.stock-note {
    margin: 10px 0 0;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(28, 26, 25, 0.55);
}

[data-checkout-button][disabled] {
    cursor: not-allowed;
    opacity: 0.55;
}

.form-feedback {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(58, 168, 127, 0.85);
}

.form-feedback[hidden] {
    display: none;
}

.form-feedback.is-error {
    color: rgba(215, 88, 88, 0.85);
}

@media (max-width: 768px) {
    .site-header {
        position: static;
    }

    .site-nav {
        justify-content: center;
        gap: 16px;
    }

    .site-nav a {
        font-size: 0.74rem;
        padding: 8px 18px;
    }

    .piece-toggle {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
    }

    .outfit-grid .grid {
        border-radius: 18px;
    }

    .outfit-card + .outfit-card {
        border-left: none;
        border-top: 1px solid rgba(28, 26, 25, 0.08);
    }

    .look-layout {
        grid-template-columns: 1fr;
    }

    .cart-layout {
        grid-template-columns: 1fr;
        padding: clamp(20px, 5vw, 36px);
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 720px) {
    body {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 245, 243, 0.96) 45%, rgba(246, 245, 243, 1) 100%);
    }

    .site-header {
        align-items: flex-start;
        padding: clamp(16px, 5vw, 28px) clamp(16px, 6vw, 28px);
        box-shadow: none;
    }

    .branding {
        width: 100%;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: clamp(10px, 4vw, 18px);
    }

    .nav-toggle {
        display: inline-flex;
        order: 2;
        margin-left: auto;
    }

    .language-switcher {
        order: 2;
        margin-left: 0;
        margin-top: clamp(8px, 3vw, 12px);
    }

    .site-nav {
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: clamp(8px, 3vw, 14px);
        padding: 0;
        border-radius: 20px;
        border: 1px solid rgba(28, 26, 25, 0.08);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 20px 44px rgba(28, 26, 25, 0.12);
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        overflow: hidden;
        transition: max-height 0.32s ease, opacity 0.22s ease;
    }

    .site-nav.is-open {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
        padding: clamp(12px, 4vw, 20px);
    }

    .site-nav a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .site-nav a.cart-link {
        box-shadow: none;
    }

    .logo-text-container {
        align-items: flex-start;
    }

    main {
        padding: 0 clamp(16px, 6vw, 32px) clamp(44px, 10vw, 90px);
    }

    .home main {
        margin-top: clamp(28px, 8vw, 60px);
        padding-top: clamp(32px, 10vw, 80px);
    }

    .outfit-grid .grid {
        grid-template-columns: 1fr;
    }

    .card-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cart-toggle {
        width: 100%;
        justify-content: center;
    }

    body.look main {
        padding: clamp(16px, 7vw, 28px);
    }

    body.look .look-layout {
        padding: clamp(18px, 7vw, 28px);
        border-radius: 24px;
        box-shadow: 0 20px 44px rgba(186, 176, 164, 0.16);
    }

    body.look .look-details {
        padding: clamp(20px, 7vw, 32px);
    }

    .gallery-stage {
        border-radius: clamp(18px, 7vw, 28px);
        min-height: 420px;
        height: clamp(420px, 90vh, 560px);
    }

    .gallery-stage img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        max-height: 100%;
    }

    .gallery-thumbs {
        min-height: clamp(220px, 36vh, 280px);
        gap: clamp(14px, 5vw, 20px);
        padding: clamp(16px, 5vw, 22px);
    }

    .gallery-thumb {
        flex: 0 0 clamp(150px, 42vw, 200px);
        height: clamp(200px, 38vh, 260px);
    }

    .gallery-index {
        right: 14px;
        bottom: 14px;
    }
}


.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

/* White backgrounds for photos */
.gallery-stage { 
    background: #ffffff !important; 
}

.gallery-thumbs { 
    background: #ffffff !important; 
}

.outfit-card { 
    background: #ffffff !important; 
}

/* Toast notifications */
.emma-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
    pointer-events: none;
}

.emma-toast {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 
        0 8px 24px rgba(28, 26, 25, 0.12),
        0 2px 8px rgba(28, 26, 25, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    opacity: 0;
    transform: translateX(120%) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    border-left: 4px solid var(--accent);
}

.emma-toast-visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.emma-toast-hiding {
    opacity: 0;
    transform: translateX(120%) scale(0.9);
}

.emma-toast-warning {
    border-left-color: #ff9500;
}

.emma-toast-error {
    border-left-color: #ff3b30;
}

.emma-toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

.emma-toast-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text);
}

.emma-toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    color: var(--muted);
    transition: color 0.2s ease;
    padding: 0;
}

.emma-toast-close:hover {
    color: var(--text);
}

@media (max-width: 600px) {
    .emma-toast-container {
        top: 12px;
        right: 12px;
        left: 12px;
        max-width: none;
    }

    .emma-toast {
        padding: 14px 16px;
    }
}
