/* ═══════════════════════════════════════════════════════════
   M R International — Premium Design System v3.0
   Apple-inspired, luxury-grade CSS
   ═══════════════════════════════════════════════════════════ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: rgba(17,17,24,0.7);
  --bg-card-hover: rgba(25,25,35,0.85);
  --bg-glass: rgba(17,17,24,0.65);
  --text-primary: #f5f5f7;
  --text-secondary: #a1a1a6;
  --text-muted: #6e6e73;
  --border-color: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --gold: #C6A96B;
  --gold-hover: #d4ba7e;
  --gold-light: rgba(198,169,107,0.15);
  --gold-glow: rgba(198,169,107,0.4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --transition: 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  --transition-slow: 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ===== LIGHT MODE — Premium Warm Palette (🌿 Nature-Inspired) ===== */
[data-theme="light"] {
  --bg-primary: #F7F3EC;
  --bg-secondary: #FFFFFF;
  --bg-card: rgba(255,255,255,0.95);
  --bg-card-hover: rgba(255,255,255,1);
  --bg-glass: rgba(247,243,236,0.9);
  --text-primary: #2E2A26;
  --text-secondary: #6F6A63;
  --text-muted: #9C978F;
  --border-color: #E0D6C5;
  --border-hover: #C8A25D;
  --gold: #C8A25D;
  --gold-hover: #A8843E;
  --gold-light: rgba(200,162,93,0.12);
  --gold-glow: rgba(200,162,93,0.3);
  --accent-sand: #E8D8B5;
  --section-alt: #EFE6D6;
  --feature-bg: #F4EBDD;
  --input-bg: #F2EADF;
  --divider: #E8E0D2;
}

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

html { 
  scroll-behavior: smooth; 
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "kern" 1;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY — Apple Scale ===== */
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
h4 { font-size: 1.125rem; font-weight: 600; line-height: 1.3; }
p { font-size: 1rem; line-height: 1.65; color: var(--text-secondary); }

h2::after { content: none; }

.font-display { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; }

/* ===== SELECTION ===== */
::selection { background: var(--gold-light); color: var(--text-primary); }

/* ===== SCROLLBAR — Minimal ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(198,169,107,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(198,169,107,0.5); }

/* ===== PREMIUM AMBIENT GLOW ===== */
body::before {
  content: "";
  position: fixed;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(198,169,107,0.04), transparent 70%);
  top: -20vh; right: -20vw;
  pointer-events: none; z-index: 0;
  animation: ambientDrift 30s ease-in-out infinite;
}
body::after {
  content: "";
  position: fixed;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(198,169,107,0.03), transparent 70%);
  bottom: -15vh; left: -15vw;
  pointer-events: none; z-index: 0;
  animation: ambientDrift 25s ease-in-out infinite reverse;
}
@keyframes ambientDrift {
  0%,100% { opacity: 0.6; transform: translate(0,0) scale(1); }
  50% { opacity: 1; transform: translate(30px,20px) scale(1.1); }
}
[data-theme="light"] body::before,
[data-theme="light"] body::after { opacity: 0.4; }

/* ===== GLASS MORPHISM ===== */
.glass {
  background: var(--bg-glass);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--border-color);
}

/* ===== NAVBAR ===== */
#main-navbar {
  transition: all var(--transition);
  will-change: transform;
}
#main-navbar a::after { content: none !important; }

.nav-link {
  position: relative;
  padding: 6px 14px;
  border-radius: 980px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
  letter-spacing: -0.01em;
}
.nav-link:hover { background: var(--gold-light); }
.nav-link .absolute { display: none; }

/* ===== INPUTS — Apple Style ===== */
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-family: inherit;
  outline: none;
  transition: all var(--transition);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-light);
  background: var(--bg-card-hover);
}
input:hover, textarea:hover, select:hover { border-color: var(--border-hover); }

input[type="radio"], input[type="checkbox"] {
  width: auto; padding: 0;
  accent-color: var(--gold);
}

label { display: block; margin-bottom: 6px; font-size: 0.8125rem; font-weight: 500; color: var(--text-secondary); }

/* ===== BUTTONS — Apple Style ===== */
.btn-premium {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #C6A96B, #d4ba7e);
  color: #0a0a0f;
  font-weight: 600; font-size: 0.9375rem;
  border: none; border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  position: relative; overflow: hidden;
  box-shadow: 0 2px 12px rgba(198,169,107,0.3);
  letter-spacing: -0.01em;
}
.btn-premium:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px var(--gold-glow);
}
.btn-premium:active { transform: translateY(0) scale(0.98); }

.btn-outline-premium {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--gold);
  font-weight: 600; font-size: 0.9375rem;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: -0.01em;
}
.btn-outline-premium:hover {
  background: var(--gold);
  color: #0a0a0f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.luxury-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.luxury-btn:hover {
  background: var(--gold);
  color: #0a0a0f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

/* ===== PRODUCT CARDS — Premium Glass ===== */
.luxury-product-card, .card-shine {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.luxury-product-card::before, .card-shine::before { content: none; }
.luxury-product-card::after, .card-shine::after { content: none; }

.luxury-product-card:hover, .card-shine:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(198,169,107,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(198,169,107,0.15), 0 0 40px rgba(198,169,107,0.08);
}

[data-theme="light"] .luxury-product-card,
[data-theme="light"] .card-shine {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
[data-theme="light"] .luxury-product-card:hover,
[data-theme="light"] .card-shine:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(166,125,61,0.2);
}

.product-info {
  padding: 20px 24px 24px;
}
.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem; font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.product-info p { font-size: 0.8125rem; color: var(--text-muted); }

/* ===== PRODUCT GRID ===== */
.luxury-product-grid, .product-grid-regular {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { .luxury-product-grid, .product-grid-regular { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 640px) { .luxury-product-grid, .product-grid-regular { grid-template-columns: 1fr; gap: 16px; } }

/* ===== HERO ===== */
.luxury-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 100px 8% 60px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .luxury-hero {
    min-height: auto;
    flex-direction: column;
    text-align: center;
    padding: 100px 5% 60px;
  }
}

.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 10s ease-out;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}
.hero-slide.active { opacity: 1; transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.7) 40%, rgba(10,10,15,0.3) 70%, transparent 100%);
}
@media (max-width: 900px) {
  .hero-overlay { background: linear-gradient(to bottom, rgba(10,10,15,0.6), rgba(10,10,15,0.95)); }
}

.luxury-hero-content {
  max-width: 640px; position: relative; z-index: 2; flex: 1;
}
.luxury-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 20px;
  color: #f5f5f7;
}
.luxury-hero p {
  color: rgba(245,245,247,0.7);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400; line-height: 1.6;
  max-width: 540px; margin-bottom: 32px;
}

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-top: 36px;
}
.hero-stat {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 16px 12px; border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition);
}
.hero-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(198,169,107,0.3);
  box-shadow: 0 12px 32px rgba(198,169,107,0.15);
}
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-size: 0.6875rem;
  color: rgba(245,245,247,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-slider-dots {
  position: absolute; bottom: 32px;
  left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer; transition: all var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  width: 24px; border-radius: 4px;
}

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ===== HERO PARTICLES ===== */
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: rgba(198,169,107,0.5);
  border-radius: 50%;
  animation: particleFloat 18s infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.8; transform: translateY(80vh) scale(1); }
  90% { opacity: 0.2; }
  100% { transform: translateY(-10vh) scale(0.3); opacity: 0; }
}

/* ===== SECTIONS ===== */
.section-gold {
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
  position: relative;
}
.section-alt {
  background: var(--bg-secondary);
}

/* ===== BRAND STATEMENT ===== */
.brand-statement {
  text-align: center; padding: 60px 20px;
  position: relative;
}

/* ===== PARTNER/STORY SECTION ===== */
.partner-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 900px) { .partner-grid { grid-template-columns: 1fr !important; gap: 40px !important; } }

/* ===== CENTER SECTION ===== */
.center-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

/* ===== CTA SECTION ===== */
.luxury-cta {
  text-align: center; padding: 100px 20px;
  position: relative; overflow: hidden;
}
.luxury-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(198,169,107,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.luxury-cta h2 { color: var(--text-primary); margin-bottom: 16px; }
.luxury-cta p { max-width: 600px; margin: 0 auto 36px; font-size: 1.125rem; }
.luxury-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, #C6A96B 0%, #E8CC8E 50%, #C6A96B 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
[data-theme="light"] .gradient-text {
  background: linear-gradient(135deg, #8B6530, #A67D3D, #8B6530);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: none !important;
}

/* ===== SCROLL REVEAL ===== */
.reveal, .fade-up {
  opacity: 0; transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.active, .reveal.show, .fade-up.show { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.08s; }
.fade-up-delay-2 { transition-delay: 0.16s; }
.fade-up-delay-3 { transition-delay: 0.24s; }
.fade-up-delay-4 { transition-delay: 0.32s; }
.fade-up-delay-5 { transition-delay: 0.4s; }
.fade-up-delay-6 { transition-delay: 0.48s; }

.stagger { opacity: 0; transform: translateY(30px); transition: all 0.6s var(--transition-slow); }
.stagger.show { opacity: 1; transform: translateY(0); }

/* ===== PAGE TRANSITION ===== */
.page-transition { animation: pageIn 0.4s ease-out; }
@keyframes pageIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ===== LOADER ===== */
#loader { transition: opacity 0.6s ease; }
#loader.hide { opacity: 0; pointer-events: none; }

/* ===== PREMIUM DIVIDER ===== */
.premium-divider {
  height: 1px; margin: 48px 0;
  background: linear-gradient(90deg, transparent, rgba(198,169,107,0.3), transparent);
}

/* ===== CUSTOM CURSOR (GPU Accelerated) ===== */
.custom-cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  box-shadow: 0 0 12px rgba(198,169,107,0.5);
  mix-blend-mode: screen;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(198,169,107,0.25);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  will-change: transform;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.custom-cursor.cursor-hover { width: 14px; height: 14px; background: #E8CC8E; }
.cursor-follower.follower-hover {
  width: 50px; height: 50px;
  border-color: rgba(198,169,107,0.5);
  background: rgba(198,169,107,0.04);
}

/* ===== CHAT WIDGET ===== */
#chat-window {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 80px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
}
[data-theme="light"] #chat-window {
  background: #fff; box-shadow: 0 25px 80px rgba(0,0,0,0.12);
}

/* ===== TOAST ===== */
#toast-container { z-index: 99999; }

/* ===== SKELETON LOADING ===== */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 8px;
}
@keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ===== PAYMENT OPTIONS ===== */
.payment-option {
  transition: all var(--transition);
  border-radius: var(--radius-md);
}
.payment-option input[type="radio"] { accent-color: var(--gold); }
.payment-option:has(input:checked) {
  border-color: var(--gold) !important;
  background: var(--gold-light);
  box-shadow: 0 0 20px rgba(198,169,107,0.08);
}

/* ===== LINE CLAMP ===== */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== GLOW EFFECTS ===== */
.glow-gold { box-shadow: 0 0 40px rgba(198,169,107,0.2), 0 0 80px rgba(198,169,107,0.1); }
.shadow-premium { box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px var(--border-color); }

/* ===== DROPDOWN ===== */
.dropdown-menu {
  background: var(--bg-glass);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}
[data-theme="light"] .dropdown-menu {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
}

/* ===== PRINT ===== */
@media print { nav, footer, #chat-toggle, #chat-window, .no-print { display: none !important; } body { background: white; color: black; } }

/* ===== FOCUS ===== */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ═══════════════════════════════════════════════════════════
   COMPREHENSIVE LIGHT MODE — Every element accounted for
   ═══════════════════════════════════════════════════════════ */

[data-theme="light"] body { background: #F7F3EC !important; color: #2E2A26 !important; }

/* Navbar */
[data-theme="light"] #main-navbar { background: rgba(247,243,236,0.95) !important; border-bottom-color: #E0D6C5 !important; box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important; }
[data-theme="light"] #main-navbar .text-white,
[data-theme="light"] #main-navbar span.font-display { color: #2E2A26 !important; }
[data-theme="light"] #main-navbar .text-gray-300,
[data-theme="light"] #main-navbar .text-gray-400 { color: #6F6A63 !important; }
[data-theme="light"] .nav-link.text-primary-400 { color: #C8A25D !important; background: rgba(200,162,93,0.1) !important; }
[data-theme="light"] #search-bar, [data-theme="light"] #mobile-menu { background: rgba(247,243,236,0.98) !important; }
[data-theme="light"] #search-bar input { background: #F2EADF !important; color: #2E2A26 !important; }

/* Hero — keep white text */
[data-theme="light"] .luxury-hero { color: white !important; }
[data-theme="light"] .luxury-hero h1, [data-theme="light"] .luxury-hero p { color: inherit !important; }
[data-theme="light"] .hero-overlay { background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.5), rgba(0,0,0,0.2), transparent) !important; }

/* Cards & panels */
[data-theme="light"] .bg-dark-800\/50,
[data-theme="light"] [class*="bg-dark-800"],
[data-theme="light"] [class*="bg-dark-900"] { background: #FFFFFF !important; border-color: #E0D6C5 !important; }
[data-theme="light"] .bg-dark-950,
[data-theme="light"] [class*="bg-dark-950"] { background: #EFE6D6 !important; }

/* Text overrides — warm earth tones */
[data-theme="light"] .text-white { color: #2E2A26 !important; }
[data-theme="light"] .text-gray-300 { color: #2E2A26 !important; }
[data-theme="light"] .text-gray-400 { color: #6F6A63 !important; }
[data-theme="light"] .text-gray-500 { color: #9C978F !important; }
[data-theme="light"] .text-gray-600 { color: #6F6A63 !important; }
[data-theme="light"] .text-primary-400 { color: #C8A25D !important; }

/* Inputs */
[data-theme="light"] input, [data-theme="light"] textarea, [data-theme="light"] select {
  background: #F2EADF !important; border-color: #E0D6C5 !important; color: #2E2A26 !important;
}
[data-theme="light"] input::placeholder, [data-theme="light"] textarea::placeholder { color: #9C978F !important; }
[data-theme="light"] input:focus, [data-theme="light"] textarea:focus, [data-theme="light"] select:focus {
  border-color: #C8A25D !important; box-shadow: 0 0 0 4px rgba(200,162,93,0.1) !important; background: #fff !important;
}

/* Product cards */
[data-theme="light"] .product-info h3 { color: #2E2A26 !important; }
[data-theme="light"] .product-info p { color: #6F6A63 !important; }

/* Sections */
[data-theme="light"] .section-gold { background: #F7F3EC !important; }
[data-theme="light"] .section-alt, [data-theme="light"] .luxury-products, [data-theme="light"] .brand-statement, [data-theme="light"] .full-section { background: #EFE6D6 !important; }
[data-theme="light"] .luxury-cta { background: #F4EBDD !important; }

[data-theme="light"] .luxury-products h2, [data-theme="light"] .luxury-cta h2 { color: #2E2A26 !important; }
[data-theme="light"] .luxury-products-subtitle, [data-theme="light"] .luxury-cta p { color: #6F6A63 !important; }

/* Footer — keep dark */
[data-theme="light"] footer { background: #1d1d1f !important; color: white !important; }
[data-theme="light"] footer .text-white { color: #fff !important; }
[data-theme="light"] footer .text-gray-400 { color: #a1a1a6 !important; }
[data-theme="light"] footer .text-gray-500 { color: #86868b !important; }

/* Loader */
[data-theme="light"] #loader { background: #F7F3EC !important; }

/* Login */
[data-theme="light"] .login-title { background: linear-gradient(135deg, #2E2A26, #C8A25D) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; }
[data-theme="light"] .login-subtitle { color: #6F6A63 !important; }
[data-theme="light"] .login-card { background: rgba(255,255,255,0.95) !important; border-color: #E0D6C5 !important; }
[data-theme="light"] .form-label { color: #6F6A63 !important; }
[data-theme="light"] .form-input { background: #F2EADF !important; color: #2E2A26 !important; border-color: #E0D6C5 !important; }
[data-theme="light"] .login-page { background: #F7F3EC !important; }

/* Table */
[data-theme="light"] table th { color: #6F6A63 !important; border-color: #E8E0D2 !important; }
[data-theme="light"] table td { border-color: #E8E0D2 !important; }

/* Scrollbar */
[data-theme="light"] ::-webkit-scrollbar-track { background: #EFE6D6; }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: rgba(200,162,93,0.4); }

/* Stat cards in hero — keep glass look */
[data-theme="light"] .hero-stat { background: rgba(255,255,255,0.2) !important; border-color: rgba(255,255,255,0.25) !important; }

/* Buttons */
[data-theme="light"] .luxury-btn { 
  border-color: #C8A25D !important; 
  color: #C8A25D !important;
  background: transparent !important;
}
[data-theme="light"] .luxury-btn:hover { 
  background: #C8A25D !important; 
  color: #FFFFFF !important; 
}

/* Brand statement & section text */
[data-theme="light"] .brand-statement h2 { color: #2E2A26 !important; }
[data-theme="light"] .brand-statement p { color: #6F6A63 !important; }

/* Story section */
[data-theme="light"] .luxury-story { background: #F7F3EC !important; }
[data-theme="light"] .luxury-story h2 { color: #2E2A26 !important; }
[data-theme="light"] .luxury-story p { color: #6F6A63 !important; }

/* Feature cards */
[data-theme="light"] [class*="feature-card"],
[data-theme="light"] [class*="why-card"] {
  background: #F4EBDD !important;
  border-color: #E8D8B5 !important;
}
[data-theme="light"] [class*="feature-card"] i,
[data-theme="light"] [class*="why-card"] i { color: #C8A25D !important; }

/* Chatbot */
[data-theme="light"] #chat-window { background: #FFFFFF !important; border-color: #E0D6C5 !important; }

/* Dropdown */
[data-theme="light"] .dropdown-menu { background: #FFFFFF !important; border-color: #E0D6C5 !important; }
[data-theme="light"] .brand-statement span { color: #C8A25D !important; }

/* Product info text in light mode */
[data-theme="light"] .product-info h3 { color: #2E2A26 !important; }
[data-theme="light"] .product-info p { color: #6F6A63 !important; }

/* CTA / hero text that uses inline styles with var(--ivory/--gray) */
[data-theme="light"] [style*="color: var(--ivory)"] { color: #2E2A26 !important; }
[data-theme="light"] [style*="color: var(--gray)"] { color: #6F6A63 !important; }

/* Contact card light mode */
[data-theme="light"] .contact-card { background: rgba(255,255,255,0.95) !important; border-color: #E0D6C5 !important; }
[data-theme="light"] .track-box { background: rgba(255,255,255,0.95) !important; border-color: #E0D6C5 !important; }
[data-theme="light"] .track-input { background: #F2EADF !important; color: #2E2A26 !important; border-color: #E0D6C5 !important; }

/* Chat in light mode */
[data-theme="light"] #chat-toggle { box-shadow: 0 4px 24px rgba(200,162,93,0.3) !important; }

/* Profile and other dark-bg cards */
[data-theme="light"] .profile-card { background: rgba(255,255,255,0.95) !important; border-color: #E0D6C5 !important; }
[data-theme="light"] .section-title { color: #C8A25D !important; }

/* Badges */
[data-theme="light"] .bg-primary-500\/10, [data-theme="light"] .bg-primary-500\/20 { background: rgba(200,162,93,0.1) !important; }
[data-theme="light"] .bg-primary-600 { background: #C8A25D !important; }

/* Chat */
[data-theme="light"] #chat-window .bg-dark-800 { background: #F2EADF !important; }

/* Dropdowns */
[data-theme="light"] .dropdown-menu .text-white { color: #2E2A26 !important; }
[data-theme="light"] .dropdown-menu .text-gray-400 { color: #6F6A63 !important; }

/* Border utilities */
[data-theme="light"] .border-white\/5, [data-theme="light"] .border-white\/10 { border-color: #E0D6C5 !important; }
[data-theme="light"] .border-primary-500\/20 { border-color: rgba(200,162,93,0.2) !important; }

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 640px) {
  html, body { font-size: 15px; }
  section { padding: 48px 5% !important; }
  .luxury-hero { padding: 80px 5% 48px !important; min-height: auto !important; }
  .hero-stats { grid-template-columns: repeat(2,1fr) !important; }
  .luxury-cta-buttons { flex-direction: column; padding: 0 5%; }
  .luxury-cta-buttons .luxury-btn, .luxury-cta-buttons .btn-premium { width: 100%; }
}
