:root {
    --bg: #0a0a0a;
    --bg-2: #111111;
    --bg-elevated: #161616;
    --bg-soft: #161616;
    --surface: #161616;
    --line: #2a2a2a;
    --line-strong: #2a2a2a;
    --text: #f2f2f0;
    --muted: #8a8a86;
    --accent: #e11d2e;
    --accent-dim: #a31622;
    --accent-soft: #ff2a3c;
    --accent-ink: #ffffff;
    --danger: #ff5a5a;
    --success: #5fbf8a;
    --live: #e11d2e;
    --upcoming: #8a8a86;
    --sold: #ff5a5a;
    --font-display: "Bebas Neue", Impact, sans-serif;
    --font-body: "Syne", sans-serif;
    --space: clamp(1.25rem, 4vw, 3rem);
    --max: 1120px;
    --header-h: 64px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 2px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background: var(--bg);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    position: relative;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.noise {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 50;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* —— Cinematic intro —— */
html:not(.intro-done) body {
    overflow: hidden;
}

.site-intro {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background: #050505;
    overflow: hidden;
}

.intro-done .site-intro {
    display: none;
}

.intro-flash {
    position: absolute;
    inset: 0;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}

.intro-blade {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 0;
    background: var(--accent);
    transform: translate(-50%, -50%);
    z-index: 1;
    box-shadow: 0 0 24px rgba(225, 29, 46, 0.55);
}

.intro-stage {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1.5rem;
}

.intro-eyebrow {
    margin: 0 0 1rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(242, 242, 240, 0.45);
    opacity: 0;
    transform: translateY(12px);
}

.intro-mark {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(5.5rem, 20vw, 12rem);
    letter-spacing: 0.04em;
    line-height: 0.85;
    display: flex;
    justify-content: center;
    gap: 0;
}

.intro-mark-1,
.intro-mark-rest {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) scale(0.96);
}

.intro-mark-1 {
    color: var(--accent);
}

.intro-mark-rest {
    color: #f2f2f0;
}

.intro-rule {
    display: block;
    width: 0;
    height: 1px;
    margin: 1.35rem auto 0;
    background: linear-gradient(90deg, transparent, rgba(242, 242, 240, 0.55), transparent);
}

.intro-tag {
    margin: 1rem 0 0;
    max-width: 22rem;
    margin-inline: auto;
    font-size: clamp(0.72rem, 2vw, 0.88rem);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9a9a94;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
}

.site-intro.is-playing .intro-blade {
    animation: introBlade 0.7s var(--ease) forwards;
}

.site-intro.is-playing .intro-eyebrow {
    animation: introRise 0.55s var(--ease) 0.45s forwards;
}

.site-intro.is-playing .intro-mark-1 {
    animation: introRise 0.7s var(--ease) 0.55s forwards;
}

.site-intro.is-playing .intro-mark-rest {
    animation: introRise 0.7s var(--ease) 0.68s forwards;
}

.site-intro.is-playing .intro-rule {
    animation: introRule 0.55s var(--ease) 0.95s forwards;
}

.site-intro.is-playing .intro-tag {
    animation: introRise 0.55s var(--ease) 1.1s forwards;
}

.site-intro.is-leaving {
    animation: introExit 0.95s var(--ease) forwards;
}

.site-intro.is-leaving .intro-flash {
    animation: introFlash 0.35s ease forwards;
}

.site-intro.is-leaving .intro-stage {
    animation: introStageOut 0.55s ease forwards;
}

@keyframes introBlade {
    from { height: 0; }
    to { height: min(42vh, 320px); }
}

@keyframes introRise {
    to { opacity: 1; transform: none; }
}

@keyframes introRule {
    to { width: min(12rem, 40vw); }
}

@keyframes introFlash {
    0% { opacity: 0; }
    40% { opacity: 0.18; }
    100% { opacity: 0; }
}

@keyframes introStageOut {
    to { opacity: 0; transform: scale(1.04); filter: blur(6px); }
}

@keyframes introExit {
    to { opacity: 0; visibility: hidden; }
}

.site-main,
.site-footer {
    position: relative;
    z-index: 1;
}

/* —— Header —— */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem var(--space);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
}

.header-inner {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.brand,
.logo {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--text);
}

.brand-mark {
    color: var(--accent);
}

.brand-text {
    color: var(--text);
}

.nav {
    display: flex;
    gap: 1.75rem;
    align-items: center;
    margin-left: auto;
    margin-right: 0.5rem;
    justify-content: flex-end;
}

.nav a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.cart-btn,
.nav-cart {
    position: relative;
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    background: transparent;
    color: var(--text);
    transition: color 0.2s ease;
}

.cart-btn:hover,
.nav-cart:hover {
    color: var(--accent);
    transform: none;
    border-color: transparent;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: var(--radius);
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-count[data-count="0"],
.cart-count[hidden] {
    opacity: 0;
    pointer-events: none;
}

.nav-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
}

.site-main {
    padding-top: 0;
    min-height: calc(100vh - 180px);
    position: relative;
    z-index: 1;
}

/* —— Hero —— */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: end stretch;
    padding: clamp(5rem, 12vh, 8rem) var(--space) clamp(3rem, 8vh, 5rem);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.08);
    transition:
        opacity 1.5s cubic-bezier(0.65, 0, 0.35, 1),
        transform 8s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: opacity, transform;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.hero-bg-veil,
.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.35) 0%, rgba(5, 5, 5, 0.15) 35%, rgba(5, 5, 5, 0.88) 100%),
        linear-gradient(90deg, rgba(5, 5, 5, 0.55) 0%, transparent 45%);
}

.hero-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.015) 2px,
        rgba(255, 255, 255, 0.015) 4px
    );
    opacity: 0.55;
    mix-blend-mode: overlay;
    animation: heroScan 10s linear infinite;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 140px rgba(0, 0, 0, 0.65);
}

@keyframes heroScan {
    from { transform: translateY(0); }
    to { transform: translateY(4px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 920px;
    width: 100%;
}

.hero-brand,
.hero-title.brand-mark,
.hero .brand-mark {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(5.5rem, 22vw, 14rem);
    letter-spacing: 0.02em;
    line-height: 0.82;
    color: #fff;
    text-shadow: 0 8px 48px rgba(0, 0, 0, 0.45);
}

.hero-brand .brand-mark {
    font-size: inherit;
    color: var(--accent);
    text-shadow: none;
    animation: brandPulse 3.6s ease-in-out infinite;
}

.hero-brand .brand-text {
    color: #fff;
}

@keyframes brandPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.18); }
}

.hero-title {
    margin: 0.35rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3rem);
    letter-spacing: 0.04em;
    line-height: 1;
    color: rgba(242, 242, 240, 0.92);
}

.hero-copy,
.hero-line {
    margin: 1.1rem 0 2rem;
    max-width: 26rem;
    color: rgba(242, 242, 240, 0.78);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.45;
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: flex-start;
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    z-index: 3;
    width: 22px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    transform: translateX(-50%);
    display: grid;
    place-items: start center;
    padding-top: 7px;
}

.hero-scroll span {
    width: 3px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    animation: scrollDot 1.6s var(--ease) infinite;
}

@keyframes scrollDot {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-in {
    opacity: 1;
    transform: none;
}

.intro-done .hero-content {
    animation: heroContentIn 1s var(--ease) 0.15s both;
}

@keyframes heroContentIn {
    from { opacity: 0; transform: translateY(36px); }
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: opacity 0.6s ease;
        transform: none !important;
    }

    .hero-slide.is-active {
        transform: none;
    }

    .hero-scan,
    .hero-brand .brand-mark,
    .hero-scroll span {
        animation: none;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@keyframes riseIn {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

.countdown {
    margin-bottom: 1.75rem;
}

.countdown-label {
    margin: 0 0 0.7rem;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.countdown-grid {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.countdown-unit {
    min-width: 64px;
    padding: 0.8rem 0.7rem;
    background: rgba(16, 17, 19, 0.9);
    border: 1px solid var(--line);
    text-align: center;
}

.countdown-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.7rem);
    letter-spacing: -0.03em;
    line-height: 1;
}

.countdown-key {
    display: block;
    margin-top: 0.3rem;
    color: var(--muted);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.countdown.compact .countdown-unit {
    min-width: 52px;
    padding: 0.65rem 0.45rem;
}

.countdown.compact .countdown-value {
    font-size: 1.15rem;
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

/* —— Buttons —— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.9rem 1.35rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: transparent;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.78rem;
    cursor: pointer;
    transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover:not(:disabled) {
    background: #ff2a3c;
}

.btn-ghost {
    border-color: var(--line);
    background: transparent;
}

.btn-ghost:hover:not(:disabled) {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-sm {
    padding: 0.5rem 0.85rem;
    font-size: 0.7rem;
}

.btn-block {
    width: 100%;
}

/* —— Sections —— */
.drops-section,
.cart-page,
.drop-detail,
.empty-state {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 3vw, 1.5rem);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.section-head h1,
.section-head h2 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4rem);
    letter-spacing: 0.04em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
}

.link-arrow {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.2s ease;
}

.link-arrow:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.dept-section.section,
.section.dept-section {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4rem) var(--space);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
}

.filter-bar--quiet {
    gap: 1.25rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.85rem;
}

.filter-bar--quiet .filter-btn {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    letter-spacing: 0.14em;
}

.filter-bar--quiet .filter-btn:hover,
.filter-bar--quiet .filter-btn.is-active {
    color: var(--text);
    background: transparent;
    border-color: transparent;
    box-shadow: inset 0 -1px 0 var(--accent);
}

.filter-btn {
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.68rem;
    font-weight: 700;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.filter-btn:hover,
.filter-btn.is-active {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
}

.drops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.drop-card {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease, transform 0.25s var(--ease);
    animation: cardIn 0.6s var(--ease) both;
}

.drop-card:nth-child(2) { animation-delay: 0.05s; }
.drop-card:nth-child(3) { animation-delay: 0.1s; }
.drop-card:nth-child(4) { animation-delay: 0.15s; }
.drop-card:nth-child(5) { animation-delay: 0.2s; }
.drop-card:nth-child(6) { animation-delay: 0.25s; }

@keyframes cardIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.drop-card:hover {
    border-color: rgba(226, 59, 69, 0.38);
    transform: translateY(-4px);
}

.drop-card.is-hidden {
    display: none;
}

.drop-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #000;
}

.drop-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.drop-card:hover .drop-media img {
    transform: scale(1.04);
}

.drop-badge {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    padding: 0.3rem 0.5rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
}

.badge-live {
    background: var(--live);
    color: var(--accent-ink);
}

.badge-upcoming {
    background: var(--upcoming);
    color: #061018;
}

.badge-sold_out,
.badge-ended {
    background: rgba(0, 0, 0, 0.75);
    color: var(--sold);
    border: 1px solid rgba(196, 122, 90, 0.4);
}

.drop-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    flex: 1;
}

.drop-meta h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
    font-weight: 700;
}

.drop-meta p {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.drop-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.drop-price {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.drop-price.xl {
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    margin: 0.45rem 0 1rem;
    color: var(--accent);
}

.muted {
    color: var(--muted);
    font-size: 0.85rem;
}

.drop-media-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.drop-detail {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: start;
    padding-top: clamp(1.75rem, 4vw, 3rem);
}

.drop-media-col,
.drop-detail-info {
    min-width: 0;
}

.drop-detail-media {
    position: relative;
    width: 100%;
    background: #050506;
    border: 1px solid var(--line);
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.drop-detail-media.has-photo {
    aspect-ratio: 3 / 4;
    min-height: 0;
    height: auto;
    background: #050506;
}

.drop-detail-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--frame-x, 50%) var(--frame-y, 50%);
    transform: scale(var(--frame-zoom, 1));
    transform-origin: var(--frame-x, 50%) var(--frame-y, 50%);
    background: #050506;
}

.eyebrow {
    margin: 0 0 0.45rem;
    color: var(--accent);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.eyebrow--with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.eyebrow--with-icon .section-icon {
    opacity: 1;
    color: currentColor;
}

.eyebrow-sep {
    opacity: 0.55;
    letter-spacing: 0;
}

.drop-detail-info h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.85rem);
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.lead {
    color: var(--muted);
    margin: 0.65rem 0 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.desc {
    color: #c4c8ce;
    line-height: 1.7;
    margin: 0 0 1.35rem;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
}

.specs {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
    border-top: 1px solid var(--line);
}

.specs li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}

.specs strong {
    color: var(--text);
    font-weight: 600;
    text-align: right;
}

/* —— Cart —— */
.cart-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 1.35rem;
    align-items: start;
}

.cart-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-row {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 0.9rem;
    padding: 0.9rem;
    background: var(--bg-elevated);
    border: 1px solid var(--line);
}

.cart-thumb {
    width: 88px;
    height: 110px;
    overflow: hidden;
    background: #000;
}

.cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-info h3 {
    margin: 0 0 0.3rem;
    font-size: 0.95rem;
}

.cart-info p {
    margin: 0 0 0.35rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.cart-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.7rem;
}

.cart-controls label {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: var(--muted);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cart-controls input {
    width: 68px;
    padding: 0.4rem 0.45rem;
    background: var(--bg);
    border: 1px solid var(--line-strong);
    color: var(--text);
}

.link-btn {
    background: none;
    border: none;
    color: var(--sold);
    cursor: pointer;
    padding: 0;
    font-size: 0.82rem;
}

.cart-summary {
    padding: 1.2rem;
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    position: sticky;
    top: calc(var(--header-h) + 1rem);
}

.cart-summary h2 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.15rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--line);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkout-title {
    margin: 0 0 0.15rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.checkout-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.checkout-form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-form input,
.checkout-form textarea {
    padding: 0.75rem 0.85rem;
    background: var(--bg);
    border: 1px solid var(--line-strong);
    color: var(--text);
    resize: vertical;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    outline: 1px solid var(--accent);
    border-color: var(--accent);
}

.alert {
    padding: 0.85rem 1rem;
    margin-bottom: 1.15rem;
    border: 1px solid var(--line);
}

.alert.success {
    border-color: rgba(125, 186, 138, 0.35);
    color: var(--success);
    background: rgba(125, 186, 138, 0.06);
}

.alert.error {
    border-color: rgba(232, 106, 90, 0.35);
    color: var(--danger);
    background: rgba(232, 106, 90, 0.06);
}

.empty-state {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.empty-state h1,
.empty-state h2 {
    font-family: var(--font-display);
    margin: 0 0 0.7rem;
}

.empty-state p {
    color: var(--muted);
    margin: 0 0 1.35rem;
}

.toast {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 100;
    padding: 0.8rem 1rem;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.toast.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.site-footer {
    border-top: 1px solid var(--line);
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 2rem var(--space);
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.footer-brand strong {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    color: var(--text);
}

.footer-brand p {
    margin: 0.35rem 0 0;
    color: var(--muted);
    max-width: 28ch;
}

.footer-meta {
    display: flex;
    gap: 1.1rem;
    color: #555;
    font-size: 0.8rem;
    align-items: flex-end;
    flex-wrap: wrap;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-meta a {
    color: var(--muted);
    text-decoration: none;
}

.footer-meta a:hover {
    color: var(--text);
}

.about-page {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 3vw, 1.5rem);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-block {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    padding: 1.25rem;
}

.about-block.full {
    grid-column: 1 / -1;
}

.about-block h2 {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--accent);
}

.about-block p {
    margin: 0;
    color: #c4c8ce;
    line-height: 1.65;
}

.contact-panel {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    padding: 1.25rem;
}

.contact-panel h2 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
}

@media (max-width: 720px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}


/* —— Responsive —— */
@media (max-width: 980px) {
    .drops-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .drop-detail,
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 720px) {
    :root {
        --header-h: 60px;
    }

    .header-inner {
        display: flex;
        padding: 0;
    }

    .nav-toggle {
        display: inline-flex;
        order: 3;
    }

    .header-left {
        order: 1;
    }

    .header-actions {
        order: 2;
        margin-left: auto;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0;
        flex-direction: column;
        gap: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--line);
        padding: 0.35rem 0;
        max-height: calc(100svh - 64px);
        overflow-y: auto;
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        padding: 1rem 1.15rem;
        border-bottom: 1px solid var(--line);
        font-size: 0.85rem;
    }

    .cart-btn {
        width: 42px;
        height: 42px;
    }

    .drops-section,
    .cart-page,
    .drop-detail,
    .empty-state {
        padding: 1.75rem 0.9rem 2.5rem;
    }

    .filter-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .filter-btn {
        text-align: center;
        padding: 0.7rem 0.5rem;
    }

    .drops-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .drop-media {
        aspect-ratio: 1 / 1.05;
    }

    .hero {
        min-height: calc(100svh - var(--header-h));
        padding: 2rem 0.9rem calc(3.5rem + env(safe-area-inset-bottom));
        align-items: end;
    }

    .hero-brand {
        font-size: clamp(4rem, 22vw, 5.5rem);
    }

    .hero-title {
        max-width: 100%;
        font-size: 1.25rem;
    }

    .hero-copy,
    .hero-line {
        max-width: 100%;
        margin-bottom: 1.35rem;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .countdown-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
    }

    .countdown-unit {
        min-width: 0;
        padding: 0.7rem 0.25rem;
    }

    .countdown-value {
        font-size: 1.15rem;
    }

    .hero-actions,
    .detail-actions {
        width: 100%;
    }

    .hero-actions .btn,
    .detail-actions .btn {
        flex: 1 1 auto;
        min-height: 46px;
    }

    .cart-row {
        grid-template-columns: 72px 1fr;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .cart-controls {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .checkout-form input,
    .checkout-form textarea {
        min-height: 46px;
        font-size: 16px;
    }

    .checkout-form textarea {
        min-height: 88px;
    }

    .checkout-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.5rem 0.9rem calc(1.5rem + env(safe-area-inset-bottom));
    }

    .toast {
        left: 0.75rem;
        right: 0.75rem;
        bottom: calc(0.75rem + env(safe-area-inset-bottom));
        text-align: center;
    }
}

@media (max-width: 400px) {
    .countdown-unit {
        padding: 0.6rem 0.15rem;
    }

    .countdown-key {
        font-size: 0.58rem;
    }

    .btn {
        padding: 0.75rem 0.85rem;
        font-size: 0.7rem;
    }

    .brand {
        font-size: 1.35rem;
    }
}

/* —— Premium lookbook grid —— */
.section-kicker {
    margin: 0 0 0.45rem;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
}

.drop-ticker {
    border-block: 1px solid var(--line);
    background: var(--bg-2);
}

.drop-ticker-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.95rem clamp(1rem, 3vw, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.drop-ticker-copy {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.drop-ticker-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.drop-ticker-copy strong {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: -0.02em;
    font-weight: 400;
}

.drop-ticker .countdown {
    margin: 0;
}

.drop-ticker .countdown-unit {
    min-width: 46px;
    padding: 0.45rem 0.35rem;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.1);
}

.drop-ticker-link {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 0.15rem;
}

/* —— Home worlds + zones —— */
.worlds-gate {
    padding: clamp(2.5rem, 6vw, 4rem) var(--space);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(225, 29, 46, 0.08), transparent 55%),
        var(--bg);
}

.worlds-gate-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.world-card {
    position: relative;
    display: grid;
    gap: 0.65rem;
    padding: clamp(1.5rem, 4vw, 2.4rem);
    min-height: 11rem;
    border: 1px solid var(--line);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), transparent 55%);
    overflow: hidden;
    transition: border-color 0.35s ease, transform 0.35s var(--ease);
}

.world-card::before {
    content: "";
    position: absolute;
    inset: auto auto 0 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease);
}

.world-card:hover {
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
}

.world-card:hover::before {
    transform: scaleX(1);
}

.world-card--shop::before {
    background: #f2f2f0;
}

.world-kicker {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

.world-card strong {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    letter-spacing: 0.04em;
    line-height: 0.95;
    font-weight: 400;
}

.world-copy {
    max-width: 18rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.world-go {
    margin-top: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text);
}

.home-zone {
    padding: clamp(3.5rem, 9vw, 6.5rem) var(--space);
    border-bottom: 1px solid var(--line);
}

.home-zone--drops {
    background:
        linear-gradient(180deg, rgba(225, 29, 46, 0.045), transparent 28%),
        var(--bg);
}

.home-zone--products {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 24%),
        var(--bg-2);
}

.home-zone--archive {
    background: var(--bg);
    opacity: 0.96;
}

.zone-head {
    max-width: 1120px;
    margin: 0 auto 2.25rem;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.zone-head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 5rem);
    letter-spacing: 0.03em;
    line-height: 0.92;
    font-weight: 400;
}

.zone-lede {
    margin: 0.75rem 0 0;
    max-width: 28rem;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.5;
}

.zone-rail {
    max-width: 1120px;
    margin: 0 auto 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.1rem;
}

.zone-rail a {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid transparent;
    padding-bottom: 0.15rem;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.zone-rail a:hover {
    color: var(--text);
    border-color: var(--accent);
}

.featured-drop {
    max-width: 1120px;
    margin: 0 auto 2.75rem;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: center;
}

.featured-drop-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--bg-elevated);
}

.featured-drop-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.featured-drop-media:hover img {
    transform: scale(1.04);
}

.featured-drop-status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.65rem;
    background: rgba(5, 5, 5, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.featured-drop-body h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: 0.03em;
    line-height: 0.95;
    font-weight: 400;
}

.featured-drop-sub {
    margin: 0.85rem 0 1.35rem;
    color: var(--muted);
    max-width: 24rem;
    line-height: 1.5;
}

.featured-drop-actions {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.featured-drop-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.04em;
}

.home-zone .dept-section {
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: 0;
}

.home-zone .section-head {
    margin-top: 1.5rem;
}

@media (max-width: 820px) {
    .worlds-gate-inner {
        grid-template-columns: 1fr;
    }

    .featured-drop {
        grid-template-columns: 1fr;
    }

    .featured-drop-media {
        aspect-ratio: 1 / 1.05;
    }
}

.maison-rail {
    border-bottom: 1px solid var(--line);
    background: var(--bg-2);
}

.maison-rail-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 1.1rem clamp(1rem, 3vw, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem 1.1rem;
}

.maison-rail a {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.25s ease;
}

.maison-rail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.maison-rail a:hover {
    color: var(--text);
}

.maison-rail-link.is-active {
    color: var(--text);
}

.maison-rail-link.is-active .section-icon {
    color: var(--accent);
    opacity: 1;
}

.maison-rail--collections {
    margin-top: -0.35rem;
    margin-bottom: 1.5rem;
    border-top: 0;
    background: transparent;
}

.maison-rail--collections .maison-rail-inner {
    justify-content: flex-start;
    padding-top: 0.35rem;
}

.maison-rail--page {
    margin-bottom: 1.5rem;
    border: 1px solid var(--line);
    background: var(--bg-2);
}

.maison-rail--page .maison-rail-inner {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
}

.maison-rail--page .maison-rail-inner::-webkit-scrollbar {
    display: none;
}

.catalog-page .maison-rail--page {
    margin-inline: 0;
}

.section-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    opacity: 0.9;
    transition: opacity 0.25s ease, color 0.25s ease;
}

.maison-rail-link .section-icon {
    font-size: 1.55rem !important;
}

.maison-rail--collections .maison-rail-link .section-icon {
    font-size: 1.25rem !important;
}

.maison-rail a:hover .section-icon,
.shop-index-link:hover .section-icon {
    opacity: 1;
}

.maison-rail-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.lookbook-section,
.catalog-section,
.drops-section,
.shop-nav-section {
    padding: clamp(3rem, 8vw, 5.5rem) clamp(1rem, 3vw, 1.5rem);
    max-width: var(--max);
    margin: 0 auto;
}

.lookbook-section--alt {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lookbook-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.lookbook-head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4rem);
    letter-spacing: 0.04em;
    line-height: 0.9;
}

.section-head h1,
.section-head h2 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4rem);
    letter-spacing: 0.04em;
}

.shop-section-title {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.shop-section-title .section-icon {
    font-size: 0.72em !important;
}

.lookbook-lede {
    margin: 0;
    max-width: 28ch;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Products — horizontal rails (4by4 style) */
.product-stack {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    width: calc(100% + 2 * var(--space));
    margin-inline: calc(-1 * var(--space));
}

.product-rail {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x;
}

.product-rail::-webkit-scrollbar {
    display: none;
}

.product-rail.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.product-rail-track {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    width: max-content;
    padding-inline: var(--space);
}

.product-card {
    flex: 0 0 clamp(160px, 42vw, 200px);
    width: clamp(160px, 42vw, 200px);
    height: clamp(280px, 58vw, 340px);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    background: #0e0e0e;
    border: 1px solid var(--line);
    transition: transform 0.3s ease, border-color 0.3s ease;
    user-select: none;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 29, 46, 0.45);
}

.product-card.is-hidden {
    display: none;
}

.product-media {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    aspect-ratio: unset;
    background: var(--surface);
    display: grid;
    place-items: center;
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-media img {
    transform: scale(1.05);
}

.product-badge,
.product-status {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    padding: 0.25rem 0.5rem;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--line);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.product-view {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 2;
    padding: 0.35rem 0.65rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-card:hover .product-view {
    opacity: 1;
    transform: none;
}

.product-body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.7rem 0.75rem 0.8rem;
    flex: 0 0 88px;
    height: 88px;
    box-sizing: border-box;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0;
    min-height: 1.2rem;
    background: transparent;
}

.product-meta h3 {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-meta span {
    color: var(--accent);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.82rem;
}

.product-blurb {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.35;
    height: 2.7em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.media-empty {
    color: var(--muted);
    font-family: var(--font-display);
    letter-spacing: 0.08em;
}

@media (hover: none) {
    .product-view {
        opacity: 1;
        transform: none;
        background: rgba(10, 10, 10, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
}

.shop-index-grid--compact {
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .lookbook-head {
        align-items: start;
        flex-direction: column;
    }

    .maison-rail-inner {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .maison-rail-inner::-webkit-scrollbar {
        display: none;
    }
}

.media-swipe {
    position: absolute;
    inset: 0;
    touch-action: pan-y;
    user-select: none;
}

.media-swipe-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.media-swipe-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.media-swipe-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--frame-x, 50%) var(--frame-y, 50%);
    transform: scale(var(--frame-zoom, 1));
    transform-origin: var(--frame-x, 50%) var(--frame-y, 50%);
    pointer-events: none;
}

.media-empty {
    font-family: var(--font-display);
    color: var(--muted);
    font-size: 1.4rem;
}

.media-swipe-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.7rem;
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    z-index: 2;
    pointer-events: none;
}

.media-swipe-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.media-swipe-dots span.is-on {
    background: #fff;
}

.media-swipe-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(8, 8, 10, 0.72);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    opacity: 0;
    pointer-events: none;
}

.media-swipe:hover .media-swipe-nav,
.media-swipe:focus-within .media-swipe-nav,
[data-detail-swipe] .media-swipe-nav {
    opacity: 1;
    pointer-events: auto;
}

.media-swipe-nav:hover {
    background: rgba(226, 59, 69, 0.85);
    border-color: rgba(226, 59, 69, 0.9);
}

.media-swipe-nav.is-disabled,
.media-swipe-nav:disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
}

.media-swipe-prev {
    left: 0.75rem;
}

.media-swipe-next {
    right: 0.75rem;
}

.media-swipe-nav span {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.media-swipe-prev span {
    transform: translateX(2px) rotate(135deg);
}

.media-swipe-next span {
    transform: translateX(-2px) rotate(-45deg);
}

@media (max-width: 767px) {
    .media-swipe-nav {
        display: grid;
        opacity: 1;
        pointer-events: auto;
        width: 36px;
        height: 36px;
        background: rgba(8, 8, 10, 0.78);
    }

    .media-swipe-prev {
        left: 0.5rem;
    }

    .media-swipe-next {
        right: 0.5rem;
    }
}

.product-media .drop-badge {
    z-index: 3;
}

.product-body {
    display: grid;
    gap: 0.65rem;
    min-width: 0;
}

.product-copy {
    min-width: 0;
}

.product-copy h3 {
    margin: 0;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.product-copy h3 a {
    color: var(--text);
    text-decoration: none;
}

.product-copy p {
    margin: 0.25rem 0 0;
    color: var(--muted);
    font-size: 0.85rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.shop-nav-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
}

.shop-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 110px;
    padding: 1.1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    text-decoration: none;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent 55%),
        rgba(8, 8, 10, 0.6);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.shop-nav-btn span {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: -0.03em;
}

.shop-nav-btn em {
    font-style: normal;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.shop-nav-btn:hover {
    border-color: rgba(226, 59, 69, 0.55);
    transform: translateY(-2px);
}

.drop-detail-media .media-swipe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #050506;
}

.drop-detail-media.has-photo .media-swipe {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
}

.drop-detail-media .media-swipe-slide img {
    object-fit: cover;
    object-position: var(--frame-x, 50%) var(--frame-y, 50%);
    transform: scale(var(--frame-zoom, 1));
    transform-origin: var(--frame-x, 50%) var(--frame-y, 50%);
}

.gallery-hint {
    margin: 0.65rem 0 0;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
}

.shop-page {
    padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1rem, 3vw, 1.5rem) 0;
    max-width: var(--max);
    margin: 0 auto;
}

.shop-page .shop-world {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
}

.shop-page .shop-world .zone-head,
.shop-page .shop-world .zone-rail,
.shop-page .shop-world .dept-section {
    max-width: 1120px;
}

.maison-rail--page {
    border: 0;
    background: transparent;
    margin: 0 0 1.5rem;
}

.maison-rail--page .maison-rail-inner {
    padding: 0;
    justify-content: flex-start;
}

.shop-index-grid {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-index-link {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease, padding-left 0.25s var(--ease);
}

.shop-index-link:hover {
    padding-left: 0.5rem;
}

.shop-index-name {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: -0.03em;
}

.shop-index-name .section-icon {
    font-size: 0.72em !important;
}

.shop-index-meta {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.shop-group-title {
    margin: 1.75rem 0 0.85rem;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.shop-group-title:first-child {
    margin-top: 0;
}

.shop-crumb {
    margin: 0 0 0.75rem;
    color: var(--muted);
    font-size: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.shop-crumb a { color: var(--muted); text-decoration: none; }
.shop-crumb a:hover { color: var(--accent); }
.shop-sections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.85rem;
}
.shop-section-card {
    display: grid;
    gap: 0.35rem;
    padding: 1.25rem 1rem;
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--text);
    background: rgba(255,255,255,0.03);
    min-height: 100px;
}
.shop-section-card strong { font-size: 1.1rem; }
.shop-section-card span { color: var(--muted); font-size: 0.82rem; }
.shop-section-card:hover { border-color: var(--accent); }
.drop-media img {
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
}
.drop-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.drop-thumb {
    width: 64px;
    height: 64px;
    padding: 0;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
}
.drop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.drop-thumb.is-active {
    border-color: var(--accent);
}

/* —— Piece passport —— */
.piece-page {
    padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 3vw, 1.5rem) 4rem;
    min-height: calc(100svh - var(--header-h));
}

.piece-shell {
    max-width: 860px;
    margin: 0 auto;
}

.piece-eyebrow {
    margin: 0 0 0.5rem;
    color: var(--accent);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.piece-title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 3.4rem);
    letter-spacing: -0.04em;
    line-height: 0.95;
}

.piece-sub {
    margin: 0 0 0.75rem;
    color: var(--muted);
}

.piece-code {
    margin: 0 0 1.75rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.piece-code strong {
    color: var(--text);
    letter-spacing: 0.06em;
}

.piece-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    padding: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
}

.piece-card h2 {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
}

.piece-card > p {
    margin: 0 0 1rem;
    color: var(--muted);
    line-height: 1.5;
}

.piece-form {
    display: grid;
    gap: 0.85rem;
}

.piece-form label {
    display: grid;
    gap: 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.piece-form input {
    width: 100%;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--line);
    background: #0a0a0c;
    color: var(--text);
    font: inherit;
}

.piece-hero-row {
    display: grid;
    grid-template-columns: minmax(140px, 220px) 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.piece-visual {
    aspect-ratio: 1;
    border: 1px solid var(--line);
    background: #000;
    overflow: hidden;
}

.piece-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.piece-visual-empty {
    height: 100%;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    color: var(--muted);
}

.piece-facts {
    display: grid;
    gap: 0.65rem;
    align-content: start;
}

.piece-fact {
    border: 1px solid var(--line);
    padding: 0.75rem 0.85rem;
    background: rgba(255, 255, 255, 0.03);
}

.piece-fact span {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.piece-fact strong {
    font-size: 1rem;
}

.piece-story {
    margin: 0 !important;
    color: var(--text) !important;
    font-size: 1.02rem;
    line-height: 1.65;
    white-space: pre-wrap;
}

.piece-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.piece-timeline li {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 0.75rem;
    position: relative;
}

.tl-dot {
    width: 10px;
    height: 10px;
    margin-top: 0.35rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(226, 59, 69, 0.18);
}

.piece-timeline strong {
    display: block;
}

.piece-timeline span,
.piece-timeline em,
.piece-timeline p {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
    font-style: normal;
    margin: 0.15rem 0 0;
}

#piece-lock-alert,
#piece-transfer-alert {
    margin-top: 0.85rem;
}

@media (max-width: 700px) {
    .piece-hero-row {
        grid-template-columns: 1fr;
    }
}

/* —— Clean catalog layout —— */
.catalog-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.5rem) var(--space) clamp(3.5rem, 8vw, 5.5rem);
}

.catalog-preview {
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(2.75rem, 7vw, 4.5rem) var(--space);
}

.catalog-preview--alt {
    border-top: 1px solid var(--line);
    background: var(--bg-2);
    max-width: none;
    width: 100%;
}

.catalog-preview--alt .catalog-head,
.catalog-preview--alt .product-grid,
.catalog-preview--alt .products-empty {
    max-width: 1120px;
    margin-inline: auto;
}

.catalog-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.catalog-head h1,
.catalog-head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 7vw, 4rem);
    letter-spacing: 0.03em;
    line-height: 0.95;
    font-weight: 400;
}

.catalog-lede {
    margin: 0.65rem 0 0;
    max-width: 28rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.catalog-page .filter-bar {
    margin-bottom: 1.75rem;
}

.catalog-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1.75rem;
}

.catalog-tabs--sub {
    margin-top: -0.75rem;
}

.catalog-tab {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--line);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.catalog-tab:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.28);
}

.catalog-tab.is-active {
    color: #fff;
    border-color: var(--accent);
    background: rgba(225, 29, 46, 0.14);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.product-grid .product-card {
    flex: none;
    width: 100%;
    height: auto;
    min-height: 0;
}

.product-grid .product-media {
    aspect-ratio: 3 / 4;
    flex: none;
}

.product-grid .product-body {
    height: auto;
    min-height: 88px;
    flex: none;
}

.home-featured {
    padding: clamp(2.5rem, 6vw, 4rem) var(--space);
    border-bottom: 1px solid var(--line);
}

.brand-stance {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 0.85rem;
    padding: clamp(3.5rem, 9vw, 6rem) var(--space);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(ellipse 55% 70% at 50% 40%, rgba(225, 29, 46, 0.08), transparent 70%),
        var(--bg);
}

.brand-stance-visual {
    width: clamp(9rem, 32vw, 14rem);
    height: auto;
    margin-bottom: 0.35rem;
    pointer-events: none;
    user-select: none;
}

.brand-stance .section-kicker {
    margin: 0;
}

.brand-stance h2 {
    margin: 0;
    max-width: 16ch;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 7vw, 3.6rem);
    letter-spacing: 0.03em;
    line-height: 0.95;
    font-weight: 400;
}

.brand-stance-line {
    margin: 0;
    max-width: 22rem;
    color: var(--muted);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
}

.home-featured-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: center;
}

.home-featured-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--bg-elevated);
    border: 1px solid var(--line);
}

.home-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.home-featured-media:hover img {
    transform: scale(1.03);
}

.home-featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.65rem;
    background: rgba(5, 5, 5, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-featured-copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: 0.03em;
    line-height: 0.95;
    font-weight: 400;
}

.home-featured-sub {
    margin: 0.85rem 0 1.25rem;
    color: var(--muted);
    max-width: 26rem;
    line-height: 1.5;
}

.home-featured-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.35rem;
}

.home-featured-price {
    font-family: var(--font-display);
    font-size: 1.45rem;
    letter-spacing: 0.04em;
}

.products-empty {
    margin: 0;
    padding: 2.5rem 1rem;
    text-align: center;
    color: var(--muted);
    border: 1px dashed var(--line);
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .home-featured-inner {
        grid-template-columns: 1fr;
    }

    .home-featured-media {
        aspect-ratio: 1 / 1.05;
        max-width: 420px;
    }
}

@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .product-grid .product-blurb {
        display: none;
    }

    .product-grid .product-body {
        min-height: 64px;
        padding: 0.55rem 0.6rem 0.65rem;
    }
}
