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

:root {
  --color-forest-deep: #03140e;
  --color-forest-base: #062319;
  --color-forest-surface: #0b3425;
  --color-forest-card: rgba(11, 52, 37, 0.75);
  --color-gold-light: #fbe69e;
  --color-gold-base: #d4af37;
  --color-gold-dark: #9c7b1c;
  --color-spice-warmth: #c86d34;
  --color-cream: #faf7f2;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--color-forest-deep);
  color: #e2e8f0;
}

#navbar {
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  will-change: top;
}

/* Custom Typography Utility Classes */
.font-brand {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
}

.font-editorial {
  font-family: 'Playfair Display', serif;
}

.font-sans-body {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Luxury Gold Gradients */
.text-gold-gradient {
  background: linear-gradient(135deg, #fff2c6 0%, #e2be65 35%, #d4af37 60%, #a88220 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold-bright {
  background: linear-gradient(135deg, #ffffff 0%, #fef3c7 40%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.border-gold-gradient {
  border-image: linear-gradient(135deg, rgba(245, 230, 163, 0.6), rgba(212, 175, 55, 0.25), rgba(156, 123, 28, 0.6)) 1;
}

.bg-gold-metallic {
  background: linear-gradient(135deg, #e5c158 0%, #d4af37 50%, #b88a1b 100%);
}

.bg-gold-metallic:hover {
  background: linear-gradient(135deg, #f3d472 0%, #dfb83d 50%, #c49522 100%);
}

.gold-glow {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

.gold-glow-lg {
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.35);
}

.emerald-glow {
  box-shadow: 0 10px 30px rgba(6, 35, 25, 0.6);
}

/* Glassmorphism Luxury Panels */
.glass-panel-dark {
  background: rgba(6, 35, 25, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.glass-panel-card {
  background: rgba(8, 41, 30, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel-card:hover {
  background: rgba(12, 54, 39, 0.85);
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.15);
}

/* Decorative Divider */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.gold-divider::before,
.gold-divider::after {
  content: "";
  height: 1px;
  width: 60px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.7));
}

.gold-divider::after {
  background: linear-gradient(to left, transparent, rgba(212, 175, 55, 0.7));
}

/* Subtle Shimmer Animation */
@keyframes goldShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.shimmer-text {
  background: linear-gradient(90deg, #d4af37 0%, #fff4cf 50%, #d4af37 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 4s infinite linear;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: #03140e;
}

::-webkit-scrollbar-thumb {
  background: #254738;
  border-radius: 4px;
  border: 2px solid #03140e;
}

::-webkit-scrollbar-thumb:hover {
  background: #d4af37;
}

/* Badge styles */
.badge-gold {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #f7e2a9;
}

/* Product Card Images */
.product-img-wrapper {
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at center, rgba(16, 68, 49, 0.5) 0%, rgba(3, 20, 14, 0.9) 100%);
}

.product-img-wrapper img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel-card:hover .product-img-wrapper img {
  transform: scale(1.06);
}

/* Ambient floating animations */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

/* Modal overlay transitions */
.modal-overlay {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-content {
  transform: scale(0.92) translateY(20px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

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

/* FAQ Accordion Styling */
details summary::-webkit-details-marker {
  display: none;
}
details summary {
  list-style: none;
  cursor: pointer;
}
details summary:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.6);
  outline-offset: 4px;
}
details[open] summary svg.faq-chevron {
  transform: rotate(180deg);
}
details[open] {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(11, 52, 37, 0.85);
}

/* Floating WhatsApp Widget */
.floating-wa-btn {
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.45), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.floating-wa-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 16px 35px -5px rgba(37, 211, 102, 0.65), 0 10px 15px -5px rgba(212, 175, 55, 0.35);
}

@keyframes waRadarPing {
  0% {
    transform: scale(0.95);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.wa-ping-ring {
  animation: waRadarPing 2.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}

