/* ============================================
   LUMIÈRE BEAUTY - Premium Ecommerce Design System
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
    /* Colors */
    --rose-gold: #B76E79;
    --rose-gold-light: #D4A5A5;
    --rose-gold-dark: #8B4D57;
    --blush: #F8E8E8;
    --blush-light: #FDF5F5;
    --champagne: #F7E7CE;
    --gold: #D4AF37;
    --cream: #FFFBF5;
    --white: #FFFFFF;
    --charcoal: #2D2D2D;
    --charcoal-light: #4A4A4A;
    --soft-gray: #8A8A8A;
    --light-gray: #E8E8E8;
    --lavender: #E6E0F8;

    /* Gradients */
    --gradient-rose: linear-gradient(135deg, #F8E8E8 0%, #E8D4D4 50%, #D4A5A5 100%);
    --gradient-gold: linear-gradient(135deg, #F7E7CE 0%, #E8D4B0 50%, #D4AF37 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(183, 110, 121, 0.3) 0%, transparent 70%);
    --gradient-hero: linear-gradient(135deg, #FFFBF5 0%, #F8E8E8 50%, #FDF5F5 100%);

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-glow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 45, 45, 0.08);
    --shadow-lg: 0 8px 40px rgba(45, 45, 45, 0.12);
    --shadow-glow: 0 0 40px rgba(183, 110, 121, 0.25);
    --shadow-glow-lg: 0 0 80px rgba(183, 110, 121, 0.35);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--charcoal);
    margin-bottom: var(--space-lg);
}

.highlight {
    color: var(--rose-gold);
    font-style: italic;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--rose-gold);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--rose-gold-dark);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--rose-gold);
    border: 2px solid var(--rose-gold);
}

.btn-outline:hover {
    background: var(--rose-gold);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
    background: linear-gradient(90deg, var(--rose-gold) 0%, var(--rose-gold-light) 100%);
    color: var(--white);
    padding: 10px var(--space-lg);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

/* ---------- Navigation - Modern Pill Style ---------- */
.navbar-minimal {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: transparent;
    transition: all var(--transition-base);
    padding: var(--space-md) var(--space-xl);
}

.navbar-minimal.scrolled {
    background: rgba(245, 225, 220, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-minimal-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-minimal {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo-icon {
    font-size: 1rem;
    color: var(--rose-gold);
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #1a1a1a;
}

/* Pill Style Nav Links */
.nav-links-pill {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link-pill {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.nav-link-pill:hover {
    background: rgba(183, 110, 121, 0.15);
    color: var(--rose-gold);
}

.nav-link-pill.active {
    background: var(--rose-gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

/* Menu Button */
.menu-btn-pill {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
}

.menu-btn-pill:hover {
    background: rgba(255, 255, 255, 0.4);
}

.menu-dots {
    font-size: 0.6rem;
    letter-spacing: 2px;
}

/* Responsive Nav */
@media (max-width: 768px) {
    .nav-links-pill {
        display: none;
    }

    .menu-btn-pill {
        padding: 8px 16px;
        font-size: 0.65rem;
    }

    .logo-name {
        font-size: 0.85rem;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.logo-accent {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rose-gold);
}

.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rose-gold);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    color: var(--charcoal);
    transition: all var(--transition-fast);
}

.nav-icon:hover {
    background: var(--blush);
    color: var(--rose-gold);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: var(--rose-gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px 0;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ---------- Hero Section - Minimal Pink Style ---------- */
.hero-minimal {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #F5E1DC 0%, #FCEAE6 30%, #F8E8E8 60%, #FCF0EE 100%);
}

/* Decorative Glow Orbs */
.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    pointer-events: none;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    top: 10%;
    left: 20%;
    animation: float-orb 8s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.3) 0%, transparent 70%);
    bottom: 20%;
    right: 30%;
    animation: float-orb 6s ease-in-out infinite reverse;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

/* Decorative Sparkles */
.hero-sparkle {
    position: absolute;
    font-size: 1.5rem;
    color: var(--rose-gold-light);
    opacity: 0.4;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.sparkle-3 {
    top: 40%;
    right: 25%;
    font-size: 1rem;
    animation-delay: 0.8s;
}

.sparkle-4 {
    bottom: 40%;
    left: 25%;
    font-size: 2rem;
    color: var(--gold);
    animation-delay: 2s;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.3) rotate(15deg);
    }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--rose-gold-light), var(--gold));
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 8s ease-in-out infinite;
}

.p1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.p2 {
    top: 60%;
    left: 5%;
    animation-delay: 1s;
    width: 4px;
    height: 4px;
}

.p3 {
    top: 30%;
    right: 20%;
    animation-delay: 2s;
    width: 8px;
    height: 8px;
}

.p4 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.p5 {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
    width: 5px;
    height: 5px;
}

.p6 {
    bottom: 40%;
    right: 25%;
    animation-delay: 5s;
    width: 4px;
    height: 4px;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-30px) translateX(10px);
        opacity: 0.9;
    }

    50% {
        transform: translateY(-50px) translateX(-10px);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-20px) translateX(20px);
        opacity: 0.8;
    }
}

/* Decorative Lines */
.hero-deco-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--rose-gold-light), transparent);
    opacity: 0.2;
}

.line-1 {
    width: 200px;
    height: 1px;
    top: 30%;
    left: 5%;
    transform: rotate(-30deg);
}

.line-2 {
    width: 150px;
    height: 1px;
    bottom: 35%;
    right: 8%;
    transform: rotate(20deg);
}

/* Third Glow Orb */
.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    animation: float-orb 7s ease-in-out infinite;
    animation-delay: -3s;
}

/* Hero Tagline */
.hero-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

/* Hero Description */
.hero-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--soft-gray);
    max-width: 380px;
    margin-bottom: var(--space-xl);
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.hero-cta-btn.primary {
    background: var(--rose-gold);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(183, 110, 121, 0.35);
}

.hero-cta-btn.primary:hover {
    background: var(--rose-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(183, 110, 121, 0.45);
}

.btn-arrow {
    font-size: 1.1rem;
    transition: transform var(--transition-fast);
}

.hero-cta-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Stats Row */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: var(--soft-gray);
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 15%;
    right: -10%;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: float-badge 4s ease-in-out infinite;
    z-index: 10;
}

.badge-icon {
    font-size: 1rem;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--charcoal);
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Bottom */
.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: var(--space-xl);
    z-index: 10;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--rose-gold), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: 1;
        height: 50px;
    }

    50% {
        opacity: 0.5;
        height: 35px;
    }
}

.scroll-indicator span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--soft-gray);
}

/* Social Links */
.hero-social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--soft-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.social-link:hover {
    color: var(--rose-gold);
}

/* Main Content Layout */
.hero-minimal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10rem var(--space-lg) 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-2xl);
}

.hero-text {
    padding-left: var(--space-xl);
}

/* Brand Title - Gold Serif */
.hero-brand-title {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-2xl);
}

.hero-brand-title span {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0.05em;
    color: transparent;
    background: linear-gradient(135deg, #C9A96E 0%, #D4AF37 30%, #E8C872 50%, #C9A96E 70%, #A88B4A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(201, 169, 110, 0.3);
}

/* Play Video Button */
.hero-play-btn {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.play-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--charcoal);
    border-radius: 50%;
    color: var(--charcoal);
    transition: all var(--transition-base);
    cursor: pointer;
}

.play-circle:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: scale(1.05);
}

.play-circle svg {
    margin-left: 3px;
}

.play-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.play-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--charcoal);
}

.play-time {
    font-size: 0.7rem;
    color: var(--soft-gray);
}

/* Section Dots (Gold) - On the RIGHT side */
.hero-section-dots {
    position: absolute;
    right: var(--space-xl);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.section-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A96E 0%, #D4AF37 50%, #E8C872 100%);
    opacity: 0.4;
    transition: all var(--transition-base);
    cursor: pointer;
}

.section-dot.active {
    opacity: 1;
    box-shadow: 0 0 12px rgba(201, 169, 110, 0.6);
}

.section-dot:hover {
    opacity: 0.8;
    transform: scale(1.3);
}

/* Model Image - CENTERED and SCALED UP */
.hero-model {
    position: absolute;
    left: 50%;
    transform: translateX(-45%);
    bottom: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    pointer-events: none;
}

/* Gold Rim Light Behind Model */
.model-rim-light {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 800px;
    background: radial-gradient(ellipse 60% 80% at center,
            transparent 40%,
            rgba(201, 169, 110, 0.5) 50%,
            rgba(212, 175, 55, 0.4) 60%,
            rgba(232, 200, 114, 0.3) 70%,
            transparent 85%);
    filter: blur(40px);
    pointer-events: none;
    animation: rim-pulse 3s ease-in-out infinite;
}

@keyframes rim-pulse {

    0%,
    100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
}

/* Bright Light Glow Behind Model */
.model-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 250, 245, 0.7) 15%,
            rgba(255, 240, 230, 0.5) 30%,
            rgba(245, 225, 220, 0.25) 50%,
            transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.9;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.08);
    }
}

.model-image {
    position: relative;
    z-index: 1;
    max-width: none;
    width: auto;
    height: 140%;
    max-height: 140%;
    object-fit: contain;
    object-position: bottom center;
    margin-bottom: -5%;
}

/* Up Next Indicator */
.hero-upnext {
    position: absolute;
    bottom: var(--space-xl);
    right: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--charcoal);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
    cursor: pointer;
    z-index: 10;
}

.hero-upnext:hover {
    opacity: 1;
}

/* Minimal Hero Responsive */
@media (max-width: 1024px) {
    .hero-minimal-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 10rem;
    }

    .hero-text {
        padding-left: 0;
        order: 1;
        position: relative;
        z-index: 5;
    }

    .hero-model {
        position: relative;
        width: 100%;
        order: 2;
        justify-content: center;
    }

    .model-image {
        height: 60vh;
        max-height: 60vh;
        transform: scale(1);
    }

    .model-glow {
        width: 300px;
        height: 300px;
    }

    .hero-play-btn {
        justify-content: center;
    }

    .hero-section-dots {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-brand-title span {
        font-size: clamp(2.5rem, 15vw, 4rem);
    }

    .hero-glow-orb {
        display: none;
    }

    .hero-upnext {
        bottom: var(--space-md);
        right: var(--space-md);
    }
}

/* ---------- Collections ---------- */
.collections {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header.center {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.category-tag:hover,
.category-tag.active {
    background: rgba(183, 110, 121, 0.2);
    border-color: var(--rose-gold);
    color: var(--rose-gold-light);
}

/* Hero Right - Product Card */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: flex-end;
}

.hero-product-card {
    position: relative;
    width: 300px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    backdrop-filter: blur(20px);
    transition: all var(--transition-base);
}

.hero-product-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.card-product-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: var(--space-md);
}

.card-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--rose-gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.card-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--champagne);
    margin-bottom: var(--space-md);
}

.card-btn {
    width: 100%;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.card-btn:hover {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--rose-gold), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: 1;
        height: 60px;
    }

    50% {
        opacity: 0.5;
        height: 40px;
    }
}

.hero-scroll span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    writing-mode: vertical-rl;
}

/* Hero Social */
.hero-social {
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    z-index: 2;
}

.hero-social a {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.hero-social a:hover {
    color: var(--rose-gold-light);
}

/* Hero Responsive */
@media (max-width: 1200px) {
    .hero-editorial-content {
        grid-template-columns: 1fr 350px;
    }
}

@media (max-width: 1024px) {
    .hero-editorial-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-categories {
        justify-content: center;
    }

    .hero-right {
        display: none;
    }

    .hero-overlay {
        background: linear-gradient(0deg,
                rgba(45, 35, 30, 0.95) 0%,
                rgba(45, 35, 30, 0.7) 50%,
                rgba(45, 35, 30, 0.5) 100%);
    }
}

@media (max-width: 768px) {
    .headline-bold {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-social,
    .hero-scroll {
        display: none;
    }
}

/* ---------- Collections ---------- */
.collections {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header.center {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-lg);
}

.collection-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.collection-card:hover {
    transform: translateY(-8px);
}

.collection-large {
    grid-row: span 2;
}

.collection-image {
    position: relative;
    padding-top: 100%;
}

.collection-large .collection-image {
    padding-top: 100%;
}

.collection-gradient {
    position: absolute;
    inset: 0;
    transition: transform var(--transition-slow);
}

.collection-card:hover .collection-gradient {
    transform: scale(1.05);
}

.gradient-rose {
    background: var(--gradient-rose);
}

.gradient-gold {
    background: var(--gradient-gold);
}

.gradient-lavender {
    background: linear-gradient(135deg, #F0EBF8 0%, #E6E0F8 50%, #D4CEE8 100%);
}

.collection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(45, 45, 45, 0.8), transparent);
    color: var(--white);
}

.collection-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.collection-content p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: var(--space-sm);
}

.collection-link {
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: gap var(--transition-fast);
}

.collection-card:hover .collection-link {
    gap: var(--space-sm);
}

/* ---------- Best Sellers ---------- */
.bestsellers {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    padding-top: 120%;
    background: var(--blush-light);
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 4px 12px;
    background: var(--rose-gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    z-index: 2;
}

.product-badge.new {
    background: var(--charcoal);
}

.product-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 70%;
    border-radius: var(--radius-md);
    transition: transform var(--transition-base);
}

.product-card:hover .product-visual {
    transform: translate(-50%, -50%) scale(1.05);
}

.product-visual.serum {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, #F8E8E8 100%);
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.product-visual.moisturizer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, #F7E7CE 100%);
    height: 50%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.product-visual.cleanser {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, #E6E0F8 100%);
    width: 50%;
    height: 75%;
    border-radius: var(--radius-full) var(--radius-full) var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-md);
}

.product-visual.eye-cream {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, #D4A5A5 100%);
    width: 55%;
    height: 45%;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--gradient-glow);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-glow);
    filter: blur(30px);
}

.product-card:hover .product-glow {
    opacity: 1;
}

.product-actions {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: all var(--transition-base);
}

.product-card:hover .product-actions {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.quick-view-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--charcoal);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.quick-view-btn:hover {
    background: var(--charcoal);
    color: var(--white);
}

.product-info {
    padding: var(--space-md);
}

.product-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--soft-gray);
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: var(--space-xs) 0;
    color: var(--charcoal);
}

.product-description {
    font-size: 0.85rem;
    color: var(--soft-gray);
    margin-bottom: var(--space-sm);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-sm);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--charcoal);
}

.add-to-cart-btn {
    padding: 8px 16px;
    background: var(--blush);
    color: var(--rose-gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.add-to-cart-btn:hover {
    background: var(--rose-gold);
    color: var(--white);
}

.section-cta {
    text-align: center;
}

/* ---------- Brand Story ---------- */
.brand-story {
    padding: var(--space-3xl) 0;
    background: var(--white);
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.story-image {
    position: relative;
}

.story-visual {
    width: 100%;
    padding-top: 120%;
    background: var(--gradient-rose);
    border-radius: var(--radius-xl);
    position: relative;
}

.story-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 40%;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.story-content {
    max-width: 520px;
}

.story-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
}

.story-text {
    color: var(--soft-gray);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.story-values {
    display: flex;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    text-align: center;
}

.value-icon {
    font-size: 1.5rem;
}

.value-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--charcoal);
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--blush-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
    background: var(--charcoal);
    color: var(--white);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--rose-gold);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.testimonial-card.featured .author-avatar {
    background: var(--rose-gold-light);
    color: var(--charcoal);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.author-product {
    font-size: 0.75rem;
    color: var(--soft-gray);
}

.testimonial-card.featured .author-product {
    color: var(--rose-gold-light);
}

/* ---------- Newsletter ---------- */
.newsletter {
    padding: var(--space-3xl) 0;
    background: var(--charcoal);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(183, 110, 121, 0.3) 0%, transparent 70%);
    filter: blur(60px);
}

.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-sm);
}

.newsletter-text {
    color: var(--light-gray);
    margin-bottom: var(--space-lg);
}

.newsletter-form {
    margin-bottom: var(--space-md);
}

.input-group {
    display: flex;
    gap: var(--space-sm);
    max-width: 480px;
    margin: 0 auto;
}

.input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    outline: none;
    transition: all var(--transition-fast);
}

.input-group input::placeholder {
    color: var(--soft-gray);
}

.input-group input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--rose-gold);
}

.newsletter-note {
    font-size: 0.75rem;
    color: var(--soft-gray);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--cream);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand .logo {
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    color: var(--soft-gray);
    font-size: 0.9rem;
    max-width: 280px;
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush);
    border-radius: var(--radius-full);
    color: var(--charcoal);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--rose-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--soft-gray);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--rose-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--light-gray);
    font-size: 0.85rem;
    color: var(--soft-gray);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: var(--soft-gray);
}

.footer-legal a:hover {
    color: var(--rose-gold);
}

/* ---------- Cart Sidebar ---------- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 45, 45, 0.5);
    backdrop-filter: blur(4px);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: var(--z-modal);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--light-gray);
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.cart-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
}

.cart-close:hover {
    background: var(--blush);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg);
}

.cart-empty {
    text-align: center;
    padding: var(--space-2xl) 0;
    color: var(--soft-gray);
}

.cart-empty p {
    margin-bottom: var(--space-lg);
}

.cart-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--light-gray);
}

.cart-item-image {
    width: 80px;
    height: 100px;
    background: var(--blush-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-visual {
    width: 50px;
    height: 60px;
    background: var(--gradient-rose);
    border-radius: var(--radius-sm);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.cart-item-price {
    color: var(--soft-gray);
    font-size: 0.9rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.cart-item-qty button:hover {
    border-color: var(--rose-gold);
    color: var(--rose-gold);
}

.cart-item-qty span {
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    color: var(--soft-gray);
    font-size: 0.75rem;
    margin-top: var(--space-xs);
    transition: color var(--transition-fast);
}

.cart-item-remove:hover {
    color: var(--rose-gold);
}

.cart-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--light-gray);
    background: var(--blush-light);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.cart-subtotal span:last-child {
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.cart-note {
    font-size: 0.8rem;
    color: var(--soft-gray);
    margin-bottom: var(--space-md);
}

.cart-continue {
    display: block;
    text-align: center;
    margin-top: var(--space-sm);
    font-size: 0.85rem;
    color: var(--soft-gray);
}

.cart-continue:hover {
    color: var(--rose-gold);
}

/* ---------- Quick View Modal ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 45, 45, 0.6);
    backdrop-filter: blur(8px);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quick-view-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 900px;
    max-width: 95%;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-xl);
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    overflow: hidden;
}

.quick-view-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    z-index: 2;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--blush);
    transform: rotate(90deg);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image {
    background: var(--blush-light);
    padding: var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.modal-product-visual {
    width: 200px;
    height: 280px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, #F8E8E8 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.modal-info {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
}

.modal-title {
    font-size: 1.75rem;
    margin: var(--space-xs) 0 var(--space-sm);
}

.modal-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--rose-gold);
    margin-bottom: var(--space-sm);
}

.modal-rating {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.modal-rating span {
    color: var(--soft-gray);
    font-size: 0.8rem;
}

.modal-description {
    color: var(--soft-gray);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.modal-details {
    background: var(--blush-light);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.modal-details h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.modal-details ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs) var(--space-md);
}

.modal-details li {
    font-size: 0.85rem;
    color: var(--soft-gray);
    position: relative;
    padding-left: var(--space-sm);
}

.modal-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--rose-gold);
}

.modal-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: auto;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: background var(--transition-fast);
}

.qty-btn:hover {
    background: var(--blush);
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1rem;
    -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.modal-actions .btn {
    flex: 1;
}

/* ---------- Search Modal ---------- */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: var(--z-modal);
    padding: var(--space-2xl);
    transform: translateY(-100%);
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.search-modal.active {
    transform: translateY(0);
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.search-container input {
    flex: 1;
    padding: var(--space-md);
    font-size: 1.5rem;
    border: none;
    border-bottom: 2px solid var(--light-gray);
    outline: none;
    background: transparent;
    transition: border-color var(--transition-fast);
}

.search-container input:focus {
    border-color: var(--rose-gold);
}

.search-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.search-close:hover {
    background: var(--blush);
}

.search-suggestions {
    max-width: 800px;
    margin: var(--space-lg) auto 0;
}

.search-suggestions h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--soft-gray);
    margin-bottom: var(--space-sm);
}

.search-suggestions ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.search-suggestions a {
    display: inline-block;
    padding: 8px 16px;
    background: var(--blush);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.search-suggestions a:hover {
    background: var(--rose-gold);
    color: var(--white);
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 10rem;
    }

    .hero-content {
        padding: 0;
        max-width: 100%;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .collections-grid {
        grid-template-columns: 1fr 1fr;
    }

    .collection-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .story-content {
        max-width: 100%;
        text-align: center;
    }

    .story-values {
        justify-content: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .modal-content {
        grid-template-columns: 1fr;
    }

    .modal-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform var(--transition-base);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xl);
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 10;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .collection-large {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .input-group {
        flex-direction: column;
    }

    .cart-sidebar {
        width: 100%;
    }

    .quick-view-modal {
        max-height: 100vh;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .add-to-cart-btn {
        width: 100%;
    }

    .story-values {
        flex-direction: column;
        gap: var(--space-md);
    }

    .modal-actions {
        flex-direction: column;
    }
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-header,
.product-card,
.collection-card,
.testimonial-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Stagger animations */
.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* ---------- Product Images ---------- */
.hero-product-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.collection-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.product-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: auto;
    max-height: 90%;
    object-fit: contain;
    transition: transform var(--transition-base);
    z-index: 1;
}

.product-card:hover .product-img {
    transform: translate(-50%, -50%) scale(1.08);
}

.story-image {
    position: relative;
}

.story-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.modal-product-img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}