/* =====================================================
   MangWow - Premium Attars & Perfumes
   Luxury Black + Gold Theme
   ===================================================== */

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a07830;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(201,168,76,0.2);
  --text-light: #e0e0e0;
  --text-muted: #999999;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.15);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --radius: 12px;
  --radius-lg: 20px;
}

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

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

body {
  background: var(--black);
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--black); }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  line-height: 1.3;
}

/* ─── SCROLLBAR ────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ─── LOADER ───────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999; transition: opacity 0.5s;
}
#page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-logo { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold); }
.loader-dots { display: flex; gap: 6px; margin-top: 1rem; justify-content: center; }
.loader-dots span {
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  animation: dotBounce 0.6s ease infinite alternate;
}
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce { to { transform: translateY(-10px); opacity: 0.5; } }

/* ─── NAVIGATION ───────────────────────────────────── */
.navbar-main {
  background: rgba(10,10,10,0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.8rem 0;
  transition: var(--transition);
}
.navbar-main.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold) !important;
  font-weight: 700;
  letter-spacing: 2px;
}
.navbar-brand span { color: #fff; font-size: 0.7rem; display: block; letter-spacing: 4px; font-family: 'Poppins', sans-serif; font-weight: 300; }
.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.nav-link:hover::after, .nav-link.active::after { left: 1rem; right: 1rem; }

.navbar-toggler { border-color: var(--gold-dark); }
.navbar-toggler-icon { filter: invert(1); }

.nav-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  border-radius: 25px;
  padding: 0.4rem 1.2rem !important;
  font-weight: 600;
}
.nav-whatsapp:hover { transform: scale(1.05); color: #fff !important; }
.nav-whatsapp::after { display: none; }

/* ─── HERO ─────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-slider { height: 100vh; }
.hero-slide {
  height: 100vh;
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1200 100%);
  display: flex; align-items: center;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/assets/images/hero-pattern.svg') center/cover;
  opacity: 0.05;
}
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual img {
  max-height: 70vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(201,168,76,0.3));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.hero-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ─── BUTTONS ──────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  background-size: 200% 200%;
  color: var(--black);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  animation: shimmer 3s ease infinite;
}
.btn-gold:hover {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.5);
}
@keyframes shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 700;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

/* ─── SECTION TITLES ───────────────────────────────── */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 3rem;
}
.divider-gold {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0.75rem auto 1rem;
  border-radius: 2px;
}

/* ─── GLASSMORPHISM CARD ───────────────────────────── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* ─── PRODUCT CARD ─────────────────────────────────── */
.product-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--dark-3), #1a1000);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 5px;
}
.badge-hot {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.badge-new {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.badge-sale {
  background: linear-gradient(135deg, #43ea80, #17a94a);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}
.out-of-stock-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
}
.out-of-stock-overlay span {
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  border: 2px solid #fff;
  padding: 8px 20px;
}

.product-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }

.product-body { padding: 1.25rem; }
.product-cat {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.product-name {
  font-size: 1.05rem;
  color: #fff;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-notes {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  display: flex; align-items: center; gap: 0.75rem;
}
.price-current {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
}
.price-original {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-off {
  font-size: 0.7rem;
  color: #43ea80;
  font-weight: 700;
  background: rgba(67,234,128,0.15);
  padding: 2px 6px;
  border-radius: 10px;
}

/* ─── CATEGORY CARD ────────────────────────────────── */
.category-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
}
.category-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), transparent);
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.category-card:hover::before { opacity: 1; }
.category-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--dark-3), #2a2000);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--transition);
}
.category-card:hover .category-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
}
.category-name { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.category-count { color: var(--text-muted); font-size: 0.8rem; }

/* ─── STATS SECTION ────────────────────────────────── */
.stats-section { background: var(--dark-2); padding: 4rem 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.stat-item { text-align: center; padding: 1rem; }
.stat-number { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }
.stat-label { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-top: 0.25rem; }

/* ─── OFFERS SECTION ───────────────────────────────── */
.offer-card {
  background: linear-gradient(135deg, #1a1000 0%, #2a1e00 100%);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
}
.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* ─── WHOLESALE SECTION ────────────────────────────── */
.wholesale-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1000 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}
.wholesale-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/assets/images/pattern.svg') center/300px repeat;
  opacity: 0.03;
}
.wholesale-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.wholesale-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--dark-3), #2a1e00);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}
.wholesale-text h5 { color: #fff; font-size: 0.95rem; margin-bottom: 0.25rem; font-family: 'Poppins', sans-serif; }
.wholesale-text p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* ─── REVIEWS ──────────────────────────────────────── */
.review-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.review-card:hover { border-color: var(--gold-dark); }
.review-card::before {
  content: '"';
  position: absolute; top: 1rem; right: 1.5rem;
  font-size: 5rem; line-height: 1;
  color: var(--gold);
  opacity: 0.1;
  font-family: 'Playfair Display', serif;
}
.reviewer-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem; color: var(--black);
}
.reviewer-name { color: #fff; font-weight: 600; margin-bottom: 0.1rem; }
.reviewer-product { color: var(--text-muted); font-size: 0.8rem; }
.review-text { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ─── FAQ ──────────────────────────────────────────── */
.faq-item {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold-dark); }
.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  color: #fff;
  font-weight: 500;
  user-select: none;
}
.faq-question i { color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  padding: 0 1.5rem 1.25rem;
  max-height: 300px;
}

/* ─── INSTAGRAM GRID ───────────────────────────────── */
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (min-width: 768px) { .insta-grid { grid-template-columns: repeat(6, 1fr); } }
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(201,168,76,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.insta-item:hover img { transform: scale(1.1); }
.insta-item:hover .insta-overlay { opacity: 1; }

/* ─── CONTACT SECTION ──────────────────────────────── */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--dark-3), #1a1000);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── FORM STYLES ──────────────────────────────────── */
.form-dark .form-control,
.form-dark .form-select {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-dark .form-control:focus,
.form-dark .form-select:focus {
  background: var(--dark-3);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  color: #fff;
}
.form-dark .form-control::placeholder { color: var(--text-muted); }
.form-dark label { color: var(--text-light); font-size: 0.85rem; font-weight: 500; margin-bottom: 0.4rem; }
.form-dark select option { background: var(--dark); }

/* ─── ORDER MODAL ──────────────────────────────────── */
.modal-dark .modal-content {
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}
.modal-dark .modal-header {
  border-bottom: 1px solid var(--glass-border);
  background: linear-gradient(135deg, #1a1000, var(--dark-2));
}
.modal-dark .modal-title { color: var(--gold); }
.modal-dark .btn-close { filter: invert(1); }
.modal-dark .modal-footer { border-top: 1px solid var(--glass-border); }

/* ─── TRACK ORDER ──────────────────────────────────── */
.order-timeline { position: relative; padding-left: 2rem; }
.order-timeline::before {
  content: '';
  position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--dark-3));
}
.timeline-item { position: relative; padding-bottom: 1.5rem; }
.timeline-dot {
  position: absolute; left: -2rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid var(--gold-dark);
  top: 4px;
}
.timeline-item.completed .timeline-dot {
  background: var(--gold);
  border-color: var(--gold);
}
.timeline-item.current .timeline-dot {
  background: var(--gold);
  border-color: var(--gold);
  animation: pulse 2s infinite;
}
.timeline-date { color: var(--text-muted); font-size: 0.78rem; }
.timeline-status { color: #fff; font-weight: 600; font-size: 0.9rem; }
.timeline-note { color: var(--text-muted); font-size: 0.82rem; }

/* ─── BREADCRUMB ───────────────────────────────────── */
.breadcrumb-section {
  background: var(--dark-2);
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
}
.breadcrumb { margin: 0; }
.breadcrumb-item a { color: var(--gold); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); content: '›'; }

/* ─── PRODUCT DETAIL ───────────────────────────────── */
.product-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
}
.product-gallery-thumb {
  width: 70px; height: 70px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: var(--transition);
}
.product-gallery-thumb.active,
.product-gallery-thumb:hover { border-color: var(--gold); }
.fragrance-tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin: 3px;
}
.size-option {
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 6px 16px;
  cursor: pointer;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  display: inline-block;
  margin: 3px;
}
.size-option:hover, .size-option.selected { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }

/* ─── SHOP FILTERS ─────────────────────────────────── */
.filter-sidebar {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}
.filter-title { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; font-family: 'Poppins', sans-serif; margin-bottom: 1rem; }
.filter-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0; }
.filter-item label { color: var(--text-light); font-size: 0.88rem; cursor: pointer; }
.filter-item input[type="checkbox"] { accent-color: var(--gold); }

/* ─── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 0;
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 700; }
.footer-tagline { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
.footer-title { color: var(--gold); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; font-family: 'Poppins', sans-serif; margin-bottom: 1.25rem; font-weight: 600; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--text-light); font-size: 0.88rem; }
.footer-contact i { color: var(--gold); font-size: 1rem; }
.footer-bottom {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: translateY(-3px); }

/* ─── FLOATING WHATSAPP ────────────────────────────── */
.float-whatsapp {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition);
  animation: floatBtn 3s ease-in-out infinite;
}
.float-whatsapp:hover { transform: scale(1.1); color: #fff; }
@keyframes floatBtn { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ─── BACK TO TOP ──────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 100px; right: 30px;
  width: 44px; height: 44px;
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0;
  transition: var(--transition);
  z-index: 998;
  cursor: pointer;
}
#backToTop.visible { opacity: 1; }
#backToTop:hover { background: var(--gold); color: var(--black); }

/* ─── ALERT BANNERS ────────────────────────────────── */
.alert-gold {
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--glass-border);
  color: var(--gold-light);
  border-radius: var(--radius);
}
.alert-success-dark {
  background: rgba(67,234,128,0.1);
  border: 1px solid rgba(67,234,128,0.3);
  color: #43ea80;
  border-radius: var(--radius);
}
.alert-danger-dark {
  background: rgba(255,65,108,0.1);
  border: 1px solid rgba(255,65,108,0.3);
  color: #ff416c;
  border-radius: var(--radius);
}

/* ─── WHOLESALE PAGE ───────────────────────────────── */
.wholesale-hero {
  background: linear-gradient(135deg, #0a0800 0%, #1a1200 50%, #0a0800 100%);
  padding: 5rem 0 3rem;
}
.benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.benefit-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.benefit-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.benefit-title { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.benefit-text { color: var(--text-muted); font-size: 0.85rem; }

/* ─── ABOUT PAGE ───────────────────────────────────── */
.about-hero { background: linear-gradient(135deg, #0a0800, #1a1200, #0a0800); padding: 5rem 0; }
.timeline-about { position: relative; }
.timeline-about::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-about-item { padding-left: 60px; position: relative; margin-bottom: 2rem; }
.timeline-about-year {
  position: absolute; left: 0;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: var(--black);
  text-align: center; line-height: 1.2;
}

/* ─── UTILITY ──────────────────────────────────────── */
.text-gold { color: var(--gold) !important; }
.bg-dark-2 { background: var(--dark-2) !important; }
.border-gold { border-color: var(--glass-border) !important; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }
.rounded-gold { border-radius: var(--radius-lg); }

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 768px) {
  .hero-slide { text-align: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-visual { margin-top: 2rem; }
  .hero-visual img { max-height: 300px; }
  .section-pad { padding: 3rem 0; }
  .float-whatsapp { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .nav-link::after { display: none; }
}

@media (max-width: 576px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .product-card { margin-bottom: 0; }
}

/* ─── ANIMATIONS ───────────────────────────────────── */
[data-aos] { opacity: 0; transition-property: opacity, transform; }
[data-aos].aos-animate { opacity: 1; }

/* ─── SWIPER CUSTOM ────────────────────────────────── */
.swiper-pagination-bullet { background: var(--text-muted); }
.swiper-pagination-bullet-active { background: var(--gold); }
.swiper-button-next, .swiper-button-prev { color: var(--gold) !important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.2rem !important; }

/* ─── NO IMAGE PLACEHOLDER ─────────────────────────── */
.no-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dark-3), #1a1000);
  color: var(--gold-dark);
  font-size: 3rem;
}

/* ─── STARS ─────────────────────────────────────────── */
.stars { display: inline-flex; gap: 2px; }
.stars.small { font-size: 0.75rem; }

/* ─── PAGE HERO (inner pages) ───────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0a0800 0%, #1a1200 50%, #0a0800 100%);
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 70%);
}
.page-hero-title { font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; }
.page-hero-subtitle { color: var(--text-muted); font-size: 1rem; }

/* ─── SEARCH BAR ────────────────────────────────────── */
.search-bar {
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  overflow: hidden;
  display: flex;
}
.search-bar input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 0.75rem 1.5rem;
  flex: 1;
  font-size: 0.9rem;
}
.search-bar input:focus { outline: none; }
.search-bar input::placeholder { color: var(--text-muted); }
.search-bar button {
  background: var(--gold);
  border: none;
  color: var(--black);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.search-bar button:hover { background: var(--gold-light); }
