/* ═══════════════════════════════════════════
   LUXTRA HAIR — Main Stylesheet
   A Modern Hair Maison
   ═══════════════════════════════════════════ */

/* ─── CSS Reset & Design Tokens ─── */
:root {
    --bg-cream: #f4efe8;
    --bg-cream-warm: #faf9f6;
    --text-dark: #111111;
    --text-light: #ffffff;
    --text-muted: #777;
    --border-color: rgba(17, 17, 17, 0.12);
    --border-bold: rgba(17, 17, 17, 0.3);

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-logo: 'Genora Sans', 'Inter', sans-serif;

    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body, html {
    width: 100%;
    font-family: var(--font-sans);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* ─── Typography Utility ─── */
.serif-title { font-family: var(--font-serif); }
.sans-title { font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.mt-8 { margin-top: 2.5rem; }

.section-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}


/* ═══════════════════════════════════════════
   NAVIGATION — Single thin row, Enoléh style
   ═══════════════════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 0.7rem 2rem;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: all 0.5s var(--ease-out-expo);
}

/* Scrolled state: opaque cream with dark hairline */
.site-nav.nav-scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(0,0,0,0.08);
}
.site-nav.nav-scrolled .nav-logo,
.site-nav.nav-scrolled .nav-link,
.site-nav.nav-scrolled .nav-icon,
.site-nav.nav-scrolled .currency-selector,
.site-nav.nav-scrolled .cart-count { color: var(--text-dark); }

.nav-left, .nav-right { flex: 1; display: flex; align-items: center; }
.nav-left { gap: 2rem; }
.nav-right { justify-content: flex-end; gap: 1.2rem; align-items: center; }
.nav-center { flex: 0 0 auto; text-align: center; padding: 0 3rem; }

.currency-selector {
    display: flex; align-items: center; gap: 0.3rem;
    font-size: 0.7rem; letter-spacing: 0.06em;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.4s ease;
}

.nav-logo {
    font-family: var(--font-logo);
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.4s ease;
    font-weight: 400;
    white-space: nowrap;
}

.nav-link {
    font-size: 0.72rem; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none;
    color: var(--text-light);
    transition: color 0.4s ease, opacity 0.3s ease;
    position: relative;
    white-space: nowrap;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.4s var(--ease-out-expo);
}
.nav-link:hover::after { width: 100%; }

.nav-icon {
    color: var(--text-light);
    transition: color 0.4s ease, transform 0.3s ease;
    display: flex; align-items: center;
}
.nav-icon:hover { transform: scale(1.08); }

.cart-count {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    margin-left: 0.2rem;
    color: inherit;
}


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    position: relative;
    width: 100vw; height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Full-bleed background video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.08) 45%,
        rgba(0,0,0,0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 1;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

/* Hero CTA — dramatic border button */
.btn-hero {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    border: 1.5px solid rgba(255,255,255,0.7);
    color: var(--text-light);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s var(--ease-out-expo);
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.06);
}
.btn-hero:hover {
    background: var(--text-light);
    color: var(--text-dark);
    border-color: var(--text-light);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.hero-scroll-indicator span {
    display: block;
    width: 1px; height: 50px;
    background: rgba(255,255,255,0.4);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.5); transform-origin: top; }
    50%      { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}


/* ═══════════════════════════════════════════
   THE COLLECTION — Product Gallery
   Clean cream background for visual break after dark hero
   ═══════════════════════════════════════════ */
.collection-gallery {
    padding: 6rem 5% 5rem;
    background: var(--bg-cream);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.collection-header { margin-bottom: 3.5rem; }

.collection-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.collection-item {
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.5s var(--ease-out-expo);
}

.collection-item:hover { transform: translateY(-6px); }

.collection-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    margin-bottom: 1.2rem;
    background: var(--bg-cream-warm);
}

.collection-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 1.2s var(--ease-out-expo);
}

.collection-item:hover .collection-img-wrap img {
    transform: scale(1.04);
}

.collection-item h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.collection-study {
    font-family: var(--font-serif);
    font-size: 0.82rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.collection-price {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}


/* ═══════════════════════════════════════════
   EDITORIAL AUTO-SCROLL CAROUSEL — Cinematic Stills
   ═══════════════════════════════════════════ */
.editorial-carousel {
    width: 100%;
    overflow: hidden;
    background: var(--text-dark);
    padding: 0;
}

.carousel-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: carouselScroll 160s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes carouselScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-slide {
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;

}

.carousel-slide.portrait {
    width: 280px;
    height: 500px;
}

.carousel-slide.landscape {
    width: 500px;
    height: 500px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 1.2s var(--ease-out-expo), filter 0.6s ease;
    filter: brightness(0.92);
}

.carousel-slide:hover img {
    transform: scale(1.03);
    filter: brightness(1);
}

.slide-label {
    display: none;
}


/* ═══════════════════════════════════════════
   BOLD STATEMENT BANNER
   ═══════════════════════════════════════════ */
.statement-banner {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--bg-cream);
    border-bottom: 1px solid var(--border-color);
}

.statement-text {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.statement-subtext {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-style: italic;
    color: var(--text-muted);
    margin-top: 1rem;
}


/* ═══════════════════════════════════════════
   BUTTONS (Shared)
   ═══════════════════════════════════════════ */
.btn-primary {
    display: inline-block;
    padding: 1.1rem 3rem;
    background-color: var(--text-dark);
    color: var(--text-light);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    border: 1.5px solid var(--text-dark);
    transition: all 0.5s var(--ease-out-expo);
    cursor: pointer;
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}
.btn-primary.dark { background: var(--text-dark); color: var(--text-light); }
.btn-primary.dark:hover { background: transparent; color: var(--text-dark); }

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2.8rem;
    background-color: transparent;
    color: var(--text-dark);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    border: 1.5px solid var(--border-bold);
    transition: all 0.4s var(--ease-out-expo);
}
.btn-secondary:hover { border-color: var(--text-dark); background: var(--text-dark); color: var(--text-light); }


/* ═══════════════════════════════════════════
   THE MOVEMENT STUDY (Products)
   ═══════════════════════════════════════════ */
.movement-study {
    padding: 7rem 5%;
    text-align: center;
}

.section-header { margin-bottom: 4rem; }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 3.5rem;
}

.product-card {
    text-decoration: none;
    color: var(--text-dark);
    display: block;
    text-align: left;
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #e8e4de;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.product-image {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease-out-expo);
}

.product-card:hover .product-image { transform: scale(1.06); }

.product-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--text-dark);
    color: var(--text-light);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
}

.product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
}

.product-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.product-price {
    font-size: 0.85rem;
    color: #555;
    letter-spacing: 0.03em;
    margin-top: 0.3rem;
}

.button-container { margin-top: 1.5rem; }


/* ═══════════════════════════════════════════
   THE LUXTRA STANDARD
   ═══════════════════════════════════════════ */
.luxtra-standard {
    padding: 7rem 5%;
    background-color: var(--bg-cream-warm);
    border-top: 1px solid var(--border-color);
}

.standard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.standard-text { text-align: left; }

.standard-list {
    list-style: none;
    margin-top: 2rem;
}

.standard-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.standard-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.standard-image { width: 100%; overflow: hidden; }
.standard-image img,
.standard-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ═══════════════════════════════════════════
   YOUR LUXTRA EXPERIENCE — Editorial Split
   ═══════════════════════════════════════════ */
.experience-section {
    background: var(--text-dark);
    color: var(--text-light);
}

.experience-split {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 90vh;
}

.experience-image {
    overflow: hidden;
    position: relative;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.experience-text {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-eyebrow.light { color: rgba(255,255,255,0.4); }

.experience-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.experience-intro {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.6;
    margin-bottom: 3rem;
    max-width: 420px;
}

.experience-list {
    list-style: none;
    margin-bottom: 3rem;
}

.experience-list li {
    display: flex;
    flex-direction: column;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.experience-list li:first-child {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.exp-item-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.exp-item-desc {
    font-size: 0.8rem;
    opacity: 0.45;
    line-height: 1.5;
}

.btn-experience {
    display: inline-block;
    align-self: flex-start;
    padding: 0.9rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--text-light);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    transition: all 0.5s var(--ease-out-expo);
}

.btn-experience:hover {
    background: var(--text-light);
    color: var(--text-dark);
    border-color: var(--text-light);
}


/* ═══════════════════════════════════════════
   THE VOLUME SYSTEM
   ═══════════════════════════════════════════ */
.volume-system {
    padding: 7rem 5%;
    text-align: center;
}

.volume-container {
    max-width: 800px;
    margin: 0 auto;
}

.volume-container .sans-title { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text-muted); }
.volume-container .serif-title { font-size: 2.5rem; font-weight: 400; margin-bottom: 1.5rem; }
.volume-desc { line-height: 1.7; color: var(--text-muted); margin-bottom: 3rem; }

.volume-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.vol-card {
    border: 1.5px solid var(--border-color);
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.4s var(--ease-out-expo);
    background: transparent;
    cursor: pointer;
}
.vol-card.dark {
    background: var(--text-dark);
    color: var(--text-light);
    border-color: var(--text-dark);
}
.vol-card.dark p { color: rgba(255,255,255,0.5); }
.vol-card.dark .vol-price { color: rgba(255,255,255,0.7); }

.vol-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.vol-card h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.2rem; }
.vol-card h5 { font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; opacity: 0.7; }
.vol-card p  { font-size: 0.85rem; line-height: 1.6; color: var(--text-muted); font-weight: 300; }
.vol-price   { display: block; margin-top: 1.2rem; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.03em; }


/* ═══════════════════════════════════════════
   ACCESSORIES — The Ritual
   ═══════════════════════════════════════════ */
.accessories-section {
    padding: 6rem 5%;
    background: var(--bg-cream);
    text-align: center;
}

.accessories-header { margin-bottom: 3rem; }

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.acc-card {
    text-align: center;
    padding: 0 0.5rem;
}

.acc-category {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0.4rem;
}

.acc-purpose {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.acc-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 1.2rem;
    background: var(--bg-cream-warm);
}

.acc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 1s var(--ease-out-expo);
}

.acc-card:hover .acc-img-wrap img {
    transform: scale(1.04);
}

.acc-card h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.acc-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.acc-price {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.btn-add-to-bag {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: var(--text-dark);
    color: var(--text-light);
    border: none;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
}

.btn-add-to-bag:hover { background: #444; }
.btn-add-to-bag.added { background: #2d6b45; }

.accessories-cta {
    margin-top: 2.5rem;
}

.acc-or {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-muted);
}

/* Standard intro paragraph */
.standard-intro {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
    padding: 5rem 5% 2rem;
    background-color: var(--text-dark);
    color: var(--text-light);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.footer-logo {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-col p { font-size: 0.85rem; opacity: 0.5; }
.footer-col h5 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.footer-col a {
    display: block; color: var(--text-light);
    text-decoration: none; font-size: 0.85rem;
    opacity: 0.5; margin-bottom: 0.8rem;
    transition: opacity 0.3s ease;
}
.footer-col a:hover { opacity: 1; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.72rem;
    opacity: 0.4;
    letter-spacing: 0.05em;
}

.built-by { color: inherit; text-decoration: none; }
.built-by:hover { text-decoration: underline; opacity: 1; }


/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */
.reveal-up {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .collection-grid { grid-template-columns: repeat(3, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .accessories-grid { grid-template-columns: repeat(2, 1fr); }
    .standard-grid { grid-template-columns: 1fr; gap: 3rem; }
    .experience-split { grid-template-columns: 1fr; min-height: auto; }
    .experience-image { height: 50vh; }
    .experience-text { padding: 3.5rem 2rem; }
    .carousel-slide.portrait { width: 240px; height: 420px; }
    .carousel-slide.landscape { width: 420px; height: 420px; }
}

@media (max-width: 768px) {
    .site-nav { padding: 0.6rem 1rem; }
    .nav-left { display: none; }
    .nav-center { flex: 1; text-align: left; padding: 0; }
    .nav-right { flex: 0 0 auto; }
    .nav-logo { font-size: 1.2rem; letter-spacing: 0.2em; }
    .hero-title { font-size: 3.5rem; }
    .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .collection-gallery { padding: 4rem 4%; }
    .accessories-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .accessories-section { padding: 4rem 4%; }
    .product-grid { grid-template-columns: 1fr; gap: 3rem; }
    .volume-cards { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .carousel-slide.portrait { width: 200px; height: 340px; }
    .carousel-slide.landscape { width: 340px; height: 340px; }
    .statement-banner { padding: 3rem 1.5rem; }
}