@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* { box-sizing: border-box; }

body { font-family: 'Inter', sans-serif; }

/* Nav active link */
nav a.active { color: #be9650; }

/* Hero gradient text */
.gradient-text {
  background: linear-gradient(135deg, #d4a855 0%, #9a7335 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Card hover lift */
.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Product image hover zoom */
.img-zoom {
  overflow: hidden;
}
.img-zoom img {
  transition: transform 0.4s ease;
}
.img-zoom:hover img {
  transform: scale(1.06);
}

/* Fade-in animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Stagger children */
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.10s; }
.stagger > *:nth-child(3) { animation-delay: 0.15s; }
.stagger > *:nth-child(4) { animation-delay: 0.20s; }
.stagger > *:nth-child(5) { animation-delay: 0.25s; }
.stagger > *:nth-child(6) { animation-delay: 0.30s; }

/* Pulse dot */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.pulse-dot { animation: pulse-dot 2s ease-in-out infinite; }

/* Hero geometric background */
.hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(190,150,80,0.18) 0%, transparent 70%),
    linear-gradient(135deg, #0f172a 0%, #1a1000 55%, #0f172a 100%);
}

/* Section divider */
.section-divider {
  height: 3px;
  width: 48px;
  background: linear-gradient(90deg, #be9650, #a8843e);
  border-radius: 999px;
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  padding: 16px;
}
#lightbox.open {
  display: flex;
}
#lightbox img {
  max-height: 85vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
#lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 8px 24px;
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
}
#lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#lightbox-close:hover { background: rgba(255,255,255,0.28); }
#lightbox-prev, #lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#lightbox-prev { left: 16px; }
#lightbox-next { right: 16px; }
#lightbox-prev:hover, #lightbox-next:hover { background: rgba(255,255,255,0.3); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #64748b; }

/* Category number badge */
.cat-badge {
  background: linear-gradient(135deg, #be9650, #a8843e);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* Product grid image container */
.product-img-wrap {
  background: #f8fafc;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.25s;
}
.product-img-wrap:hover {
  box-shadow: 0 8px 24px rgba(190,150,80,0.18);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.35s ease;
}
.product-img-wrap:hover img {
  transform: scale(1.06);
}

/* Contact form */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  background: white;
}
.form-input:focus {
  border-color: #be9650;
  box-shadow: 0 0 0 3px rgba(190,150,80,0.12);
}

/* Mobile nav */
#mobile-menu { animation: fadeInUp 0.2s ease; }

/* Breadcrumb separator */
.breadcrumb-sep::before {
  content: '/';
  margin: 0 8px;
  color: #94a3b8;
}

/* Sub-group header divider */
.subgroup-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.subgroup-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
