/* Testimonials styles moved to bottom of file for proper override */
@media (max-width: 820px) {
  .contact-item {
    width: 100%;
    box-sizing: border-box;
    align-items: flex-start;
    padding: 0.8rem;
    gap: 0.8rem;
  }

  .contact-item > div {
    flex: 1 1 auto;
    min-width: 0;
  }

  .contact-item p {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: 0.92rem;
    margin: 0;
  }

  .contact-item .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-info h3 {
    margin-top: 0.9rem;
    margin-bottom: 0.55rem;
    line-height: 1.25;
    font-size: 1.05rem;
  }

  .contact iframe {
    width: 100% !important;
    height: 220px !important;
    border-radius: 10px;
  }
}

/* Additional overrides to ensure mobile-only sizing for titles and contact button */
@media (max-width: 820px) {
  .site-title {
    max-width: calc(100% - 112px) !important; /* reserve space for logo + icons */
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  .contact-form .btn-primary {
    font-size: 0.84rem !important;
    padding: 0.36rem 0.6rem !important;
    min-height: 34px !important;
    border-radius: 8px !important;
  }

  /* Let mobile-only-blocks.css control hero title sizing for consistency */
  /* .hero-title override removed to avoid conflicting styles */
}

/* Optimized Product Card - consolidated all rules */
.product-card {
  background: linear-gradient(120deg, var(--sand-cream) 80%, var(--gold-light) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  contain: layout style paint;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
}
.product-card .product-image-wrapper { flex: 0 0 auto; }
.product-card .product-body { 
  flex: 1 1 auto; 
  display: flex; 
  flex-direction: column; 
}
.product-card .product-footer { margin-top: auto; }
/* Smaller product action button (compact 'View.') */
.product-actions .btn-secondary {
  padding: 0.42rem 0.8rem;
  font-size: 0.95rem;
  min-height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  border-width: 1px;
}

/* Align price and action button uniformly */
.product-footer {
  display: flex;
  align-items: center; /* vertically center price and button */
  justify-content: flex-start;
  gap: 12px;
  padding-top: 12px;
}
.product-price { flex: 0 0 auto; font-weight: 700; color: var(--gold-dark); }
.product-actions { margin-left: auto; display: flex; align-items: center; }

/* Remove hover transform/behavior for the compact view button */
.product-actions .btn-secondary,
.product-actions .btn-secondary:visited {
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
  background: transparent !important;
  color: var(--gold) !important;
  border: 2px solid var(--gold) !important;
}
.product-actions .btn-secondary:hover,
.product-actions .btn-secondary:active {
  background: transparent !important;
  color: var(--gold) !important;
  box-shadow: none !important;
}

/* Duplicate rules removed - consolidated above */

/* Skeleton Loading Animation */
.skeleton-card {
  animation: skeleton-pulse 1.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.skeleton-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 8px;
  contain: layout style paint;
}
.skeleton-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.skeleton-title {
  height: 20px;
  width: 70%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}
.skeleton-text {
  height: 14px;
  width: 90%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}
.skeleton-footer {
  height: 36px;
  width: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 8px;
  margin-top: auto;
}
@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Product Modal */
.product-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 5000; overflow-x: hidden; max-width: 100%; }
.product-modal[aria-hidden="false"] { display: flex; }
.product-modal-backdrop { display: none; /* no backdrop - website remains fully visible */ }
.product-modal-content { position: relative; width: 92%; max-width: 980px; max-height: 92vh; overflow-y: auto; overflow-x: hidden; background: var(--white); color: var(--royal-black); border-radius: 16px; padding: 24px; box-shadow: 0 24px 80px rgba(2,8,12,0.6), 0 0 0 1px rgba(184,148,30,0.2); z-index: 2; box-sizing: border-box; }
/* subtle floating animation for modal */
.product-modal-content { transform: translateY(-8px); opacity: 0; transition: transform 260ms cubic-bezier(.2,.9,.2,1), opacity 260ms ease; }
.product-modal[aria-hidden="false"] .product-modal-content { transform: translateY(0); opacity: 1; }
/* Decorative gold accent on the left edge of the modal card */
.product-modal-content { border-left: 6px solid var(--gold-metallic); }
.modal-close { position: absolute; right: 16px; top: 16px; background: #f7fafc; border: none; font-size: 28px; color: #4a5568; cursor: pointer; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.2s; z-index: 10; }
.modal-close:hover { background: #e2e8f0; transform: rotate(90deg); }
.modal-grid { display:grid; grid-template-columns: 200px 1fr; gap:24px; align-items:start; }
.modal-left { display:flex; flex-direction:column; gap:10px; }
.modal-main-image { border-radius:12px; overflow:hidden; border:1px solid #e2e8f0; background: #ffffff; padding: 4px; }
.modal-main-image { border-radius:12px; overflow:hidden; border:1px solid #e2e8f0; background: #ffffff; padding: 4px; max-height: 40vh; }
.modal-main-image img { width:100%; height:auto; max-height: calc(40vh - 24px); object-fit: contain; display:block; }
.modal-image img, #modalImage { width: 100%; height: auto; max-height: calc(40vh - 24px); object-fit: contain; display:block; }
.modal-thumbs { display:flex; gap:6px; flex-wrap:nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 4px 0; max-width: 100%; }
.modal-thumbs::-webkit-scrollbar { height: 4px; }
.modal-thumbs::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
.modal-thumbs::-webkit-scrollbar-thumb { background: #d4af37; border-radius: 4px; }
.modal-thumbs img { width:45px; height:45px; object-fit:cover; border-radius:6px; border:1px solid #e2e8f0; cursor:pointer; transition: all 0.2s; flex-shrink: 0; }
.modal-thumbs img:hover { border-color: #b8941e; transform: scale(1.05); }
.modal-right { display:flex; flex-direction:column; gap:12px; }
.modal-title { font-size:1.25rem; margin-bottom:8px; font-weight:700; color: #1a202c; line-height: 1.2; }
.modal-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.modal-price { font-size:1.5rem; font-weight:800; color:#b8941e; }
.modal-stock { font-size: 0.9rem; font-weight: 600; padding: 4px 12px; border-radius: 6px; background: #def7ec; color: #03543f; }
.modal-section { margin-top:10px; margin-bottom: 10px; padding: 10px 14px; background: #f7fafc; border-radius: 8px; border-left: 3px solid #d4af37; }
.modal-section-title { font-weight:700; color:#2d3748; margin-bottom:6px; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.5px; }
.modal-section p { color: #4a5568; line-height: 1.8; font-size: 0.925rem; }
.modal-weights { margin-top:12px; }
#modalGrams { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 8px; }
#modalGrams .weight-option { display:flex; justify-content: space-between; align-items:center; gap:8px; padding:10px 12px; border:1.5px solid #e2e8f0; border-radius:8px; margin:0; cursor:pointer; transition: all 0.18s; background: white; }
#modalGrams .weight-option span:first-child { font-weight:600; font-size:0.9rem; color:#2d3748; }
#modalGrams .weight-option span:last-child { font-weight:700; color:#b8941e; font-size:0.9rem; }
.modal-weights .weight-option:hover { border-color: #cbd5e0; }
.modal-weights .weight-option.active { border-color:#b8941e; background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%); box-shadow:0 0 0 3px rgba(184,148,30,0.15); }
.modal-weights .weight-option span:first-child { font-weight: 600; color: #2d3748; font-size: 0.9rem; }
.modal-weights .weight-option span:last-child { font-weight: 700; color: #b8941e; font-size: 0.9rem; }
.modal-actions { display:flex; align-items:center; gap:12px; margin-top:18px; flex-wrap:wrap; justify-content: flex-end; padding-right: 12px; }
.modal-qty { display:flex; align-items:center; gap:10px; border:2px solid #e2e8f0; border-radius:10px; padding:6px 12px; background: white; }
.modal-qty .qty-btn { background:#f7fafc; border:none; font-size:18px; font-weight:700; cursor:pointer; width: 28px; height: 28px; border-radius: 6px; transition: all 0.2s; }
.modal-qty .qty-btn:hover { background: #e2e8f0; }
.modal-qty span { min-width:28px; text-align:center; font-weight:700; font-size: 15px; }
#modalAddToCart, #modalBuyNow { 
  padding: 6px 12px; 
  font-size: 0.85rem; 
  font-weight: 600; 
  border-radius: 8px; 
  cursor: pointer; 
  transition: all 0.2s ease; 
  min-width: 100px; 
  text-align: center; 
}
#modalAddToCart { 
  background: #1a202c; 
  color: #ffffff; 
  border: 2px solid #1a202c;
  box-shadow: 0 2px 8px rgba(26,32,44,0.25); 
}
#modalAddToCart:hover { 
  background: #2d3748; 
  border-color: #2d3748;
  box-shadow: 0 4px 12px rgba(26,32,44,0.35); 
  transform: translateY(-1px); 
}
#modalAddToCart:disabled { 
  opacity: 0.6; 
  cursor: not-allowed; 
}
#modalBuyNow { 
  background: #ffffff; 
  color: #1a202c; 
  border: 2px solid #1a202c; 
  box-shadow: 0 2px 8px rgba(26,32,44,0.15); 
}
#modalBuyNow:hover { 
  background: #f7fafc; 
  box-shadow: 0 4px 12px rgba(26,32,44,0.25); 
  transform: translateY(-1px); 
}
@media (max-width: 820px) { 
  .modal-grid { grid-template-columns:1fr; } 
  .modal-main-image img { max-height: 220px; }
  .modal-image img, #modalImage { max-height: 120px; }
  .product-modal-content { width: 95%; max-width: 600px; padding: 20px; }
  .modal-title { font-size: 1.5rem; }
  .modal-price { font-size: 1.3rem; }
}
/* Products Section Background */
.product-bg {
  background: linear-gradient(135deg, var(--sand-cream) 60%, var(--gold-light) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
/* Testimonial embed wrapper (Google Maps) */
.testimonial-embed {
  width: 100%;
  max-width: 980px;
  margin: 1rem auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(2,8,12,0.45);
}
.testimonial-embed iframe { display:block; width:100%; height:420px; border:0; }
@media (max-width: 820px) {
  .testimonial-embed iframe { height:320px; }
}

/* Gallery section directly under hero */
.gallery {
  position: relative;
  padding: 5rem 0 4.5rem;
  margin-top: 3rem;
  background: linear-gradient(135deg, #f4e5b8 0%, #f9eed7 50%, #f4e5b8 100%);
  overflow: hidden;
}
/* Add breathing room below gallery so banner doesn't sit tight against it */
.gallery { margin-bottom: 4rem; }
.gallery::before,
.gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.gallery::before {
  background: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(244,229,184,0.08)'/%3E%3C/svg%3E") repeat;
  opacity: 0.4;
}
.gallery::after {
  background: radial-gradient(circle at 20% 20%, rgba(212,175,55,0.4), transparent 40%);
  mix-blend-mode: screen;
}
.gallery .container {
  position: relative;
  z-index: 1;
  /* Let the gallery carousel run full-width without being clipped by the generic container */
  max-width: 100%;
  padding: 0;
  overflow: visible;
}
.gallery-header .section-title {
  color: #2d3748;
  font-weight: 700;
  text-align: center;
  margin-top: 3rem;
  padding-top: 0.8rem; /* small top padding for breathing room */
  margin-bottom: 2.5rem;
}
.gallery-header .section-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255,255,255,0.7);
}
.gallery-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,229,184,0.8);
  margin-bottom: 0.9rem;
}
.gallery-slider {
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  padding: 0; /* remove inner card padding so carousel sits flush */
  border-radius: 0; /* remove rounded card look */
  background: transparent; /* let section background show through */
}
/* Full-bleed gallery slider: make the carousel reach the viewport edges while keeping a small horizontal gutter */
.gallery {
  overflow-x: hidden; /* hide any tiny bleed beyond viewport */
}
.gallery .gallery-slider {
  /* Center & translate approach: reliable across scrollbars */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  /* extend slightly to bleed under possible scrollbars */
  width: calc(100vw + 18px);
  box-sizing: border-box;
  padding: 0;
}

/* Increase gallery card height and ensure images cover the card */
.gallery .gallery-card {
  height: 440px;
  min-height: 300px;
  border-radius: 8px;
  overflow: hidden;
  background: transparent; /* remove card background so images feel free */
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery .gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .gallery .gallery-card { height: 380px; }
}

@media (max-width: 480px) {
  .gallery .gallery-slider { padding-left: 0; padding-right: 0; }
  .gallery .gallery-card { height: 300px; }
}
.gallery-track {
  display: flex;
  gap: 0; /* remove inter-card gap so edge cards can sit flush */
  width: max-content;
  padding-right: 0;
}
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2d3748;
  color: #f4e5b8;
  border: 2px solid rgba(212, 175, 55, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 6px 20px rgba(45, 55, 72, 0.3);
  transition: all 0.3s ease;
}
.gallery-prev:hover,
.gallery-next:hover {
  background: #1a202c;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(45, 55, 72, 0.4);
}
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }
.gallery-prev:focus, .gallery-next:focus { outline: 3px solid rgba(212,175,55,0.12); }

.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.gallery-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(45, 55, 72, 0.25);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  padding: 0;
  cursor: pointer;
}
.gallery-dots button.active {
  background: #d4af37;
  transform: scale(1.2);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-dots button:hover {
  background: rgba(45, 55, 72, 0.4);
}
.gallery-dots button.active {
  background: #d4af37;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
  width: 12px;
  height: 12px;
}
@media (max-width: 720px) {
  .gallery-prev, .gallery-next { width: 40px; height: 40px; font-size: 1.35rem; }
}
.gallery-card {
  position: relative;
  flex: 0 0 clamp(220px, 24vw, 320px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0;
  isolation: isolate;
  box-shadow: none;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* LIGHTBOX STYLES */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  padding: 28px;
}
.lightbox.show { display: flex; }
.lightbox-inner { max-width: 96%; max-height: 92%; display:flex; flex-direction:column; align-items:center; gap:12px; }
.lightbox-inner img { max-width: 94vw; max-height: 80vh; object-fit: contain; border-radius: 8px; box-shadow: 0 18px 40px rgba(0,0,0,0.6); }
.lightbox-caption { color: #f3e6cb; font-size: 0.95rem; max-width: 94vw; text-align:center; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(30,30,30,0.6);
  color: var(--gold-light);
  border: none;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  z-index: 10000;
}
.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-close:focus, .lightbox-prev:focus, .lightbox-next:focus { outline: 2px solid rgba(212,175,55,0.14); }
@media (max-width:720px){ .lightbox-prev, .lightbox-next, .lightbox-close { width:44px;height:44px;font-size:1.1rem } }

.gallery-card::after {
  content: none;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: saturate(1.05);
  padding: 0;
}

/* Ensure first and last cards sit flush against the slider edges */
.gallery-track .gallery-card:first-child { margin-left: 0; }
.gallery-track .gallery-card:last-child { margin-right: 0; }
.gallery-card:hover {
  transform: scale(1.02);
}
.gallery-card:hover img {
  transform: scale(1.03);
}
.gallery-card--spotlight {
  /* No special styling for spotlight cards */
}
@media (max-width: 1024px) {
  .gallery { padding: 3.2rem 0 3.5rem; }
}
@media (max-width: 720px) {
  .gallery-track { gap: 0.85rem; }
  .gallery-card { flex-basis: clamp(180px, 60vw, 240px); }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-track { animation: none; }
}

/* Testimonials stars, text, and author styles */
.review-stars {
  color: #f4c430;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.08rem;
}

.review-text {
  font-size: 0.96rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  opacity: 0.95;
}

.review-author {
  font-weight: 700;
  font-size: 0.92rem;
  opacity: 0.88;
}

/* ============================================
   MADHU HOMEMADE MASALA - PREMIUM E-COMMERCE
   Mobile-First Responsive Design
   ============================================ */

/* === CSS VARIABLES - MOBILE-FIRST PREMIUM SPICE PALETTE === */
:root {
  --black: #0a0a0a;
  --royal-black: #1a1410;
  --gold: #d4af37;
  --gold-light: #f4e5b8;
  --gold-dark: #b8941f;
  --gold-metallic: #cfb53b;
  --white: #ffffff;
  --beige: #f5f1e8;
  --sand-cream: #f9f5ed;
  --parchment: #faf7f0;
  --warm-beige: #e8dcc4;
  --saffron: #f4a261;
  --saffron-light: #ffc47e;
  --herbal-green: #8b9d77;
  --herbal-dark: #6b7a5b;
  --spice-red: #c5351a;
  --spice-orange: #e76f51;
  --turmeric: #ffa500;
  --cinnamon: #8b5a3c;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 2px 15px rgba(212, 175, 55, 0.15);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-royal: 'Cinzel', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

/* === NAV TITLE BASE (DESKTOP & GENERAL) === */
.site-title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  font-family: var(--font-royal);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-title-line-1 {
  position: relative;
  display: inline-block; /* size to text so underline matches from M to U */
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-metallic);
  padding-bottom: 3px; /* tighter spacing so underline sits just under MADHU */
}

/* Metallic underline between main title and subtitle - match text width */
.site-title-line-1::after {
  content: "";
  position: absolute;
  left: 0; /* align to inline-block left edge */
  right: 0; /* align to inline-block right edge */
  top: calc(100% + 1px); /* place underline just under MADHU with minimal gap */
  width: 100%;
  height: 1px; /* ultra-thin */
  border-radius: 2px;
  background: linear-gradient(90deg, #b8941e 0%, #f4e5b8 50%, #b8941e 100%);
  box-shadow: 0 0 4px rgba(244, 229, 184, 0.18);
  opacity: 1;
  animation: title-underline-pulse 2.6s ease-in-out infinite;
}

/* Softer glow on users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .site-title-line-1::after {
    animation: none;
    opacity: 1;
  }
}

.policy-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
}
.policy-modal.open {
  display: flex;
}
.policy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,8,9,0.48), rgba(7,8,9,0.62));
  backdrop-filter: blur(6px) saturate(1.05);
  transition: opacity 220ms ease;
  opacity: 1;
}
.policy-modal-window {
  position: relative;
  max-width: 920px;
  width: min(92%, 920px);
  max-height: 86vh;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
  border: 1px solid rgba(15,23,42,0.04);
  box-shadow: 0 30px 80px rgba(2,8,23,0.32);
  z-index: 1201;
  transform: translateY(12px) scale(0.995);
  transition: transform 260ms cubic-bezier(.2,.9,.2,1), opacity 260ms ease;
  opacity: 0;
  display: flex;
  flex-direction: column;
}
.policy-modal.open .policy-modal-window {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.policy-modal-inner {
  padding: 20px 26px;
  color: #23303a;
  line-height: 1.7;
  overflow: auto;
}
.policy-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  border: none;
  background: #fff;
  font-size: 20px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: #374151;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(10,11,13,0.08);
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.policy-modal-close:focus, .policy-modal-close:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(10,11,13,0.12); }
#policyModalTitle { font-size: 1.25rem; margin: 0 0 8px 0; color: #0f1724; font-weight: 700; letter-spacing: 0.2px; }
.policy-container { font-size: 0.98rem; color: #334155; }
.policy-container p { margin: 0 0 12px 0; }
.policy-container h3 { margin-top: 14px; margin-bottom: 8px; color: #0b1220; font-size: 1rem; }
.policy-container ul { margin: 8px 0 12px 1.1rem; }
.policy-container a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.policy-modal .policy-modal-inner > .policy-container { padding-bottom: 24px; }
.policy-link { cursor: pointer; color: inherit; }

@media (max-width: 820px) {
  .policy-modal-window { width: calc(100% - 28px); border-radius: 10px; }
  .policy-modal-inner { padding: 16px; }
  #policyModalTitle { font-size: 1.05rem; }
  .policy-container { font-size: 0.98rem; }
}

@keyframes title-underline-pulse {
  0%, 100% { opacity: 0; box-shadow: 0 0 3px rgba(244,229,184,0.5); }
  40% { opacity: 1; box-shadow: 0 0 8px rgba(244,229,184,1); }
  60% { opacity: 0.85; box-shadow: 0 0 10px rgba(244,229,184,0.9); }
}

.site-title-line-2 {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 8px; /* ensure consistent gap below the underline (half of total gap) */
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Prevent any element from causing horizontal overflow */
section, header, footer, main, nav, div {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--parchment);
  color: var(--royal-black);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Hide mobile header by default; shown only on mobile via overrides */
.mobile-hero-header { display: none; }

/* Fail-safe: ensure mobile header shows on narrow screens even if mobile CSS is cached */
@media (max-width: 900px) {
  .mobile-hero-header {
    display: block !important;
    width: 100%;
    background: rgba(4,15,26,0.96);
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 56px !important;
    z-index: 1000;
  }
  body { padding-top: 56px !important; }
  .site-header, header.site-header, nav.navbar {
    display: none !important;
    height: 0 !important;
    visibility: hidden !important;
    position: absolute !important;
    z-index: -1 !important;
  }
}

/* ============================================
   NAVBAR
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: #ffffff; /* switched navbar to white */
  backdrop-filter: blur(8px);
  /* border-bottom removed to avoid gap */
  box-shadow: 0 2px 8px rgba(2,6,10,0.06);
  z-index: 2000;
  margin: 0;
  padding: 0;
}
body {
  scroll-behavior: smooth;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* keep left and right items spread while title is absolutely centered */
  padding: 0 1rem;
  min-height: 80px;
  height: 80px;
  position: relative; /* needed so the title can be absolutely centered */
}

/* Desktop safeguard: ensure navbar/header are visible on larger viewports
   This overrides any mobile-only rules that may accidentally be applied. */
@media (min-width: 821px) {
  .site-header, header.site-header {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
  }

  nav.navbar {
    display: flex !important;
    visibility: visible !important;
    position: relative !important;
    height: auto !important;
    z-index: 1100 !important;
  }

  /* Remove mobile-only top padding applied for fixed mobile header */
  body { padding-top: 0 !important; }
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  height: 80px;
  padding: 0 1.5rem 0 0; /* tighten so center math is clean */
  border-radius: 0;
  gap: 0.5rem;
}

/* Three-column layout: logo (left), title (center), nav/actions (right) */
.navbar > .logo { flex: 0 0 auto; }

/* Absolutely center the title so it never shifts when right-side icons change */
.navbar > .site-title {
  position: absolute;
  /* nudge slightly toward the left (logo) on desktop so it reads closer to the mark */
  left: 48%;
  top: 50%;
  transform: translate(-48%, -50%);
  z-index: 1100;
  pointer-events: none; /* keep clicks for interactive items on left/right */
}

.navbar > .nav-wrapper {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.navbar-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* Option 3: Bold centered nav title with subtle ring effect */
.site-title {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px 0;
}

.site-title::before {
  /* disabled: ring effect removed in favor of underline animation */
  display: none;
}

.site-title-line-1,
.site-title-line-2 { position: relative; z-index: 2; }

.site-title-line-1 {
  font-weight: 800;
  color: #D4A017; /* gold */
  font-size: 1.32rem;
  letter-spacing: 0.06em;
}

.site-title-line-2 {
  font-size: 0.66rem;
  color: rgba(232,216,150,0.95);
  margin-top: 6px; /* create explicit gap so underline never overlaps letters */
}

/* Underline animation for the primary title (desktop) */
.site-title-line-1 {
  position: relative;
}
.site-title-line-1::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px; /* move slightly up so it sits between lines */
  width: 56%; /* elongate under MADHU on desktop variant */
  height: 1px; /* thinner underline */
  border-radius: 2px;
  background: linear-gradient(90deg,#B8941E 0%, #E8C971 60%);
  box-shadow: 0 0 4px rgba(184,148,30,0.12);
  opacity: 1;
}

/* Optional subtle pulse animation */
@keyframes title-underline-pulse {
  0% { opacity: 0.6; transform: translateX(-50%) scaleX(0.9); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.02); }
  100% { opacity: 0.6; transform: translateX(-50%) scaleX(0.9); }
}
.site-title-line-1.animate-underline::after {
  animation: title-underline-pulse 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .site-title-line-1.animate-underline::after { animation: none; }
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.6rem;
  margin-left: auto;
  margin-right: 1rem;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #071017; /* dark links on white nav */
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 0.5rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover {
  color: #d4af37;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-btn {
  position: relative;
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  min-width: 48px;
  min-height: 48px;
  justify-content: center;
  overflow: visible;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--spice-red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* UNIVERSAL CART ICON OVERRIDE - forces cart icon size regardless of markup type */
.cart-icon,
.cart-icon *,
.cart-icon svg,
.cart-icon img,
.header-cart,
.header-cart *,
.header-cart svg,
.header-cart img,
.site-header .cart-btn svg,
.site-header .cart-btn img,
svg.nav-cart-icon,
.nav-wrapper .cart-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    display: inline-block !important;
}

/* Keep the badge small and positioned */
.cart-badge,
.cart-count,
.nav-cart-badge {
    width: 18px !important;
    height: 18px !important;
    line-height: 18px !important;
    font-size: 11px !important;
    right: -6px !important;
    top: -6px !important;
    border-radius: 50% !important;
    text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  justify-content: center;
  padding: 0.5rem;
  min-width: 48px;
  min-height: 48px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(212, 175, 55, 0.3);
}

.mobile-menu {
  /* Slide-in partial overlay (keeps part of the page visible) */
  position: fixed;
  top: 0;
  /* start off-screen by the same width as the panel so it can slide in */
  right: -55vw;
  width: 55vw; /* cover ~55% of viewport width */
  max-width: 420px; /* cap for larger phones */
  height: 100vh;
  /* use same background as the primary navbar for visual consistency */
  /* use dark navy for the mobile panel background to match the brand */
  background: #03121a; /* darker navy for stronger contrast */
  color: var(--gold-metallic);
  backdrop-filter: none;
  z-index: 2000;
  transition: right 0.36s cubic-bezier(0.4,0,0.2,1), opacity 0.36s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* align content from the top so links can sit lower via padding */
  overflow-x: hidden;
  overflow-y: auto; /* allow menu content to scroll independently */
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  box-sizing: border-box;
  box-shadow: -8px 0 28px rgba(2,8,12,0.45);
  border-left: 4px solid var(--gold-metallic); /* decorative metallic border */
  padding-left: 1.25rem; /* make room for border and content */
  padding-top: 5.2rem; /* push links down from the top */
}

.mobile-menu.open {
  right: 0;
}

/* When menu is open, keep the rest of the page scrollable but dim slightly via a backdrop pseudo element */
.mobile-menu::after {
  /* keep small inner tonal highlight for depth */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 120px rgba(0,0,0,0.15);
}
.mobile-menu.open { box-shadow: -12px 0 40px rgba(2,8,12,0.55); }

/* Real backdrop element to dim the rest of the page and capture clicks */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  right: 55vw; /* cover the portion of the page visible when menu is open */
  background: rgba(2,8,12,0.48);
  opacity: 0;
  transition: opacity 260ms ease;
  z-index: 1990;
  pointer-events: none;
}
.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto; /* allow clicks to close the menu */
}

.close-menu {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
}

.mobile-nav-links li {
  margin: 1.25rem 0; /* slightly tighter spacing */
}

.mobile-nav-links a {
  font-size: 1.00rem; /* slightly reduced for compact layout */
  font-weight: 700;
  color: var(--gold-metallic); /* metallic gold on dark navy */
  font-family: var(--font-royal); /* same font as title */
  transition: color 0.18s ease, opacity 0.18s ease, transform 260ms ease;
  position: relative; /* for underline pseudo-element */
  opacity: 0; /* will be animated in via stagger */
  transform: translateY(8px);
  letter-spacing: 0.04em; /* slightly tighter spacing to compensate smaller size */
}

.mobile-nav-links a:hover {
  color: var(--gold);
}

/* underline element - animate on touch/click/focus for mobile */
.mobile-nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #b8941e 0%, #f4e5b8 60%);
  transition: width 220ms ease, opacity 220ms ease;
  opacity: 0.95;
  border-radius: 2px;
}

/* trigger underline when the link is focused or active (touch/click) */
.mobile-nav-links a:active::after,
.mobile-nav-links a:focus::after {
  width: 100%;
}

/* subtle pressed state color change for accessibility */
.mobile-nav-links a:active,
.mobile-nav-links a:focus {
  color: var(--gold);
  outline: none;
}

/* Mobile menu header and footer */
.mobile-menu-header { display:flex; align-items:center; justify-content:flex-end; width:100%; padding: 0.8rem 1rem 0.6rem 0; }
.mobile-menu-logo { height:56px; width:56px; border-radius:50%; background:transparent; object-fit:cover; box-shadow: 0 6px 18px rgba(0,0,0,0.35); border: 3px solid rgba(184,148,30,0.12); }
.mobile-menu-cta { width:100%; padding: 0.6rem 1rem 1rem 0; }
.mobile-menu-cta-btn { width:100%; display:inline-flex; justify-content:center; align-items:center; background:var(--gold); color:var(--royal-black); padding:0.7rem 1rem; border-radius:12px; font-weight:800; text-transform:uppercase; }
.mobile-menu-footer { width:100%; padding: 1.25rem 0 2rem 0; margin-top:auto; }
.mobile-social { display:flex; gap:0.9rem; justify-content:center; align-items:center; }
.mobile-social a { color: var(--gold-metallic); font-weight:700; display:inline-flex; align-items:center; justify-content:center; }
.mobile-social svg { width:24px; height:24px; stroke: currentColor; stroke-width:1.4; stroke-linecap:round; stroke-linejoin:round; }
.mobile-social-icon { color: var(--gold-metallic); }

/* Make glassy badges in mobile slightly smaller to match reduced SVG size */
.mobile-menu .glassy-icon { width: 40px; height: 40px; }
.mobile-menu .glassy-icon svg { width: 20px; height: 20px; }

/* staggered reveal helper - JS will set inline delays */
.mobile-nav-links a.revealed { opacity: 1; transform: translateY(0); }

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  box-sizing: border-box;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-medium);
}

.cart-header h2 {
  font-family: var(--font-heading);
  color: var(--black);
  font-size: 1.5rem;
}

.close-cart {
  font-size: 2rem;
  color: var(--gray-dark);
  background: none;
  border: none;
  cursor: pointer;
}

.cart-body {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  color: var(--black);
}

.empty-cart {
  text-align: center;
  color: var(--gray-dark);
  padding: 2rem 0;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.cart-item-price {
  color: var(--gold-dark);
  font-weight: 600;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}

.cart-item-remove {
  color: var(--spice-red);
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-footer {
  padding: 1rem 1.5rem; /* smaller padding for mobile */
  border-top: 1px solid var(--gray-medium);
  /* keep the footer visible when cart content scrolls by sticking it to the bottom of the sidebar */
  position: sticky;
  bottom: 0;
  background: var(--white);
  z-index: 20;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.06);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.total-amount {
  color: var(--gold-dark);
}

.cart-free-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.btn-checkout {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  border-radius: var(--radius);
  transition: var(--transition);
  /* ensure it's always tappable and clearly visible on mobile */
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.btn-checkout:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* Ensure cart body leaves room for the sticky footer so content isn't hidden below it */
.cart-body { padding-bottom: 120px; }

/* For very small screens ensure the footer is fixed to viewport bottom when sidebar is open */
@media (max-width: 520px) {
  .cart-sidebar.open .cart-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    padding-left: 16px;
    padding-right: 16px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  .cart-sidebar.open { max-width: 100%; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Use dark navy as the primary background with the hero image layered on top */
  /* center the focal point and allow a slight zoom so image fills hero */
  background: #041628 url('../images/hero.webp') center center/cover no-repeat;
  background-size: 120%; /* slight zoom to ensure visual fill */
  background-position: center center;
  overflow: visible;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
} 

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Slightly darker overlay to make text pop and give a subtle dim effect */
  background: rgba(4, 15, 26, 0.72);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem 1rem;
  margin: 0;
  /* Center hero content vertically and horizontally */
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 720px) {
  /* keep padding compact on small screens */
  .hero-content { padding-top: 1.25rem; padding-bottom: 1.25rem; }
}

/* Desktop-only Hero Top Navigation */
.hero-topnav { position:absolute; top:0; left:0; right:0; z-index:3; display:none; padding: 0.75rem 0; width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
.hero-topnav-row { display:flex; align-items:center; justify-content:space-between; gap: 1rem; width: 100%; max-width: 100%; box-sizing: border-box; overflow-x: hidden; }
.hero-nav-logo {
  display:flex; align-items:center; gap:0.75rem;
}
.hero-nav-img { height: 56px; width:auto; object-fit: contain; }
.hero-company-title { font-family:'Cinzel', serif; font-weight:700; letter-spacing:0.08em; color: var(--white); font-size:1.05rem; text-transform:uppercase; }
/* Slightly increase desktop hero company title font size */
.hero-company-title { font-size: 1.18rem; }
.hero-nav-links { list-style:none; display:flex; align-items:center; gap:1.4rem; margin:0; padding:0; margin-left:auto; }
.hero-nav-links a { font-family: 'Cinzel', serif; font-size:1rem; font-weight:600; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; transition: var(--transition); }
.hero-nav-links a:hover { color: var(--gold); text-shadow: 0 0 6px rgba(212,175,55,0.35); }
.hero-topnav .cart-btn.hero-cart-btn { color: var(--gold-metallic); margin-left: 0.5rem; }

/* Ensure desktop shows the main header and NOT the legacy hero-topnav */
@media (min-width: 821px) {
  /* show the primary site header on desktop */
  .site-header { display: block !important; visibility: visible !important; position: sticky !important; top: 0 !important; z-index: 1000 !important; }
  /* hide the unused hero-topnav (legacy) so it doesn't remove the real header */
  .hero-topnav { display: none !important; }
}

/* Desktop-only: hide 'Home' (1st) and 'Testimonials' (4th) nav items to match requested layout */
@media (min-width: 821px) {
  .nav-links li:nth-child(1),
  .nav-links li:nth-child(4) {
    display: none !important;
  }
}

/* Contact form card width reduction on desktop */
@media (min-width: 821px) {
  .contact-form-wrapper { max-width: 520px; margin-left:auto; }
}

/* Footer icon tidy + developer link styling */
.social-links svg { width: 24px; height:24px; }
.dev-link { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.dev-link:hover { color: var(--gold-light); }

/* hide hero logo on larger screens by default (mobile-only display) */
.hero .hero-logo-wrapper { display: none; }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-shadow: 0 2px 12px #040f1a, 0 1px 0 #000;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: #f5f1e8;
  margin-bottom: 2.2rem;
  text-align: center;
  text-shadow: 0 1px 8px #040f1a;
  white-space: normal; /* allow wrapping on long lines */
  overflow: visible;
  max-width: 820px; /* constrain width to match hero title scale */
  display: block;
  margin: 0 auto 2.2rem; /* center horizontally */
  padding: 0 1.25rem;
}

/* Small visual nudge to move hero subtitle slightly right without breaking centering */
.hero-subtitle.shift-right {
  display: block;
  max-width: 820px; /* keep subtitle constrained so left/right spacing looks balanced */
  margin: 0 auto 2.2rem; /* center horizontally with equal space on both sides */
  padding: 0 1.25rem; /* small horizontal padding for breathing room on narrow screens */
  text-align: center;
}

.hero-buttons {
  display: flex;
  flex-direction: row; /* default: CTAs inline (desktop behavior) */
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
}

/* Desktop: align hero CTAs with subtitle edges
   Make the buttons container match the subtitle's max-width and padding,
   then distribute buttons with space-between so edges line up under the subtitle text. */
@media (min-width: 821px) {
  .hero .hero-buttons {
    display: flex;
    flex-direction: row; /* desktop: keep CTAs inline */
    justify-content: center;
    align-items: center;
    max-width: 820px; /* align with subtitle width */
    margin: 0 auto 1.6rem;
    padding: 0 1.25rem; /* keep same horizontal padding as subtitle */
  }

  .hero .hero-buttons .btn-primary,
  .hero .hero-buttons .btn-secondary {
    flex: 0 0 auto; /* natural width */
  }

  /* Desktop: natural widths for CTAs (inline) */
  .hero .hero-buttons .btn-primary,
  .hero .hero-buttons .btn-secondary { margin: 0; }
}

.btn-primary, .btn-secondary {
  padding: 1.1rem 2.2rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: 1.05rem;
  display: inline-block;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-primary {
  background: var(--saffron);
  color: var(--royal-black);
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px #040f1a;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  margin-right: 1.2rem;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px #040f1a;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
}

/* Reduce visual footprint of hero CTAs: tighter padding and no large min-width */
.hero .hero-buttons .btn-primary,
.hero .hero-buttons .btn-secondary {
  padding: 0.6rem 1rem; /* tighter padding for desktop */
  min-height: 44px;
  font-size: 1rem;
  border-radius: 12px;
  min-width: 0; /* allow natural width */
  width: auto;
}

.hero .hero-buttons .btn-primary {
  margin-right: 0.8rem; /* small gap between buttons */
}

.hero .hero-buttons .btn-secondary {
  padding: 0.55rem 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

/* Testimonial fade-in */
.fade-in { animation: fadeIn 0.6s ease-out; }

.animate-fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 0.8s ease-out 0.4s backwards;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  font-weight: 800;
  color: var(--royal-black);
  margin: 0 auto 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  position: relative;
  display: block;
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  margin: 0.6rem auto 0;
  background: #c45a3f; /* warm underline similar to reference */
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--cinnamon);
  font-weight: 500;
  text-align: center;
  margin-top: 0.4rem;
}

/* Categories removed */

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--beige) 0%, var(--sand-cream) 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex; /* layout: image (70%) and body (30%) */
  align-items: stretch;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
  position: relative;
  flex: 0 0 70%; /* image occupies roughly 70% of card width */
  min-height: 200px;
  overflow: hidden;
  background: var(--gray-light);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

/* Multiple images on product cards (index grid) */
.product-thumbs {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 6px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
}

.product-thumb {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 0;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumb.is-active {
  border-color: rgba(255,255,255,0.95);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.15);
}

.product-thumb-more {
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 700;
  padding: 0 6px;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--spice-orange) 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(231, 111, 81, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-body {
  flex: 0 0 30%; /* text area approx 30% */
  padding: 1rem 1.2rem;
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--black);
}

.product-description {
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--herbal-dark);
  font-family: var(--font-heading);
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-light);
  padding: 0.5rem;
  border-radius: 8px;
}

.qty-selector button {
  width: 30px;
  height: 30px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.qty-selector button:hover {
  background: var(--gold-dark);
}

.qty-display {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
  color: var(--black);
}

.add-to-cart-btn {
  padding: 0.9rem 1.6rem;
  background: linear-gradient(135deg, var(--herbal-green) 0%, var(--herbal-dark) 100%);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(139, 157, 119, 0.4);
  min-height: 48px;
}

.add-to-cart-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* Make entire product card clickable and responsive grid */
.product-card--clickable { cursor: pointer; }
.product-card--clickable:focus { outline: 3px solid rgba(212,175,55,0.12); }

/* Responsive product grid columns */
@media (min-width: 720px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--warm-beige) 0%, var(--parchment) 100%);
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.story-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  color: var(--cinnamon);
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(245, 241, 232, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.feature h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--herbal-dark);
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--cinnamon);
  font-size: 0.95rem;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--sand-cream) 0%, var(--warm-beige) 100%);
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1rem 0;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: rgba(250, 246, 238, 0.65); /* glassy parchment */
  border: 1.6px solid rgba(212, 175, 55, 0.38); /* refined gold frame */
  padding: 1.5rem 1.25rem;
  border-radius: 16px;
  text-align: left; /* classical editorial alignment */
  box-shadow: 0 12px 32px rgba(4,15,26,0.12), inset 0 1px 0 rgba(255,255,255,0.5);
  backdrop-filter: blur(10px) saturate(1.02);
  -webkit-backdrop-filter: blur(10px) saturate(1.02);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  left: 16px;
  font-size: 3.4rem;
  color: rgba(212, 175, 55, 0.22);
  font-family: var(--font-royal), Georgia, serif;
}

.testimonial-stars {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3b2a1b;
  margin: 0.6rem 0 1.2rem 0;
  font-family: var(--font-heading);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 800;
  color: var(--herbal-dark);
  font-family: var(--font-royal);
  font-size: 0.98rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(244, 162, 97, 0.4);
  display: none;
}

.slider-btn:hover {
  background: var(--gold-dark);
}

.slider-btn.prev {
  left: -25px;
}

.slider-btn.next {
  right: -25px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--beige) 0%, var(--parchment) 100%);
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}

/* How-to-use thumbnail (mobile) */
.howto-thumb { border-radius: 8px; overflow: hidden; position: relative; }
.howto-thumb img { width: 100%; height: auto; display: block; }
.howto-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 72px; height: 72px; border-radius: 50%; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px; box-shadow: 0 6px 20px rgba(0,0,0,0.35); }
.howto-thumb:hover .howto-play { transform: translate(-50%, -50%) scale(1.05); }

/* Small-screen tweaks for howto thumb */
@media (max-width: 820px) {
  .howto-play { width: 64px; height: 64px; font-size: 24px; }
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--gray-medium);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 245, 237, 0.8) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.contact-icon {
  font-size: 2.2rem;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.contact-item h3 {
  font-size: 1.1rem;
  color: var(--herbal-dark);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.contact-item p {
  color: var(--cinnamon);
  margin: 0;
  font-weight: 500;
}

.contact-form-wrapper {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 245, 237, 0.8) 100%);
  border: 2px solid rgba(212, 175, 55, 0.25);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.1rem;
  background: var(--white);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--royal-black);
  transition: var(--transition);
  min-height: 52px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(244, 162, 97, 0.15), 0 4px 12px rgba(212, 175, 55, 0.2);
}

.contact-form button {
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #040f1a;
  padding: 3rem 0 1rem;
  border-top: 3px solid rgba(212, 175, 55, 0.4);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-royal);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-motto {
  color: var(--gray-medium);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-3px);
}

.footer-col h3 {
  font-family: var(--font-heading);
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--gold-light);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--saffron);
}

.payment-icons {
  display: flex;
  gap: 1rem;
  font-size: 2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
}

/* ============================================
   NOTIFICATION
   ============================================ */
.notification {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--herbal-green) 0%, var(--herbal-dark) 100%);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(139, 157, 119, 0.4);
  z-index: 9999;
  transition: var(--transition);
  min-width: 280px;
  text-align: center;
}

/* WhatsApp contact card styles (professional) */
.whatsapp-card {
  padding: 1.4rem 1.2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,245,237,0.95));
  border: 1px solid rgba(184,148,30,0.12);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(11,20,35,0.06);
  text-align: center;
}
.whatsapp-card-text {
  color: #374151;
  margin: 0 0 1rem 0;
  font-size: 1rem;
  line-height: 1.5;
}
.whatsapp-btn {
  display: inline-block;
  background: linear-gradient(180deg, #d4af37, #b8941f);
  color: #111827;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(184,148,30,0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
  letter-spacing: 0.02em;
}
.whatsapp-btn:hover,
.whatsapp-btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(184,148,30,0.28);
}
.whatsapp-phone {
  margin-top: 0.8rem;
  color: #6b7280;
  font-size: 0.95rem;
}
.whatsapp-phone a { color: inherit; text-decoration: underline; }

.notification.show {
  bottom: 2rem;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (min-width: 768px) {
  .category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
  }
  
  .category-card {
    min-width: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
/* Mobile Bottom Cart Bar */
.mobile-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--royal-black) 0%, var(--cinnamon) 100%);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  border-top: 2px solid var(--gold);
}

.mobile-cart-bar .cart-info {
  color: var(--gold-light);
  font-weight: 600;
}

.mobile-cart-bar .cart-total-mobile {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
}

.mobile-cart-bar .view-cart-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
  color: var(--black);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
  
  .mobile-cart-bar {
    display: none;
  }
  .nav-links {
    display: flex;
  }

  .cart-btn {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
  }
  
  .slider-btn {
    display: flex;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }

  .cart-sidebar {
    max-width: 450px;
  }
}
/* Consolidated mobile-only rules: hero header + product grid + compact card tweaks */
@media (max-width: 820px) {
  /* Hide desktop navbar on mobile and show mobile hero header */
  .site-header, header.site-header, nav.navbar {
    display: none !important;
    height: 0 !important;
    visibility: hidden !important;
    position: absolute !important;
    z-index: -1 !important;
  }

  /* Mobile header styles moved to mobile-only-blocks.css to avoid conflicts */
  
  body { padding-top: 56px !important; }

  /* Products grid: 2-up compact cards */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-card {
    border-radius: 10px;
    padding-bottom: 0.2rem;
    overflow: hidden;
    min-height: auto;
  }

  .product-image-wrapper {
    height: 88px;
  }

  .product-body {
    padding: 0.5rem;
  }

  .product-name {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .product-description {
    font-size: 0.72rem;
    margin-bottom: 0.8rem;
  }

  .product-card .btn-primary, .product-card .add-to-cart-btn {
    font-size: 0.82rem;
    padding: 0.45rem 0.65rem;
    min-height: 36px;
    border-radius: 10px;
  }

  .qty-selector {
    padding: 0.25rem 0.35rem;
    gap: 0.35rem;
    border-radius: 8px;
  }

  .qty-selector button {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .qty-display {
    min-width: 22px;
    font-size: 0.9rem;
  }

  .product-price {
    font-size: 1.0rem;
    line-height: 1.05;
    margin-bottom: 0.3rem;
    font-family: "Times New Roman", Times, serif;
    font-weight: 700;
    color: var(--herbal-dark);
  }

  .product-footer {
    margin-top: 0.35rem;
    gap: 0.4rem;
    align-items: center;
  }

  .product-badge { display: none !important; }

  /* ==============================
     MOBILE: About / "Our Story" redesign
     Stacked card look: readable heading, padded text card, image below
     ============================== */
  .about {
    padding: 1.5rem 0;
    background: linear-gradient(180deg, var(--parchment) 0%, var(--beige) 100%);
  }

  .about .about-content {
    display: block;
    gap: 1rem;
    padding: 0 0.6rem;
  }

  .about-text {
    background: linear-gradient(180deg, var(--beige) 0%, rgba(249,245,237,0.95) 100%);
    padding: 1rem 1.1rem;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(4,15,26,0.06);
    color: var(--royal-black);
    border-left: 6px solid var(--gold);
    position: relative;
  }

  .about .section-title {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    color: var(--royal-black);
    text-align: left;
    font-family: var(--font-heading);
    letter-spacing: 0.2px;
  }

  .story-text p {
    font-size: 1rem;
    line-height: 1.95;
    color: var(--cinnamon);
    margin-bottom: 0.9rem;
    text-align: left;
  }

  .about-image {
    margin-top: 0.9rem;
  }

  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
  }

  /* hide the extra feature tiles on small phones to reduce clutter */
  .about-features {
    display: none;
  }

  /* On mobile, use the about image as a section background instead of a separate inline image */
  .about {
    /* use webp if available; fall back to jpg if needed */
    background-image: url("/assets/images/about.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 2rem 0.6rem; /* give extra vertical spacing when background used */
  }

  /* dark overlay so text remains readable over background */
  .about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(4,15,26,0.45);
    z-index: 1;
    border-radius: 0;
  }

  /* bring text card above overlay and make it semi-opaque to blend with bg */
  .about .about-content,
  .about .about-text {
    position: relative;
    z-index: 2;
    background: rgba(255, 250, 243, 0.72); /* slightly transparent so bg shows */
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(6px); /* subtle blur to improve readability */
  }

  /* hide inline image element when background is used */
  .about-image { display: none !important; }

  /* Author / signature style like the reference */
  .about .author {
    display: block;
    text-align: right;
    font-style: italic;
    margin-top: 0.6rem;
    color: rgba(26,20,16,0.85);
    font-size: 0.95rem;
  }

}

/* MOBILE: Shorten 'Our Story' content - show only first paragraph on small screens */
@media (max-width: 820px) {
  .about .story-text p { display: none; }
  .about .story-text p:first-child { display: block; }
}

/* Center Our Story title across breakpoints */
.about .section-title { text-align: center; }

/* Contact title metallic gold */
.contact-title { color: var(--gold-metallic) !important; }

.footer-content { align-items: center; text-align: center; }
.footer-bottom { text-align: center; }
.footer-bottom .dev-credit { margin-bottom: 0.85rem; font-weight: 700; color: var(--gold-light); }
.footer-bottom .rights { white-space: nowrap; }

/* Style for developer credit link */
.footer-bottom .dev-credit a {
  color: var(--gold-metallic); /* metallic gold for the nAitrons link */
  text-decoration: none;
  font-weight: 800;
  margin-left: 8px; /* small gap between 'by' and the link */
  display: inline-block;
  padding: 0; /* remove rectangular padding */
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  position: relative; /* needed for ::after underline */
  transition: box-shadow 180ms ease, transform 160ms ease;
  font-size: 1.05rem; /* slightly larger for emphasis */
  line-height: 1.05;
}
.footer-bottom .dev-credit a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px; /* small gap beneath the text */
  height: 1px; /* thin underline */
  border-radius: 2px;
  background: linear-gradient(90deg, #b8941e 0%, #f4e5b8 60%);
  box-shadow: 0 0 8px rgba(184,148,30,0.32);
  opacity: 0.98;
  transform-origin: center;
  transform: scaleX(1);
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}
.footer-bottom .dev-credit a:hover::after {
  box-shadow: 0 0 14px rgba(184,148,30,0.55);
  transform: scaleX(1.02);
  opacity: 1;
}

/* Glassy social icon style: transparent/"glassy" pill with golden glow behind */
.glassy-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(4,15,26,0.72);
  border: 1.8px solid rgba(212,175,55,0.9);
  box-shadow: 0 0 12px rgba(212,175,55,0.25), inset 0 0 8px rgba(212,175,55,0.06);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  overflow: visible;
  color: var(--gold);
  transition: transform 200ms ease, box-shadow 240ms ease, background 200ms ease;
  text-decoration: none;
}
.glassy-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  background: radial-gradient(circle at 42% 38%, rgba(212,175,55,0.14), transparent 54%);
  filter: blur(5px);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}
.glassy-icon svg { position: relative; z-index: 1; width: 22px; height: 22px; }
/* Allow specific inner shapes to be filled (use class .icon-fill inside SVG) */
.glassy-icon svg .icon-fill { fill: currentColor !important; }
/* Ensure strokes use currentColor for consistent gold outline */
.glassy-icon svg .icon-stroke, .glassy-icon svg [stroke] { stroke: currentColor !important; }
.glassy-icon:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 0 18px rgba(212,175,55,0.45), 0 6px 16px rgba(212,175,55,0.18), inset 0 0 10px rgba(212,175,55,0.1); 
  border-color: rgba(212,175,55,0.95);
}
.mobile-social { display: flex; gap: 10px; align-items: center; }

/* Make footer social links visible by default — they are the designed glassy badges */
.social-links { display: flex; gap: 10px; align-items: center; }

/* Footer-specific tweaks: slightly smaller badges and underline for footer title */
.site-footer .glassy-icon {
  width: 38px; /* slightly smaller for tighter footer layout */
  height: 38px;
  border: 1.4px solid rgba(212,175,55,0.92);
  box-shadow: 0 0 8px rgba(212,175,55,0.18), inset 0 0 5px rgba(212,175,55,0.04);
}
.site-footer .glassy-icon svg { width: 18px; height: 18px; }

/* Footer title underline: thin and spaced from icons */
.site-footer .footer-logo {
  display: inline-block;
  position: relative;
  padding-bottom: 14px; /* increases spacing between text and icons */
  font-weight: 700;
  color: var(--gold-metallic);
  font-size: clamp(1rem, 4vw, 1.4rem); /* responsive title size to keep it on one line */
  white-space: nowrap; /* keep footer title on a single line */
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.08em;
}
.site-footer .footer-logo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px; /* sit the thin bar slightly above element bottom to create gap */
  height: 1px; /* thin underline */
  border-radius: 2px;
  background: linear-gradient(90deg, #b8941e 0%, #f4e5b8 60%);
  box-shadow: 0 0 6px rgba(244,229,184,0.12);
  opacity: 0.95;
}

/* add space between underline and icons */
.site-footer .social-links { margin-top: 12px; }

/* Center footer columns and lists */
.site-footer .footer-col { display: flex; flex-direction: column; align-items: center; text-align: center; }
.site-footer .footer-col h3 { margin-bottom: 0.6rem; }
.site-footer .footer-col ul { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-col ul li { margin: 0.45rem 0; }
.site-footer .footer-col ul li a { display: inline-block; }

/* Ensure social icons row is centered */
.site-footer .social-links { justify-content: center; }

/* Decorative markers around the Customer Care heading */
.site-footer .footer-heading-decor {
  position: relative;
  display: inline-block;
  padding: 0 6px; /* give a bit of inner breathing room */
}
.site-footer .footer-heading-decor::before,
.site-footer .footer-heading-decor::after {
  content: "-: :-";
  color: var(--gold-metallic);
  font-weight: 700;
  margin: 0 10px;
  letter-spacing: 0.06em;
  display: inline-block;
}

/* ============================================
   TESTIMONIALS – SCATTERED CARDS LAYOUT (OVERRIDE)
   ============================================ */
.reviews-section {
  padding: 4.2rem 1.5rem !important;
  background: #ffffff !important;
  text-align: center !important;
}

.reviews-eyebrow {
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-size: 0.9rem !important;
  color: #777 !important;
  margin: 0 0 0.5rem 0 !important;
}

.reviews-header .section-title {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.reviews-cards {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 1.2rem !important;
  max-width: 800px;
  margin: 2rem auto 0 !important;
  overflow: visible !important;
  height: auto !important;
}

.review-card {
  width: 220px !important;          /* smaller cards for tighter layout */
  padding: 1rem 1.1rem !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
  text-align: left;
  margin: 0 !important;
  position: relative !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, z-index 0s;
  animation: floatIn 0.6s ease-out backwards;
}

/* Desktop-only: ensure testimonial/reviews section shows no internal scrollbar
   Keep mobile untouched; apply only on wider viewports */
@media (min-width: 1024px) {
  .reviews-section,
  .reviews-cards {
    overflow: visible !important;
    max-height: none !important;
  }

  /* Hide any inner scrollbars that might appear in some browsers */
  .reviews-section::-webkit-scrollbar,
  .reviews-cards::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  /* Firefox scrollbar hiding */
  .reviews-section,
  .reviews-cards {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
}

/* (No global overflow changes here — desktop-only rules above keep mobile intact) */

/* Floating entrance animation */
@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Scattered effect with per-card colors and staggered animation */
.reviews-cards .review-card:nth-child(1) {
  background: linear-gradient(135deg, #1a1410 0%, #0d0906 100%) !important;
  color: #fff !important;
  transform: rotate(-7deg) translateY(8px);
  animation-delay: 0.1s;
}

.reviews-cards .review-card:nth-child(2) {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%) !important;
  color: #1a1410 !important;
  transform: rotate(5deg) translateY(-12px);
  animation-delay: 0.2s;
}

.reviews-cards .review-card:nth-child(3) {
  background: linear-gradient(135deg, #8b6f47 0%, #6d5430 100%) !important;
  color: #fff !important;
  transform: rotate(-4deg) translateY(6px);
  animation-delay: 0.3s;
}

.reviews-cards .review-card:nth-child(4) {
  background: linear-gradient(135deg, #f9f5ed 0%, #f4e5b8 100%) !important;
  color: #1a1410 !important;
  transform: rotate(6deg) translateY(-8px);
  animation-delay: 0.4s;
}

.reviews-cards .review-card:nth-child(5) {
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%) !important;
  color: #1a1410 !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  transform: rotate(-5deg) translateY(10px);
  animation-delay: 0.5s;
}

.review-card:hover {
  transform: translateY(-12px) rotate(0deg) scale(1.05) !important;
  box-shadow: 0 35px 80px rgba(212,175,55,0.28) !important;
  z-index: 200 !important;
}

/* Mobile – horizontal stacked deck (like holding cards) */
@media (max-width: 768px) {
  .reviews-cards {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0 !important;
    max-width: 100%;
    margin: 1.5rem auto 0 !important;
    position: relative !important;
    min-height: 380px !important;
    padding: 0 1rem !important;
    overflow-x: visible !important;
  }
  
  .review-card {
    width: 260px !important;
    max-width: 260px !important;
    padding: 1.1rem 1.2rem !important;
    margin: 0 !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, z-index 0s !important;
    outline: none;
  }
  
  /* Horizontal stacked deck - cards fan out horizontally */
  .reviews-cards .review-card:nth-child(1) {
    transform: translate(calc(-50% - 100px), -50%) rotate(-12deg) !important;
    z-index: 1;
  }
  
  .reviews-cards .review-card:nth-child(2) {
    transform: translate(calc(-50% - 50px), -50%) rotate(-6deg) !important;
    z-index: 2;
  }
  
  .reviews-cards .review-card:nth-child(3) {
    transform: translate(-50%, -50%) rotate(0deg) !important;
    z-index: 3;
  }
  
  .reviews-cards .review-card:nth-child(4) {
    transform: translate(calc(-50% + 50px), -50%) rotate(6deg) !important;
    z-index: 2;
  }
  
  .reviews-cards .review-card:nth-child(5) {
    transform: translate(calc(-50% + 100px), -50%) rotate(12deg) !important;
    z-index: 1;
  }
  
  /* Click to bring card to front - straighten and lift with higher specificity */
  .reviews-cards .review-card.active {
    transform: translate(-50%, calc(-50% - 20px)) rotate(0deg) scale(1.08) !important;
    z-index: 100 !important;
    box-shadow: 0 30px 70px rgba(212,175,55,0.4) !important;
  }
}

/* ============================================
   PRODUCT DETAIL PAGE STYLES
   ============================================ */

.product-detail-page {
  padding: 40px 0;
  background: linear-gradient(135deg, #02080c 0%, #1a202c 100%);
  min-height: 100vh;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 30px;
}

/* Product Images */
.product-detail-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* show full image inside a 3:4 canvas */
  background: #fbf9f6;
}

.product-thumbnails {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.thumbnail {
  width: 72px;
  height: 96px; /* 3:4 thumb to match main canvas */
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--gold-metallic);
  transform: scale(1.05);
}

/* Product Info */
.product-detail-info {
  color: var(--white);
}

.product-detail-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--gold-metallic);
  line-height: 1.2;
}

.product-brand {
  font-size: 1rem;
  color: #a0aec0;
  margin-bottom: 16px;
}

.product-detail-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-metallic);
  margin: 20px 0;
}

.product-stock { display:none; }

/* Weight Options */
.product-weight-section {
  margin: 30px 0;
}

.weight-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.weight-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* Ensure weight buttons occupy full width when stacked */
.weight-btn {
  width: 100%;
  text-align: left;
  box-sizing: border-box;
}

.weight-btn {
  padding: 12px 20px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.1);
  color: var(--white);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.weight-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-metallic);
}

.weight-btn.active {
  background: var(--gold-metallic);
  color: var(--royal-black);
  border-color: var(--gold-metallic);
}

/* Actions */
.product-actions-section {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.quantity-selector .qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(212, 175, 55, 0.1);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quantity-selector .qty-btn:hover {
  background: var(--gold-metallic);
  color: var(--royal-black);
}

.quantity-selector input {
  width: 60px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  background: transparent;
  color: var(--white);
}

.add-to-cart-btn,
.buy-now-btn {
  flex: 1;
  min-width: 160px;
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:disabled,
.buy-now-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Description & Info Sections */
.product-description,
.product-info-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.product-description h3,
.product-info-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold-metallic);
}

.product-description p,
.product-info-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e0;
}

/* Responsive */
@media (max-width: 968px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-detail-title {
    font-size: 2rem;
  }

  .product-detail-price {
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .product-detail-page {
    padding: 0 0 16px; /* reduce vertical padding so image can be full-bleed */
  }

  .product-detail-title {
    font-size: 1.6rem;
    padding: 12px 16px;
  }

  .product-detail-price {
    font-size: 1.5rem;
    padding: 8px 16px;
  }

  /* Full-bleed 1:1 image that fills the screen width on small devices */
  .product-image-container,
  .product-main-image {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important; /* center full-bleed */
    margin-right: calc(50% - 50vw) !important;
    aspect-ratio: 1 / 1 !important;
    height: 100vw !important; /* force square using viewport width */
    max-height: none !important;
    padding: 0 !important;
    border-radius: 0 !important; /* full-bleed edge-to-edge */
    box-shadow: none !important;
    overflow: hidden !important;
    background: #fbf9f6 !important;
  }

  .product-image-container img,
  .product-main-image img,
  #mainImage {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; /* show full image without cropping */
    display: block !important;
    background: transparent !important;
  }

  /* ensure thumbnails stay inside the content area */
  .product-thumbnails { justify-content: center; padding: 8px 12px; }

  /* reset wrapper padding so image truly spans edge-to-edge */
  .product-page-wrapper { padding-left: 0 !important; padding-right: 0 !important; }

  .product-actions-section {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px;
  }

  .add-to-cart-btn,
  .buy-now-btn {
    width: 100%;
  }

  .weight-btn {
    flex: 1;
    min-width: calc(50% - 6px);
  }
}

/* Promo Banner Section */
.promo-banner-section {
  padding: 0;
  background: var(--white);
  text-align: center;
  margin-top: 3rem; /* clear gap after gallery section */
}
.promo-banner-section .container {
  max-width: 100%;
  padding: 0;
}
.promo-banner-section .promo-banner-wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.promo-banner-wrapper {
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--gold-metallic);
  position: relative;
  width: 100%;
}
.promo-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

/* Lightbox for Gallery */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  position: relative;
}
.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
}


/* Gallery Image Zoom Effect */
.gallery-card img {
  transition: transform 0.5s ease;
}
.gallery-card:hover img {
  transform: scale(1.05);
}


/* Veg/Non-Veg Indicators */
.veg-icon, .non-veg-icon {
  width: 16px;
  height: 16px;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  z-index: 10;
}
.veg-icon {
  border-color: #008000;
}
.veg-icon::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #008000;
  border-radius: 50%;
}
.non-veg-icon {
  border-color: #d00;
}
.non-veg-icon::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #d00;
  border-radius: 50%;
}

/* Announcement Bar (homepage) */
.announcement-bar {
  background: linear-gradient(90deg, #0f1f33 0%, #15273b 100%);
  color: #f9e9c8;
  /* border-bottom removed to avoid gap */
  padding: 0;
  overflow: hidden;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100vw;
  z-index: 900;
  min-height: 38px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin: 0;
}

.announcement-hidden {
  display: none;
}

.announcement-track {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

/* New marquee scroller: duplicate content and animate the inner block
   Using CSS animation with a measured duration controlled via JS for smoothness */
.announcement-scroller { 
  display: block; 
  width: 100%; 
  overflow: hidden; 
}
.announcement-inner {
  display: inline-block;
  white-space: nowrap;
  padding-left: 0;
  font-weight: 600;
  letter-spacing: 0.15px;
  will-change: transform;
  /* ensure it sits on a single baseline */
}
.announcement-inner, .announce-anim {
  animation: marquee var(--marquee-duration, 10s) linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.announcement-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 0;
  font-weight: 600;
  letter-spacing: 0.15px;
  will-change: transform;
}

@media (max-width: 640px) {
  .announcement-text { font-size: 0.92rem; }
  /* Align announcement bar directly under the fixed mobile header using the mobile header height variable */
  .announcement-bar { padding: 0; top: calc(var(--mobile-header-h, 56px)); min-height: 32px; margin: 0; }
}

/* Force marquee even if reduced-motion is enabled (per client request) */

