/* =========================
   GLOBAL
========================= */

/* ====================================================
   SUNIL CHOUDARY MASALA — Design tokens
   ==================================================== */
:root {
  /* Color: actual masala pigments, not stock spice-site gradient */
  --brick: #7A2E1D;        /* deep tandoor brick — dark sections */
  --chilli: #C1440E;       /* burnt paprika red — primary accent */
  --chilli-dark: #9C3409;
  --turmeric: #F4B941;     /* turmeric gold — sparing highlight */
  --olive: #3F4630;        /* dried curry-leaf — secondary/grounding */
  --cream: #EFE6D3;        /* raw turmeric-dusted cream — bg */
  --cream-deep: #E3D6B8;
  --ink: #1C1410;          /* coffee-bean near-black — body text */
  --ink-soft: #4A3F37;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --container: 1180px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: white;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* subtle grain so flat color fields don't look like default gradients */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ====================== TYPE HELPERS ====================== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chilli);
  margin: 0 0 14px;
  display: block;
}
.eyebrow--dark { color: var(--brick); }
.eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-title--light { color: var(--cream); }

.section-desc {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 26px;
}
.section-desc--light { color: #d8c9b3; }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: left; }
.section-head--row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head--row .section-title { margin-bottom: 0; }

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn--primary {
  background: var(--chilli);
  color: var(--cream);
}
.btn--primary:hover { background: var(--chilli-dark); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn--ghost .arrow { transition: transform .3s var(--ease); }
.btn--ghost:hover .arrow { transform: translateY(3px); }

.btn--light {
  background: var(--cream);
  color: var(--brick);
}
.btn--light:hover { background: var(--turmeric); transform: translateY(-2px); }

.btn--full { width: 100%; justify-content: center; }

/* ====================== HEADER ====================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(239, 230, 211, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28,20,16,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--chilli); }
.brand-mark { display: flex; color: var(--chilli); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; color: var(--ink); }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.brand-sub { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.15em; color: var(--ink-soft); }

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 1.5px;
  background: var(--chilli);
  transition: width .3s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  background: transparent;
  border: none;
  color: var(--ink);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background .2s var(--ease);
}
.icon-btn:hover { background: rgba(28,20,16,0.07); }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--chilli);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: transparent;
  border: none;
}
.menu-toggle span {
  width: 20px; height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====================== HERO ====================== */
.hero {
  position: relative;
  background: var(--brick);
  color: var(--cream);
  padding: 90px 0 0;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-spill {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.hero-spill--1 { width: 420px; height: 420px; background: var(--chilli); top: -160px; right: -100px; }
.hero-spill--2 { width: 280px; height: 280px; background: var(--turmeric); opacity: 0.18; bottom: -80px; left: -60px; }
.hero-spill--3 { width: 200px; height: 200px; background: var(--olive); opacity: 0.35; top: 40%; right: 20%; }

.hero-inner { position: relative; z-index: 1; padding-bottom: 90px; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
}
.hero-title .line { display: block; }
.hero-title .line--accent {
  font-style: italic;
  font-weight: 500;
  color: var(--turmeric);
}

.hero-desc {
  max-width: 46ch;
  font-size: 18px;
  color: #e8dac4;
  margin: 0 0 36px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero .btn--ghost { border-color: rgba(239,230,211,0.4); color: var(--cream); }
.hero .btn--ghost:hover { background: var(--cream); color: var(--brick); }

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(239,230,211,0.18);
  padding-top: 28px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--turmeric); }
.stat-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: #d3c3aa; text-transform: uppercase; }

.hero-pile {
  position: relative;
  z-index: 1;
  color: var(--cream);
  line-height: 0;
  margin-top: -2px;
}
.pile-svg { width: 100%; height: 90px; display: block; }

/* ====================== MARQUEE ====================== */
.marquee {
  background: var(--chilli);
  color: var(--cream);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 18px;
  white-space: nowrap;
  width: max-content;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  animation: scroll-left 26s linear infinite;
}
.marquee-track span { opacity: 0.92; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====================== DABBA (signature) ====================== */
.dabba-section {
  background: var(--cream);
  padding: 100px 0 110px;
}
.dabba-section .section-head { margin: 0 auto 64px; text-align: center; }
.dabba-section .eyebrow { text-align: center; }
.dabba-section .section-desc { margin-inline: auto; }

.dabba {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.dabba-ring {
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 2px solid var(--cream-deep);
  z-index: 0;
}
.dabba-wells {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: var(--olive);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 60px -25px rgba(28,20,16,0.45), inset 0 0 0 6px rgba(0,0,0,0.08);
}
.well {
  aspect-ratio: 1;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: inset 0 4px 10px rgba(0,0,0,0.25), 0 2px 0 rgba(255,255,255,0.08);
}
.well:hover { transform: translateY(-4px) scale(1.03); }
.well.is-active { box-shadow: 0 0 0 3px var(--turmeric), inset 0 4px 10px rgba(0,0,0,0.25); transform: translateY(-4px) scale(1.05); }
.well-swatch { width: 100%; height: 100%; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.well-label {
  position: absolute;
  bottom: -26px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  white-space: nowrap;
}

.dabba-detail {
  margin-top: 70px;
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  min-height: 150px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  transition: background .3s var(--ease);
}
.dabba-hint { font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); margin: 0 auto; }
.detail-swatch {
  width: 64px; height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset 0 4px 8px rgba(0,0,0,0.2);
}
.detail-body { flex: 1; min-width: 220px; }
.detail-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin: 0 0 4px; }
.detail-hindi { font-size: 14px; color: var(--chilli); font-weight: 600; margin: 0 0 10px; }
.detail-desc { font-size: 14.5px; color: var(--ink-soft); margin: 0; max-width: 56ch; }
.detail-meta { display: flex; gap: 22px; flex-shrink: 0; }
.detail-meta div { display: flex; flex-direction: column; gap: 3px; }
.detail-meta-label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.detail-meta-value { font-weight: 600; font-size: 14px; }
.heat-bar { display: flex; gap: 3px; }
.heat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cream); border: 1px solid var(--chilli); }
.heat-dot.is-filled { background: var(--chilli); }

/* ====================== PURITY ====================== */
.purity { background: var(--brick); color: var(--cream); padding: 110px 0; }
.purity-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.stamp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stamp-card {
  background: rgba(239,230,211,0.06);
  border: 1px solid rgba(239,230,211,0.14);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.stamp-card:hover { background: rgba(239,230,211,0.1); transform: translateY(-3px); }
.stamp-icon {
  display: inline-flex;
  color: var(--turmeric);
  margin-bottom: 14px;
}
.stamp-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.stamp-card p { font-size: 14px; color: #d8c9b3; margin: 0; line-height: 1.55; }

/* ====================== SHOP ====================== */
.shop { padding: 110px 0; background: var(--cream); }
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-chip {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.filter-chip:hover { background: rgba(28,20,16,0.06); }
.filter-chip.is-active { background: var(--ink); color: var(--cream); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.product-card {
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -20px rgba(28,20,16,0.25); }
.product-thumb {
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto 18px;
  width: 78%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 6px 14px rgba(0,0,0,0.18);
}
.product-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--brick);
  color: var(--cream);
  padding: 4px 9px;
  border-radius: 999px;
}
.product-name { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin: 0 0 4px; }
.product-weight { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-soft); margin: 0 0 14px; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product-price { font-weight: 700; font-size: 17px; }
.add-btn {
  background: var(--ink);
  color: var(--cream);
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), transform .2s var(--ease);
}
.add-btn:hover { background: var(--chilli); transform: rotate(90deg); }
.add-btn.is-added { background: var(--olive); }

/* ====================== STORY ====================== */
.story { padding: 110px 0; background: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.story-photo-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(28,20,16,0.35);
}
.story-illustration { width: 100%; display: block; }
.story-tag {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.story-text { font-size: 16px; color: var(--ink-soft); max-width: 58ch; margin: 0 0 18px; }
.story-sign { margin-top: 28px; display: flex; flex-direction: column; gap: 2px; }
.sign-name { font-family: var(--font-display); font-style: italic; font-size: 20px; }
.sign-role { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-soft); }

/* ====================== REVIEWS ====================== */
.reviews { background: var(--olive); padding: 90px 0; overflow: hidden; }
.reviews .eyebrow { color: var(--turmeric); margin-bottom: 36px; }
.reviews-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.review-card {
  background: rgba(239,230,211,0.07);
  border: 1px solid rgba(239,230,211,0.15);
  border-radius: var(--radius-md);
  padding: 26px;
}
.review-text { color: #e8dec9; font-size: 14.5px; line-height: 1.6; margin: 0 0 16px; font-style: italic; font-family: var(--font-display); }
.review-by { font-family: var(--font-mono); font-size: 11.5px; color: var(--turmeric); }

/* ====================== CONTACT ====================== */
.contact { background: var(--brick); color: var(--cream); padding: 110px 0; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 70px; }
.contact-form { display: flex; gap: 12px; max-width: 420px; }
.contact-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(239,230,211,0.3);
  background: rgba(239,230,211,0.06);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14.5px;
}
.contact-form input::placeholder { color: #c8b69c; }
.contact-form input:focus { outline: 2px solid var(--turmeric); outline-offset: 2px; }
.form-note { font-family: var(--font-mono); font-size: 12.5px; color: var(--turmeric); margin-top: 14px; min-height: 16px; }

.contact-details { display: grid; gap: 26px; align-content: start; }
.detail-item { display: flex; flex-direction: column; gap: 4px; border-bottom: 1px solid rgba(239,230,211,0.14); padding-bottom: 18px; }
.detail-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--turmeric); }
.detail-value { font-family: var(--font-display); font-size: 19px; }

/* ====================== FOOTER ====================== */
.site-footer { background: var(--ink); color: #cabfae; padding: 70px 0 30px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .brand-mark { color: var(--turmeric); }
.footer-brand p { font-size: 14px; max-width: 28ch; color: #a89c89; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); margin: 0 0 16px; }
.footer-col a { display: block; font-size: 14px; color: #a89c89; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--turmeric); }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 26px;
  font-size: 12.5px;
  color: #8a7e6c;
}

/* ====================== CART DRAWER ====================== */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 90vw);
  height: 100vh;
  background: var(--cream);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  box-shadow: -20px 0 50px rgba(0,0,0,0.2);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; border-bottom: 1px solid rgba(28,20,16,0.1); }
.cart-drawer-head h3 { font-family: var(--font-display); font-size: 20px; margin: 0; }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 26px; }
.cart-empty { color: var(--ink-soft); font-size: 14px; margin-top: 30px; text-align: center; }
.cart-line { display: flex; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(28,20,16,0.08); }
.cart-line-swatch { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; box-shadow: inset 0 3px 6px rgba(0,0,0,0.2); }
.cart-line-info { flex: 1; }
.cart-line-name { font-weight: 600; font-size: 14.5px; }
.cart-line-price { font-size: 13px; color: var(--ink-soft); }
.cart-line-remove { background: none; border: none; color: var(--chilli); font-size: 12px; font-family: var(--font-mono); text-decoration: underline; padding: 0; }
.cart-foot { padding: 22px 26px 28px; border-top: 1px solid rgba(28,20,16,0.1); }
.cart-total-row { display: flex; justify-content: space-between; font-weight: 700; font-size: 17px; margin-bottom: 16px; }

.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(28,20,16,0.45);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ====================== SCROLL REVEAL ====================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .purity-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-track { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .dabba-wells { grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 18px; }
  .well-label { display: none; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .hero { padding-top: 70px; }
  .hero-inner { padding-bottom: 60px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-stats { gap: 28px; }
  .stamp-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-card { padding: 14px; }
  .reviews-track { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-form { flex-direction: column; }
  .dabba-detail { padding: 22px; flex-direction: column; align-items: flex-start; }
  .section-head--row { flex-direction: column; align-items: flex-start; }
}


a {
  text-decoration: none;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
  height: 55px !important;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin-left: 15px;
  transition: 0.3s;
  position: relative;
}

.nav-link:hover {
  color: #ffb300 !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ffb300;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* =========================
   HERO SECTION
========================= */

.banner-slide {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 750px;
  padding: 20px;
}

.banner-content h1 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 20px;
}

.banner-content h3 {
  color: #ffb300;
  font-size: 32px;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 18px;
  line-height: 1.7;
}

/* =========================
   PRODUCT SECTION
========================= */

.product-card {
  border: none;
  border-radius: 25px;
  overflow: hidden;
  transition: 0.4s;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-card img {
  /* height:260px; */
  object-fit: cover;
  transition: 0.4s;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card .card-body {
  padding: 25px;
}

.product-card h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-card p {
  color: #ff6600;
  font-size: 24px;
}

.order-btn {
  background: #111;
  color: #fff;
  border-radius: 50px;
  padding: 12px 25px;
  font-weight: 600;
  transition: 0.3s;
  width: 100%;
}

.order-btn:hover {
  background: #ffb300;
  color: #111;
}

/* =========================
   PROMO SECTION
========================= */

.promo-section {
  position: relative;
  background: url("../images/banner-2.webp");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  overflow: hidden;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.promo-title {
  font-size: 55px;
  font-weight: 800;
  line-height: 1.2;
}

.promo-title span {
  color: #ffb300;
}

.promo-section p {
  line-height: 1.9;
  font-size: 17px;
}

/* =========================
   SERVICES
========================= */

.service-box {
  background: #fff;
  padding: 40px 25px;
  border-radius: 25px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-box:hover {
  transform: translateY(-8px);
}

.service-box i {
  font-size: 50px;
  color: #ffb300;
  margin-bottom: 20px;
}

.service-box h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* =========================
   FOOTER
========================= */

.footer-img {
  position: relative;
  /* background:url('images/footer-bg.jpg'); */
  background-size: cover;
  background-position: center;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.footer-title {
  color: #ffb300;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.footer-links li {
  margin-bottom: 12px;
  transition: 0.3s;
  cursor: pointer;
}

.footer-links li:hover {
  color: #ffb300;
  transform: translateX(5px);
}

.footer-line {
  border-color: rgba(255, 255, 255, 0.1);
}

/* =========================
   SECTION TITLES
========================= */

section h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

section p {
  font-size: 17px;
  line-height: 1.8;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 38px;
  }

  .banner-content h3 {
    font-size: 24px;
  }

  .promo-title {
    font-size: 38px;
  }

  section h2 {
    font-size: 32px;
  }

  .product-card img {
    /* height:220px; */
  }
}

@media (max-width: 991px) {
  .navbar .nav-link {
    padding: 12px 0;
    display: inline-block;
  }

  #cart-count {
    font-size: 11px;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
  }
}

.mobile-cart {
  color: #fff !important;
  padding: 0;
  margin-right: 15px;
}

.mobile-cart:hover {
  color: #ffb300 !important;
}

@media (min-width: 992px) {
  .mobile-cart {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .mobile-cart-desktop {
    display: none !important;
  }
}

