/* ============================================================
   BRIGHTENZONE — Professional E-Commerce Theme
   Color Scheme: Deep Slate + Emerald + Champagne Gold
   Version: 2.0
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

/* ══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
══════════════════════════════════════════ */
:root {
  /* Core Palette */
  --primary:        #0a5c44;
  --primary-light:  #0e7d5e;
  --primary-dark:   #073d2e;
  --primary-glow:   rgba(10, 92, 68, 0.15);

  --gold:           #c9a96e;
  --gold-light:     #e2c99a;
  --gold-dark:      #a07840;

  --dark:           #0d1117;
  --dark-2:         #141b24;
  --dark-3:         #1c2635;
  --dark-4:         #243040;

  --slate:          #334155;
  --slate-light:    #64748b;

  --white:          #ffffff;
  --off-white:      #f8fafc;
  --cream:          #fdf8f2;
  --cream-dark:     #ede8de;

  --text-primary:   #0d1117;
  --text-secondary: #475569;
  --text-muted:     #94a3b8;

  --danger:         #dc2626;
  --success:        #16a34a;
  --warning:        #d97706;

  /* Gradients */
  --grad-primary:   linear-gradient(135deg, #0a5c44 0%, #0e7d5e 50%, #0a5c44 100%);
  --grad-gold:      linear-gradient(135deg, #c9a96e 0%, #e2c99a 50%, #a07840 100%);
  --grad-dark:      linear-gradient(180deg, #0d1117 0%, #141b24 100%);
  --grad-hero:      linear-gradient(135deg, #0d1117 0%, #0f2d1f 40%, #0a5c44 100%);
  --grad-card:      linear-gradient(145deg, #1c2635 0%, #243040 100%);
  --grad-shimmer:   linear-gradient(90deg, transparent 0%, rgba(201,169,110,0.08) 50%, transparent 100%);

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.15);
  --shadow-xl:   0 24px 64px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 30px rgba(10,92,68,0.25), 0 8px 24px rgba(0,0,0,0.2);
  --shadow-gold: 0 0 20px rgba(201,169,110,0.2), 0 4px 16px rgba(0,0,0,0.15);

  /* Spacing */
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-heading: 'DM Serif Display', serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in:      cubic-bezier(0.4, 0, 1, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --transition:   all 0.3s var(--ease);
  --transition-fast: all 0.15s var(--ease);
  --transition-slow: all 0.5s var(--ease);
}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* =========================================
   BRIGHTENZONE - TOP BEAUTY BRAND | PROFESSIONAL LUXURY
   Color Scheme: Deep Slate, Emerald Green, Champagne Gold, Cream, Warm Taupe
   Professional, Elegant, High-Impact - Inspired by Luxury Fashion Houses
   ========================================= */

/* Font Awesome 6 (Free CDN) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

:root {
    /* ===== PROFESSIONAL BEAUTY COLOR PALETTE ===== */
    
    /* Primary - Deep Emerald (Classic luxury) */
    --primary: #0a5c44;           /* Rich emerald green */
    --primary-dark: #073d2e;       /* Deep forest */
    --primary-light: #0e7d5e;      /* Soft mint-teal */
    --primary-glow: rgba(10, 92, 68, 0.18);
    
    /* Secondary - Warm Taupe (Sophisticated neutral) */
    --secondary: #9c8e7c;          /* Elegant taupe */
    --secondary-dark: #7a6b5a;     /* Deep sandalwood */
    --secondary-light: #d4c9bd;    /* Soft mushroom beige */
    
    /* Accent - Champagne Gold (Luxury shimmer) */
    --accent: #c9a96e;             /* Refined champagne gold */
    --accent-light: #e2c99a;       /* Soft gold */
    --accent-dark: #a07840;        /* Deep gold */
    --accent-glow: rgba(201, 169, 110, 0.25);
    
    /* Blush - Dusty Rose (Professional elegance) */
    --blush: #e8dfd5;              /* Soft dusty rose */
    --blush-dark: #d4c5b6;         /* Deeper rose */
    --blush-glow: rgba(232, 223, 213, 0.35);
    
    /* Nude/Bare - Warm Cream (Clean aesthetic) */
    --nude: #fdf8f2;               /* Warm cream */
    --nude-dark: #f5efe8;          /* Soft sand */
    --nude-warm: #faf5ef;          /* Creamy vanilla */
    
    /* Dark - Deep Slate (Professional depth) */
    --dark: #141b24;               /* Rich slate */
    --dark-soft: #1c2635;          /* Soft charcoal */
    --dark-warm: #243040;          /* Warm dark slate */
    
    /* Grays - Refined Professional */
    --gray: #8b9bb0;               /* Warm stone gray */
    --gray-light: #b9c3d1;         /* Soft dove gray */
    --gray-bg: #f8fafc;            /* Cool background */
    
    /* Pure Colors */
    --white: #ffffff;
    --pure-white: #ffffff;
    --black: #0a0c10;
    
    /* Status Colors */
    --success: #2d6a4f;            /* Deep emerald */
    --success-light: #e8f5ee;
    --danger: #c74d4d;             /* Soft ruby */
    --danger-light: #fef2f2;
    
    /* ===== PROFESSIONAL GRADIENTS ===== */
    --gradient-primary: linear-gradient(135deg, #0a5c44 0%, #0e7d5e 50%, #c9a96e 100%);
    --gradient-primary-dark: linear-gradient(135deg, #073d2e 0%, #0a5c44 100%);
    --gradient-gold: linear-gradient(135deg, #9c8e7c 0%, #d4c9bd 50%, #9c8e7c 100%);
    --gradient-blush: linear-gradient(135deg, #e8dfd5 0%, #fdf8f2 100%);
    --gradient-dark-luxury: linear-gradient(145deg, #141b24 0%, #1c2635 50%, #243040 100%);
    --gradient-radial-glow: radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.1), transparent 70%);
    --gradient-shimmer: linear-gradient(120deg, transparent, rgba(201, 169, 110, 0.12), transparent);
    
    /* ===== PROFESSIONAL SHADOWS ===== */
    --shadow-sm: 0 4px 14px rgba(20, 27, 36, 0.06);
    --shadow-md: 0 8px 28px rgba(20, 27, 36, 0.08);
    --shadow-lg: 0 20px 40px rgba(20, 27, 36, 0.12);
    --shadow-xl: 0 30px 60px rgba(20, 27, 36, 0.16);
    --shadow-primary: 0 12px 30px rgba(10, 92, 68, 0.25);
    --shadow-gold: 0 12px 30px rgba(156, 142, 124, 0.2);
    --shadow-glow: 0 0 20px rgba(201, 169, 110, 0.15);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    
    /* ===== BORDERS & RADIUS ===== */
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 28px;
    --border-radius-xl: 40px;
    --border-radius-full: 9999px;
    
    /* Professional borders */
    --border-gold: 1px solid rgba(156, 142, 124, 0.35);
    --border-gold-light: 1px solid rgba(156, 142, 124, 0.15);
    --border-plum: 1px solid rgba(10, 92, 68, 0.2);
    
    /* Transitions */
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-luxury: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html { 
    scroll-behavior: smooth; 
    scroll-padding-top: 90px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--nude);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== PROFESSIONAL SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--nude-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb { background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 10px; }

/* ===== TOP ANNOUNCEMENT BAR - ELEGANT ===== */
.top-bar {
    background: var(--gradient-dark-luxury);
    color: var(--accent-light);
    text-align: center;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}
.top-bar::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.15), transparent);
    animation: shimmer 5s infinite;
}
@keyframes shimmer { to { left: 100%; } }
.top-bar i { margin-right: 8px; color: var(--accent); }
.top-bar a { color: var(--accent); font-weight: 600; transition: var(--transition-fast); }
.top-bar a:hover { opacity: 0.85; text-decoration: underline; }

/* ===== HEADER - CLEAN PROFESSIONAL ===== */
header {
    background: rgba(253, 248, 242, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(156, 142, 124, 0.2);
}
.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo img { height: 54px; width: auto; transition: var(--transition-base); }
.logo:hover img { transform: scale(1.03); }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    letter-spacing: -0.5px;
}
.logo-tagline {
    font-size: 9px;
    color: var(--accent);
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 600;
}
nav { display: flex; align-items: center; gap: 8px; }
nav a {
    padding: 8px 22px;
    border-radius: var(--border-radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition-base);
    position: relative;
}
nav a i { margin-right: 8px; font-size: 14px; }
nav a:hover { 
    color: var(--primary); 
    background: rgba(10, 92, 68, 0.05); 
    transform: translateY(-1px);
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}
nav a:hover::after { width: 40%; }
.nav-order-btn {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: 10px 30px !important;
    border-radius: var(--border-radius-full) !important;
    font-weight: 700 !important;
    box-shadow: var(--shadow-primary);
}
.nav-order-btn::after { display: none; }
.nav-order-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-gold);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.hamburger span {
    width: 26px; height: 2px;
    background: var(--primary);
    border-radius: 4px;
    transition: var(--transition-base);
    display: block;
}
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(145deg, #141b24 0%, #1c2635 100%);
    backdrop-filter: blur(20px);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
    color: var(--nude);
    font-size: 24px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    padding: 12px 32px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    width: 80%;
    text-align: center;
    transition: var(--transition-base);
}
.mobile-nav a i { margin-right: 12px; color: var(--accent); }
.mobile-nav a:hover { color: var(--accent); letter-spacing: 1px; background: rgba(201, 169, 110, 0.05); border-radius: 50px; }
.mobile-nav-close {
    position: absolute;
    top: 28px; right: 28px;
    color: var(--accent);
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
}

/* ===== HERO SLIDER - ELEGANT DRAMATIC ===== */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 620px;
    overflow: hidden;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}
.slide.active { opacity: 1; }
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 14s ease-out;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 27, 36, 0.65) 0%, rgba(10, 92, 68, 0.3) 50%, transparent 100%);
}
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 50px 70px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.2, 0.9, 0.4, 1) 0.3s;
}
.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}
.slide-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 6px 22px;
    border-radius: var(--border-radius-full);
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 5.5vw, 76px);
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.slide-title span { 
    background: var(--gradient-gold);
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    text-shadow: none;
}
.slide-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 38px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.3px;
}
.slide-btns { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 44px;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-primary);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 40px;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3); }
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
}
.slider-dot.active { background: var(--accent); width: 32px; border-radius: 20px; }
.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
}
.slider-arrow {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 142, 124, 0.3);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrow:hover { background: var(--primary); border-color: var(--accent); transform: scale(1.08); }

/* ===== SECTIONS - ELEGANT SPACING ===== */
section { padding: 100px 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-label {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4.5vw, 54px);
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
}
.section-divider .line {
    width: 50px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.section-divider .diamond {
    width: 6px; height: 6px;
    background: var(--accent);
    transform: rotate(45deg);
}
.section-subtitle {
    color: var(--gray);
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

/* ===== FEATURES STRIP - PROFESSIONAL DARK ===== */
.features-strip {
    background: var(--gradient-dark-luxury);
    padding: 38px 0;
    position: relative;
    overflow: hidden;
}
.features-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 110, 0.08), transparent);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 24px;
    border-right: 1px solid rgba(201, 169, 110, 0.15);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
    width: 52px; height: 52px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    border: 1px solid rgba(201, 169, 110, 0.25);
    color: var(--accent);
    transition: var(--transition-base);
}
.feature-item:hover .feature-icon {
    transform: scale(1.08);
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
}
.feature-text h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.feature-text p { color: rgba(255, 255, 255, 0.55); font-size: 11px; letter-spacing: 0.3px; }

/* ===== PRODUCTS SECTION - ELEGANT CARDS ===== */
.products-section { background: var(--nude); }
.products-section {
    background: linear-gradient(135deg, var(--nude) 0%, var(--nude-warm) 100%);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}
.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-luxury);
    position: relative;
    border: 1px solid rgba(10, 92, 68, 0.08);
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(201, 169, 110, 0.3);
}
.product-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--gradient-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--border-radius-full);
    z-index: 3;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow-sm);
}
.product-badge.sale { background: var(--gradient-gold); color: var(--dark); }
.product-image {
    height: 290px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-bg) 0%, var(--nude) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.95, 0.4, 1.05);
}
.product-card:hover .product-image img { transform: scale(1.06); }
.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(20, 27, 36, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.product-card:hover .product-image::after { opacity: 1; }
.product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-size: 70px;
    color: var(--primary-light);
    opacity: 0.4;
}
.product-info { padding: 26px; }
.product-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
}
.product-category i { margin-right: 6px; }
.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
    transition: var(--transition-base);
}
.product-card:hover .product-name { background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.product-desc {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 18px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.price-current {
    font-size: 26px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Playfair Display', serif;
}
.price-original {
    font-size: 14px;
    color: var(--gray-light);
    text-decoration: line-through;
}
.price-save {
    background: var(--blush);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}
.product-card:hover .price-save {
    background: var(--gradient-primary);
    color: var(--white);
}
.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.product-actions .btn-sm {
    padding: 12px 18px;
    border-radius: var(--border-radius-full);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-order {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}
.btn-order:hover { transform: translateY(-2px); box-shadow: var(--shadow-primary); }
.btn-view {
    background: var(--nude-dark);
    color: var(--dark);
}
.btn-view:hover { background: var(--gradient-primary); color: var(--white); transform: translateY(-2px); }
.btn-full-order {
    grid-column: 1 / -1;
    background: #25D366;
    color: white;
}
.btn-full-order:hover { background: #128C7E; transform: translateY(-2px); }

/* ===== QUANTITY SELECTOR - ELEGANT STYLED ===== */
.quantity-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.qty-input-modern {
    display: flex;
    align-items: center;
    border: var(--border-plum);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: var(--white);
    transition: var(--transition-base);
}
.qty-input-modern:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}
.qty-btn-modern {
    width: 48px;
    height: 52px;
    background: var(--nude);
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--primary);
    font-weight: 700;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn-modern:hover {
    background: var(--primary);
    color: white;
}
.qty-num-modern {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--dark);
    border: none;
    background: transparent;
    outline: none;
    width: 70px;
}
.qty-num-modern::-webkit-inner-spin-button,
.qty-num-modern::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.qty-presets-modern {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.qty-preset-btn-modern {
    padding: 8px 20px;
    background: var(--nude);
    border: var(--border-plum);
    border-radius: var(--border-radius-full);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--dark);
}
.qty-preset-btn-modern:hover,
.qty-preset-btn-modern.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ===== QUICK ORDER FORM - PROFESSIONAL SECTION ===== */
.quick-order-section {
    background: var(--gradient-dark-luxury);
    position: relative;
    overflow: hidden;
}
.quick-order-section::before {
    content: '';
    position: absolute;
    top: -20%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.order-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.order-info-side .section-label { color: var(--accent); font-style: italic; }
.order-info-side .section-title { background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.order-info-side .section-subtitle { color: rgba(255, 255, 255, 0.7); text-align: left; }
.order-features { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.order-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}
.order-feature .icon {
    width: 42px; height: 42px;
    background: rgba(201, 169, 110, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(201, 169, 110, 0.25);
    color: var(--accent);
    transition: var(--transition-base);
}
.order-feature:hover .icon {
    transform: scale(1.08);
    background: var(--accent);
    color: var(--dark);
}
.order-form-wrapper {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
}
.order-form-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(20, 27, 36, 0.2);
}
.order-form-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 30px;
    text-align: center;
}
.order-form-wrapper h3 i { margin-right: 10px; color: var(--accent); }
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.form-group label i { margin-right: 8px; color: var(--primary); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: var(--border-plum);
    border-radius: var(--border-radius-md);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition-base);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.qty-input {
    display: flex;
    align-items: center;
    border: var(--border-plum);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: var(--white);
}
.qty-btn {
    width: 46px; height: 50px;
    background: var(--nude);
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--primary);
    font-weight: 700;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover { background: var(--primary); color: white; }
.qty-num {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    border: none;
    background: transparent;
    outline: none;
}
.total-display {
    background: linear-gradient(135deg, var(--nude) 0%, var(--nude-warm) 100%);
    border-radius: var(--border-radius-md);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
    border: var(--border-gold-light);
    transition: var(--transition-base);
}
.total-display:hover {
    background: var(--nude-dark);
    transform: scale(1.01);
}
.total-display .label { font-size: 14px; color: var(--gray); font-weight: 600; }
.total-display .label i { margin-right: 8px; color: var(--accent); }
.total-display .amount {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Playfair Display', serif;
}
.form-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-btns .btn { 
    padding: 15px; 
    border-radius: var(--border-radius-full); 
    font-weight: 700; 
    font-size: 13px; 
    letter-spacing: 0.5px;
    cursor: pointer; 
    border: none; 
    transition: var(--transition-base); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
}
.btn-primary-custom {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}
.btn-wa-custom {
    background: #25D366;
    color: white;
}
.btn-wa-custom:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* ===== WHY CHOOSE US - ELEGANT ICONS ===== */
.why-section { background: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.why-card {
    text-align: center;
    padding: 48px 32px;
    border-radius: var(--border-radius-lg);
    border: var(--border-plum);
    transition: var(--transition-luxury);
    position: relative;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-base);
    transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { 
    box-shadow: var(--shadow-lg); 
    transform: translateY(-8px); 
    border-color: rgba(201, 169, 110, 0.3);
}
.why-icon {
    width: 85px; height: 85px;
    margin: 0 auto 26px;
    background: linear-gradient(135deg, var(--nude) 0%, var(--blush) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border: 2px solid var(--accent);
    color: var(--primary);
    transition: var(--transition-base);
}
.why-card:hover .why-icon {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--accent);
    transform: scale(1.05);
}
.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}
.why-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ===== TESTIMONIALS - ELEGANT REVIEWS ===== */
.testimonials-section { background: linear-gradient(135deg, var(--gray-bg) 0%, var(--nude) 100%); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: var(--border-gold-light);
    position: relative;
    transition: var(--transition-base);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 110, 0.3);
}
.testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: absolute;
    top: 16px; left: 28px;
    line-height: 1;
    pointer-events: none;
    opacity: 0.2;
}
.stars { color: var(--accent); font-size: 14px; margin-bottom: 18px; margin-top: 30px; }
.stars i { margin-right: 4px; }
.testimonial-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: var(--border-gold-light);
    padding-top: 20px;
}
.author-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.author-tag { font-size: 11px; color: var(--accent); letter-spacing: 0.5px; }
.author-tag i { margin-right: 5px; }

/* ===== PRODUCT MODAL - ELEGANT POPUP ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 27, 36, 0.95);
    backdrop-filter: blur(16px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.modal-overlay.active { display: flex; }
.modal-box {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    max-width: 1050px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalIn 0.45s cubic-bezier(0.2, 0.9, 0.4, 1);
}
.modal-box::-webkit-scrollbar { width: 5px; }
.modal-box::-webkit-scrollbar-track { background: var(--nude); border-radius: 10px; }
.modal-box::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.96) translateY(25px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
    position: absolute;
    top: 22px; right: 22px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--nude);
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: var(--transition-base);
    color: var(--dark);
}
.modal-close:hover { background: var(--primary); color: var(--white); transform: scale(1.08); }
.modal-content { display: grid; grid-template-columns: 1fr 1fr; }
.modal-image {
    height: 100%;
    min-height: 450px;
    background: linear-gradient(135deg, var(--gray-bg) 0%, var(--nude) 100%);
    border-radius: var(--border-radius-xl) 0 0 var(--border-radius-xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-size: 95px;
    color: var(--primary-light);
    opacity: 0.4;
}
.modal-details { padding: 44px; }
.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blush);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--border-radius-full);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.modal-name {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 14px;
    line-height: 1.2;
}
.modal-price { margin: 20px 0; }
.modal-desc { 
    font-size: 14px; 
    color: var(--gray); 
    line-height: 1.8; 
    margin-bottom: 30px; 
}
.modal-qty { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    margin-bottom: 30px; 
    flex-wrap: wrap;
}
.modal-qty label { 
    font-weight: 700; 
    font-size: 13px; 
}
.modal-qty label i { margin-right: 8px; color: var(--accent); }
.modal-btns { display: grid; gap: 16px; }
.modal-btns .btn { 
    padding: 15px; 
    border-radius: var(--border-radius-full); 
    font-size: 14px; 
    font-weight: 700; 
    letter-spacing: 0.5px;
    cursor: pointer; 
    border: none; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 12px; 
    transition: var(--transition-base); 
    text-decoration: none;
}
.btn-primary-modal {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}
.btn-primary-modal:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}
.btn-wa-modal {
    background: #25D366;
    color: white;
}
.btn-wa-modal:hover {
    background: #128C7E;
    transform: translateY(-2px);
}
.btn-detail-modal {
    background: var(--nude);
    color: var(--primary);
    border: var(--border-plum);
}
.btn-detail-modal:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}
.qty-presets {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.qty-preset-btn {
    padding: 8px 20px;
    background: var(--nude);
    border: var(--border-plum);
    border-radius: var(--border-radius-full);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--dark);
}
.qty-preset-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ===== ORDER SUCCESS - ELEGANT CONFIRMATION ===== */
.order-success {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 27, 36, 0.96);
    backdrop-filter: blur(14px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.order-success.show { display: flex; }
.success-box {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 56px 52px;
    text-align: center;
    max-width: 520px;
    width: 100%;
    animation: modalIn 0.5s cubic-bezier(0.2, 0.9, 0.4, 1);
}
.success-icon { font-size: 80px; margin-bottom: 28px; background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.success-box h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 34px; 
    font-weight: 700; 
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 14px; 
}
.success-box p { color: var(--gray); margin-bottom: 10px; font-size: 14px; }
.order-id { 
    background: linear-gradient(135deg, var(--nude) 0%, var(--blush) 100%);
    border-radius: var(--border-radius-md);
    padding: 16px;
    margin: 24px 0;
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    border: var(--border-gold-light);
}
.order-id:hover {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.02);
}
.order-id i { margin-right: 10px; }
.continue-btn {
    margin-top: 28px;
    background: var(--gradient-primary);
    color: white;
    padding: 14px 40px;
    border-radius: var(--border-radius-full);
    border: none;
    cursor: pointer;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-base);
}
.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* ===== FOOTER - PROFESSIONAL DARK ===== */
footer {
    background: var(--gradient-dark-luxury);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 55px;
    border-bottom: var(--border-gold-light);
    margin-bottom: 35px;
}
.footer-brand .logo-name { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: 32px; }
.footer-brand .logo-tagline { color: var(--accent); }
.footer-desc { font-size: 13px; color: rgba(255, 255, 255, 0.65); line-height: 1.8; margin: 22px 0; }
.social-links { display: flex; gap: 16px; flex-wrap: wrap; }
.social-link {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.08);
    border: var(--border-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-base);
    color: var(--accent);
}
.social-link:hover { background: var(--gradient-primary); color: var(--white); transform: translateY(-4px); border-color: var(--accent); }
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4 i { margin-right: 10px; color: var(--accent); }
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 45px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a { 
    font-size: 13px; 
    color: rgba(255, 255, 255, 0.6); 
    transition: var(--transition-base); 
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.footer-col ul li a i { font-size: 12px; color: var(--accent); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact-item { 
    display: flex; 
    gap: 14px; 
    margin-bottom: 16px; 
    font-size: 13px; 
    color: rgba(255, 255, 255, 0.65); 
    align-items: flex-start;
}
.footer-contact-item i { 
    color: var(--accent); 
    font-size: 16px; 
    margin-top: 2px;
    width: 22px;
}
.whatsapp-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 12px 28px;
    border-radius: var(--border-radius-full);
    font-size: 14px;
    font-weight: 800;
    transition: var(--transition-base);
    text-decoration: none;
    margin-top: 10px;
}
.whatsapp-footer-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.footer-bottom {
    text-align: center;
    padding: 28px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom span { color: var(--accent); font-weight: 600; }

/* ===== WHATSAPP FLOAT - ELEGANT PULSE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 35px; right: 35px;
    z-index: 9998;
    animation: pulseGlow 2.5s infinite;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.wa-btn {
    width: 64px; height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
    cursor: pointer;
    color: white;
    text-decoration: none;
    animation: none;
}
.wa-btn:hover { transform: scale(1.1) !important; }
.wa-tooltip {
    position: absolute;
    bottom: 78px; right: 0;
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-base);
    pointer-events: none;
    border-left: 3px solid var(--accent);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateY(0); }

/* ===== ALERTS & LOADING ===== */
.alert {
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.alert-success { background: var(--success-light); color: var(--success); border-left: 4px solid var(--success); }
.alert-error { background: var(--danger-light); color: var(--danger); border-left: 4px solid var(--danger); }
.alert i { font-size: 18px; }

.loading { 
    display: inline-block; 
    width: 48px; 
    height: 48px; 
    border: 3px solid rgba(10, 92, 68, 0.15); 
    border-radius: 50%; 
    border-top-color: var(--primary); 
    animation: spin 0.8s linear infinite; 
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.9s cubic-bezier(0.2, 0.9, 0.4, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== PRODUCT PAGE ===== */
.page-hero {
    background: var(--gradient-dark-luxury);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.08), transparent);
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}
.breadcrumb { display: flex; justify-content: center; gap: 12px; font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.breadcrumb a { color: var(--accent); text-decoration: none; transition: var(--transition-fast); }
.breadcrumb a:hover { text-decoration: underline; opacity: 0.85; }
.breadcrumb span { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .container { padding: 0 32px; }
    .products-grid { gap: 30px; }
}
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
    .order-layout { grid-template-columns: 1fr; gap: 55px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .modal-content { grid-template-columns: 1fr; }
    .modal-image { min-height: 350px; border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0; }
    section { padding: 80px 0; }
}
@media (max-width: 768px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .hero-slider { height: 70vh; min-height: 520px; }
    .slide-content { padding: 28px 36px; max-width: 100%; }
    .slide-btns { flex-direction: column; align-items: stretch; }
    .slide-btns .btn-primary, .slide-btns .btn-whatsapp { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-item { border-right: none; border-bottom: var(--border-gold-light); }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 45px; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .form-row { grid-template-columns: 1fr; }
    .form-btns { grid-template-columns: 1fr; }
    .header-inner { height: 76px; padding: 0 24px; }
    .social-links { justify-content: center; }
    .order-form-wrapper { padding: 32px; }
    .slider-arrows { display: none; }
    .mobile-nav a { font-size: 22px; padding: 12px 28px; }
    .mobile-nav-close { top: 24px; right: 24px; font-size: 30px; }
    .slider-controls { bottom: 24px; gap: 14px; }
    .slider-dot { width: 7px; height: 7px; }
    .slider-dot.active { width: 28px; }
    *[id] { scroll-margin-top: 80px; }
    section { padding: 60px 0; }
}
@media (max-width: 480px) {
    .product-actions { grid-template-columns: 1fr; }
    .logo-name { font-size: 24px; }
    .logo img { height: 44px; }
    .order-form-wrapper { padding: 24px; }
    .modal-details { padding: 28px; }
    .modal-name { font-size: 28px; }
    .success-box { padding: 40px 32px; }
    .qty-presets-modern { justify-content: center; }
    .qty-preset-btn-modern { padding: 7px 16px; font-size: 12px; }
    .section-header { margin-bottom: 50px; }
    .container { padding: 0 20px; }
    .product-card .product-actions .btn-sm { padding: 10px 14px; font-size: 11px; }
    body { font-size: 14px; }
    .section-title { font-size: 34px; }
    .section-label { font-size: 16px; }
    .page-hero h1 { font-size: 40px; }
}
@media (max-width: 360px) {
    .container { padding: 0 16px; }
    .product-info { padding: 20px; }
    .product-name { font-size: 20px; }
    .price-current { font-size: 22px; }
    .product-actions .btn-sm { font-size: 11px; padding: 9px 12px; }
    .order-form-wrapper { padding: 20px; }
    .modal-details { padding: 24px; }
    .modal-name { font-size: 24px; }
}

/* ===== ADDITIONAL PROFESSIONAL REFINEMENTS ===== */
::selection {
    background: var(--accent);
    color: var(--dark);
}
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
button, a, .product-card, .why-card, .testimonial-card, .social-link {
    transition: var(--transition-base);
}
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 6px;
}
.btn-primary:disabled,
.btn-order:disabled,
.btn-whatsapp:disabled,
.qty-btn-modern:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
@media (min-width: 1600px) { 
    .container { max-width: 1600px; }
    .header-inner { max-width: 1600px; }
}
@media (hover: none) and (pointer: coarse) {
    .btn-primary:hover,
    .btn-order:hover,
    .product-card:hover,
    .why-card:hover {
        transform: none;
    }
    .product-card:active { transform: scale(0.98); }
    .slider-arrows { display: none; }
}
@media print {
    .top-bar, header, .hero-slider, .features-strip, .quick-order-section,
    .why-section, .testimonials-section, .whatsapp-float, .modal-overlay,
    .order-success, footer { display: none !important; }
    body { background: white; color: black; padding: 20px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .whatsapp-float { animation: none !important; }
}