/* ============================================
   MON MÉLANGE — Main Stylesheet
   Luxury Perfume Brand
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #c9a96e;
    --color-accent-light: #e0c992;
    --color-accent-dark: #a8893f;
    --color-gold: #c9a96e;
    --color-gold-light: #f0e0b8;
    --color-rose: #b76e79;
    --color-cream: #f5f0e8;
    --color-ivory: #faf8f4;
    --color-text: #2c2c2c;
    --color-text-light: #6b6b6b;
    --color-text-lighter: #999;
    --color-white: #ffffff;
    --color-dark: #0a0a14;
    --color-bg: #fefefe;
    --color-bg-alt: #f9f6f1;
    --color-border: rgba(201, 169, 110, 0.2);
    
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.15);
    --shadow-gold: 0 10px 40px rgba(201, 169, 110, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --z-nav: 1000;
    --z-preloader: 9999;
    --z-cursor: 10000;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- Preloader ---- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.perfume-bottle-loader {
    position: relative;
    width: 60px;
    height: 100px;
    margin: 0 auto 2rem;
}

.bottle-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 5px 5px 8px 8px;
    animation: bottlePulse 2s ease-in-out infinite;
}

.bottle-cap {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
    background: var(--color-accent-light);
    border-radius: 3px 3px 0 0;
}

.mist {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0;
}

.mist-1 {
    top: 10px;
    left: 50%;
    animation: mistFloat 2s ease-in-out infinite 0s;
}

.mist-2 {
    top: 5px;
    left: 40%;
    animation: mistFloat 2s ease-in-out infinite 0.3s;
}

.mist-3 {
    top: 8px;
    left: 60%;
    animation: mistFloat 2s ease-in-out infinite 0.6s;
}

@keyframes bottlePulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.05); opacity: 0.8; }
}

@keyframes mistFloat {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    30% { opacity: 0.8; }
    100% { transform: translateY(-40px) scale(0); opacity: 0; }
}

.preloader-text {
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ---- Custom Cursor ---- */
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    opacity: 0;
}

body:hover .cursor-follower,
body:hover .cursor-dot {
    opacity: 1;
}

.cursor-follower.hover {
    transform: scale(1.5);
    border-color: var(--color-rose);
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
    .cursor-follower, .cursor-dot { display: none; }
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-link {
    color: var(--color-text);
}

.navbar.scrolled .nav-cart {
    color: var(--color-text);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    position: relative;
    z-index: 10;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 38px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-cart {
    color: var(--color-white);
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem;
}

.nav-cart:hover {
    color: var(--color-accent);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-white);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.navbar.scrolled .lang-btn {
    color: var(--color-text);
    border-color: var(--color-border);
}

.lang-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.lang-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    overflow: hidden;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.lang-option:hover {
    background: var(--color-bg-alt);
    color: var(--color-accent);
}

.lang-option.active {
    background: var(--color-accent);
    color: var(--color-white);
}

.lang-flag {
    font-size: 1.1rem;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--color-text);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 40%, #0f3460 100%);
}

/* Hero Background Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 20, 0.5) 0%,
        rgba(15, 15, 35, 0.4) 40%,
        rgba(10, 10, 30, 0.45) 100%
    );
    z-index: 2;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 60%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    width: 100%;
}

.hero-text {
    color: var(--color-white);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bottle-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-bottle-img {
    max-height: 380px;
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 5;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ---- Marquee ---- */
.marquee-section {
    background: var(--color-accent);
    padding: 1rem 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.1em;
}

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

/* ---- Section Styles ---- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    position: relative;
    font-style: italic;
}

.section-badge.light {
    color: var(--color-accent-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title.light {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-subtitle.light {
    color: rgba(255,255,255,0.7);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(201, 169, 110, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(201, 169, 110, 0.1);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-light:hover {
    background: var(--color-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---- Collections Grid ---- */
.collections {
    padding: 7rem 0;
    background: var(--color-bg);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.collection-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

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

.collection-card-large {
    grid-row: span 2;
}

.collection-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 280px;
}

.collection-card-large .collection-img-wrapper {
    min-height: 580px;
}

.collection-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.collection-card:hover .collection-img-wrapper img {
    transform: scale(1.08);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-explore {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.7rem 2rem;
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.collection-explore:hover {
    background: var(--color-accent);
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent);
    color: var(--color-white);
}

.collection-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.collection-info p {
    font-size: 0.85rem;
    color: var(--color-accent-light);
    font-family: var(--font-accent);
}

/* ---- Products Grid ---- */
.products {
    padding: 7rem 0;
    background: var(--color-bg-alt);
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-text);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-primary);
    color: var(--color-accent);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.premium {
    background: var(--color-accent);
    color: var(--color-white);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 1rem;
    transition: bottom 0.4s ease;
}

.product-card:hover .product-actions {
    bottom: 0;
}

.product-action-btn {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.7rem 2rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.product-action-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.product-info p {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 600;
}

.products-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ---- Personalized CTA ---- */
.personalized-cta {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0f3460 50%, var(--color-secondary) 100%);
    z-index: -1;
}

.personalized-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* ---- About Section ---- */
.about {
    padding: 7rem 0;
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-icon {
    margin-bottom: 1.5rem;
}

.flag-icon {
    width: 50px;
    height: auto;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.about-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
}

.stat {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    display: inline;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.stat p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.3rem;
}

.about-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-bottom-text {
    padding: 3rem;
    color: var(--color-white);
}

.about-bottom-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.about-bottom-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.about-bottom-img {
    height: 100%;
}

.about-bottom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Testimonials ---- */
.testimonials {
    padding: 7rem 0;
    background: var(--color-bg-alt);
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 0;
}

.testimonial-card {
    min-width: calc(33.333% - 1.33rem);
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    flex-shrink: 0;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: var(--color-accent);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    display: flex;
    gap: 0.2rem;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-rose));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--color-text);
}

.slider-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--color-accent);
    width: 30px;
    border-radius: 5px;
}

/* ---- Newsletter ---- */
.newsletter {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter .section-title {
    color: var(--color-white);
}

.newsletter .section-subtitle {
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 0.4rem;
    border: 1px solid rgba(255,255,255,0.15);
}

.newsletter-input-wrapper input {
    flex: 1;
    background: none;
    border: none;
    padding: 0.8rem 1.5rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-input-wrapper input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    cursor: pointer;
}

.newsletter-privacy input[type="checkbox"] {
    accent-color: var(--color-accent);
}

/* ---- Footer ---- */
.footer {
    background: var(--color-dark);
    padding: 5rem 0 2rem;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-socials a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 0.5rem;
}

/* B2B Footer Section */
.footer-b2b {
    background: rgba(255,255,255,0.03);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.06);
}

.b2b-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
}

.b2b-header i {
    color: var(--color-accent);
    font-size: 1.1rem;
}

.b2b-header h4 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1rem;
}

.footer-b2b > p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.b2b-toggle {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.2);
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.b2b-toggle:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.b2b-form-wrapper {
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 600px; }
}

.b2b-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.b2b-form textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
    resize: vertical;
    min-height: 60px;
}

.b2b-form textarea:focus {
    border-color: var(--color-accent);
    background: rgba(255,255,255,0.08);
}

.b2b-form textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.b2b-form-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.b2b-form-title i {
    font-size: 0.9rem;
}

.b2b-form-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
    margin-bottom: 0.3rem;
}

.b2b-success-msg {
    text-align: center;
    padding: 1.5rem 1rem;
}

.b2b-success-msg i {
    font-size: 2.5rem;
    color: #4caf50;
    margin-bottom: 0.8rem;
    display: block;
}

.b2b-success-msg p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.b2b-success-msg a {
    font-size: 0.8rem;
    color: var(--color-accent);
    transition: var(--transition);
}

.b2b-success-msg a:hover {
    color: var(--color-accent-light);
}

.form-group input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--color-accent);
    background: rgba(255,255,255,0.08);
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.3);
}

.b2b-links {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.b2b-links a {
    font-size: 0.75rem;
    color: var(--color-accent);
    transition: var(--transition);
}

.b2b-links a:hover {
    color: var(--color-accent-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-accent-dark);
    transform: translateY(-3px);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 2.5rem;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collection-card-large {
        grid-row: span 1;
    }
    
    .collection-card-large .collection-img-wrapper {
        min-height: 280px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-bottom {
        grid-template-columns: 1fr;
    }
    
    .about-bottom-img {
        height: 300px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        min-width: calc(50% - 1rem);
    }
    
    .designer-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-primary);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.4s ease;
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--color-white);
        font-size: 1.1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .product-filters {
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        border-radius: var(--radius-md);
    }
    
    .newsletter-input-wrapper .btn {
        border-radius: var(--radius-sm);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .collections,
    .products,
    .about,
    .testimonials {
        padding: 4rem 0;
    }
}

/* Reduce motion: show poster frame instead of playing */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation: none !important;
    }
}
