:root {
  --forest: #163528;
  --forest-deep: #0f241b;
  --forest-soft: #1f4636;
  --gold: #c4a35a;
  --gold-soft: #d4b97a;
  --cream: #f8f5ee;
  --cream-dark: #efe8d8;
  --ink: #1a2e24;
  --muted: #5c6b63;
  --line: rgba(22, 53, 40, 0.12);
  --white: #ffffff;
  --danger: #b42318;
  --shadow: 0 12px 40px rgba(15, 36, 27, 0.08);
  --radius: 14px;
  --container: 1180px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(196, 163, 90, 0.18), transparent 55%),
    radial-gradient(900px 400px at 100% 0%, rgba(22, 53, 40, 0.08), transparent 50%),
    var(--cream);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest);
  margin: 0 0 .5rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Scrolling announcement bar — single horizontal line */
.announce-bar {
  background: var(--forest);
  color: rgba(248, 245, 238, 0.95);
  font-size: .82rem;
  line-height: 1.2;
  overflow: hidden;
  white-space: nowrap;
  height: 36px;
  border-bottom: 1px solid rgba(196, 163, 90, 0.25);
}
.announce-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: announce-scroll 28s linear infinite;
  will-change: transform;
}
.announce-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  flex-shrink: 0;
  gap: 2.25rem;
  padding-right: 2.25rem;
  height: 100%;
}
.announce-group span {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
  letter-spacing: .02em;
}
.announce-group span::before {
  content: '✦';
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
}
.announce-group strong {
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: .06em;
}
@keyframes announce-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.announce-bar:hover .announce-track {
  animation-play-state: paused;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  position: relative;
}
/* Desktop order: Logo · Nav · Actions (toggle hidden) */
.header-inner .brand { order: 1; }
.header-inner .nav { order: 2; }
.header-inner .header-actions { order: 3; }
.header-inner .nav-toggle { order: 0; }
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--forest);
  font-weight: 700;
}
.brand-tag {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav a {
  font-size: .95rem;
  color: var(--forest);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--forest);
  transition: .2s ease;
}
.icon-btn:hover { border-color: var(--gold); color: var(--forest-deep); }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  font-size: .68rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--forest);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 500;
  letter-spacing: .02em;
  cursor: pointer;
  transition: .2s ease;
  text-align: center;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover { background: var(--forest-soft); }
.btn-gold {
  background: var(--gold);
  color: var(--forest-deep);
}
.btn-gold:hover { background: var(--gold-soft); }
.btn-outline {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--cream); }
.btn-block { width: 100%; }
.btn-sm { padding: .55rem 1rem; font-size: .9rem; }

/* Alerts */
.flash-wrap { margin-top: 1rem; }
.alert {
  padding: .85rem 1rem;
  border-radius: 12px;
  margin-bottom: .75rem;
  border: 1px solid var(--line);
  background: var(--white);
}
.alert-success { border-color: rgba(22,53,40,.25); background: #edf5f0; color: var(--forest); }
.alert-error { border-color: rgba(180,35,24,.25); background: #fff1f0; color: var(--danger); }

/* Hero / Slider — full-bleed banner images managed from admin */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 0;
}
.hero.hero-banner-slider .slider {
  min-height: 0;
}
.slider {
  position: relative;
}
.slide {
  display: none;
  animation: fadeIn .5s ease;
}
.slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.slide-banner-link {
  display: block;
  line-height: 0;
  background: var(--cream);
}
.slide-banner-link img {
  width: 100%;
  height: auto;
  max-height: min(78vh, 720px);
  object-fit: cover;
  object-position: center;
}
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  gap: .45rem;
  z-index: 2;
}
.slider-dots button {
  width: 9px; height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.7);
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
  cursor: pointer;
}
.slider-dots button.active { background: var(--forest); width: 24px; }

.trust-strip {
  background: var(--white);
  border-block: 1px solid var(--line);
  padding: 1.25rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: center;
  color: var(--forest);
  font-size: .95rem;
}
.trust-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(196,163,90,.18);
  color: var(--forest);
  flex-shrink: 0;
}

/* Sections */
.section { padding: 4rem 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.section-head p { color: var(--muted); margin: 0; }
.link-more { color: var(--gold); font-weight: 500; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.category-card {
  text-align: center;
  padding: 1rem .5rem;
  transition: transform .25s ease;
}
.category-card:hover { transform: translateY(-4px); }
.category-card .thumb {
  width: 110px; height: 110px;
  margin: 0 auto .85rem;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.category-card .thumb img {
  width: 70%; height: 70%;
  object-fit: contain;
}
.category-card span {
  display: block;
  font-size: .92rem;
  color: var(--forest);
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1rem;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  background: var(--forest);
  color: var(--cream);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .55rem;
  border-radius: 999px;
}
.wishlist-btn-form {
  position: absolute;
  top: .85rem;
  right: .85rem;
  z-index: 3;
  margin: 0;
}
.wishlist-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  color: var(--forest);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: .2s ease;
}
.wishlist-btn:hover {
  border-color: var(--gold);
  color: #b42318;
  transform: scale(1.05);
}
.product-media {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: .85rem;
  background:
    radial-gradient(circle at 50% 40%, rgba(196,163,90,.15), transparent 60%),
    var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
}
.product-media img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: .35rem;
}
.stars { color: var(--gold); font-size: .9rem; letter-spacing: .05em; }
.stars span { color: var(--muted); font-size: .8rem; margin-left: .25rem; }
.price {
  font-weight: 600;
  color: var(--forest);
  font-size: 1.1rem;
  margin: .45rem 0 .75rem;
}
.price s {
  color: var(--muted);
  font-weight: 400;
  font-size: .9rem;
  margin-left: .35rem;
}
.variant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin: .6rem 0 .85rem;
}
.variant-pill {
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--forest);
  border-radius: 999px;
  padding: .28rem .65rem;
  font-size: .75rem;
  cursor: pointer;
}
.variant-pill.active,
.variant-pill:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.why-grid, .service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.why-card, .service-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.why-card .icon, .service-card .icon {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(22,53,40,.08);
  color: var(--forest);
  font-size: 1.4rem;
}
.fssai-band {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--forest), var(--forest-soft));
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.fssai-band strong { color: var(--gold-soft); font-family: var(--font-display); font-size: 1.4rem; }

/* Page shells */
.page-hero {
  padding: 2.5rem 0 1.5rem;
  background:
    linear-gradient(180deg, rgba(22,53,40,.06), transparent),
    var(--cream);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.breadcrumb { color: var(--muted); font-size: .9rem; margin-bottom: .75rem; }
.breadcrumb a:hover { color: var(--gold); }

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

/* Product page */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.gallery-main {
  aspect-ratio: 1;
  background: var(--cream-dark);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery-main img { width: 85%; height: 85%; object-fit: contain; }
.gallery-thumbs {
  display: flex;
  gap: .6rem;
  margin-top: .85rem;
  flex-wrap: wrap;
}
.gallery-thumbs button {
  width: 72px; height: 72px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: .35rem;
  cursor: pointer;
  overflow: hidden;
}
.gallery-thumbs button.active { border-color: var(--gold); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; }
.qty-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1rem 0 1.25rem;
}
.qty-row input {
  width: 80px;
  padding: .65rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
}
.action-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.specs-table th, .specs-table td {
  text-align: left;
  padding: .75rem .5rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.specs-table th { width: 35%; color: var(--muted); font-weight: 500; }

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: .35rem;
}
.input, select, textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
}
.input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(196,163,90,.45);
  border-color: var(--gold);
}
.field-error { color: var(--danger); font-size: .82rem; margin-top: .25rem; }
.payment-options {
  display: grid;
  gap: .65rem;
}
.payment-option {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  background: var(--cream);
}
.payment-option:has(input:checked) {
  border-color: var(--forest);
  background: #edf5f0;
}

/* Cart / checkout */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td {
  padding: 1rem .5rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
.cart-item {
  display: flex;
  gap: .85rem;
  align-items: center;
}
.cart-item img {
  width: 64px; height: 64px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 10px;
}
.summary-box .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: .65rem;
  color: var(--muted);
}
.summary-box .total {
  border-top: 1px solid var(--line);
  padding-top: .85rem;
  margin-top: .85rem;
  font-weight: 600;
  color: var(--forest);
  font-size: 1.15rem;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Auth */
.auth-wrap {
  max-width: 460px;
  margin: 2.5rem auto 4rem;
}
.auth-wrap h1 { text-align: center; margin-bottom: .35rem; }
.auth-wrap .sub { text-align: center; color: var(--muted); margin-bottom: 1.5rem; }
.auth-links { margin-top: 1rem; text-align: center; font-size: .92rem; color: var(--muted); }
.auth-links a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }

/* Account */
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th, .orders-table td {
  padding: .9rem .5rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.badge {
  display: inline-flex;
  padding: .2rem .55rem;
  border-radius: 999px;
  font-size: .75rem;
  background: rgba(22,53,40,.08);
  color: var(--forest);
  text-transform: capitalize;
}
.badge-paid, .badge-confirmed { background: #e8f5e9; }
.badge-pending { background: #fff8e1; }
.badge-cod { background: #e3f2fd; }

/* Footer */
.site-footer {
  background: var(--forest-deep);
  color: rgba(248,245,238,.88);
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding: 3.5rem 0 2.5rem;
}
.site-footer h4 {
  color: var(--cream);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.site-footer a { color: rgba(248,245,238,.8); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-brand img {
  width: 64px; height: 64px;
  object-fit: contain;
  margin-bottom: .75rem;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  padding: .35rem;
}
.footer-links { display: grid; gap: .55rem; }
.footer-bottom {
  border-top: 1px solid rgba(248,245,238,.12);
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(248,245,238,.65);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 36, 27, 0.55);
}
.modal.open { display: flex; }
.modal-card {
  width: min(920px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem;
  position: relative;
}
.modal-close {
  position: absolute;
  top: .75rem; right: .75rem;
  width: 36px; height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--cream);
  cursor: pointer;
  color: var(--forest);
}
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.prose { white-space: pre-wrap; color: var(--muted); line-height: 1.75; }
.page-lead {
  color: var(--muted);
  max-width: 52ch;
  margin-top: .5rem;
  font-size: 1.05rem;
}
.content-layout {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 1.5rem;
  align-items: start;
}
.content-block { margin-bottom: 1rem; }
.content-block h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  margin-bottom: .75rem;
  color: var(--forest);
}
.content-block p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: .75rem;
}
.content-block a { color: var(--forest); text-decoration: underline; text-underline-offset: 2px; }
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  color: var(--muted);
}
.check-list li {
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.55;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--gold);
}
.number-list {
  margin-left: 1.1rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: .55rem;
  line-height: 1.6;
}
.info-card { text-align: center; position: sticky; top: 5.5rem; }
.info-logo { width: 88px; height: 88px; object-fit: contain; margin: 0 auto .75rem; }
.info-card h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.4rem; }
.soft-rule { border: 0; border-top: 1px solid var(--line); margin: 1rem 0; }
.muted { color: var(--muted); }
.btn-sm { padding: .55rem 1rem; font-size: .85rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 1.5rem;
  align-items: start;
}
.contact-aside { display: flex; flex-direction: column; gap: 1rem; }
.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: .35rem;
  color: var(--forest);
}
.contact-card p { color: var(--muted); line-height: 1.55; }
.contact-card a { color: var(--forest); }

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  background: var(--white);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--forest);
  font-size: 1.05rem;
  position: relative;
  padding-right: 2.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.25rem;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  color: var(--muted);
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .content-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .info-card { position: static; }
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}

/* —— Responsive / Mobile —— */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .service-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .slide-grid, .product-layout, .checkout-layout, .modal-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
}

@media (max-width: 860px) {
  .announce-bar {
    font-size: .72rem;
    height: 34px;
  }
  .announce-group { gap: 1.5rem; padding-right: 1.5rem; }
  .announce-track { animation-duration: 22s; }

  .site-header { position: sticky; }
  .header-inner {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 60px;
    gap: .4rem;
  }

  /* Same line: Menu | Logo (center) | Wishlist + Cart */
  .header-inner .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    z-index: 2;
  }
  .header-inner .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    z-index: 1;
    flex: none;
  }
  .header-inner .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: .3rem;
    z-index: 2;
  }
  .header-inner .nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .header-account { display: none !important; }

  .brand img { width: 46px; height: 46px; }
  .brand-text { display: none; }
  .icon-btn { width: 40px; height: 40px; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(15, 36, 27, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem 0;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    z-index: 60;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: .95rem 1.25rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .nav a::after { display: none; }
  .nav a:last-child { border-bottom: 0; }
  .nav a.active {
    background: rgba(22, 53, 40, 0.06);
    color: var(--forest);
    font-weight: 600;
  }

  body.nav-open { overflow: hidden; }

  .container { width: min(100% - 1.25rem, var(--container)); }

  /* Mobile: show full hero banner image (no crop) */
  .hero.hero-banner-slider {
    background: var(--cream);
  }
  .slide-banner-link img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center top;
    display: block;
  }

  .section { padding: 2.25rem 0; }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
    margin-bottom: 1.35rem;
  }
  .section-head h2 { font-size: 1.75rem; }

  .category-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .category-card { padding: .65rem .35rem; }
  .category-card .thumb {
    width: 88px;
    height: 88px;
    margin-bottom: .55rem;
  }
  .category-card span { font-size: .82rem; line-height: 1.25; }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-inline: auto;
    gap: 1rem;
  }
  .product-card { padding: 1rem; }
  .variant-pill {
    min-height: 36px;
    padding: .4rem .75rem;
    font-size: .8rem;
  }

  .why-grid,
  .service-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Trust badges: centered 2×2 block mid-screen (mobile only) */
  .trust-strip {
    display: block;
    padding: 1.35rem 0;
  }
  .trust-strip .trust-grid,
  .trust-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.15rem .65rem;
    width: min(92%, 320px);
    margin: 0 auto;
    justify-items: center;
    align-items: start;
    text-align: center;
  }
  .trust-item {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: .4rem;
    width: 100%;
    max-width: 140px;
    margin: 0 auto;
    text-align: center;
    font-size: .8rem;
    line-height: 1.3;
    font-weight: 500;
  }
  .trust-item .trust-label {
    display: block;
    text-align: center;
  }
  .trust-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    font-size: .95rem;
  }
  .fssai-band {
    flex-direction: column;
    text-align: center;
    padding: 1.15rem;
  }

  .page-hero { padding: 1.5rem 0 1rem; }
  .page-hero h1 { font-size: 1.85rem; }
  .page-lead { font-size: .95rem; }

  .panel { padding: 1.15rem; border-radius: 12px; }

  .product-layout,
  .checkout-layout,
  .modal-grid,
  .content-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .gallery-main { border-radius: 12px; }
  .action-row {
    flex-direction: column;
    align-items: stretch;
  }
  .action-row .btn,
  .action-row form { width: 100%; }
  .qty-row { flex-wrap: wrap; }

  .cart-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cart-table thead { display: none; }
  .cart-table tbody,
  .cart-table tr,
  .cart-table td { display: block; width: 100%; }
  .cart-table tr {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: .85rem;
    background: var(--white);
  }
  .cart-table td {
    padding: .25rem 0;
    border: 0;
  }
  .cart-table td:first-child { font-weight: 600; color: var(--forest); }

  .btn {
    min-height: 46px;
    width: auto;
  }
  .btn-block { width: 100%; }
  .icon-btn {
    width: 44px;
    height: 44px;
  }

  .modal {
    padding: .75rem;
    align-items: flex-end;
  }
  .modal-card {
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 16px 16px 10px 10px;
    padding: 1.15rem;
  }
  .modal-close {
    top: .65rem;
    right: .65rem;
    width: 40px;
    height: 40px;
  }

  .footer-grid { gap: 1.5rem; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: .5rem;
  }

  .auth-card,
  .success-box {
    margin: 1.5rem auto;
    padding: 1.25rem;
  }

  input.input,
  select.input,
  textarea.input {
    font-size: 16px; /* prevents iOS zoom */
    min-height: 46px;
  }
  textarea.input { min-height: 110px; }
}

@media (max-width: 480px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .brand img { width: 42px; height: 42px; }
  .header-inner {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    min-height: 56px;
  }
  .section-head h2 { font-size: 1.55rem; }
  .why-card, .service-card { padding: 1.15rem .85rem; }
  .icon-btn { width: 38px; height: 38px; }
}

/* —— Scroll reveal animations —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .7s cubic-bezier(.22, 1, .36, 1),
    transform .7s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero.reveal {
  transform: translateY(16px) scale(.985);
}
.hero.reveal.is-visible {
  transform: translateY(0) scale(1);
}
.category-card.reveal,
.product-card.reveal,
.why-card.reveal,
.service-card.reveal {
  transform: translateY(22px);
}
@media (prefers-reduced-motion: reduce) {
  .announce-track { animation: none; }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
