/* =========================================================
   ANAMAYAM FOODS — Brand tokens
   Forest green + wheat gold + kraft brown + warm cream
   ========================================================= */
:root {
  --forest: #1B4332;
  --forest-dark: #10291E;
  --leaf: #40916C;
  --leaf-light: #74C69D;
  --gold: #D4A017;
  --gold-light: #F0C948;
  --kraft: #8B5E34;
  --kraft-dark: #3E2723;
  --cream: #FAF3E7;
  --cream-deep: #F1E6D2;
  --ink: #2B2318;
  --white: #FFFFFF;
  --danger: #B3261E;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 24px rgba(27, 67, 50, 0.12);
  --shadow-sm: 0 2px 8px rgba(43, 35, 24, 0.08);
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest-dark);
  margin: 0 0 0.5em;
  line-height: 1.2;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-dark); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--kraft-dark); }
.btn-gold:hover { background: var(--gold-light); box-shadow: var(--shadow); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1EBE5A; box-shadow: var(--shadow); }
.btn-outline { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ---------- Utility bar (row 1) — marquee offer ---------- */
.util-bar {
  background: var(--forest-dark);
  color: var(--cream);
  font-size: 13.5px;
}
.util-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: nowrap;
  gap: 12px;
}
.util-left { flex: 1; overflow: hidden; min-width: 0; }
.marquee-wrap { overflow: hidden; white-space: nowrap; position: relative; width: 100%; }
.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 18s linear infinite;
  padding-left: 100%;
}
.marquee-track span { color: var(--gold-light); font-weight: 600; padding-right: 60px; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.util-right { flex-shrink: 0; }

/* ---------- Splash screen (logo intro, ~1s on load) ---------- */
.splash-screen {
  position: fixed;
  inset: 0;
  background: var(--forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: splash-fade 1.1s ease forwards;
}
.splash-screen img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  animation: splash-pop .5s ease;
}
@keyframes splash-pop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes splash-fade {
  0% { opacity: 1; visibility: visible; }
  85% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}

/* ---------- Language dropdown (flag-style) ---------- */
.lang-dropdown { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: 6px;
  background: var(--white); border: 1.5px solid var(--cream-deep); border-radius: 999px;
  padding: 7px 14px; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--ink);
  font-family: var(--font-body);
}
.lang-current .flag { font-size: 15px; }
.lang-panel {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border-radius: 10px; box-shadow: var(--shadow);
  min-width: 170px; overflow: hidden; z-index: 200;
  display: none; border: 1px solid var(--cream-deep);
}
.lang-panel.open { display: block; }
.lang-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; font-size: 14px; color: var(--ink); font-weight: 500;
}
.lang-panel a:hover { background: var(--cream-deep); }
.lang-panel a .code { font-size: 11px; color: #9b9182; font-weight: 700; width: 20px; }
.lang-panel a.current { background: var(--cream-deep); font-weight: 700; }

/* ---------- Mid bar: logo, search, account (row 2) ---------- */
.mid-bar { background: var(--cream); border-bottom: 1px solid var(--cream-deep); }
.mid-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.search-box {
  flex: 1;
  max-width: 460px;
  display: flex;
  border: 2px solid var(--forest);
  border-radius: 999px;
  overflow: hidden;
}
.search-box input {
  flex: 1;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  outline: none;
  font-family: var(--font-body);
}
.search-box button {
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-size: 15px;
}
.account-actions { display: flex; align-items: center; gap: 18px; }
.cart-icon {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--forest-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.cart-label { font-size: 13.5px; }
.cart-badge {
  position: absolute;
  top: -10px;
  left: 8px;
  background: var(--gold);
  color: var(--kraft-dark);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Header nav bar (row 3) ---------- */
.site-header {
  background: var(--forest);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.header-inner { display: flex; align-items: center; padding: 0; }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--forest-dark);
}
.brand-tag {
  font-size: 12px;
  color: var(--kraft);
  letter-spacing: .3px;
}
.main-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  width: 100%;
}
.main-nav a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--cream);
  padding: 15px 18px;
  display: inline-block;
}
.main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,0.1); color: var(--gold-light); }
.main-nav a.nav-whatsapp {
  margin-left: auto;
  background: #25D366;
  color: #fff;
  border-radius: 6px;
  padding: 9px 18px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.nav-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--cream); cursor: pointer; padding: 12px 20px; }

/* ---------- Hero carousel (shows full banner image, never cropped) ---------- */
.hero-carousel {
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
}
.hero-track {
  display: flex;
  transition: transform .6s ease;
}
.hero-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 1717 / 916;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slide img.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hero-slide-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 20px 26px;
  text-align: center;
  color: var(--cream);
  background: linear-gradient(to top, rgba(16,41,30,0.85) 0%, rgba(16,41,30,0) 100%);
}
.hero-slide-content h1 { color: var(--white); font-size: 28px; margin-bottom: 6px; }
.hero-slide-content p { font-size: 14.5px; color: var(--cream-deep); margin-bottom: 14px; }
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(27,67,50,0.55);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
}
.hero-nav-btn:hover { background: rgba(27,67,50,0.85); }
.hero-nav-prev { left: 14px; }
.hero-nav-next { right: 14px; }
.hero-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 5; }
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,0.55); cursor: pointer; padding: 0;
}
.hero-dots button.active { background: var(--gold); }

/* ---------- Shop by category ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,41,30,0.75) 0%, rgba(16,41,30,0.1) 60%);
}
.category-card span {
  position: absolute; bottom: 16px; left: 18px; right: 18px;
  color: #fff; font-family: var(--font-display); font-size: 19px; font-weight: 700; z-index: 2;
}

/* ---------- Offer banners (special offers section) ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.offer-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/7;
  box-shadow: var(--shadow-sm);
  display: block;
}
.offer-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.offer-banner:hover img { transform: scale(1.04); }
.offer-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,41,30,0.8) 0%, transparent 55%); }
.offer-banner .offer-caption {
  position: absolute; bottom: 18px; left: 20px; right: 20px; z-index: 2;
  color: #fff; display: flex; justify-content: space-between; align-items: flex-end;
}
.offer-banner .offer-caption h3 { color: #fff; font-size: 20px; margin: 0; }
.offer-banner .offer-caption .btn { flex-shrink: 0; }

/* ---------- Combo offers (improvised poster panel + product cards) ---------- */
.combo-panel-section { padding-top: 20px; padding-bottom: 20px; }
.combo-panel {
  position: relative;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  border-radius: 22px;
  padding: 46px 34px 40px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.combo-panel-decor {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 6% 12%, rgba(212,160,23,0.20) 0%, transparent 40%),
                     radial-gradient(circle at 95% 85%, rgba(116,198,157,0.18) 0%, transparent 45%),
                     radial-gradient(circle at 90% 10%, rgba(240,201,72,0.12) 0%, transparent 35%);
}
.combo-panel-head { position: relative; text-align: center; max-width: 640px; margin: 0 auto 34px; }
.combo-panel-tag {
  display: inline-block; background: var(--gold); color: var(--forest-dark);
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 14px;
}
.combo-panel-head h2 { color: #fff; font-size: 30px; margin: 0 0 8px; }
.combo-panel-head p { color: #d9ead9; font-size: 15px; margin: 0; }
.combo-product-grid { position: relative; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.combo-card { border: 2px solid var(--gold); }
.combo-ribbon {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--forest-dark); font-size: 11px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px; box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.combo-save-chip {
  display: inline-block; align-self: flex-start;
  background: rgba(64,145,108,0.12); color: var(--leaf);
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 6px; margin-bottom: 14px;
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 22px; font-weight: 700; font-size: 15.5px; color: var(--forest-dark);
  display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body);
}
.faq-question .icon { transition: transform .2s ease; color: var(--gold); font-size: 18px; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 22px; color: #4a4231; font-size: 14.5px; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 22px 20px; }

/* ---------- Grain divider (signature element) ---------- */
.grain-divider {
  height: 26px;
  background-repeat: repeat-x;
  background-size: 26px 26px;
  background-image: radial-gradient(circle at 5px 13px, var(--gold) 2.4px, transparent 2.6px),
                     radial-gradient(circle at 18px 6px, var(--leaf) 2px, transparent 2.2px),
                     radial-gradient(circle at 22px 20px, var(--kraft) 1.8px, transparent 2px);
  background-color: var(--cream);
}

/* ---------- Section ---------- */
.section { padding: 64px 0; }
.section-title {
  text-align: center;
  margin-bottom: 42px;
}
.section-title h2 { font-size: 32px; }
.section-title .sub { color: var(--kraft); font-size: 15px; max-width: 640px; margin: 10px auto 0; line-height: 1.7; }
.section-alt { background: var(--cream-deep); }

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--leaf);
  transition: transform .2s ease;
}
.feature-card:hover { transform: translateY(-6px); }
.feature-icon {
  font-size: 34px;
  margin-bottom: 12px;
}
.feature-card h3 { font-size: 17px; margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: #5b5142; margin: 0; }

/* ---------- Product grid & cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 26px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-thumb {
  aspect-ratio: 1/1;
  background: var(--cream-deep);
  overflow: hidden;
  position: relative;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--kraft-dark);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.product-discount {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--forest);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.product-info { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.product-info h3 { font-size: 17px; margin-bottom: 4px; }
.product-weight { font-size: 12.5px; color: var(--kraft); margin-bottom: 8px; }
.product-rating { font-size: 13px; color: var(--gold); margin-bottom: 8px; }
.product-rating .count { color: #8a8071; margin-left: 4px; }
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 6px 0 14px;
}
.price-now { font-size: 20px; font-weight: 700; color: var(--forest-dark); }
.price-mrp { font-size: 14px; color: #9b9182; text-decoration: line-through; }
.badges-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--leaf);
  margin-bottom: 14px;
}
.badges-row span {
  background: rgba(64,145,108,0.1);
  padding: 3px 8px;
  border-radius: 6px;
}
.product-actions { display: flex; gap: 8px; margin-top: auto; }
.product-actions .btn { flex: 1; padding: 10px 12px; font-size: 13.5px; }

/* ---------- Product detail ---------- */
.pd-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.pd-gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  aspect-ratio: 1/1;
}
.pd-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pd-thumbs img {
  width: 70px; height: 70px; object-fit: cover; border-radius: var(--radius-sm);
  cursor: pointer; border: 2px solid transparent; background: var(--white);
}
.pd-thumbs img.active { border-color: var(--gold); }
.pd-title { font-size: 30px; margin-bottom: 6px; }
.pd-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 14px; }
.pd-rating .stars { color: var(--gold); }
.pd-price-block {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 20px;
}
.pd-price-row { display: flex; align-items: baseline; gap: 12px; }
.pd-price-now { font-size: 30px; font-weight: 700; color: var(--forest-dark); }
.pd-price-mrp { font-size: 16px; color: #9b9182; text-decoration: line-through; }
.pd-discount { color: var(--danger); font-weight: 700; font-size: 15px; }
.pd-short-desc { color: #5b5142; margin-bottom: 18px; }
.pd-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.pd-badges span {
  display: flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--cream-deep);
  padding: 8px 14px; border-radius: var(--radius-sm); font-size: 13px; color: var(--forest);
  box-shadow: var(--shadow-sm);
}
.qty-selector {
  display: inline-flex; align-items: center; border: 2px solid var(--cream-deep);
  border-radius: 999px; overflow: hidden; margin-right: 14px;
}
.qty-selector button {
  background: var(--cream-deep); border: none; width: 38px; height: 42px;
  font-size: 18px; cursor: pointer; color: var(--forest-dark);
}
.qty-selector input {
  width: 46px; border: none; text-align: center; font-size: 15px; font-weight: 600;
  -moz-appearance: textfield;
}
.pd-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.pd-tabs {
  display: flex; gap: 6px; border-bottom: 2px solid var(--cream-deep); margin: 40px 0 20px;
  flex-wrap: wrap;
}
.pd-tab-btn {
  padding: 10px 18px; font-weight: 600; font-size: 14.5px; color: #8a8071;
  border-bottom: 3px solid transparent; cursor: pointer; background: none; border-top: none; border-left: none; border-right: none;
}
.pd-tab-btn.active { color: var(--forest-dark); border-color: var(--gold); }
.pd-tab-content { display: none; color: #4a4231; font-size: 15px; line-height: 1.8; white-space: pre-line; }
.pd-tab-content.active { display: block; }

/* ---------- Reviews ---------- */
.review-summary {
  display: flex; align-items: center; gap: 24px; background: var(--white);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 28px;
}
.review-summary .big-rating { font-size: 46px; font-weight: 700; color: var(--forest-dark); font-family: var(--font-display); }
.review-item {
  background: var(--white); border-radius: var(--radius-sm); padding: 18px 20px;
  margin-bottom: 14px; box-shadow: var(--shadow-sm);
}
.review-item .name { font-weight: 700; }
.review-item .stars { color: var(--gold); font-size: 14px; }
.review-item .date { font-size: 12px; color: #9b9182; }
.review-form {
  background: var(--cream-deep); padding: 26px; border-radius: var(--radius); margin-top: 30px;
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 11px 14px; border: 1.5px solid #ddd3bf; border-radius: var(--radius-sm);
  font-size: 14.5px; font-family: var(--font-body); background: var(--white);
}
.star-input { display: flex; gap: 4px; font-size: 26px; cursor: pointer; color: #ddd3bf; }
.star-input span.active { color: var(--gold); }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm); position: relative;
}
.testimonial-card .quote-mark { font-family: var(--font-display); font-size: 50px; color: var(--gold); line-height: 0; position: absolute; top: 22px; right: 20px; opacity: .35; }
.testimonial-card .stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; }
.testimonial-card p.text { font-style: italic; color: #4a4231; margin-bottom: 14px; }
.testimonial-card .name { font-weight: 700; font-size: 14px; }

/* ---------- Ingredients band ---------- */
.ingredients-band { background: var(--forest); color: var(--cream); padding: 50px 0; }
.ingredients-band h2 { color: var(--white); }
.ingredient-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; }
.ingredient-chips span {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(212,160,23,0.5);
  color: var(--gold-light); padding: 7px 16px; border-radius: 999px; font-size: 13.5px;
}

/* ---------- Product options (variants) ---------- */
.pd-options { margin: 4px 0 18px; }
.pd-options-label { font-size: 13px; font-weight: 600; color: var(--kraft); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 8px; }
.pd-options-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pd-option-btn {
  border: 1.5px solid var(--cream-deep); background: var(--white); color: var(--forest-dark);
  padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all .15s ease;
}
.pd-option-btn:hover { border-color: var(--gold); }
.pd-option-btn.active { background: var(--forest); border-color: var(--forest); color: var(--white); }

/* ---------- Cart page ---------- */
.cart-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.cart-table th, .cart-table td { padding: 16px; text-align: left; border-bottom: 1px solid var(--cream-deep); }
.cart-table th { background: var(--cream-deep); font-size: 13px; text-transform: uppercase; letter-spacing: .4px; }
.cart-item-row { display: flex; align-items: center; gap: 14px; }
.cart-item-row img { flex: none; width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-item-info { min-width: 0; }
.cart-item-name { font-weight: 600; word-break: break-word; }
.cart-item-weight { font-size: 12.5px; color: var(--kraft); margin-top: 2px; }
.cart-summary { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); max-width: 380px; margin-left: auto; margin-top: 24px; }
.cart-summary .row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 15px; }
.cart-summary .row.total { font-weight: 700; font-size: 19px; border-top: 1px solid var(--cream-deep); padding-top: 12px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--kraft-dark); color: #e8ddc9; padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; padding-bottom: 40px; }
.footer-grid h4 { color: var(--gold-light); font-size: 15px; margin-bottom: 16px; }
.footer-grid a { display: block; color: #cfc2a5; font-size: 14px; margin-bottom: 10px; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; }
.footer-brand span { font-family: var(--font-display); font-size: 19px; color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding: 18px 0; font-size: 13px; color: #b5a988; }
.social-icons { display: flex; gap: 12px; margin-top: 6px; }
.social-icons a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; margin-bottom: 0;
}

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: #25D366; color: #fff; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Alerts ---------- */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14.5px; }
.alert-success { background: #e2f3e9; color: #1B4332; border: 1px solid #b7dfc6; }
.alert-error { background: #fbe6e4; color: #8a231d; border: 1px solid #f0bab4; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 13.5px; color: var(--kraft); padding: 18px 0; }
.breadcrumb a { color: var(--forest); font-weight: 600; }

/* ---------- Responsive ---------- */
/* ---------- Cart flash / added-to-cart banner ---------- */
.cart-flash {
  background: var(--cream-deep);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.cart-flash .msg { font-weight: 700; color: var(--forest-dark); font-size: 16px; }
.cart-flash .actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .combo-product-grid { grid-template-columns: 1fr 1fr; }
  .combo-panel { padding: 32px 20px 28px; border-radius: 16px; }
  .combo-panel-head h2 { font-size: 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pd-wrap { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
}
@media (max-width: 720px) {
  .container { padding: 0 16px; }

  /* Header polish */
  .util-bar-inner { padding-top: 6px; padding-bottom: 6px; }
  .util-offer, .marquee-track span { font-size: 12.5px; }
  .mid-bar-inner { flex-direction: column; align-items: stretch; padding: 10px 0; gap: 10px; }
  .search-box { max-width: 100%; order: 3; }
  .search-box input { padding: 8px 16px; }
  .account-actions { justify-content: space-between; }
  .brand img { width: 42px; height: 42px; }
  .brand-name { font-size: 18px; }
  .brand-tag { font-size: 10.5px; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--forest); padding: 10px 20px 16px; box-shadow: var(--shadow); z-index: 50;
  }
  .main-nav a { padding: 10px 0; }
  .main-nav a.nav-whatsapp { margin-left: 0; margin-top: 4px; text-align: center; }
  .header-inner { padding: 0; }

  /* Section & grid gap tightening */
  .section { padding: 30px 0; }
  .section-title { margin-bottom: 22px; }
  .section-title h2 { font-size: 24px; }
  .grain-divider { height: 18px; background-size: 20px 20px; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-grid { gap: 14px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card { padding: 18px 12px; }
  .offer-grid { gap: 14px; }
  .testimonial-grid { gap: 14px; }
  .ingredients-band { padding: 32px 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; gap: 22px; padding-bottom: 26px; }
  .review-summary { flex-direction: column; text-align: center; }

  /* Hero */
  .hero-slide-content { padding: 14px 14px 16px; }
  .hero-slide-content h1 { font-size: 20px; margin-bottom: 4px; }
  .hero-slide-content p { font-size: 12.5px; margin-bottom: 10px; }
  .hero-nav-btn { width: 32px; height: 32px; font-size: 16px; }

  /* Language dropdown fits smaller screens */
  .lang-panel { right: -10px; }
}

/* ---------- Cart table: mobile card layout (fixes name/price overlap) ---------- */
@media (max-width: 640px) {
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table { box-shadow: none; background: transparent; }
  .cart-table tr {
    background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
    padding: 14px 16px; margin-bottom: 14px;
  }
  .cart-table td { padding: 8px 0; border-bottom: none; }
  .cart-table td[data-label]:not([data-label=""])::before {
    content: attr(data-label);
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--kraft);
    margin-bottom: 4px;
  }
  .cart-table td:first-child { padding-top: 0; }
  .cart-table td:last-child { padding-bottom: 0; text-align: right; }
  .cart-item-row { align-items: flex-start; }
  .cart-summary { max-width: 100%; }
}
