/* ========================================
   GOPAL GOVIND ORNAMENTS — Design System
   Premium Luxury Jewellery E-commerce
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Primary Gold Palette */
  --gold-50: #fefce8;
  --gold-100: #fef9c3;
  --gold-200: #fef08a;
  --gold-300: #fde047;
  --gold-400: #dca315; /* Darker gold for better contrast on light backgrounds */
  --gold-500: #d4a017;
  --gold-600: #b8860b;
  --gold-700: #96700a;
  --gold-800: #7a5c0e;
  --gold-900: #5c4409;

  /* Background Palette (Light Theme Default) */
  --bg-primary: #fdfcf9;
  --bg-secondary: #f6f2e9;
  --bg-tertiary: #ebe5d8;
  --bg-card: #ffffff;
  --bg-elevated: #ffffff;

  /* Text Colors */
  --text-primary: #2d261e;
  --text-secondary: #5e5140;
  --text-muted: #8c7f6e;
  --text-gold: #c79514;

  /* Accent Colors */
  --ruby: #9b1b30;
  --ruby-light: #c41e3a;
  --emerald: #1b6b3a;
  --emerald-light: #2d8b57;
  --sapphire: #1b3a6b;
  --sapphire-light: #2952a3;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #d4a017, #f0d060, #d4a017);
  --gradient-gold-subtle: linear-gradient(135deg, rgba(212, 160, 23, 0.1), rgba(240, 208, 96, 0.03));
  --gradient-dark: linear-gradient(180deg, #fdfcf9 0%, #f6f2e9 50%, #fdfcf9 100%);
  --gradient-hero: linear-gradient(135deg, #fdfcf9 0%, #f7f3ea 50%, #fdfcf9 100%);
  --gradient-card: linear-gradient(145deg, #ffffff, #fdfcf9);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(94, 81, 64, 0.08);
  --shadow-md: 0 4px 20px rgba(94, 81, 64, 0.12);
  --shadow-lg: 0 8px 40px rgba(94, 81, 64, 0.16);
  --shadow-gold: 0 4px 30px rgba(212, 160, 23, 0.1);
  --shadow-gold-lg: 0 8px 50px rgba(212, 160, 23, 0.15);

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-elegant: 'Cormorant Garamond', serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1280px;

  /* Borders */
  --border-gold: 1px solid rgba(212, 160, 23, 0.15);
  --border-gold-strong: 1px solid rgba(212, 160, 23, 0.35);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Semantic UI overlays & inputs */
  --overlay-bg: rgba(253, 252, 249, 0.95);
  --card-overlay-bg: rgba(253, 252, 249, 0.85);
  --border-subtle: 1px solid rgba(94, 81, 64, 0.1);
  --form-input-bg: rgba(94, 81, 64, 0.04);
  --form-input-border: 1px solid rgba(94, 81, 64, 0.12);
  --loader-bg: rgba(94, 81, 64, 0.1);
}

/* ── Dark Theme Override ── */
html.dark-theme {
  --gold-400: #facc15;
  
  /* Dark Background Palette */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #141414;
  --bg-elevated: #1e1e1e;

  /* Text Colors */
  --text-primary: #f5f0e8;
  --text-secondary: #b8a88a;
  --text-muted: #8a7d6b;
  --text-gold: #d4a017;

  /* Gradients */
  --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
  --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1510 50%, #0a0a0a 100%);
  --gradient-card: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 30px rgba(212, 160, 23, 0.15);
  --shadow-gold-lg: 0 8px 50px rgba(212, 160, 23, 0.25);

  /* Borders */
  --border-gold: 1px solid rgba(212, 160, 23, 0.2);
  --border-gold-strong: 1px solid rgba(212, 160, 23, 0.4);

  /* Semantic UI overlays & inputs */
  --overlay-bg: rgba(10, 10, 10, 0.95);
  --card-overlay-bg: rgba(10, 10, 10, 0.8);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.05);
  --form-input-bg: rgba(255, 255, 255, 0.03);
  --form-input-border: 1px solid rgba(255, 255, 255, 0.08);
  --loader-bg: rgba(255, 255, 255, 0.05);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

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

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--font-body);
}

/* ── Container ── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Decorative Elements ── */
.gold-line {
  width: 80px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 16px auto;
  border-radius: 2px;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(212, 160, 23, 0.08);
  padding: 8px 24px;
  border-radius: 50px;
  border: 1px solid rgba(212, 160, 23, 0.15);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-elegant);
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ── Scroll Animations ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   NAVIGATION
   ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 12px 0;
  background: var(--overlay-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bg-primary);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.nav-logo-tagline {
  font-family: var(--font-elegant);
  font-size: 0.75rem;
  color: var(--gold-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

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

.nav-link:hover {
  color: var(--gold-400);
}

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

/* Theme Toggle Button */
.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(212, 160, 23, 0.08);
  border: var(--border-gold);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.theme-toggle-btn:hover {
  background: rgba(212, 160, 23, 0.15);
  border-color: var(--gold-500);
  color: var(--gold-400);
  transform: scale(1.05) rotate(15deg);
  box-shadow: var(--shadow-gold);
}

.theme-toggle-btn svg {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle-btn:active svg {
  transform: scale(0.85);
}

/* Toggle visibility of sun/moon icons based on theme */
html:not(.dark-theme) .sun-icon {
  display: none !important;
}

html:not(.dark-theme) .moon-icon {
  display: block !important;
}

html.dark-theme .sun-icon {
  display: block !important;
}

html.dark-theme .moon-icon {
  display: none !important;
}

@media (max-width: 768px) {
  .theme-toggle-btn {
    margin: 10px auto 0 auto;
  }
}

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 50px;
  color: #25d366;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.nav-whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.15);
}

.nav-whatsapp svg {
  width: 18px;
  height: 18px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

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

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

/* =====================
   HERO SECTION
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 800px 600px at 20% 50%, rgba(212, 160, 23, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 80% 30%, rgba(212, 160, 23, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 28px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-badge::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-500);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-family: var(--font-elegant);
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
  font-style: italic;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  box-shadow: var(--shadow-gold-lg);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: var(--border-gold-strong);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(212, 160, 23, 0.08);
  border-color: var(--gold-500);
  color: var(--gold-400);
  box-shadow: var(--shadow-gold);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  animation: fadeIn 1.2s ease 0.5s both;
}

.hero-image-container {
  position: relative;
  width: 480px;
  height: 480px;
}

.hero-image-ring {
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

.hero-image-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
}

.hero-image-ring-2 {
  position: absolute;
  inset: -50px;
  border: 1px solid rgba(212, 160, 23, 0.08);
  border-radius: 50%;
  animation: rotate 45s linear infinite reverse;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 160, 23, 0.2);
  box-shadow: var(--shadow-gold-lg);
}

.hero-floating-card {
  position: absolute;
  background: var(--overlay-bg);
  backdrop-filter: blur(20px);
  border: var(--border-gold);
  border-radius: 12px;
  padding: 16px 20px;
  animation: float 4s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  bottom: 60px;
  left: -40px;
  animation-delay: 0s;
}

.hero-floating-card.card-2 {
  top: 80px;
  right: -30px;
  animation-delay: 2s;
}

.floating-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 4px;
}

.floating-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: var(--border-gold);
  animation: fadeInUp 1s ease 1s both;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* =====================
   SERVICES SECTION
   ===================== */
.services {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.3), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  padding: 40px 28px;
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: 16px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(212, 160, 23, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 160, 23, 0.4);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: rgba(212, 160, 23, 0.15);
  border-color: rgba(212, 160, 23, 0.3);
  transform: scale(1.1);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-500);
  fill: none;
  stroke-width: 1.5;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.service-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* =====================
   PRODUCTS SECTION
   ===================== */
.products {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
}

/* Category Filter */
.category-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 28px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: var(--border-gold);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  color: var(--gold-400);
  border-color: rgba(212, 160, 23, 0.4);
  background: rgba(212, 160, 23, 0.05);
}

.filter-btn.active {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  border-color: var(--gold-500);
  font-weight: 700;
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border: var(--border-gold);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, 0.4);
  box-shadow: var(--shadow-gold);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

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

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

.product-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  background: var(--card-overlay-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-400);
}

.product-quick-view {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--card-overlay-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.product-card:hover .product-quick-view {
  opacity: 1;
  transform: translateY(0);
}

.product-quick-view:hover {
  background: rgba(212, 160, 23, 0.2);
  border-color: rgba(212, 160, 23, 0.4);
}

.product-info {
  padding: 24px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.product-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-400);
}

.product-price .price-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 8px;
  color: #25d366;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =====================
   PRODUCT MODAL
   ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-elevated);
  border: var(--border-gold);
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--card-overlay-bg);
  backdrop-filter: blur(10px);
  border: var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: rgba(212, 160, 23, 0.2);
  border-color: rgba(212, 160, 23, 0.4);
}

.modal-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.modal-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.modal-details {
  margin-bottom: 28px;
}

.modal-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: var(--border-subtle);
}

.modal-detail-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.modal-detail-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.modal-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 24px;
}

.modal-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: #25d366;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
}

.modal-whatsapp-btn:hover {
  background: #20b858;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.modal-whatsapp-btn svg {
  width: 22px;
  height: 22px;
}

/* =====================
   ABOUT SECTION
   ===================== */
.about {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.3), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content {
  padding-right: 40px;
}

.about-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-500);
  fill: none;
  stroke-width: 1.5;
}

.about-feature-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.about-image-section {
  position: relative;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-image-grid img {
  border-radius: 12px;
  border: var(--border-gold);
  transition: var(--transition-smooth);
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.about-image-grid img:nth-child(2) {
  margin-top: 40px;
}

.about-image-grid img:hover {
  border-color: rgba(212, 160, 23, 0.4);
  box-shadow: var(--shadow-gold);
}

/* =====================
   CONTACT SECTION
   ===================== */
.contact {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.3), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  border-color: rgba(212, 160, 23, 0.4);
  transform: translateX(6px);
  box-shadow: var(--shadow-gold);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-500);
  fill: none;
  stroke-width: 1.5;
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-card-text a {
  color: var(--gold-400);
  transition: var(--transition-fast);
}

.contact-card-text a:hover {
  color: var(--gold-300);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: 20px;
  padding: 40px;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--form-input-bg);
  border: var(--form-input-border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(212, 160, 23, 0.4);
  background: var(--form-input-bg);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b8a88a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: #25d366;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-submit-whatsapp:hover {
  background: #20b858;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.btn-submit-whatsapp svg {
  width: 20px;
  height: 20px;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  padding: 60px 0 30px;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(212, 160, 23, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  background: rgba(212, 160, 23, 0.1);
  border-color: rgba(212, 160, 23, 0.3);
  color: var(--gold-400);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* =====================
   FLOATING WHATSAPP
   ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* =====================
   BACK TO TOP
   ===================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 100px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(10px);
  border: var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: rgba(212, 160, 23, 0.1);
  border-color: rgba(212, 160, 23, 0.4);
  transform: translateY(-4px);
}
/* =====================
   PAGE HERO (Inner Pages)
   ===================== */
.page-hero {
  padding: 140px 0 60px;
  background: var(--gradient-hero);
  position: relative;
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.page-hero-subtitle {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
}

/* =====================
   BREADCRUMB
   ===================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  letter-spacing: 0.5px;
}

.breadcrumb a:hover {
  color: var(--gold-500);
}

.breadcrumb-sep {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.breadcrumb-current {
  font-size: 0.8rem;
  color: var(--gold-500);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* =====================
   COLLECTIONS PAGE
   ===================== */
.collections-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: var(--section-padding);
}

/* Sidebar Filters */
.filter-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.filter-section {
  margin-bottom: 28px;
}

.filter-section-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: var(--border-gold);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-option:hover {
  color: var(--gold-500);
}

.filter-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid var(--text-muted);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.filter-option.active .filter-checkbox {
  background: var(--gradient-gold);
  border-color: var(--gold-500);
}

.filter-option.active .filter-checkbox::after {
  content: '✓';
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
}

.filter-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.filter-option.active .filter-label {
  color: var(--text-primary);
  font-weight: 600;
}

.filter-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: auto;
}

.filter-reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: transparent;
  border: var(--border-gold);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
  justify-content: center;
}

.filter-reset-btn:hover {
  background: rgba(212, 160, 23, 0.08);
  border-color: var(--gold-500);
  color: var(--gold-500);
}

/* Collection Toolbar */
.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.collection-count {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.collection-count strong {
  color: var(--text-primary);
  font-weight: 700;
}

.collection-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-select {
  padding: 10px 36px 10px 14px;
  background: var(--form-input-bg);
  border: var(--form-input-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b8a88a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  outline: none;
}

.sort-select option {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.view-toggle {
  display: flex;
  border: var(--form-input-border);
  border-radius: 8px;
  overflow: hidden;
}

.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 38px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.view-btn.active {
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold-500);
}

.view-btn:hover:not(.active) {
  color: var(--text-primary);
}

.view-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* List View */
.products-grid.list-view {
  grid-template-columns: 1fr;
}

.products-grid.list-view .product-card {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.products-grid.list-view .product-image-wrapper {
  aspect-ratio: auto;
  height: 100%;
  min-height: 200px;
}

/* Product Quick View Overlay (new link-based) */
.product-image-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.product-quick-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: var(--transition-smooth);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card:hover .product-quick-view-overlay {
  opacity: 1;
}

.product-name a {
  color: inherit;
  transition: var(--transition-fast);
}

.product-name a:hover {
  color: var(--gold-500);
}

/* Mobile filter toggle */
.filter-toggle-mobile {
  display: none;
  padding: 12px 24px;
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  width: 100%;
  justify-content: center;
}

.filter-toggle-mobile svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* =====================
   PRODUCT DETAIL PAGE
   ===================== */
.product-detail-section {
  padding: var(--section-padding);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-detail-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: var(--border-gold);
  background: var(--bg-card);
}

.product-detail-image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  cursor: zoom-in;
}

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

.product-detail-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.product-detail-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.product-detail-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 32px;
}

.product-detail-specs {
  margin-bottom: 32px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: var(--border-subtle);
}

.spec-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.spec-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.product-detail-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 28px;
}

.product-detail-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-whatsapp-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  background: #25d366;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex: 1;
  min-width: 200px;
}

.btn-whatsapp-lg:hover {
  background: #20b858;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.btn-whatsapp-lg svg {
  width: 22px;
  height: 22px;
}

.btn-back-collections {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  background: transparent;
  border: var(--border-gold-strong);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.btn-back-collections:hover {
  background: rgba(212, 160, 23, 0.08);
  border-color: var(--gold-500);
  color: var(--gold-500);
}

/* Related Products */
.related-products-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.3), transparent);
}

.testimonials-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  text-align: center;
  padding: 0 20px;
}

.testimonial-quote {
  font-family: var(--font-elegant);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 28px;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-500);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-400);
}

.testimonial-author {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.3;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.testimonial-dot.active {
  background: var(--gold-500);
  opacity: 1;
  transform: scale(1.2);
}

/* =====================
   VALUES SECTION (About)
   ===================== */
.values-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212, 160, 23, 0.4);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-500);
  fill: none;
  stroke-width: 1.5;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

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

/* =====================
   FAQ ACCORDION
   ===================== */
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border: var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
  background: var(--gradient-card);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(212, 160, 23, 0.35);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.faq-question-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold-500);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* =====================
   GOOGLE MAP EMBED
   ===================== */
.map-section {
  padding: 0 0 80px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* =====================
   CTA BANNER
   ===================== */
.cta-banner {
  padding: 80px 0;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.3), transparent);
}

.cta-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cta-text {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   NAV ACTIVE STATE
   ===================== */
.nav-link.active {
  color: var(--gold-400);
}

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

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-description {
    margin: 0 auto 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrapper {
    padding-top: 0;
  }

  .hero-image-container {
    width: 360px;
    height: 360px;
  }

  .hero-floating-card {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content {
    padding-right: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .modal {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .modal-image {
    border-radius: 20px 20px 0 0;
    max-height: 300px;
  }

  /* Multi-page specific responsive */
  .collections-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .filter-sidebar {
    position: static;
    margin-bottom: 20px;
  }

  .filter-toggle-mobile {
    display: flex;
  }

  .filter-sections-wrapper {
    display: none; /* Can be toggled with JS */
  }

  .filter-sections-wrapper.active {
    display: block;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background: var(--overlay-bg);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: var(--transition-smooth);
    border-left: var(--border-gold);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-image-grid {
    grid-template-columns: 1fr;
  }

  .about-image-grid img:nth-child(2) {
    margin-top: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Multi-page specific responsive */
  .values-grid {
    grid-template-columns: 1fr;
  }

  .products-grid.list-view .product-card {
    grid-template-columns: 1fr;
  }

  .products-grid.list-view .product-image-wrapper {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }

  .product-detail-name {
    font-size: 2rem;
  }

  .product-detail-cta {
    flex-direction: column;
  }

  .page-hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-image-container {
    width: 280px;
    height: 280px;
  }

  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  /* Multi-page specific responsive */
  .page-hero-title {
    font-size: 1.8rem;
  }

  .collection-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .collection-controls {
    width: 100%;
    justify-content: space-between;
  }
}

/* =====================
   LOADING ANIMATION
   ===================== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.loader-logo span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--loader-bg);
  border-radius: 2px;
  overflow: hidden;
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 2px;
  animation: loading 1.5s ease forwards;
}

@keyframes loading {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 160, 23, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 160, 23, 0.5);
}
