/* ============================================================
   THE SAVEUR — Global Design System
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --green-dark:    #0a1f15;  /* Deep Botanical Green — slightly richer */
  --green-primary: #1b4332;
  --green-mid:     #2d5a27;
  --green-light:   #40916c;
  --amber:         #c5a059;
  --amber-light:   #dfc28c;
  --amber-pale:    #f5ecd8;
  --cream:         #fcfbf9;
  --cream-dark:    #f4f1eb;
  --text-dark:     #1c1917;
  --text-mid:      #44403c;
  --text-muted:    #78716c;
  --white:         #ffffff;

  --card-bg:       #ffffff;
  --sec-white:     #ffffff;
  --border-color:  rgba(28, 25, 23, 0.08);
  --why-icon-bg:   linear-gradient(135deg, #eef5f1, #e3ede7);

  --shadow-sm:     0 2px 8px rgba(28, 25, 23, 0.06);
  --shadow-md:     0 8px 24px rgba(28, 25, 23, 0.1);
  --shadow-lg:     0 20px 60px rgba(28, 25, 23, 0.15);
  --shadow-glow:   0 0 40px rgba(197, 160, 89, 0.25);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-pill:   999px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Glassmorphism */
  --glass-bg:      rgba(255, 255, 255, 0.08);
  --glass-border:  rgba(255, 255, 255, 0.16);
  --glass-blur:    backdrop-filter: blur(20px) saturate(180%);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth; 
  max-width: 100%;
  overflow-x: hidden;
  height: 100%;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
  zoom: 80%;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
#main-content {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'DM Serif Display', 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

/* ── Utilities ────────────────────────────────────────────── */
.container { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  background: linear-gradient(135deg, var(--amber-pale), #fff9ef);
  border: 1px solid rgba(197,160,89,0.35);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(197,160,89,0.15), inset 0 1px 0 rgba(255,255,255,0.8);
}
.section-tag::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: tagShimmer 3s ease infinite;
}
@keyframes tagShimmer {
  0%   { left: -100%; }
  60%  { left: 150%; }
  100% { left: 150%; }
}

.section-title {
  font-family: 'DM Serif Display', 'Playfair Display', serif;
  color: var(--green-dark);
  letter-spacing: -0.01em;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}
.text-center { text-align: center; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

/* Global Button Hover & Active States */
button,
[class*="btn-"],
.auth-submit,
.pwd-toggle,
.tab-btn,
.remove-btn,
.action-btn {
  transition: var(--transition);
}

button:hover:not(:disabled),
[class*="btn-"]:hover:not(:disabled),
.auth-submit:hover:not(:disabled),
.pwd-toggle:hover:not(:disabled),
.tab-btn:hover:not(:disabled),
.remove-btn:hover:not(:disabled),
.action-btn:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

button:active:not(:disabled),
.btn:active:not(:disabled),
[class*="btn-"]:active:not(:disabled),
.auth-submit:active:not(:disabled),
.pwd-toggle:active:not(:disabled),
.tab-btn:active:not(:disabled),
.remove-btn:active:not(:disabled),
.action-btn:active:not(:disabled) {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #c8882a, var(--amber), var(--amber-light));
  background-size: 200% 100%;
  background-position: right center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(197,160,89,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  background-position: left center;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(197,160,89,0.6), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover::before { opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}
.btn-outline:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--green-primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ============================================================
   DYNAMIC ISLAND HEADER
   ============================================================ */
.nav-wrapper {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1400px;
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(20, 52, 30, 0.82);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.05) inset;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(20, 45, 8, 0.96);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  box-shadow: 0 2px 10px rgba(200,134,10,0.5);
}
.nav-logo-text {
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--amber-light);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.nav-logo-text em {
  color: var(--amber-light);
  font-style: normal;
}
.nav-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
}

.brand-logo-img {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--amber-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.brand-logo-img-footer {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3.5px solid var(--amber);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: var(--amber-pale);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.nav-links a svg {
  width: 20px !important;
  height: 20px !important;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.nav-cta {
  background: linear-gradient(135deg, var(--amber), var(--amber-light)) !important;
  color: var(--white) !important;
  padding: 13px 30px !important;
  box-shadow: 0 2px 12px rgba(200,134,10,0.4);
}
.nav-cta:hover {
  box-shadow: 0 4px 18px rgba(200,134,10,0.6) !important;
  transform: translateY(-1px);
}

/* Auth nav extras */
.nav-login {
  border: 1.5px solid rgba(255,255,255,0.3) !important;
  color: var(--white) !important;
}
.nav-login:hover {
  border-color: rgba(255,255,255,0.6) !important;
  background: rgba(255,255,255,0.1) !important;
}
.nav-logout {
  background: linear-gradient(135deg, #c0392b, #e74c3c) !important;
  box-shadow: 0 2px 12px rgba(192,57,43,0.4) !important;
}
.nav-logout:hover {
  box-shadow: 0 4px 18px rgba(192,57,43,0.6) !important;
}
.nav-user-greeting {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.85rem;
  padding: 7px 10px;
  pointer-events: none;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 6px;
}
.nav-hamburger:focus-visible {
  outline: 2px solid rgba(255,255,255,0.4);
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 8px 20px 16px;
  background: rgba(20, 45, 8, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: none;
}
.nav-mobile.open { display: flex; }
.navbar.mobile-open {
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}
.nav-mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 1.08rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--amber); padding-left: 6px; }
.nav-mobile a.active {
  color: var(--amber-light) !important;
  font-weight: 700;
  padding-left: 6px;
}

/* ── Flash Messages (Toasts) ───────────────────────── */
.flash-container {
  position: fixed;
  top: 96px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: calc(100% - 48px);
  max-width: 400px;
  pointer-events: none;
}
.flash-msg {
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(15, 41, 30, 0.08), 
              0 1px 3px rgba(0, 0, 0, 0.02),
              inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.flash-msg.success {
  border-left: 5px solid #10b981;
}
.flash-msg.error {
  border-left: 5px solid #ef4444;
}
.flash-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flash-text {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-dark);
}
.flash-close {
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text-muted);
  opacity: 0.6;
  padding: 5px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.flash-close:hover {
  background: rgba(0, 0, 0, 0.05);
  opacity: 1;
  color: var(--text-dark);
}
.flash-msg.dismissed {
  opacity: 0;
  transform: translateX(60px) scale(0.95);
  margin-top: -65px;
}
@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@media (max-width: 480px) {
  .flash-container {
    top: 24px;
    right: 24px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(170deg, #081610 0%, #0a1f15 40%, #0f291e 80%, #071008 100%);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse at top, rgba(197,160,89,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  position: relative;
}
.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.social-btn.facebook {
  background: #1877F2;
}
.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-btn.whatsapp {
  background: #25D366;
}
.social-btn.linkedin {
  background: #0077B5;
}
.social-btn:hover {
  color: var(--white);
  transform: translateY(-3px);
  filter: brightness(1.15);
}
.social-btn.facebook:hover {
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.5);
}
.social-btn.instagram:hover {
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.5);
}
.social-btn.whatsapp:hover {
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
}
.social-btn.linkedin:hover {
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.5);
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--amber); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.footer-contact-item span:first-child { color: var(--amber); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a {
  color: inherit;
  transition: var(--transition);
}
.footer-contact-item a:hover {
  color: var(--amber);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   HOME – HERO
   ============================================================ */
.hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  max-height: 540px;
  margin: 150px auto 32px;
  max-width: 1440px;
  width: calc(100% - 48px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
  display: flex;
  align-items: center;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active .hero-bg {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 45, 8, 0.8) 0%,
    rgba(30, 58, 15, 0.6) 50%,
    rgba(0,0,0,0.35) 100%
  );
}

/* Carousel Control Buttons */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
}
.carousel-control:hover {
  background: var(--amber);
  border-color: var(--amber);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(184, 90, 28, 0.4);
}
.carousel-control.prev { left: 32px; }
.carousel-control.next { right: 32px; }

/* Carousel Pill Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 40px;
  right: 50px;
  z-index: 10;
  display: flex;
  gap: 10px;
}
.carousel-indicators .indicator {
  width: 24px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-indicators .indicator.active {
  background: var(--amber);
  width: 40px;
}

@media (max-width: 768px) {
  .carousel-control { display: none; }
  .carousel-indicators { right: 50%; transform: translateX(50%); bottom: 24px; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  animation: heroFadeUp 1s ease 0.2s both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(197,160,89,0.18);
  border: 1px solid rgba(197,160,89,0.45);
  color: var(--amber-light);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.hero h1 em { color: var(--amber-light); font-style: normal; }
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-scroll {
  display: none;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Welcome Fallback Hero (no carousel slides) ─────────────── */
.hero-bg--gradient {
  background: linear-gradient(135deg, #1a0a00 0%, #2d1200 30%, #1c1006 60%, #0d0d0d 100%) !important;
  background-image: none !important;
}
.hero-content--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.welcome-logo-wrap {
  margin-bottom: 28px;
  animation: heroFadeUp 0.8s ease 0s both;
}
.welcome-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--amber);
  box-shadow: 0 0 0 6px rgba(200,134,10,0.2), 0 8px 40px rgba(0,0,0,0.5);
}
.welcome-title {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  background: linear-gradient(90deg, var(--amber-light), #fff, var(--amber-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroFadeUp 0.8s ease 0.2s both, shimmer 3s linear infinite;
  margin-bottom: 16px !important;
}
.welcome-subtitle {
  color: rgba(255,255,255,0.8) !important;
  font-size: 1.15rem !important;
  max-width: 500px;
  margin: 0 auto 28px !important;
  animation: heroFadeUp 0.8s ease 0.35s both;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}


/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: linear-gradient(135deg, #07160e 0%, var(--green-dark) 50%, #0d2218 100%);
  padding: 36px 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(197,160,89,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.trust-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 12px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.trust-item:last-child { border-right: none; }
.trust-icon-box {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(197,160,89,0.2), rgba(197,160,89,0.08));
  border: 1px solid rgba(197,160,89,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-light);
  box-shadow: 0 4px 16px rgba(197,160,89,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: var(--transition);
}
.trust-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--amber-light);
}
.trust-item:hover .trust-icon-box {
  background: linear-gradient(135deg, rgba(197,160,89,0.35), rgba(197,160,89,0.15));
  box-shadow: 0 6px 24px rgba(197,160,89,0.3);
  transform: scale(1.05);
}
.trust-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-number {
  font-family: 'DM Serif Display', 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--amber-light);
  line-height: 1;
  letter-spacing: -0.01em;
}
.trust-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Shop by Category ──────────────────────────────────────── */
.category-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, var(--cream-dark) 100%);
  position: relative;
}
.category-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-light), transparent);
  opacity: 0.4;
}
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.category-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  color: var(--white);
  box-shadow: 0 12px 40px rgba(10,31,21,0.25);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
}
.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
  filter: saturate(1.1);
}
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7,22,14,0.95) 0%,
    rgba(15,41,30,0.55) 50%,
    rgba(0,0,0,0.08) 100%
  );
  z-index: 2;
  transition: opacity 0.4s;
}
.category-card-content {
  position: relative;
  z-index: 3;
  width: 100%;
  transform: translateY(6px);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.category-card h3 {
  font-family: 'DM Serif Display', 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.category-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
.category-card .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--amber-light);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  text-transform: uppercase;
}
.category-card .btn-link i {
  transition: transform 0.25s ease;
}
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(7,22,14,0.4);
}
.category-card:hover .category-card-bg {
  transform: scale(1.1);
}
.category-card:hover .category-card-content {
  transform: translateY(0);
}
.category-card:hover .btn-link {
  color: var(--white);
  gap: 12px;
}
.category-card:hover .btn-link i {
  transform: translateX(5px);
}
/* Decorative frame border on hover */
.category-card::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0);
  transition: border-color 0.4s;
  z-index: 4;
  pointer-events: none;
}
.category-card:hover::after {
  border-color: rgba(223,194,140,0.25);
}

@media (max-width: 768px) {
  .category-grid { grid-template-columns: 1fr; gap: 20px; }
  .category-card { height: 280px; padding: 24px; }
  .category-card h3 { font-size: 1.5rem; }
}

/* ── Why The Saveur ───────────────────────────────────────── */
.why-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, #f8f5ee 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,67,50,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: linear-gradient(160deg, #fff 0%, #fcfbf8 100%);
  border-radius: 22px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(28,25,23,0.06), 0 1px 3px rgba(28,25,23,0.04);
  border: 1px solid rgba(28,25,23,0.07);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light), var(--amber));
  background-size: 200%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 0%, rgba(197,160,89,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.why-card:hover { transform: translateY(-10px); box-shadow: 0 24px 56px rgba(10,31,21,0.13), 0 4px 12px rgba(197,160,89,0.1); border-color: rgba(197,160,89,0.2); }
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover::after { opacity: 1; }
.why-icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, #eef5f1, #e0ede6);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 22px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(64,145,108,0.15);
  box-shadow: 0 4px 12px rgba(27,67,50,0.1);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  box-shadow: 0 8px 24px rgba(27,67,50,0.3);
  transform: scale(1.05) rotate(-3deg);
}
.why-card h3 { font-family: 'DM Serif Display', 'Playfair Display', serif; font-size: 1.15rem; color: var(--text-dark); margin-bottom: 10px; font-weight: 400; }
.why-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ── Best Sellers ──────────────────────────────────────────── */
.bestsellers-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.bestsellers-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,160,89,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.section-header { margin-bottom: 56px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 300px));
  justify-content: center;
  gap: 20px;
}
.product-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(28,25,23,0.07);
  border: 1px solid rgba(28,25,23,0.07);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 60%, rgba(197,160,89,0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 10;
}
.product-card:hover::before { opacity: 1; }
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(10,31,21,0.18), 0 4px 16px rgba(197,160,89,0.12);
  border-color: rgba(197,160,89,0.2);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.product-badge.tea {
  background: linear-gradient(135deg, #1abc9c, #16a085);
}
.product-badge.spices {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
}
.product-badge.cloths {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}
.product-badge.spice {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
}
.product-badge.electronics {
  background: linear-gradient(135deg, #3498db, #2980b9);
}
.product-badge.fashion {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}
.product-badge.home {
  background: linear-gradient(135deg, #e67e22, #d35400);
}
.product-badge.food {
  background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
}
.product-badge.wellness {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}
.bestseller-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #c8882a, var(--amber), #dfc28c);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px rgba(197,160,89,0.5);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.product-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-family: 'DM Serif Display', 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}
.product-name a { color: inherit; }
.product-name a:hover { color: var(--green-primary); }
.product-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.product-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.stock-pill {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.stock-pill.in-stock { background: rgba(46,204,113,0.12); color: #1a7a42; border: 1px solid rgba(46,204,113,0.25); }
.stock-pill.low-stock { background: rgba(230,126,34,0.1); color: #a04000; border: 1px solid rgba(230,126,34,0.25); }
.stock-pill.out-of-stock { background: rgba(192,57,43,0.1); color: #922b21; border: 1px solid rgba(192,57,43,0.2); }

/* ── Enquiry Section ───────────────────────────────────────── */
.enquiry-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #071410 0%, #0f291e 35%, #1b4332 65%, #0d2018 100%);
  position: relative;
  overflow: hidden;
}
.enquiry-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,160,89,0.08) 0%, transparent 70%);
}
.enquiry-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64,145,108,0.12) 0%, transparent 70%);
}
.enquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.enquiry-text h2 { color: var(--white); margin-bottom: 16px; font-family: 'DM Serif Display', 'Playfair Display', serif; font-weight: 400; font-style: italic; }
.enquiry-text p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 28px; line-height: 1.7; }
.enquiry-perks { display: flex; flex-direction: column; gap: 12px; }
.enquiry-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.perk-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(197,160,89,0.3), rgba(197,160,89,0.12));
  border: 1px solid rgba(197,160,89,0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-light);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(197,160,89,0.2);
}
.enquiry-perk-icon {
  width: 28px; height: 28px;
  background: rgba(197,160,89,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Enquiry Form */
.enquiry-form-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 1px solid rgba(197,160,89,0.25);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 0 0 3px rgba(200,134,10,0.2);
}
.form-group select option { background: var(--green-dark); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section { padding: 100px 0; background: var(--cream); }
.faq-list { max-width: 780px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--amber-light); }
.faq-item.open { border-color: var(--amber); box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  gap: 12px;
}
.faq-chevron {
  width: 28px; height: 28px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-chevron { background: var(--amber); color: var(--white); transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.page-hero {
  padding: 180px 0 80px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

.filter-bar {
  padding: 40px 0 0;
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: sticky;
  top: 138px;
  z-index: 100;
}
.filter-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding-bottom: 0;
}
.filter-tab {
  padding: 10px 28px;
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.filter-tab:hover { color: var(--green-primary); background: rgba(45,80,22,0.06); }
.filter-tab.active {
  color: var(--green-primary);
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid var(--cream);
  margin-bottom: -1px;
}

.products-section { padding: 60px 0 100px; }
.products-count { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: 100px 0; background: var(--cream); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}
.about-img-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  display: block;
  color: var(--amber-light);
}
.about-img-badge span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.about-text .section-tag { margin-top: 0; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 16px; }

.mission-section { padding: 80px 0; background: var(--cream-dark); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.mission-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 36px;
  border-left: 4px solid var(--amber);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.mission-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.mission-card h3 { color: var(--text-dark); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.mission-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

.values-section { padding: 80px 0; background: var(--cream); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.value-card h4 { color: var(--text-dark); margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 100px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { color: var(--text-dark); margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 36px; line-height: 1.7; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card-bg);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.contact-card-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-card-text h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.contact-card-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.contact-form-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { color: var(--text-dark); margin-bottom: 24px; }
.contact-form .form-group label { color: var(--text-mid); }
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  background: var(--cream);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder { color: var(--text-muted); }
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,80,22,0.1);
}
.contact-form .form-group select option { background: var(--white); color: var(--text-dark); }

.map-section { padding: 0 0 80px; background: var(--cream); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 360px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Stagger delays ──────────────────────────────────────── */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — 4 Breakpoints
   ============================================================ */

/* ── Large Desktop (1280px+) ─────────────────────────────── */
@media (min-width: 1280px) {
  .container { max-width: 1720px; }
  .hero { max-width: 1720px; }
}

/* ── Laptop / Small Desktop (max 1024px) ─────────────────── */
@media (max-width: 1024px) {
  /* Grids */
  .why-grid            { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .products-grid       { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 28px; }
  .enquiry-inner       { grid-template-columns: 1fr; gap: 40px; }
  .about-inner         { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid        { grid-template-columns: 1fr; gap: 40px; }
  .mission-grid        { grid-template-columns: 1fr; }
  .values-grid         { grid-template-columns: repeat(2, 1fr); }

  /* Sections */
  .why-section         { padding: 72px 0; }
  .bestsellers-section { padding: 72px 0; }
  .enquiry-section     { padding: 72px 0; }
  .faq-section         { padding: 72px 0; }
  .about-story         { padding: 72px 0; }
  .mission-section     { padding: 60px 0; }
  .values-section      { padding: 60px 0; }
  .contact-section     { padding: 72px 0; }

  /* Hero */
  .hero { min-height: 560px; }

  /* About img */
  .about-img-wrap { aspect-ratio: 16/9; max-width: 600px; }

  /* Stats grid on about */
  .about-stats-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ── Tablet (max 768px) ──────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links           { display: none; }
  .nav-hamburger       { display: flex; }
  .nav-wrapper         { width: calc(100% - 20px); top: 10px; }
  .navbar              { padding: 10px 16px; border-radius: var(--radius-lg); }
  .nav-logo-text       { font-size: 1rem; }

  /* Hero */
  .hero                { min-height: 100svh; }
  .hero h1             { font-size: clamp(2rem, 7vw, 3rem); }
  .hero p              { font-size: 1rem; }
  .hero-actions        { flex-direction: column; gap: 10px; }
  .hero-actions .btn   { width: 100%; justify-content: center; }
  .hero-badge          { font-size: 0.72rem; }

  /* Trust Bar */
  .trust-bar           { padding: 20px 0; }
  .trust-bar-grid      { grid-template-columns: 1fr; }
  .trust-item          { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 14px 20px; }
  .trust-item:last-child { border-bottom: none; }
  .trust-number        { font-size: 1.5rem; }

  /* Section spacing */
  .why-section         { padding: 60px 0; }
  .bestsellers-section { padding: 60px 0; }
  .enquiry-section     { padding: 60px 0; }
  .faq-section         { padding: 60px 0; }
  .about-story         { padding: 60px 0; }
  .mission-section     { padding: 48px 0; }
  .values-section      { padding: 48px 0; }
  .contact-section     { padding: 60px 0; }
  .section-header      { margin-bottom: 36px; }

  /* Section header text */
  .section-subtitle    { font-size: 0.95rem; }

  /* Grids */
  .why-grid            { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .products-grid       { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .values-grid         { grid-template-columns: 1fr; gap: 16px; }
  .mission-grid        { gap: 16px; }

  /* Cards */
  .why-card            { padding: 28px 20px; }
  .why-icon            { width: 58px; height: 58px; font-size: 1.6rem; }
  .product-card        { border-radius: var(--radius-md); }
  .product-body        { padding: 12px 14px; }
  .product-name        { font-size: 0.95rem; margin-bottom: 6px; }
  .product-desc        { font-size: 0.78rem; margin-bottom: 12px; }
  .product-img-wrap    { aspect-ratio: 3/2; }

  /* Enquiry section */
  .enquiry-inner       { gap: 32px; }
  .enquiry-form-card   { padding: 24px 20px; }
  .enquiry-text h2     { font-size: 1.8rem; }

  /* Forms */
  .form-row            { grid-template-columns: 1fr; }
  .contact-form-card   { padding: 24px 20px; border-radius: var(--radius-md); }

  /* FAQ */
  .faq-list            { margin-top: 32px; }
  .faq-question        { font-size: 0.9rem; padding: 16px 18px; }
  .faq-answer-inner    { padding: 0 18px 16px; }

  /* Page Hero */
  .page-hero           { padding: 120px 0 52px; }
  .page-hero h1        { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  /* Filter bar */
  .filter-bar          { top: 70px; padding: 12px 0 0; }
  .filter-tabs         { gap: 4px; flex-wrap: wrap; justify-content: center; }
  .filter-tab          { padding: 8px 18px; font-size: 0.82rem; }

  /* Products section */
  .products-section    { padding: 40px 0 72px; }

  /* About */
  .about-inner         { gap: 28px; }
  .about-img-wrap      { aspect-ratio: 4/3; }
  .about-text h2       { font-size: 1.8rem; }

  /* Contact */
  .contact-info h2     { font-size: 1.8rem; }
  .contact-cards       { gap: 12px; }
  .contact-card        { padding: 16px; }
  .contact-card-icon   { width: 40px; height: 40px; font-size: 1rem; }

  /* Footer */
  .footer              { padding: 48px 0 0; }
  .footer-grid         { grid-template-columns: 1fr; gap: 24px; padding-bottom: 28px; }
  .footer-bottom       { flex-direction: column; gap: 8px; text-align: center; font-size: 0.78rem; }
  .footer-social       { margin-bottom: 4px; }

  /* About stats */
  .about-stats-grid    { grid-template-columns: repeat(3, 1fr) !important; }

  /* Buttons */
  .btn                 { padding: 12px 24px; font-size: 0.88rem; }
  .btn-sm              { padding: 9px 18px; font-size: 0.8rem; }

  /* Bulk CTA */
  .bulk-cta-inner      { flex-direction: column !important; text-align: center; padding: 32px 24px !important; }
}

/* ── Mobile (max 480px) ──────────────────────────────────── */
@media (max-width: 480px) {
  /* Base */
  .container           { padding: 0 16px; }

  /* Nav */
  .nav-wrapper         { width: calc(100% - 16px); top: 8px; }
  .nav-logo-sub        { display: none; }

  /* Hero */
  .hero h1             { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero p              { font-size: 0.92rem; }
  .hero-scroll         { display: none; }

  /* Trust bar */
  .trust-number        { font-size: 1.4rem; }
  .trust-icon          { font-size: 1.5rem; }

  /* Why cards */
  .why-card            { padding: 24px 16px; }

  /* Section headers */
  h2.section-title     { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Enquiry form */
  .enquiry-form-card   { padding: 20px 16px; border-radius: var(--radius-md); }

  /* FAQ */
  .faq-question        { font-size: 0.85rem; padding: 14px 16px; gap: 8px; }
  .faq-chevron         { width: 24px; height: 24px; flex-shrink: 0; }

  /* Page hero */
  .page-hero           { padding: 110px 0 44px; }

  /* Product cards */
  .product-img-wrap    { aspect-ratio: 16/9; }
  .product-body        { padding: 16px 18px 18px; }
  .product-name        { font-size: 1rem; }

  /* Filter */
  .filter-tab          { padding: 7px 14px; font-size: 0.78rem; }

  /* Contact */
  .contact-form-card   { padding: 20px 16px; }

  /* About */
  .about-img-wrap      { border-radius: var(--radius-md); }
  .mission-card        { padding: 24px 20px; }
  .value-card          { padding: 24px 20px; }

  /* Footer */
  .footer-brand .brand-name { font-size: 1.3rem; }
  .footer-col h4       { font-size: 0.95rem; }

  /* About stats */
  .about-stats-grid    { grid-template-columns: 1fr 1fr !important; }
}

/* ── Extra Small (max 360px) ─────────────────────────────── */
@media (max-width: 360px) {
  .hero h1             { font-size: 1.7rem; }
  .enquiry-form-card   { padding: 16px 12px; }
  .contact-form-card   { padding: 16px 12px; }
  .filter-tabs         { gap: 4px; }
  .filter-tab          { padding: 6px 12px; font-size: 0.75rem; }
  .about-stats-grid    { grid-template-columns: 1fr !important; }
}


/* ── Navbar Dropdown Menu ───────────────────────────────────── */
.nav-dropdown-item {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.25rem;
  color: var(--amber-pale);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.nav-dropdown-toggle svg {
  width: 18px !important;
  height: 18px !important;
}
.nav-dropdown-toggle .arrow-icon {
  width: 14px !important;
  height: 14px !important;
}

.nav-dropdown-toggle:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.nav-dropdown-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 170px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 1000;
  animation: navDropdownSlide 0.2s ease;
}

@keyframes navDropdownSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.95rem;
  color: var(--text-dark) !important;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  transition: var(--transition);
  font-weight: 500;
}

.nav-dropdown-menu a i,
.nav-dropdown-menu a svg {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
}

.nav-dropdown-menu a:hover {
  background: rgba(27, 67, 50, 0.06);
  color: var(--green-primary) !important;
}

.nav-dropdown-menu a.nav-admin {
  font-weight: 600;
  color: var(--green-dark) !important;
}

.nav-dropdown-menu a.nav-admin:hover {
  background: rgba(15, 41, 30, 0.06);
  color: var(--green-dark) !important;
}

.nav-dropdown-menu a.nav-logout-btn {
  color: #e74c3c !important;
}

.nav-dropdown-menu a.nav-logout-btn:hover {
  background: rgba(231, 76, 60, 0.06);
  color: #c0392b !important;
}

.nav-dropdown-menu a.active {
  background: rgba(27, 67, 50, 0.08) !important;
  color: var(--green-primary) !important;
  font-weight: 600;
}

.nav-dropdown-item:has(a.active) .nav-dropdown-toggle {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--border-color);
  margin: 4px 0;
}

.nav-dropdown-toggle .arrow-icon {
  transition: transform 0.2s ease;
}

/* Lucide Icons Custom Alignment */
i[data-lucide],
.lucide {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  stroke-width: 2.2px;
  vertical-align: -0.18em;
  color: inherit;
}

/* ============================================================
   PREMIUM HOMEPAGE REDESIGN STYLING
   ============================================================ */

/* Redesigned Trust Bar */
.trust-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--cream-light);
  border: 1px solid rgba(200, 134, 10, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber-light);
}
.trust-icon-box {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  color: var(--green-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon-box svg {
  width: 24px;
  height: 24px;
}
.trust-info {
  display: flex;
  flex-direction: column;
}
.trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.1;
}
.trust-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Category Cards Hover Elevation */
.category-card {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.category-card-bg {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card:hover .category-card-bg {
  transform: scale(1.1);
}
.category-card-overlay {
  background: linear-gradient(to bottom, rgba(20,45,8,0.2) 0%, rgba(20,45,8,0.85) 100%);
}
.category-card-content {
  padding: 32px;
}
.category-card-content h3 {
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}
.category-card-content p {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 24px;
}

/* Journey Section (Our Sourcing Story) */
.journey-section {
  padding: 96px 0;
  background: var(--cream);
}
.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 991px) {
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.journey-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--green-dark);
  margin-bottom: 24px;
}
.journey-content p {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.journey-step {
  display: flex;
  gap: 20px;
}
.journey-step .step-num {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--amber);
  background: var(--amber-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.journey-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.journey-step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}
.journey-image-wrap {
  position: relative;
}
.journey-image-card {
  height: 480px;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 576px) {
  .journey-image-card {
    height: 320px;
  }
}
.journey-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
}
.journey-badge svg {
  width: 32px;
  height: 32px;
  color: var(--amber);
}
.journey-badge strong {
  display: block;
  font-size: 1.05rem;
  color: var(--green-dark);
}
.journey-badge span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Premium Bestseller Cards */
.product-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(20,45,8,0.08);
  border-color: rgba(30,58,15,0.08);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-light);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green-primary);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  z-index: 2;
}
.product-badge.tea {
  background: #1abc9c;
}
.product-badge.spices {
  background: var(--amber);
}
.product-badge.cloths {
  background: #9b59b6;
}
.product-badge.spice {
  background: var(--amber);
}
.product-badge.electronics {
  background: #3498db;
}
.product-badge.fashion {
  background: #9b59b6;
}
.product-badge.home {
  background: #e67e22;
}
.product-badge.food {
  background: var(--green-primary);
}
.product-badge.wellness {
  background: #e74c3c;
}
.bestseller-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  color: var(--text-dark);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.product-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.product-name a:hover {
  color: var(--green-primary);
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.product-rating .stars {
  color: var(--amber);
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.product-rating .rating-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.product-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.product-price-box {
  display: flex;
  align-items: baseline;
  color: var(--green-dark);
}
.product-price-box .price-symbol {
  font-size: 0.95rem;
  font-weight: 700;
}
.product-price-box .price-val {
  font-size: 1.35rem;
  font-weight: 700;
}
.product-price-box .price-unit {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: 2px;
}
.stock-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.stock-pill.in-stock {
  background: rgba(46, 204, 113, 0.12);
  color: #27ae60;
}
.stock-pill.low-stock {
  background: rgba(230, 126, 34, 0.12);
  color: #d35400;
}
.stock-pill.out-of-stock {
  background: rgba(231, 76, 60, 0.12);
  color: #c0392b;
}
.product-actions {
  margin-top: 16px;
}
.add-to-cart-btn {
  transition: all 0.3s ease;
}
.add-to-cart-btn:hover {
  background: var(--green-dark);
  box-shadow: 0 4px 12px rgba(20,45,8,0.25);
  transform: translateY(-1px);
}

/* Testimonials Section */
.testimonials-section {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.03);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.testimonial-card {
  background: var(--cream-light);
  border: 1px solid rgba(200, 134, 10, 0.06);
  padding: 36px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber-light);
}
.testimonial-rating {
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.testimonial-text {
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 18px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-avatar svg {
  width: 20px;
  height: 20px;
}
.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--green-dark);
}
.verified-buyer {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #27ae60;
  font-weight: 600;
  margin-top: 2px;
}
.verified-buyer svg {
  width: 12px;
  height: 12px;
}

/* FAQ Accordion Items Redesign */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.open {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--green-primary);
}
.faq-chevron {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--green-primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   PREMIUM POLISH — Price, Selection, Scrollbar, Dropdown
   ============================================================ */

/* Price display */
.price-symbol {
  font-family: 'DM Serif Display', 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--green-dark);
  vertical-align: super;
  line-height: 1;
}
.price-val {
  font-family: 'DM Serif Display', 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-dark);
  letter-spacing: -0.01em;
  line-height: 1;
}
.price-unit {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.product-price-box {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

/* Selection color */
::selection {
  background: rgba(197,160,89,0.25);
  color: var(--green-dark);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--green-light), var(--amber));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--amber); }

/* Hero ambient glow at bottom edge */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(252,251,249,0.4));
  z-index: 5;
  pointer-events: none;
}

/* Nav dropdown (profile) */
.nav-dropdown-item {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--amber-pale);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.nav-dropdown-toggle:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.arrow-icon {
  transition: transform 0.25s;
}
.nav-dropdown-toggle[aria-expanded="true"] .arrow-icon {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: rgba(12, 30, 18, 0.96);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  z-index: 200;
}
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: rgba(255,255,255,0.78) !important;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
}
.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white) !important;
  padding-left: 18px;
}
.nav-dropdown-menu a.nav-admin { color: var(--amber-light) !important; }
.nav-dropdown-menu .nav-logout-btn { color: #f87171 !important; }
.nav-dropdown-menu .nav-logout-btn:hover { background: rgba(239,68,68,0.12); color: #fca5a5 !important; }
.nav-dropdown-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 6px 0; }
.nav-mobile-logout { color: #f87171 !important; }

/* ── Product Badges/Tags Layout Fix ── */
.product-tags-left {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  pointer-events: none;
  z-index: 10;
}
.product-tags-right {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  pointer-events: none;
  z-index: 10;
}
.product-tags-left .product-badge,
.product-tags-right .product-badge,
.product-tags-right .bestseller-tag {
  position: static !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .product-tags-left,
  .product-tags-right {
    top: 8px;
    left: 8px;
    gap: 4px;
  }
  .product-tags-right {
    right: 8px;
    left: auto;
  }
  .product-tags-left .product-badge,
  .product-tags-right .product-badge,
  .product-tags-right .bestseller-tag {
    padding: 3px 8px !important;
    font-size: 0.65rem !important;
  }
}

.contact-email-link {
  color: inherit;
  transition: var(--transition);
}
.contact-email-link:hover {
  color: var(--green-primary);
  text-decoration: underline;
}
