/* ============================================================
   ROYAL SPICE v2 — Global Design System
   ============================================================ */

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

/* ── CSS VARIABLES ── */
:root {
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-dim:      rgba(201,168,76,0.13);
  --gold-border:   rgba(201,168,76,0.18);
  --black:         #090604;
  --dark:          #100C07;
  --dark2:         #1A1209;
  --dark3:         #221709;
  --dark4:         #2C1E0C;
  --white:         #F6EFE4;
  --muted:         #9A8770;
  --muted2:        #6B5A46;
  --whatsapp:      #25D366;
  --whatsapp-dim:  rgba(37,211,102,0.12);
  --instagram:     #E1306C;

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Poppins', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.18);
  --shadow-wa:   0 4px 24px rgba(37,211,102,0.35);

  --nav-h: 72px;
  --max-w: 1200px;
  --pad:   5%;
  --ease:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* Grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ════════════════════════ LAYOUT ════════════════════════════ */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 6rem var(--pad); position: relative; overflow: hidden; }
.section--dark  { background: var(--dark); }
.section--dark2 { background: var(--dark2); }

/* ════════════════════════ TYPOGRAPHY ═══════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.9rem;
}
.eyebrow::before, .eyebrow::after { content: '✦'; font-size: 0.55rem; }

.heading-xl { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); font-weight: 700; line-height: 1.04; color: var(--white); }
.heading-lg { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; line-height: 1.15; color: var(--white); }
.heading-md { font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; color: var(--white); }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--muted); }
.subtitle { font-size: clamp(0.85rem, 1.5vw, 0.97rem); font-weight: 300; color: var(--muted); line-height: 1.85; max-width: 520px; }

.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; display: flex; flex-direction: column; align-items: center; }

.gold-rule { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.gold-rule::before { content: ''; width: 44px; height: 2px; background: linear-gradient(to right, var(--gold), transparent); flex-shrink: 0; }

/* ════════════════════════ BUTTONS ═══════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--black);
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.95rem 2.2rem; border-radius: 100px;
  transition: var(--ease); box-shadow: var(--shadow-gold); white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 0 60px rgba(201,168,76,0.4); }
.btn-primary svg { width: 18px; height: 18px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--gold);
  font-weight: 500; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: 100px; border: 1px solid var(--gold-border);
  transition: var(--ease); white-space: nowrap;
}
.btn-outline:hover { background: var(--gold-dim); border-color: var(--gold); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--muted);
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.06em;
  padding: 0.5rem 0; border-bottom: 1px solid transparent;
  transition: var(--ease); cursor: pointer;
}
.btn-ghost:hover { color: var(--gold); border-bottom-color: var(--gold); }

.btn-add-cart {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%;
  background: var(--gold-dim); color: var(--gold);
  font-weight: 600; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.75rem 1rem; border-radius: 100px; border: 1px solid var(--gold-border);
  transition: var(--ease); white-space: nowrap; cursor: pointer;
}
.btn-add-cart:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: translateY(-1px); }
.btn-add-cart.added { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-add-cart svg { width: 16px; height: 16px; }

.btn-whatsapp-lg {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--whatsapp); color: #fff;
  font-weight: 600; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1rem 2.5rem; border-radius: 100px;
  transition: var(--ease); box-shadow: var(--shadow-wa);
}
.btn-whatsapp-lg:hover { background: #1eb956; transform: translateY(-2px); box-shadow: 0 8px 40px rgba(37,211,102,0.5); }
.btn-whatsapp-lg svg { width: 22px; height: 22px; }

/* ════════════════════════ NAVBAR ════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  z-index: 9000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  background: linear-gradient(to bottom, rgba(9,6,4,0.96), rgba(9,6,4,0));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.07);
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.navbar.scrolled { background: rgba(9,6,4,0.97); border-bottom-color: rgba(201,168,76,0.14); box-shadow: 0 4px 40px rgba(0,0,0,0.5); }

.nav-logo-img { height: 42px; width: auto; object-fit: contain; display: block; }
.nav-brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-brand-text { display: flex; flex-direction: column; gap: 1px; }
.nav-brand-name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; line-height: 1; }
.nav-brand-sub { font-size: 0.52rem; font-weight: 300; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted2); }

.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); transition: color var(--ease); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Cart Icon in Nav */
.nav-right { display: flex; align-items: center; gap: 1rem; }
.cart-icon-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--gold-border); background: var(--gold-dim);
  color: var(--gold); transition: var(--ease);
}
.cart-icon-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.cart-icon-btn svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: var(--black);
  font-size: 0.6rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0); transition: var(--ease);
}
.cart-badge.visible { opacity: 1; transform: scale(1); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--ease); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(9,6,4,0.98); backdrop-filter: blur(20px);
  z-index: 8999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; pointer-events: none; transition: opacity var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: var(--font-display); font-size: 2.2rem; color: var(--muted); transition: color var(--ease), transform var(--ease); }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); transform: translateX(8px); }

/* ════════════════════════ CART DRAWER ═══════════════════════ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9100;
  opacity: 0; pointer-events: none; transition: opacity var(--ease);
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 95vw;
  background: var(--dark); border-left: 1px solid var(--gold-border);
  z-index: 9200;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.6);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.6rem 1.2rem;
  border-bottom: 1px solid var(--gold-border);
  flex-shrink: 0;
}
.cart-header-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--white); }
.cart-header-count { font-size: 0.75rem; color: var(--muted); font-weight: 300; margin-top: 2px; }
.cart-close {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--gold-border);
  color: var(--muted); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--ease); font-size: 1.1rem; background: none;
}
.cart-close:hover { background: var(--gold-dim); color: var(--gold); border-color: var(--gold); }

.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.6rem; }
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-track { background: var(--dark2); }
.cart-items::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 2px; }

/* Empty cart state */
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: 1rem; text-align: center; padding: 2rem;
}
.cart-empty-icon { font-size: 3.5rem; opacity: 0.4; }
.cart-empty-text { font-family: var(--font-display); font-size: 1.1rem; color: var(--muted); }
.cart-empty-sub { font-size: 0.8rem; color: var(--muted2); font-weight: 300; }

/* Cart item row */
.cart-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid rgba(201,168,76,0.08);
}
.cart-item:last-child { border-bottom: none; }
/* Cart item image thumbnail */
.cart-item-thumb {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--gold-border);
  background: var(--dark3);
}
.cart-item-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.cart-item-emoji { font-size: 2.2rem; flex-shrink: 0; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: var(--dark3); border-radius: 12px; border: 1px solid var(--gold-border); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-weight { font-size: 0.72rem; color: var(--muted2); font-weight: 300; margin-top: 2px; }
.cart-item-controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 6px; }
.qty-btn {
  width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--gold-border);
  color: var(--gold); background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.9rem; transition: var(--ease); flex-shrink: 0;
}
.qty-btn:hover { background: var(--gold); color: var(--black); }
.qty-num { font-size: 0.85rem; font-weight: 600; color: var(--white); min-width: 20px; text-align: center; }
.cart-item-price { font-family: var(--font-display); font-size: 1rem; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.cart-item-remove { color: var(--muted2); cursor: pointer; font-size: 1.1rem; transition: color var(--ease); flex-shrink: 0; background: none; border: none; padding: 2px 4px; }
.cart-item-remove:hover { color: #e55; }

/* Cart footer */
.cart-footer {
  padding: 1.2rem 1.6rem 1.6rem;
  border-top: 1px solid var(--gold-border);
  flex-shrink: 0;
  background: var(--dark);
}
.cart-summary { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cart-summary-label { font-size: 0.82rem; color: var(--muted); font-weight: 300; }
.cart-summary-total { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.cart-checkout-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  width: 100%; background: var(--whatsapp); color: #fff;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1rem; border-radius: 100px; border: none; cursor: pointer;
  transition: var(--ease); box-shadow: var(--shadow-wa);
}
.cart-checkout-btn:hover { background: #1eb956; transform: translateY(-2px); }
.cart-checkout-btn svg { width: 20px; height: 20px; }
.cart-clear-btn {
  width: 100%; margin-top: 0.8rem;
  background: none; border: none; color: var(--muted2);
  font-size: 0.75rem; font-weight: 300; cursor: pointer;
  transition: color var(--ease); padding: 0.3rem;
}
.cart-clear-btn:hover { color: #e55; }

/* ════════════════════════ PRODUCT MODAL ════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 9300;
  opacity: 0; pointer-events: none; transition: opacity var(--ease);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-card {
  background: var(--dark); border: 1px solid var(--gold-border); border-radius: var(--radius-xl);
  max-width: 580px; width: 100%; max-height: 90vh; overflow-y: auto;
  transform: translateY(20px) scale(0.97); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.modal-overlay.open .modal-card { transform: translateY(0) scale(1); }

.modal-card::-webkit-scrollbar { width: 4px; }
.modal-card::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 2px; }

.modal-media {
  height: 320px; display: flex; align-items: center; justify-content: center;
  background: var(--dark3);
  position: relative; border-radius: var(--radius-xl) var(--radius-xl) 0 0; overflow: hidden;
  background: linear-gradient(90deg, var(--dark3) 25%, var(--dark4) 50%, var(--dark3) 75%);
  background-size: 200% 100%;
  animation: img-shimmer 1.8s ease-in-out infinite;
}
.modal-media img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
  transition: opacity 0.35s ease;
}
/* Stop shimmer once image loaded */
.modal-media img[style*="opacity: 1"] ~ .modal-media,
.modal-media:has(img[style*="opacity: 1"]) { animation: none; background: var(--dark3); }
.modal-media::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
  pointer-events: none; z-index: 1;
}
.modal-emoji { font-size: 6rem; z-index: 2; filter: drop-shadow(0 4px 20px rgba(201,168,76,0.3)); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(9,6,4,0.7); border: 1px solid var(--gold-border);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; transition: var(--ease); backdrop-filter: blur(4px);
}
.modal-close:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.modal-body { padding: 1.8rem; }
.modal-badge { display: inline-block; background: var(--gold); color: var(--black); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.8rem; border-radius: 100px; margin-bottom: 0.8rem; }
.modal-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 0.4rem; }
.modal-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); font-weight: 700; margin-bottom: 1rem; }
.modal-price sub { font-family: var(--font-body); font-size: 0.72rem; color: var(--muted); font-weight: 300; }
.modal-desc { font-size: 0.88rem; color: var(--muted); font-weight: 300; line-height: 1.85; margin-bottom: 1.2rem; }
.modal-divider { height: 1px; background: var(--gold-border); margin: 1.2rem 0; }
.modal-use-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.modal-uses { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.4rem; }
.modal-use-tag { background: var(--dark3); border: 1px solid var(--gold-border); color: var(--muted); font-size: 0.75rem; padding: 0.3rem 0.8rem; border-radius: 100px; }

.modal-add-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  width: 100%; background: var(--gold); color: var(--black);
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem; border-radius: 100px; border: none; cursor: pointer;
  transition: var(--ease); box-shadow: var(--shadow-gold);
}
.modal-add-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.modal-add-btn.added { background: var(--dark3); color: var(--gold); border: 1px solid var(--gold); }

/* ════════════════════════ PRODUCT CARDS ════════════════════ */
.card {
  background: var(--dark2); border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--ease);
}
.card:hover { border-color: rgba(201,168,76,0.42); transform: translateY(-6px); box-shadow: var(--shadow-card), 0 0 30px rgba(201,168,76,0.07); }

.product-card .card-media {
  height: 260px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark3);
  position: relative; overflow: hidden; cursor: pointer;
}
.product-card .card-media img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
  display: block;
}
.product-card .card-media img.loaded { opacity: 1; }
.product-card:hover .card-media img { transform: scale(1.06); }
/* Bottom-to-top gradient: deep at bottom so price area stays readable */
.product-card .card-media::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(to top, rgba(26,18,9,0.88) 0%, rgba(26,18,9,0.3) 60%, transparent 100%);
  pointer-events: none;
}
/* Top shadow for badge readability */
.product-card .card-media::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 100%);
  pointer-events: none; z-index: 1;
}

/* Image shimmer skeleton while loading */
.product-card .card-media {
  background: linear-gradient(90deg, var(--dark3) 25%, var(--dark4) 50%, var(--dark3) 75%);
  background-size: 200% 100%;
  animation: img-shimmer 1.8s ease-in-out infinite;
}
.product-card .card-media img.loaded ~ .card-media,
.product-card .card-media:has(img.loaded) {
  animation: none;
  background: var(--dark3);
}
@keyframes img-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.product-card .card-emoji { font-size: 5rem; z-index: 1; filter: drop-shadow(0 4px 20px rgba(201,168,76,0.3)); transition: transform 0.4s ease; }
.product-card:hover .card-emoji { transform: scale(1.08); }
.product-card .card-badge { position: absolute; top: 12px; right: 12px; z-index: 3; background: var(--gold); color: var(--black); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 100px; }
.product-card .view-details { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 3; background: rgba(9,6,4,0.82); border: 1px solid var(--gold-border); color: var(--gold); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 100px; backdrop-filter: blur(6px); opacity: 0; transition: var(--ease); cursor: pointer; white-space: nowrap; }
.product-card:hover .view-details { opacity: 1; }

.product-card .card-body { padding: 1.3rem; }
.product-card .card-name { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; margin-bottom: 0.3rem; }
.product-card .card-desc { font-size: 0.78rem; color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card .card-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-bottom: 0.9rem; }
.product-card .card-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); font-weight: 700; line-height: 1; }
.product-card .card-price sub { font-family: var(--font-body); font-size: 0.65rem; font-weight: 300; color: var(--muted); vertical-align: baseline; }

/* Recipe Card */
.recipe-card .card-media { height: 190px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--dark3), var(--dark4)); position: relative; overflow: hidden; }
.recipe-card .card-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--dark2) 0%, transparent 55%); }
.recipe-card .card-emoji { font-size: 5.5rem; z-index: 1; filter: drop-shadow(0 4px 24px rgba(201,168,76,0.25)); }
.recipe-card .card-body { padding: 1.5rem; }
.recipe-card .card-name { font-family: var(--font-display); font-size: 1.22rem; font-weight: 600; margin-bottom: 0.8rem; }
.recipe-card .card-meta { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.recipe-card .meta-item { display: flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; color: var(--gold); }

.recipe-details { display: none; border-top: 1px solid var(--gold-border); margin-top: 1.2rem; padding-top: 1.2rem; }
.recipe-details.open { display: block; }
.recipe-details .rd-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin: 1rem 0 0.5rem; }
.recipe-details .rd-title:first-child { margin-top: 0; }
.recipe-details ul, .recipe-details ol { padding-left: 1.2rem; color: var(--muted); font-size: 0.82rem; font-weight: 300; line-height: 1.9; }
.recipe-details li { list-style: disc; }
.recipe-details ol li { list-style: decimal; }

/* ════════════════════════ PAGE HERO ═════════════════════════ */
.page-hero {
  min-height: 38vh; display: flex; align-items: flex-end;
  padding: calc(var(--nav-h) + 3rem) var(--pad) 3.5rem;
  position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.1), transparent 70%); }
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; font-size: 0.74rem; color: var(--muted2); }
.breadcrumb a { transition: color var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }

/* ════════════════════════ INSTAGRAM SECTION ════════════════ */
.instagram-section {
  background: var(--dark2);
  padding: 5rem var(--pad);
  text-align: center;
  position: relative; overflow: hidden;
}
.instagram-section::before {
  content: '';
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(225,48,108,0.05), transparent 70%);
  pointer-events: none;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 2.5rem auto 2rem;
}
.instagram-tile {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(225,48,108,0.15);
  background: var(--dark3);
  cursor: pointer;
  transition: var(--ease);
}
.instagram-tile img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}
.instagram-tile:hover { transform: scale(1.04); border-color: rgba(225,48,108,0.5); }
.instagram-tile:hover img { transform: scale(1.08); }
.instagram-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(225,48,108,0), rgba(225,48,108,0.18));
  transition: var(--ease);
  pointer-events: none;
}
.instagram-tile:hover::after { background: linear-gradient(135deg, rgba(225,48,108,0.08), rgba(225,48,108,0.38)); }

.btn-instagram {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.95rem 2.2rem; border-radius: 100px; border: none; cursor: pointer;
  transition: var(--ease); box-shadow: 0 0 30px rgba(225,48,108,0.25);
}
.btn-instagram:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(225,48,108,0.45); opacity: 0.92; }
.btn-instagram svg { width: 20px; height: 20px; }

/* ════════════════════════ FOOTER ════════════════════════════ */
.site-footer { background: var(--dark); border-top: 1px solid var(--gold-border); padding: 4rem var(--pad) 2rem; }
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(201,168,76,0.08);
}
.footer-brand-name { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.footer-brand-sub { font-size: 0.68rem; color: var(--muted2); letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-brand-desc { font-size: 0.82rem; color: var(--muted); font-weight: 300; line-height: 1.85; margin-bottom: 1rem; }
.footer-fssai { font-size: 0.72rem; color: var(--muted2); font-weight: 300; border: 1px solid var(--gold-border); border-radius: var(--radius-sm); padding: 0.5rem 0.8rem; display: inline-block; margin-top: 0.5rem; }
.footer-fssai strong { color: var(--gold); font-weight: 500; }
.footer-col-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-size: 0.82rem; color: var(--muted); font-weight: 300; transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-instagram-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--muted); font-weight: 300; transition: color var(--ease); }
.footer-instagram-link:hover { color: var(--instagram); }
.footer-instagram-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-bottom { max-width: var(--max-w); margin: 2rem auto 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.74rem; color: var(--muted2); font-weight: 300; }

/* ════════════════════════ FLOATING WA ═══════════════════════ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-wa); z-index: 8000; transition: var(--ease);
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 40px rgba(37,211,102,0.6); }
.wa-float svg { width: 30px; height: 30px; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.15); }
  50%       { box-shadow: 0 4px 24px rgba(37,211,102,0.35), 0 0 0 14px rgba(37,211,102,0); }
}

.scroll-top {
  position: fixed; bottom: 7rem; right: 2.2rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark3); border: 1px solid var(--gold-border); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; z-index: 7999;
  opacity: 0; pointer-events: none; transition: var(--ease);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold-dim); border-color: var(--gold); }

/* ════════════════════════ ANIMATIONS ════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes slideIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }

.anim-fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim-fade-up.in-view { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ════════════════════════ GRIDS & UTILS ═════════════════════ */
.grid-products { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.8rem; }
.grid-recipes  { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }

.filter-bar { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 2.5rem; justify-content: center; }
.filter-chip {
  padding: 0.45rem 1.2rem; border-radius: 100px;
  border: 1px solid var(--gold-border); color: var(--muted);
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.06em;
  cursor: pointer; transition: var(--ease); background: transparent; font-family: var(--font-body);
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.filter-chip.active { border-color: var(--gold); color: var(--black); background: var(--gold); font-weight: 600; }

/* Toast notification */
.toast {
  position: fixed; bottom: 6rem; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--dark3); border: 1px solid var(--gold-border);
  color: var(--white); font-size: 0.82rem; font-weight: 400;
  padding: 0.7rem 1.4rem; border-radius: 100px;
  z-index: 9500; opacity: 0; transition: all 0.3s ease;
  white-space: nowrap; pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .toast-emoji { margin-right: 0.4rem; }

/* ════════════════════════ RESPONSIVE ════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 4rem var(--pad); }
  .nav-links, .nav-cta-desktop { display: none; }
  .hamburger { display: flex; }
  .grid-products, .grid-recipes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { min-height: 30vh; }
  .nav-logo-img { height: 34px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-drawer { width: 100vw; }
}

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