/* ==========================================================================
   Anisa's Foods — Stylesheet
   Premium Homestyle Achaar Delivered
   ========================================================================== */

:root {
  --mustard: #D4A017;
  --mustard-light: #F2D675;
  --chili-red: #C41E3A;
  --chili-deep: #8B1528;
  --terracotta: #B85C38;
  --cream: #FDF6E3;
  --cream-dark: #F5E6C8;
  --charcoal: #2C1810;
  --brown: #5D3A1A;
  --gold: #C5A059;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}

.border-pattern {
  height: 10px;
  background: repeating-linear-gradient(
    45deg,
    var(--mustard),
    var(--mustard) 10px,
    var(--chili-red) 10px,
    var(--chili-red) 20px
  );
}

/* ==========================================================================
   Cart Sidebar
   ========================================================================== */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.55);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: var(--cream);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.2);
}

.cart-sidebar.active {
  transform: translateX(0);
}

/* --- Header --- */

.cart-header {
  padding: 26px 24px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #4A2511 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 3px solid var(--mustard);
  flex-shrink: 0;
}

.cart-header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.cart-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--mustard);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cart-header-label {
  color: var(--mustard-light);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cart-header h3 {
  color: var(--cream);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.close-cart {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(253, 246, 227, 0.1);
  border: 1px solid rgba(253, 246, 227, 0.25);
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.close-cart:hover {
  background: var(--chili-red);
  border-color: var(--chili-red);
  transform: rotate(90deg);
}

/* --- Items --- */

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 20px 8px;
}

.cart-empty {
  text-align: center;
  padding: 70px 20px;
  color: var(--brown);
}

.cart-empty-icon {
  font-size: 3.5rem;
  margin-bottom: 18px;
  opacity: 0.4;
}

.cart-empty p {
  font-size: 0.95rem;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: white;
  border-radius: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(93, 58, 26, 0.08);
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.04);
  align-items: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.cart-item:hover {
  box-shadow: 0 8px 18px rgba(44, 24, 16, 0.08);
  transform: translateY(-1px);
}

.cart-item-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  background: var(--cream-dark);
  border: 1px solid rgba(93, 58, 26, 0.08);
}
.cart-item-img-photo {
  padding: 0;
  overflow: hidden;
}

.cart-item-img-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.cart-item-info {
  min-width: 0;
  flex: 1;
}

.cart-item-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-info p {
  font-size: 0.82rem;
  color: var(--brown);
  font-weight: 500;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  background: var(--cream-dark);
  border-radius: 100px;
  padding: 4px;
  flex-shrink: 0;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: white;
  color: var(--charcoal);
  cursor: pointer;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(44, 24, 16, 0.1);
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: var(--chili-red);
  color: white;
}

.cart-item-qty span {
  min-width: 22px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
}

/* --- Footer --- */

.cart-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(93, 58, 26, 0.15);
  background: var(--cream-dark);
  flex-shrink: 0;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  padding-top: 4px;
}

.cart-total-row span:first-child {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown);
  font-weight: 600;
}

.cart-total-row span:last-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  background: var(--chili-red);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s, transform 0.2s;
  text-align: center;
}

.checkout-btn:hover {
  background: var(--chili-deep);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(253, 246, 227, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--mustard);
  z-index: 1000;
  padding: 0 24px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--chili-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 3px solid var(--mustard);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
}

.logo-text span {
  color: var(--chili-red);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--brown);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 1px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--chili-red);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--chili-red);
}

.nav-links a:hover::after {
  width: 100%;
}
/* ==========================================================================
   Nav Dropdown (About Us)
   ========================================================================== */

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, -8px);
  background: var(--cream);
  border: 1px solid var(--mustard);
  border-radius: 10px;
  min-width: 210px;
  padding: 8px 0;
  list-style: none;
  box-shadow: 0 14px 30px rgba(44, 24, 16, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1100;
}

.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 0.9rem;  
}

.dropdown-menu li a::after {
  display: none;
}

.dropdown-menu li a:hover {
  color: var(--chili-red);
  background: var(--cream-dark);
}
.cart-toggle {
  background: none;
  border: none;
  position: relative;
  margin-left: 20px;
  margin-top: -4px;
  cursor: pointer;
  font-size: 1.6rem;
  padding: 8px;
  color: var(--charcoal);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--chili-red);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: 0.3s;
}
/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  margin-top: 72px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #4A2511 100%);
  color: var(--cream);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.6rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 900;
}

.hero h1 .highlight {
  color: var(--mustard-light);
  display: block;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(253, 246, 227, 0.8);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--mustard);
  color: var(--charcoal);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--mustard);
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn-primary:hover {
  background: transparent;
  color: var(--mustard);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(253, 246, 227, 0.3);
}

.btn-secondary:hover {
  border-color: var(--mustard);
  color: var(--mustard);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.jar-container {
  position: relative;
  width: 300px;
  height: 380px;
}

.hero-product-image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  animation: floatProduct 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes floatProduct {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-20px); }
}

.jar-2 {
  left: 130px;
  top: 40px;
  transform: scale(0.85);
  opacity: 0.9;
  z-index: -1;
}

.jar-2 .jar {
  background: linear-gradient(135deg, #C41E3A, #8B1528);
}

.jar-2 .jar-label {
  border-color: var(--mustard);
}

.jar-2 .jar-label h3 {
  color: var(--mustard);
}

.floating-spice {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.spice-1 { top: 10%; left: 0; animation-delay: 0s; }
.spice-2 { top: 20%; right: 10%; animation-delay: 1s; }
.spice-3 { bottom: 20%; left: 10%; animation-delay: 2s; }
.spice-4 { bottom: 10%; right: 0; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ==========================================================================
   Flavor Promise Bar
   ========================================================================== */

.promise-bar {
  background: var(--cream-dark);
  border-top: 3px solid var(--chili-red);
  border-bottom: 3px solid var(--mustard);
  padding: 30px 24px;
}

.promise-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  place-content: center;
}

.promise-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--chili-red);
  margin-bottom: 4px;
}

.promise-item p {
  color: var(--brown);
  font-weight: 500;
  font-size: 0.9rem;
}
/* ==========================================================================
   About Intro
   ========================================================================== */

.about-intro {
  padding: 90px 24px 70px;
  background: var(--cream);
  text-align: center;
}

.about-intro-container {
  max-width: 640px;
  margin: 0 auto;
}

.about-intro-logo {
  width: 160px;
  height: 160px;
  margin: 0 auto 6px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--mustard);
  box-shadow: 0 14px 30px rgba(44, 24, 16, 0.15);
}

.about-intro-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-intro h2 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: var(--charcoal);
  line-height: 1.2;
}

.about-intro p {
  color: var(--brown);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
/* ==========================================================================
   About Section
   ========================================================================== */

.about {
  padding: 90px 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-img {
  aspect-ratio: 1;
  border-radius: 16px;
  border: 4px solid var(--mustard);
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.about-img-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.95);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.about-img:nth-child(2) {
  border-color: var(--chili-red);
  transform: translateY(30px);
}

.about-img .pattern-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.about-content .section-tag {
  display: inline-block;
  color: var(--chili-red);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  position: relative;
}

.about-content h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  color: var(--brown);
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
}
/* ==========================================================================
   Our Values Page
   ========================================================================== */

.values-section {
  padding: 80px 24px 100px;
  background: var(--cream);
}

.values-container {
  max-width: 800px;
  margin: 0 auto;
}

.values-intro {
  text-align: center;
  margin-bottom: 70px;
}

.values-lead {
  color: var(--brown);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 8px auto 0;
  font-style: italic;
}

.values-list {
  border-top: 1px solid rgba(93, 58, 26, 0.15);
}

.value-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(93, 58, 26, 0.15);
  transition: padding-left 0.3s ease;
}

.value-row:hover {
  padding-left: 12px;
}

.value-index {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--mustard);
  line-height: 1;
  transition: color 0.3s ease;
}

.value-row:hover .value-index {
  color: var(--chili-red);
}

.value-body h4 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.value-body p {
  color: var(--brown);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
}
/* ==========================================================================
   Founder Page
   ========================================================================== */

.founder-hero {
  padding: 70px 24px 60px;
  text-align: center;
  background: var(--cream);
}

.founder-hero-container {
  max-width: 700px;
  margin: 0 auto;
}

.founder-hero-title {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.98;
  font-weight: 900;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 4px 0 44px;
}

.founder-hero-title span {
  color: var(--chili-red);
}

.founder-photo-wrap {
  position: relative;
  width: 280px;
  margin: 0 auto 40px;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 24px 50px rgba(44, 24, 16, 0.2);
  display: block;
}

.founder-corner {
  position: absolute;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

.corner-tl {
  top: -14px;
  left: -14px;
  border-top: 2px solid var(--mustard);
  border-left: 2px solid var(--mustard);
}

.corner-br {
  bottom: -14px;
  right: -14px;
  border-bottom: 2px solid var(--mustard);
  border-right: 2px solid var(--mustard);
}

.founder-credit-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(93, 58, 26, 0.2);
  padding-top: 20px;
  max-width: 560px;
  margin: 0 auto;
}

.founder-credit-item {
  padding: 0 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown);
  position: relative;
}

.founder-credit-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(93, 58, 26, 0.25);
}

/* --- Content blocks --- */

.founder-content {
  padding: 70px 24px;
  background: var(--cream);
}

.founder-content-alt {
  background: var(--cream-dark);
}

.founder-content-container {
  max-width: 720px;
  margin: 0 auto;
}

.founder-block h2 {
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 18px;
  line-height: 1.2;
}

.founder-content-container > h2 {
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.2;
  text-align: center;
}

.founder-content-container > .section-tag {
  display: block;
  text-align: center;
}

.founder-block p,
.founder-content-container > p {
  color: var(--brown);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.founder-lead {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 44px;
}

/* --- Pull quote --- */

.founder-quote-section {
  padding: 80px 24px;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
}

.founder-quote {
  max-width: 700px;
  margin: 0 auto;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--mustard);
  line-height: 1;
  margin-bottom: 8px;
}

.founder-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 20px;
}

.founder-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mustard-light);
}

/* --- Culture grid --- */

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.culture-card {
  text-align: center;
  padding: 32px 22px;
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(93, 58, 26, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.culture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(44, 24, 16, 0.1);
}

.culture-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.culture-card h4 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.culture-card p {
  font-size: 0.9rem;
  color: var(--brown);
  line-height: 1.6;
}

/* --- CTA --- */

.founder-cta {
  padding: 70px 24px;
  text-align: center;
  background: var(--cream-dark);
}

.founder-cta h3 {
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .founder-photo-wrap { width: 220px; }
  .culture-grid { grid-template-columns: 1fr; }
  .founder-credit-item { padding: 0 12px; font-size: 0.75rem; }
  .founder-hero-title { margin-bottom: 32px; }
}
/* ==========================================================================
   Shop Section
   ========================================================================== */

.shop {
  padding: 90px 24px;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
  position: relative;
}

.shop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    var(--mustard),
    var(--mustard) 24px,
    var(--chili-red) 24px,
    var(--chili-red) 48px
  );
}

.shop-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  color: var(--chili-red);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '•';
  margin: 0 12px;
  color: var(--mustard);
}

.section-header h2 {
  font-size: 2.6rem;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  color: var(--brown);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(93, 58, 26, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(44, 24, 16, 0.1);
}

.product-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.product-card:nth-child(1) .product-image { background: linear-gradient(135deg, #FDE8E0, #F5D0C5); }
.product-card:nth-child(2) .product-image { background: linear-gradient(135deg, #FFF8DC, #F2D675); }
.product-card:nth-child(3) .product-image { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); }
.product-card:nth-child(4) .product-image { background: linear-gradient(135deg, #FFF3E0, #FFCC80); }
.product-card:nth-child(5) .product-image { background: linear-gradient(135deg, #F3E5F5, #CE93D8); }
.product-card:nth-child(6) .product-image { background: linear-gradient(135deg, #E0F2F1, #80CBC4); }
.product-card:nth-child(7) .product-image { background: linear-gradient(135deg, #FFEBEE, #EF9A9A); }
.product-card:nth-child(8) .product-image { background: linear-gradient(135deg, #E8EAF6, #9FA8DA); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--chili-red);
  color: white;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-badge.bestseller {
  background: var(--mustard);
  color: var(--charcoal);
}

.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.product-desc {
  color: var(--brown);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}

.product-weight {
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-block;
  background: var(--cream-dark);
  padding: 4px 10px;
  border-radius: 100px;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px dashed rgba(93, 58, 26, 0.15);
  gap: 8px;
  flex-wrap: wrap;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--charcoal);
}

.product-price .unit {
  font-size: 0.85rem;
  color: var(--brown);
  font-weight: 500;
}

.add-to-cart {
  background: var(--chili-red);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.add-to-cart:hover {
  background: var(--chili-deep);
  transform: scale(1.05);
}

.add-to-cart.added {
  background: #2E7D32;
}
/* ==========================================================================
   Product Card v2 (image + floating add button + modal)
   ========================================================================== */

.product-card {
  cursor: pointer;
}

.product-card-media {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.product-card-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--chili-red);
  color: white;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.product-card-badge.bestseller {
  background: var(--mustard);
  color: var(--charcoal);
}

.product-card-info {
  padding: 16px 18px 20px;
}

.product-card-info h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.product-card-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
}

.product-card-price .unit {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--terracotta);
}

/* Floating action button */
.product-fab {
  position: absolute;
  bottom: 12px;
  right: 12px;
  height: 44px;
  width: 44px;
  border-radius: 100px;
  border: none;
  background: var(--charcoal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(44, 24, 16, 0.3);
  transition: width 0.3s ease, background 0.3s ease;
  z-index: 3;
}

.product-fab i {
  flex-shrink: 0;
  font-size: 1rem;
  position: relative;
  left: 4px;
  top: 1px;
}

.product-fab-label {
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  transition: opacity 0.25s ease 0.05s, max-width 0.25s ease;
}

.product-card:hover .product-fab,
.product-fab:focus-visible {
  width: 100px;
  background: var(--chili-red);
}

.product-card:hover .product-fab-label,
.product-fab:focus-visible .product-fab-label {
  opacity: 1;
  max-width: 60px;
}

@media (hover: none) {
  /* Touch devices: keep it as a plain "+" circle, no hover expansion needed */
  .product-fab { width: 44px !important; background: var(--chili-red) !important; }
  .product-fab-label { display: none; }
}

/* ==========================================================================
   Product Modal
   ========================================================================== */

.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.6);
  backdrop-filter: blur(3px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  background: var(--cream);
  border-radius: 24px;
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-modal-overlay.active .product-modal {
  transform: scale(1) translateY(0);
}

.product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: white;
  color: var(--charcoal);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 5;
  transition: transform 0.25s ease, background 0.25s ease;
}

.product-modal-close:hover {
  background: var(--chili-red);
  color: white;
  transform: rotate(90deg);
}

.product-modal-media {
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.product-modal-icon {
  font-size: 7rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-details {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.product-modal-details h3 {
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.product-modal-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--chili-red);
  margin-bottom: 28px;
}

.product-modal-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown);
  margin-bottom: 12px;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.size-option {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(93, 58, 26, 0.25);
  background: white;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.size-option:hover {
  border-color: var(--mustard);
}

.size-option.active {
  background: var(--mustard);
  border-color: var(--mustard);
  color: var(--charcoal);
}

.product-modal-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  flex-wrap: wrap;
}

.modal-qty-stepper {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--cream-dark);
  border-radius: 100px;
  padding: 6px;
  flex-shrink: 0;
}

.modal-qty-stepper .qty-btn {
  width: 32px;
  height: 32px;
}

.modal-qty-stepper span {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.modal-add-btn {
  flex: 1;
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--chili-red);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.modal-add-btn:hover {
  background: var(--chili-deep);
}

.modal-add-btn:active {
  transform: scale(0.97);
}

.modal-add-btn.confirmed {
  background: #2E7D32;
}

@media (max-width: 640px) {
  .product-modal {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }
  .product-modal-media { min-height: 200px; }
  .product-modal-details { padding: 28px 22px; }
}
/* ==========================================================================
   Product Slider
   ========================================================================== */

.product-slider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-viewport {
  flex: 1;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.slider-viewport:active { cursor: grabbing; }

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.slider-track .product-card {
  flex: 0 0 260px; /* fallback before JS sizes it precisely */
}

.slider-btn {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--mustard);
  background: white;
  color: var(--chili-red);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(44, 24, 16, 0.1);
  transition: all 0.3s ease;
  z-index: 5;
}

.slider-btn:hover {
  background: var(--mustard);
  color: var(--charcoal);
  transform: scale(1.08);
}

.slider-btn:active { transform: scale(0.94); }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(93, 58, 26, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--chili-red);
  width: 28px;
  border-radius: 100px;
}

@media (max-width: 640px) {
  .slider-btn { width: 40px; height: 40px; font-size: 1.3rem; }
}
/* ==========================================================================
   Fermented Pickles (single-product spotlight)
   ========================================================================== */

.ferment-section {
  padding: 90px 24px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
}


.single-product-wrap {
  display: flex;
  justify-content: center;
}

.single-product-wrap .product-card {
  width: 320px;
  max-width: 100%;
}

.product-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .single-product-wrap .product-card {
    width: 100%;
    max-width: 340px;
  }
}
/* ==========================================================================
   Contact Modal
   ========================================================================== */

.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.6);
  backdrop-filter: blur(3px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-modal {
  background: var(--cream);
  border-radius: 24px;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  position: relative;
  padding: 40px 32px 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.contact-modal-overlay.active .contact-modal {
  transform: scale(1) translateY(0);
}

.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: white;
  color: var(--charcoal);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 5;
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-modal-close:hover {
  background: var(--chili-red);
  color: white;
  transform: rotate(90deg);
}

.contact-modal-brand {
  margin-bottom: 28px;
}

.contact-modal-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--mustard);
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
}

.contact-modal-brand h3 {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin: 6px 0 10px;
}

.contact-modal-brand p {
  color: var(--brown);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto;
}

.contact-modal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  text-align: left;
}

.contact-modal-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(93, 58, 26, 0.08);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-modal-row:not(.contact-modal-row-static):hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(44, 24, 16, 0.1);
  border-color: var(--mustard);
}

.contact-modal-row-static {
  cursor: default;
}

.contact-modal-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--chili-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-modal-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-modal-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta);
}

.contact-modal-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

.contact-modal-cta {
  width: 100%;
  justify-content: center;
}

@media (max-width: 480px) {
  .contact-modal { padding: 32px 22px 26px; }
}
/* ==========================================================================
   Why Choose Anisa's
   ========================================================================== */

.why-section {
  padding: 90px 24px;
  background: var(--charcoal);
  color: var(--cream);
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-section .section-tag {
  color: var(--mustard);
}

.why-section .section-header h2 {
  color: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 20px;
  transition: all 0.3s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 160, 23, 0.35);
  transform: translateY(-6px);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(212, 160, 23, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
  border: 3px solid var(--mustard);
}

.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--mustard-light);
}

.why-card p {
  color: rgba(253, 246, 227, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   How It's Made
   ========================================================================== */

.journey {
  padding: 90px 24px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--cream);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.journey-step {
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
}

.journey-step:hover {
  border-color: var(--mustard);
  transform: translateY(-4px);
}

.journey-step::after {
  content: '→';
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--mustard);
  font-weight: 700;
}

.journey-step:last-child::after {
  display: none;
}

.journey-icon {
  width: 64px;
  height: 64px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  border: 3px solid var(--mustard);
}

.journey-step h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.journey-step p {
  color: var(--brown);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials {
  padding: 90px 24px;
  background: var(--charcoal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--mustard), var(--chili-red), var(--terracotta), var(--mustard));
  background-size: 300% 100%;
  animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials .section-tag {
  color: var(--mustard);
}

.testimonials .section-header h2 {
  color: var(--cream);
}

.testimonials .section-header p {
  color: rgba(253, 246, 227, 0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: all 0.3s;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateY(-4px);
}

.quote-icon {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--chili-red);
  margin-bottom: 12px;
  opacity: 0.8;
  font-family: 'Playfair Display', serif;
}

.testimonial-card p {
  color: rgba(253, 246, 227, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  border: 2px solid var(--mustard);
}

.author-info h4 {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-info span {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ==========================================================================
   Delivery Banner
   ========================================================================== */

.delivery {
  padding: 60px 24px;
  background: linear-gradient(135deg, var(--mustard-light) 0%, var(--mustard) 100%);
  text-align: center;
}

.delivery h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.delivery p {
  color: var(--brown);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}
/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-section {
  padding: 90px 24px;
  background: var(--cream-dark);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 50px;
}

.faq-item {
  border-bottom: 1px solid rgba(93, 58, 26, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--mustard);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--chili-red);
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
  color: var(--brown);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 4px 22px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  background: var(--mustard);
  color: var(--charcoal);
  border-color: var(--mustard);
}

.faq-section {
  position: relative;
  padding-top: 30px; 
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    var(--mustard),
    var(--mustard) 24px,
    var(--chili-red) 24px,
    var(--chili-red) 48px
  );
}
/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background: #1A0F0A;
  color: rgba(253, 246, 227, 0.7);
  padding: 60px 24px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  color: var(--cream);
}

.footer-brand p {
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 300px;
  margin-top: 12px;
}

.footer-column h4 {
  color: var(--mustard);
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  color: rgba(253, 246, 227, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--mustard);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(253, 246, 227, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--mustard);
}

/* ==========================================================================
   Toast
   ========================================================================== */

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--charcoal);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 500;
  z-index: 3000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--mustard);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   WhatsApp Order Button
   ========================================================================== */

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366; /* Official WhatsApp Green */
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  margin-top: 20px;
}

.whatsapp-btn .fa-whatsapp {
  font-size: 1.3em;
  position: relative;
  top: 1px;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  color: white;
}

/* Cart footer's WhatsApp checkout button: fill the width like the old
   "Proceed to Checkout" button did, instead of the default inline sizing */
.cart-footer .whatsapp-btn {
  display: block;
  width: 100%;
  margin-top: 0;
  text-align: center;
  box-sizing: border-box;
  border-radius: 10px;
}
/* ==========================================================================
   Motion & Micro-interactions
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
}

/* --- Scroll reveal: 5 variants, replay every time an element enters view.
   Elements whose hover state already animates `transform` (why-card,
   journey-step, testimonial-card) use the blur variant, which never
   touches `transform`, so hover and reveal never fight each other. --- */

.reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur {
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up    { opacity: 0; transform: translateY(28px); }
.reveal-left  { opacity: 0; transform: translateX(-44px); }
.reveal-right { opacity: 0; transform: translateX(44px); }
.reveal-scale { opacity: 0; transform: scale(0.86); }
.reveal-blur  { opacity: 0; filter: blur(7px); }

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-scale.in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.reveal-blur.in-view {
  opacity: 1;
  filter: blur(0);
}

/* Hero entrance on page load */
.hero-badge, .hero h1, .hero p, .hero-buttons, .hero-visual {
  opacity: 0;
  animation: heroRise 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge   { animation-delay: 0.05s; }
.hero h1      { animation-delay: 0.15s; }
.hero p       { animation-delay: 0.3s; }
.hero-buttons { animation-delay: 0.45s; }
.hero-visual  { animation-delay: 0.2s; }

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

/* Nav gains depth once the page scrolls */
nav { transition: box-shadow 0.3s ease; }
nav.scrolled { box-shadow: 0 8px 24px rgba(44, 24, 16, 0.12); }

/* Logo micro-interaction */
.logo-icon { transition: transform 0.3s ease; }
.logo:hover .logo-icon { transform: scale(1.08) rotate(-3deg); }

/* Buttons feel pressable */
.btn-primary:hover, .btn-secondary:hover, .whatsapp-btn:hover, .view-btn:hover {
  transform: translateY(-3px);
}

.btn-primary:active, .btn-secondary:active, .whatsapp-btn:active,
.checkout-btn:active, .view-btn:active {
  transform: translateY(0) scale(0.97);
}

.view-btn { transition: transform 0.25s ease, background 0.25s ease; }

/* Add-to-cart confirmation pop */
@keyframes addPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}
.add-to-cart.added { animation: addPop 0.4s ease; }

/* Cart badge pulses when it changes */
@keyframes cartPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.cart-count.pulse { animation: cartPulse 0.45s ease; }

/* Product image responds to card hover */
.product-image { transition: transform 0.4s ease; }
.product-card:hover .product-image { transform: scale(1.04); }

/* Marching candy-stripe accent bars */
.shop::before, .faq-section::before {
  background-size: 200% 100%;
  animation: stripeMarch 4s linear infinite;
}
@keyframes stripeMarch {
  from { background-position-x: 0; }
  to   { background-position-x: 48px; }
}

/* Badge shimmer */
.product-badge { overflow: hidden; }
.product-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  animation: badgeShimmer 3.4s ease-in-out infinite;
}
@keyframes badgeShimmer {
  0%   { left: -150%; }
  55%  { left: 150%; }
  100% { left: 150%; }
}

/* Gentle promise-bar icon float */
.promise-item h3 {
  display: inline-block;
  animation: gentleBounce 4.5s ease-in-out infinite;
}
.promise-item:nth-child(2) h3 { animation-delay: 0.4s; }
.promise-item:nth-child(3) h3 { animation-delay: 0.8s; }
@keyframes gentleBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Keyboard focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--chili-red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--chili-red);
  color: white;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(44, 24, 16, 0.25);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.3s ease;
  z-index: 1500;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--chili-deep); }

@media (max-width: 768px) {
  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}
/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .promise-container { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; min-height: 250px; }
  .jar-container { transform: scale(0.75); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 400px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section-header h2 { font-size: 2.2rem; }
  .cart-sidebar { width: 100%; }
  .value-row { grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 0; }
  .value-index { font-size: 1.8rem; }
  .value-body h4 { font-size: 1.15rem; }
  .nav-links .dropdown-menu {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    transition: max-height 0.3s ease;
  }

  .nav-links .nav-dropdown.active .dropdown-menu {
    visibility: visible;
    max-height: 260px;
    padding: 4px 0 4px 16px;
  }

  .nav-links .dropdown-menu li a {
    white-space: normal;
  }

  .nav-links {
    overflow-x: hidden;
  }
  .nav-dropdown {
    -webkit-tap-highlight-color: transparent;
  }
  .why-grid { grid-template-columns: 1fr; }
}