/* ================================================================
   NEWTON — Premium Fashion Brand CSS
   Design language: Alo Yoga × Lululemon × Maison Kitsuné
   ================================================================ */

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #FAF9F7;
    --bg-warm: #F5F0EB;
    --bg-cool: #F0F2F5;
    --ink: #1A1A2E;
    --ink-soft: #4A4A5A;
    --ink-muted: #8A8A9A;
    --accent: #5B3A6B;
    --accent-hover: #7B4A8B;
    --accent-light: #EDE5F0;
    --rose: #C9A0B8;
    --gold: #C9A227;
    --border: #E8E5E0;
    --border-light: #F0EDE8;
    --white: #FFFFFF;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --serif: 'Cormorant Garamond', 'Georgia', serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.1);
    --transition: 0.4s var(--ease);
    --transition-fast: 0.25s var(--ease);
    --transition-slow: 0.7s var(--ease);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
em { font-family: var(--serif); font-style: italic; }

::selection { background: var(--accent); color: white; }

/* === CUSTOM CURSOR === */
.cursor, .cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    will-change: transform;
}

.cursor {
    width: 8px;
    height: 8px;
    background: white;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.5);
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}

.cursor-follower.hover {
    width: 56px;
    height: 56px;
    border-color: white;
}

@media (pointer: coarse) {
    .cursor, .cursor-follower { display: none !important; }
}

/* === PRELOADER === */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner { text-align: center; }

.preloader-logo {
    font-family: var(--sans);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 10px;
    color: white;
    margin-bottom: 32px;
    animation: preloaderPulse 1.5s ease infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.preloader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-fill {
    height: 100%;
    width: 0%;
    background: white;
    border-radius: 2px;
    animation: preloaderFill 1.8s var(--ease) forwards;
}

@keyframes preloaderFill {
    to { width: 100%; }
}

/* === ANNOUNCEMENT BAR === */
.announce {
    background: var(--ink);
    color: white;
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}

.announce-track {
    display: flex;
    gap: 40px;
    animation: announceScroll 25s linear infinite;
    white-space: nowrap;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.announce-track .dot {
    color: var(--rose);
    font-size: 0.5rem;
}

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

/* === HEADER / NAV === */
.header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s var(--ease);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 249, 247, 0.8);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.header.scrolled::before { opacity: 1; }

.nav {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 36px;
    min-width: 0;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--ink-soft);
    background: none;
    border: none;
    padding: 0;
    transition: color var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--ink);
    transition: width var(--transition);
}

.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--ink);
}

.nav-icon {
    background: none;
    border: none;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-icon:hover { color: var(--ink); }

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--accent);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    transform: scale(0);
    transition: transform 0.3s var(--ease-spring);
}

.cart-badge.visible { transform: scale(1); }

/* Mega menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.35s var(--ease);
    z-index: -1;
}

.mega-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.mega-col h4 {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ink-muted);
    margin-bottom: 20px;
}

.mega-col a {
    display: block;
    font-size: 0.88rem;
    color: var(--ink-soft);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.mega-col a:hover { color: var(--ink); }

.mega-colors { display: flex; gap: 8px; flex-wrap: wrap; }

.mega-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: transform 0.2s var(--ease-spring);
}

.mega-dot:hover { transform: scale(1.2); }

.mega-featured {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 260px;
}

.mega-featured-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mega-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    z-index: 1;
}

.mega-featured h3, .mega-featured p, .mega-featured .mega-link {
    color: white;
    position: relative;
    z-index: 1;
}

.mega-featured h3 { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 4px; }
.mega-featured p { font-size: 0.85rem; opacity: 0.8; margin-bottom: 12px; }
.mega-link { font-size: 0.85rem; font-weight: 500; }

/* Search overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(250, 249, 247, 0.97);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

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

.search-inner {
    width: 100%;
    max-width: 600px;
    padding: 0 24px;
    position: relative;
}

.search-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--ink);
    background: transparent;
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--ink);
    padding: 16px 48px 16px 0;
    outline: none;
}

.search-input::placeholder { color: var(--ink-muted); }

.search-close {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--ink-muted);
    transition: color var(--transition-fast);
}

.search-close:hover { color: var(--ink); }

.search-suggestions {
    max-width: 600px;
    padding: 32px 24px 0;
    width: 100%;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.search-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ink-muted);
    margin-right: 8px;
}

.search-suggestions a {
    font-size: 0.85rem;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.search-suggestions a:hover {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
}

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

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

.hero-gradient-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 25%, #5B3A6B 50%, #C9A0B8 75%, #E8D5E0 100%);
    animation: heroG1 15s ease infinite alternate;
    background-size: 200% 200%;
}

@keyframes heroG1 {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.hero-gradient-2 {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(91, 58, 107, 0.4) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(201, 160, 184, 0.3) 0%, transparent 60%);
    animation: heroG2 12s ease infinite alternate-reverse;
}

@keyframes heroG2 {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 24px;
}

.hero-overline {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 32px;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 300;
    line-height: 0.95;
    margin-bottom: 32px;
}

.hero-line { display: block; }

.hero-line--italic {
    font-style: italic;
    font-weight: 400;
    font-size: 0.6em;
    opacity: 0.8;
    margin: 0.1em 0;
}

.hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    opacity: 0.75;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--ink);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-primary svg {
    transition: transform 0.3s var(--ease);
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-primary.btn-lg { padding: 16px 40px; font-size: 0.9rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-text {
    background: none;
    border: none;
    color: var(--ink-soft);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition-fast);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-text:hover { color: var(--ink); }

.btn-full { width: 100%; text-align: center; display: block; }

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: white;
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0% { top: -50%; }
    100% { top: 150%; }
}

/* === EDITORIAL STRIP === */
.strip {
    padding: 120px 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
}

.strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
}

.strip-number {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--border);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.strip-text h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 12px;
}

.strip-text h2 em {
    color: var(--accent);
}

.strip-text p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.7;
}

/* === CATEGORIES === */
.categories {
    padding: 120px 0;
    background: var(--bg);
}

.cat-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.overline {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
}

.cat-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cat-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition);
    cursor: pointer;
}

.cat-card:hover { transform: translateY(-6px); }

.cat-visual {
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.cat-card:hover .cat-visual { transform: scale(0.97); }

.cat-icon {
    color: rgba(0,0,0,0.15);
    transition: all var(--transition);
}

.cat-card:hover .cat-icon {
    color: rgba(0,0,0,0.3);
    transform: scale(1.1);
}

.cat-info {
    padding: 20px 4px;
}

.cat-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.cat-info span {
    font-size: 0.82rem;
    color: var(--ink-muted);
}

/* === HERO PRODUCT === */
.hero-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    background: var(--white);
}

.hp-visual {
    position: relative;
    overflow: hidden;
}

.hp-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px;
}

.hp-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hp-content {
    padding: 80px 64px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hp-name {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 8px;
}

.hp-tagline {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 24px;
}

.hp-desc {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 420px;
}

.hp-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.hp-detail {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.hp-detail-label {
    color: var(--ink-muted);
    font-weight: 500;
}

.hp-detail-value { font-weight: 600; }

.hp-colors {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
}

.hp-color {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.hp-color::after {
    content: attr(data-name);
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.68rem;
    color: var(--ink-muted);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
}

.hp-color:hover::after, .hp-color.active::after { opacity: 1; }

.hp-color.active {
    border-color: var(--ink);
    transform: scale(1.1);
}

.hp-color:hover { transform: scale(1.1); }

.hp-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.hp-price-amount {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 500;
}

.hp-all-link {
    font-size: 0.85rem;
    color: var(--ink-muted);
    transition: color var(--transition-fast);
}

.hp-all-link:hover { color: var(--ink); }

/* === COLLECTION === */
.collection {
    padding: 120px 0;
    background: var(--bg);
}

.col-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.col-filters {
    display: flex;
    gap: 8px;
}

.col-filter {
    padding: 10px 22px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: transparent;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.col-filter:hover { border-color: var(--ink); color: var(--ink); }

.col-filter.active {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
}

.col-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Product cards */
.product {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.product:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product.hidden-card {
    display: none;
}

.product-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-grad {
    width: 100%;
    height: 100%;
    transition: transform 0.8s var(--ease);
}

.product:hover .product-grad { transform: scale(1.05); }

.product-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0;
    transform: translateY(-8px);
    transition: all var(--transition);
}

.product:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    transition: all var(--transition-fast);
}

.product-action:hover {
    background: white;
    color: var(--rose);
    transform: scale(1.1);
}

.product-action.liked {
    color: var(--rose);
}

.product-action.liked svg {
    fill: var(--rose);
}

.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--ink);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
}

.product-tag.tag-new { background: var(--accent); }
.product-tag.tag-limited { background: var(--gold); }

.product-body { padding: 24px; }

.product-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-sub {
    font-size: 0.82rem;
    color: var(--ink-muted);
    margin-bottom: 16px;
}

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

.product-price {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
}

.product-swatches { display: flex; gap: 6px; }

.swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: transform 0.2s var(--ease-spring);
}

.swatch:hover { transform: scale(1.25); }

/* === SPLIT STORY === */
.split-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
}

.split-left { position: relative; overflow: hidden; }

.split-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.split-right {
    padding: 80px 64px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.split-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 32px;
}

.split-text {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 20px;
}

.split-text em {
    font-weight: 500;
    color: var(--ink);
}

.split-stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.split-stat-num {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--accent);
    display: block;
}

.split-stat-label {
    font-size: 0.78rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 120px 0;
    background: var(--bg-warm);
}

.testi-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.testi-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testi-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testi-card blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ink-soft);
    font-style: italic;
    margin-bottom: 28px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testi-author strong {
    display: block;
    font-size: 0.88rem;
}

.testi-author span {
    font-size: 0.78rem;
    color: var(--ink-muted);
}

/* === MARQUEE === */
.marquee-section {
    padding: 28px 0;
    background: var(--ink);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap;
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.mdot { color: var(--accent); }

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

/* === NEWSLETTER === */
.newsletter {
    padding: 120px 0;
    background: var(--bg);
}

.nl-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.nl-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 12px;
}

.nl-desc {
    color: var(--ink-muted);
    margin-bottom: 36px;
    font-size: 0.95rem;
}

.nl-input-wrap {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.nl-input-wrap:focus-within { border-color: var(--ink); }

.nl-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 24px;
    font-size: 0.9rem;
    font-family: var(--sans);
    outline: none;
    color: var(--ink);
}

.nl-input-wrap input::placeholder { color: var(--ink-muted); }

.nl-submit {
    background: var(--ink);
    color: white;
    border: none;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.nl-submit:hover { background: var(--accent); }

.nl-terms {
    display: block;
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--ink-muted);
}

/* === FOOTER === */
.footer {
    background: var(--ink);
    color: white;
    padding: 80px 0 40px;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 60px;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 6px;
    display: inline-block;
    margin-bottom: 16px;
    color: white;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: white;
    color: var(--ink);
    border-color: white;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    padding: 5px 0;
    transition: color var(--transition-fast);
}

.footer-col a:hover { color: white; }

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

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

.footer-legal a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    transition: color var(--transition-fast);
}

.footer-legal a:hover { color: white; }

/* === CART DRAWER === */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 92vw;
    height: 100vh;
    background: var(--white);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.08);
}

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

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
}

.cart-drawer-header h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
}

.cart-drawer-close {
    background: none;
    border: none;
    color: var(--ink-muted);
    transition: color var(--transition-fast);
}

.cart-drawer-close:hover { color: var(--ink); }

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
}

.cart-empty {
    text-align: center;
    padding: 80px 0;
}

.cart-empty p {
    color: var(--ink-muted);
    margin-bottom: 20px;
}

.cart-drawer-footer {
    padding: 24px 32px;
    border-top: 1px solid var(--border);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-shipping-note {
    font-size: 0.78rem;
    color: var(--ink-muted);
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    animation: cartSlideIn 0.35s var(--ease);
}

@keyframes cartSlideIn {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: translateX(0); }
}

.cart-item-swatch {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.cart-item-info { flex: 1; }

.cart-item-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.cart-item-info .cart-item-sub {
    font-size: 0.78rem;
    color: var(--ink-muted);
    margin-bottom: 6px;
}

.cart-item-info .cart-item-price {
    font-size: 0.88rem;
    font-weight: 600;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--ink-muted);
    font-size: 0.75rem;
    transition: color var(--transition-fast);
    align-self: flex-start;
}

.cart-item-remove:hover { color: var(--rose); }

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,26,46,0.3);
    backdrop-filter: blur(4px);
    z-index: 2999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.cart-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

/* === SCROLL REVEAL === */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .strip-inner { grid-template-columns: 1fr; gap: 48px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .col-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-product { grid-template-columns: 1fr; }
    .hp-content { padding: 60px 40px; }
    .split-story { grid-template-columns: 1fr; }
    .split-right { padding: 60px 40px; }
    .footer-top { grid-template-columns: 1fr; gap: 48px; }
    .mega-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-left, .nav-right .nav-link { display: none; }
    .hide-mobile { display: none; }
    
    .header { top: 36px; }
    .nav { padding: 0 20px; height: 60px; }
    
    .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
    
    .strip-inner { padding: 0 20px; }
    .cat-grid { padding: 0 20px; gap: 16px; }
    .col-header { flex-direction: column; align-items: flex-start; gap: 20px; padding: 0 20px; }
    .col-grid { padding: 0 20px; gap: 20px; }
    .testi-grid { padding: 0 20px; grid-template-columns: 1fr; }
    .hp-content { padding: 48px 20px; }
    .split-right { padding: 48px 20px; }
    .footer-top { padding: 0 20px 48px; }
    .footer-links { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { padding: 24px 20px 0; flex-direction: column; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }
    .mega-inner { grid-template-columns: 1fr; padding: 32px 20px; }
    .hp-actions { flex-direction: column; align-items: flex-start; }
    .split-stats { gap: 24px; }
    
    .cat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .col-filters { flex-wrap: wrap; }
    .col-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: 1fr; }
    .hero-cta .btn-primary { width: 100%; justify-content: center; }
    .split-stats { flex-direction: column; gap: 16px; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-muted); }