:root {
  --bg: #f2e5cf;
  --text: #2e1623;
  --muted: #705462;
  --brand: #7c001b;
  --brand-dark: #570013;
  --gold: #ffcb4b;
  --card: #fff;
  --line: #e8d7bb;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, "Noto Sans Devanagari", sans-serif;
  background: linear-gradient(180deg, #f6ebd9 0%, var(--bg) 100%);
  color: var(--text);
}

.container { width: min(1160px, 92%); margin: 0 auto; }
.section { padding: 56px 0; }
h1, h2, h3, h4 { margin: 0 0 10px; line-height: 1.2; }
p { margin: 0 0 10px; color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-bottom: 1px solid rgba(255, 209, 122, 0.24);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.brand-logo {
  width: 190px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
}
.nav {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.nav a {
  color: #ffdf98;
  text-decoration: none;
  font-weight: 600;
}
.nav-actions { display: flex; }

.btn {
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary {
  background: linear-gradient(135deg, #ffcb4b 0%, #ffad1c 100%);
  color: #57131a;
}
.btn-outline {
  background: #fff;
  border: 1px solid #dfc39f;
  color: #6b1120;
}
.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 24px;
  color: #ffd990;
}

.hero {
  background: radial-gradient(circle at 50% -5%, rgba(189, 29, 58, 0.5), transparent 38%),
    linear-gradient(180deg, #86001d 0%, #98001f 100%);
  color: #fff;
  padding: 64px 0 26px;
  border-bottom-left-radius: 42% 11%;
  border-bottom-right-radius: 42% 11%;
}
.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 18px;
}
.hero-title-logo {
  width: min(420px, 90%);
  height: auto;
  display: block;
  margin: 12px auto 4px;
  filter: brightness(0) invert(1);
}
.hero-tagline {
  max-width: 560px;
  margin: 0 auto 10px;
  color: #ffe2a3;
  font-weight: 700;
}
.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 202, 74, 0.17);
  border: 1px solid rgba(255, 202, 74, 0.35);
  color: #ffd981;
  font-weight: 700;
  font-size: 13px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  color: #fff7e8;
}
.hero h1 span { display: block; color: var(--gold); }
.hero-subtext { max-width: 640px; margin: 10px auto 0; color: #f4dfbf; }
.hero-actions { margin-top: 14px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.hero-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: -34px;
}
.hero-card {
  background: #fff;
  border-radius: 14px;
  padding: 8px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(28, 5, 14, 0.24);
  text-decoration: none;
}
.hero-card img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto 6px;
}
.hero-card img.gift-logo {
  object-fit: contain;
  background: #f6efe1;
  padding: 4px;
}
.hero-card h3 {
  margin: 3px 0 0;
  font-size: 0.9rem;
  color: #3b1320;
}
.hero-card p {
  margin: 2px 0 0;
  font-size: 0.72rem;
  color: #705462;
}
.hero-card.view-all {
  display: grid;
  place-content: center;
  color: #3b1320;
}
.hero-card.view-all h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.strip {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.ticker {
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 28px;
  min-width: max-content;
  animation: tickerMove 22s linear infinite;
  font-weight: 700;
  color: #6f0019;
}
.ticker-track span::before {
  content: "✦";
  margin-right: 10px;
  color: #b99449;
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.promo-strip {
  padding-top: 26px;
}
.promo-title {
  text-align: center;
  color: #6f0019;
  margin-bottom: 16px;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.promo-card {
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(79, 27, 17, 0.15);
}
.promo-card img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
}
.promo-card p {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #5d1b28;
}
.promo-card h3 {
  margin: 0 0 10px;
}
.promo-card a {
  text-decoration: none;
  background: #8d0b24;
  color: #fff8e7;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 700;
}
.promo-card.whole { background: #86c143; }
.promo-card.mint { background: #f3cb47; }
.promo-card.spicy { background: #f48830; }

.eyebrow {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: #ffe8b7;
  color: #692130;
  font-weight: 700;
  font-size: 12px;
}

.product-grid, .gallery-grid, .footer-grid {
  display: grid;
  gap: 14px;
}
.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 14px; }
.gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 14px; }

.product-grid article, .gallery-grid article {
  background: #fff;
  border: 1px solid #ecdabc;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 22px rgba(77, 34, 23, 0.08);
}
.product-grid img, .gallery-grid img {
  width: 100%;
  height: 170px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 8px;
}
.product-grid article:last-child img { object-fit: contain; background: #f5ebd7; }
.product-grid strong { color: #5d1020; }

.offer {
  background: linear-gradient(120deg, #ffe2a7, #fff4d8);
  border-top: 1px solid #ecd4a8;
  border-bottom: 1px solid #ecd4a8;
}
.offer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.counter {
  font-weight: 800;
  color: #6a0a1f;
  background: #fff8ea;
  border: 1px solid #e8c796;
  border-radius: 10px;
  padding: 10px 12px;
}

.story {
  max-width: 860px;
  text-align: center;
}
.story-image {
  width: min(460px, 100%);
  height: 260px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 14px;
  margin: 8px auto 12px;
  display: block;
  box-shadow: 0 10px 24px rgba(80, 30, 18, 0.14);
}
.contact-actions { display: flex; justify-content: center; gap: 10px; margin-top: 8px; flex-wrap: wrap; }

.about-premium {
  background: radial-gradient(circle at 12% -10%, rgba(189, 29, 58, 0.5), transparent 42%),
    linear-gradient(180deg, #7c001b 0%, #560013 100%);
  color: #f7dfb6;
}
.about-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: #fff;
}
.about-title::after {
  content: "";
  display: block;
  width: 68px;
  height: 4px;
  border-radius: 4px;
  background: var(--gold);
  margin-top: 10px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  margin-top: 26px;
}
.about-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.about-lead {
  margin: 20px 0 18px;
  color: #f0d3a6;
  line-height: 1.6;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 26px;
}
.feature {
  text-align: center;
}
.feature-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--gold);
  background: rgba(255, 203, 75, 0.12);
  border: 1px solid rgba(255, 203, 75, 0.42);
}
.feature-icon svg {
  width: 32px;
  height: 32px;
}
.feature h4 {
  color: #fff;
  margin-bottom: 6px;
}
.feature p {
  color: #e7cca1;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.locator-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #6f0019;
}
.locator-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: var(--gold);
  margin-top: 8px;
}
.locator-subtext {
  margin: 8px 0 18px;
  color: var(--muted);
}
.locator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.map-wrap {
  position: relative;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(77, 34, 23, 0.14);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.store-photo {
  margin: 0;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(77, 34, 23, 0.14);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.store-photo img {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  object-fit: cover;
  display: block;
}
.store-photo figcaption {
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
}
.locator-actions {
  margin-top: 16px;
}

.site-footer {
  background: linear-gradient(180deg, #6f0018 0%, #530012 100%);
  padding: 44px 0 18px;
  margin-top: 30px;
}
.footer-grid {
  grid-template-columns: 2fr 1fr 1fr;
}
.site-footer h3, .site-footer h4, .site-footer p, .site-footer a, .site-footer li {
  color: #f9d78d;
}
.site-footer a { text-decoration: none; }
.site-footer ul { margin: 0; padding-left: 18px; }
.copyright {
  margin-top: 16px;
  text-align: center;
  color: #f4cc77;
}

@media (max-width: 980px) {
  .nav-actions { display: none; }
  .hero-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .promo-grid { grid-template-columns: 1fr; }
  .product-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 760px) {
  .menu-btn { display: block; }
  .brand-logo { width: 154px; height: 44px; }
  .nav-right { margin-left: 0; }
  .nav {
    display: none;
    position: absolute;
    top: 62px;
    right: 4%;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    min-width: 170px;
    flex-direction: column;
  }
  .nav.open { display: flex; }
  .nav.open a { color: #631225; }
  .hero {
    border-bottom-left-radius: 22% 6%;
    border-bottom-right-radius: 22% 6%;
  }
  .hero-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 0; gap: 8px; }
  .hero-card { padding: 7px; border-radius: 12px; }
  .hero-card h3 { font-size: 0.82rem; }
  .hero-card p { font-size: 0.68rem; }
  .ticker-track { gap: 20px; animation-duration: 16s; }
  .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .product-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 74%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scrollbar-width: thin;
  }
  .product-grid article {
    scroll-snap-align: start;
  }
  .section { padding: 42px 0; }
  .locator-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 300px; }
  .store-photo { height: 300px; }
  .about-features { gap: 24px 18px; }
}
