:root {
  --bg: #F7F4EE;
  --card: #FFFDF8;
  --text: #1F1A14;
  --text-secondary: #5C4A3A;
  --muted: #5C4A3A;
  --line: #E8DFCF;
  --line-soft: #ECE3D4;
  --brand: #1F1A14;
  --brand-hover: #2d251c;
  --accent: #2E7D32;
  --accent-hover: #256b29;
  --accent-soft: #EEF6EA;
  --accent-light: #EEF6EA;
  --accent-lighter: #F6FAF3;
  
  /* Secondary Colors */
  --color-orange: #F26A2E;
  --color-orange-light: #FFF6DF;
  --color-purple: #8b5cf6;
  --color-purple-light: #f3e8ff;
  --color-blue: #3b82f6;
  --color-blue-light: #eff6ff;
  --color-pink: #ec4899;
  --color-pink-light: #fdf2f8;
  --color-amber: #f59e0b;
  --color-amber-light: #fffbeb;
  --color-red: #ef4444;
  --color-red-light: #fef2f2;
  
  --shadow-sm: 0 2px 8px rgba(40, 30, 20, 0.06);
  --shadow: 0 12px 30px rgba(40, 30, 20, 0.08);
  --shadow-md: 0 12px 30px rgba(40, 30, 20, 0.08);
  --shadow-lg: 0 12px 30px rgba(40, 30, 20, 0.08);
  --shadow-xl: 0 18px 38px rgba(40, 30, 20, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1120px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Fira Sans', 'Droid Sans', sans-serif;
  background: linear-gradient(180deg, #fffaf0 0%, #f4efe4 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  font-family: inherit;
}

button {
  cursor: pointer;
  transition: var(--transition);
}

input,
textarea,
select {
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 24px, var(--container));
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =========================
HEADER
========================= */
.site-header {
  background: #FBF8F3;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #ECE3D4;
  transition: var(--transition);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 7px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand-block .eyebrow {
  margin-bottom: 0;
  font-size: 10px;
  line-height: 1.15;
}

.brand-logo {
  margin: 0;
  max-width: 168px;
  height: auto;
  display: block;
}

.brand-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 260px;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-btn,
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.solid-btn {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.solid-btn:hover {
  background: var(--brand-hover);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.solid-btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.outline-btn {
  background: #FFFDF8;
  color: var(--text);
  border: 1.5px solid var(--line);
}

.outline-btn:hover {
  background: var(--line-soft);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.outline-btn:active {
  box-shadow: none;
}

/* =========================
HERO
========================= */
.hero-section {
  padding: 12px 0 14px;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.24) 0%, rgba(10, 10, 10, 0.14) 22%, rgba(10, 10, 10, 0.06) 38%, transparent 58%);
  z-index: 1;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.2);
  border-color: #fff;
}

.hero-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  position: absolute;
  left: 56px;
  bottom: 64px;
  z-index: 2;
  backdrop-filter: none;
  color: #fff;
  max-width: 520px;
}

.hero-card::before,
.hero-card::after {
  display: none;
}

.hero-card > *:not(.sr-only) {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-family: 'Pacifico', cursive;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

.hero-card h1:not(.sr-only) {
  margin: 0 0 12px;
  font-family: 'Pacifico', cursive;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #fff;
}

.hero-card > p {
  margin: 0;
  font-family: 'Pacifico', cursive;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 0;
}

.hero-btn {
  min-height: 50px;
  padding: 0 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: center;
  background: #FFFFFF;
  color: var(--text);
  border: 1px solid #E6D8C3;
  box-shadow: 0 8px 18px rgba(40, 30, 20, 0.10);
}

.hero-btn:hover {
  background: #FFF6DF;
  border-color: #E6D8C3;
}

.hero-actions .hero-btn:first-child {
  background: rgba(255, 253, 248, 0.96);
  color: #1F1A14;
  border: 1px solid #E6D8C3;
  box-shadow: 0 8px 18px rgba(40, 30, 20, 0.10);
}

.hero-actions .hero-btn:first-child:hover {
  background: #FFF6DF;
  border-color: #E0CBAE;
}

.hero-actions #hero-whatsapp-btn {
  background: linear-gradient(135deg, #1F1A14 0%, #2E7D32 100%);
  color: #FFFFFF;
  border: 1px solid rgba(46, 125, 50, 0.55);
  box-shadow: 0 12px 24px rgba(31, 26, 20, 0.18);
}

.hero-actions #hero-whatsapp-btn:hover {
  background: linear-gradient(135deg, #182015 0%, #256b29 100%);
  border-color: rgba(46, 125, 50, 0.72);
}

.hero-points {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 18px;
}

.hero-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: var(--transition);
}

.hero-points span:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

/* =========================
PROMO BANNER STRIP
========================= */
.promo-strip-section {
  padding: 8px 0 6px;
}

.promo-strip-head {
  margin-bottom: 10px;
}

.promo-strip-head h2 {
  margin: 0;
  color: var(--brand);
  font-size: 20px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.2;
}

.promo-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.promo-strip::-webkit-scrollbar {
  display: none;
}

.promo-banner {
  position: relative;
  flex: 0 0 340px;
  width: 340px;
  height: 96px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 20px;
  padding: 14px 18px;
  color: #1f1a14;
  box-shadow: 0 10px 24px rgba(40, 30, 20, 0.07);
  scroll-snap-align: start;
}

.promo-banner::after {
  content: '';
  position: absolute;
  right: -28px;
  top: -30px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  pointer-events: none;
}

.promo-badge,
.promo-banner h3,
.promo-banner p {
  position: relative;
  z-index: 1;
}

.promo-badge {
  display: inline-block;
  margin-bottom: 7px;
  color: rgba(31, 26, 20, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.promo-banner h3 {
  margin: 0 0 4px;
  color: #1f1a14;
  font-size: 17px;
  font-weight: 820;
  line-height: 1.15;
}

.promo-banner p {
  max-width: 260px;
  margin: 0;
  color: rgba(31, 26, 20, 0.72);
  font-size: 12.5px;
  font-weight: 560;
  line-height: 1.3;
}

.promo-green {
  background: linear-gradient(135deg, #e8f8d8 0%, #c9efc7 100%);
}

.promo-blue {
  background: linear-gradient(135deg, #e4f3ff 0%, #c9e4fb 100%);
}

.promo-yellow {
  background: linear-gradient(135deg, #fff8cf 0%, #f7e49a 100%);
}

.promo-peach {
  background: linear-gradient(135deg, #ffe7dd 0%, #ffc6bb 100%);
}

.promo-orange {
  background: linear-gradient(135deg, #ffedd4 0%, #ffd09a 100%);
}

.promo-mint {
  background: linear-gradient(135deg, #dcf8ea 0%, #bcefd7 100%);
}

.promo-purple {
  background: linear-gradient(135deg, #f0e5ff 0%, #d9c5fa 100%);
}

.promo-gold {
  background: linear-gradient(135deg, #fff1c6 0%, #eccf78 100%);
}

/* =========================
QUICK ORDER PICKS
========================= */
.quick-picks-section {
  padding: 8px 0 10px;
}

.quick-picks-wrap {
  background: linear-gradient(180deg, #FFFDF8 0%, #FFF8E8 100%);
  border: 1px solid #E8DFCF;
  border-radius: 28px;
  padding: 24px 20px 22px;
  box-shadow: 0 12px 30px rgba(40, 30, 20, 0.07);
}

.quick-picks-head {
  margin-bottom: 18px;
}

.quick-picks-head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.quick-picks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quick-pick-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  min-height: 220px;
  padding: 22px 16px 18px;
  border: 1px solid #E8DFCF;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.92);
  color: #1F1A14;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 10px 24px rgba(40, 30, 20, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.quick-pick-card:hover,
.quick-pick-card:focus-visible,
.quick-pick-card.active {
  border-color: rgba(46, 125, 50, 0.36);
  box-shadow: 0 14px 28px rgba(40, 30, 20, 0.09);
  transform: translateY(-2px);
}

.quick-pick-card:focus-visible {
  outline: 2px solid rgba(46, 125, 50, 0.28);
  outline-offset: 3px;
}

.quick-pick-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  overflow: hidden;
  border-radius: 50%;
  background: #EAF5E7;
}

.quick-pick-media.has-image .quick-pick-icon {
  display: none;
}

.quick-pick-media.is-fallback .quick-pick-icon {
  display: inline-flex;
}

.quick-pick-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-pick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 42px;
  border-radius: 12px;
  background: #2E7D32;
  color: #FFFDF8;
  font-size: 19px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(46, 125, 50, 0.16);
}

.quick-pick-card-orange .quick-pick-media {
  background: #FFE7D5;
}

.quick-pick-card-orange .quick-pick-icon {
  background: #F26A2E;
}

.quick-pick-card-coral .quick-pick-media {
  background: #FFE0DB;
}

.quick-pick-card-coral .quick-pick-icon {
  background: #D8402B;
}

.quick-pick-card-blue .quick-pick-media {
  background: #DFF3F6;
}

.quick-pick-card-blue .quick-pick-icon {
  background: #3C8B55;
}

.quick-pick-copy {
  display: grid;
  gap: 8px;
}

.quick-pick-copy strong {
  font-size: 17px;
  font-weight: 760;
  line-height: 1.15;
}

.quick-pick-copy span {
  color: #5C4A3A;
  font-size: 13px;
  line-height: 1.45;
}

.quick-pick-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid rgba(46, 125, 50, 0.36);
  border-radius: 999px;
  color: #2E7D32;
  font-size: 13px;
  font-weight: 760;
  background: rgba(255, 253, 248, 0.86);
}

.offer-product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-column: 1 / -1;
  width: min(100%, 980px);
  margin-inline: auto;
  background: #FFFDF8;
  border: 1px solid #E8DFCF;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(40, 30, 20, 0.08);
}

.offer-product-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #2E7D32 0%, #F26A2E 100%);
}

.offer-product-main {
  display: grid;
  grid-template-columns: minmax(180px, 30%) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.offer-product-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  min-height: 180px;
  border-radius: 20px;
  border: 2px solid #E8DFCF;
  background: #FFFDF8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(40, 30, 20, 0.06);
}

.offer-product-image {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  cursor: zoom-in;
}

.offer-product-placeholder {
  display: none;
  color: rgba(46, 125, 50, 0.82);
  font-size: 18px;
  font-weight: 800;
}

.offer-product-media.is-fallback .offer-product-placeholder {
  display: inline-flex;
}

.offer-product-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}

.offer-product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.offer-product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  border-radius: 11px;
  background: linear-gradient(180deg, #F43F63 0%, #D91E43 100%);
  color: #FFFDF8;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 14px rgba(217, 30, 67, 0.14);
}

.offer-product-brand {
  color: rgba(31, 26, 20, 0.58);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.15;
}

.offer-product-name {
  margin: 0;
  color: #1F1A14;
  max-width: 540px;
  font-size: clamp(24px, 2.45vw, 34px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.offer-product-unit {
  margin: 0;
  width: fit-content;
  padding: 5px 11px;
  border: 2px solid rgba(46, 125, 50, 0.18);
  border-radius: 999px;
  background: #EEF6EA;
  color: #2E7D32;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.offer-product-price-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.75fr) minmax(190px, 0.95fr);
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 2px dashed rgba(218, 196, 150, 0.54);
}

.offer-product-mrp {
  color: rgba(31, 26, 20, 0.64);
  border-right: 2px solid rgba(218, 196, 150, 0.8);
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-product-mrp span {
  color: rgba(31, 26, 20, 0.5);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.offer-product-mrp strong {
  color: #1F1A14;
  font-size: 28px;
  font-weight: 760;
  line-height: 1.1;
}

.offer-product-mrp small {
  color: #1F1A14;
  font-size: 15px;
  font-weight: 500;
}

.offer-product-mrp.is-struck strong {
  text-decoration: line-through;
  text-decoration-color: #D91E43;
  text-decoration-thickness: 3px;
}

.offer-product-price-panel {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 94px;
  padding: 14px 18px 16px;
  border: 2px solid rgba(217, 30, 67, 0.28);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 246, 248, 0.92), rgba(255, 253, 248, 0.96));
}

.offer-product-price-panel .offer-product-badge {
  position: static;
  transform: none;
  margin-bottom: 2px;
  white-space: nowrap;
}

.offer-product-price-panel > span:not(.offer-product-badge) {
  color: rgba(92, 74, 58, 0.76);
  font-size: 13px;
  font-weight: 760;
}

.offer-product-price-panel > strong {
  color: #D91E43;
  font-size: 29px;
  font-weight: 850;
  line-height: 1;
}

.offer-product-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}

.offer-product-actions .add-btn {
  min-width: 112px;
  min-height: 46px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 14px;
}

.offer-product-savings {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 180px);
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border: 2px solid rgba(46, 125, 50, 0.16);
  border-radius: 16px;
  background: linear-gradient(90deg, #F2FBF1 0%, #FFFDF8 100%);
}

.offer-product-savings-copy {
  display: flex;
  align-items: center;
  gap: 14px;
}

.offer-product-savings-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  background: #FFFDF8;
  border: 2px solid rgba(46, 125, 50, 0.15);
  color: #2E7D32;
  font-size: 24px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(40, 30, 20, 0.06);
}

.offer-product-savings-copy strong {
  display: block;
  color: #2E7D32;
  font-size: 19px;
  font-weight: 850;
  line-height: 1.15;
}

.offer-product-savings-copy span {
  display: block;
  margin-top: 4px;
  color: #1F1A14;
  font-size: 14px;
  line-height: 1.35;
}

.offer-product-save-amount {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding-left: 16px;
  border-left: 2px dashed rgba(46, 125, 50, 0.16);
}

.offer-product-save-amount span {
  color: #2E7D32;
  font-size: 14px;
  font-weight: 700;
}

.offer-product-save-amount strong {
  color: #2E7D32;
  font-size: 30px;
  font-weight: 850;
  line-height: 1;
}

.offer-product-validity {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  background: linear-gradient(90deg, #FFF3CF 0%, rgba(255, 248, 232, 0.48) 100%);
  color: #8B6516;
}

.offer-product-validity span {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: #F5A623;
  transform: rotate(45deg);
}

.offer-product-validity strong {
  font-size: 14px;
  font-weight: 780;
}

/* =========================
SEARCH
========================= */
/* Search Section Polish */
.search-section {
  padding: 12px 0 8px;
}

.search-card {
  display: grid;
  gap: 10px;
  background: linear-gradient(180deg, #FFFDF8 0%, #FFF8E8 100%);
  border: 1px solid rgba(218, 196, 150, 0.62);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(40, 30, 20, 0.07);
  padding: 14px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.search-card:focus-within {
  border-color: rgba(46, 125, 50, 0.42);
  box-shadow: 0 12px 28px rgba(40, 30, 20, 0.08), 0 0 0 3px rgba(46, 125, 50, 0.08);
}

.search-copy {
  display: grid;
  gap: 2px;
}

.search-copy h2 {
  margin: 0;
  color: var(--brand);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.2;
}

.search-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  border: 1px solid rgba(232, 223, 207, 0.95);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: border-color 0.22s ease, background 0.22s ease;
}

.search-card:focus-within .search-input-wrap {
  border-color: rgba(46, 125, 50, 0.46);
  background: #FFFDF8;
}

.search-icon {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(46, 125, 50, 0.82);
  font-size: 16px;
  line-height: 1;
  pointer-events: none;
}

.search-card input {
  width: 100%;
  min-height: 52px;
  border: 0;
  background: transparent;
  outline: none;
  padding: 0 16px 0 46px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
}

.search-card input::placeholder {
  color: rgba(92, 74, 58, 0.72);
}

/* =========================
CATEGORY SHOWCASE
========================= */
.category-showcase-section {
  padding: 14px 0 10px;
}

.category-showcase-head {
  margin-bottom: 16px;
}

.category-showcase-head h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 12px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 8px 8px;
  border: 1px solid #E8DFCF;
  border-radius: 22px;
  background: #FFFDF8;
  box-shadow: 0 12px 30px rgba(40, 30, 20, 0.08);
  color: var(--text);
  text-align: center;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 125, 50, 0.24);
  box-shadow: 0 12px 30px rgba(40, 30, 20, 0.08);
}

.category-card.active {
  border-color: rgba(46, 125, 50, 0.35);
  background: linear-gradient(180deg, #EEF6EA 0%, #FFFDF8 100%);
  box-shadow: 0 12px 30px rgba(40, 30, 20, 0.08);
}

.category-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #FFF6DF 0%, #EEF6EA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card-media.has-image .category-card-placeholder {
  display: none;
}

.category-card-media.is-fallback .category-card-placeholder {
  display: inline-flex;
}

.category-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58%;
  height: 58%;
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.78);
  color: #5C4A3A;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px rgba(92, 74, 58, 0.10);
}

.category-card-name {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.7em;
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* =========================
FILTER SECTION
======================== */
.filter-section {
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
}

.category-scroll-shell {
  position: relative;
  padding-inline: 44px;
}

.filter-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 12px 0;
  padding-left: 8px;
  flex-wrap: nowrap;
  align-items: center;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-right: 8px;
}

.filter-scroll::-webkit-scrollbar {
  display: none;
}

.filter-scroll::before,
.filter-scroll::after {
  content: '';
  position: sticky;
  width: 42px;
  align-self: stretch;
  flex: 0 0 42px;
  pointer-events: none;
  z-index: 2;
}

.filter-scroll::before {
  left: 0;
  margin-right: -42px;
  background: linear-gradient(90deg, rgba(247, 244, 238, 1) 0%, rgba(247, 244, 238, 0.94) 30%, rgba(247, 244, 238, 0) 100%);
}

.filter-scroll::after {
  right: 0;
  margin-left: -42px;
  background: linear-gradient(90deg, rgba(247, 244, 238, 0) 0%, rgba(247, 244, 238, 0.94) 75%, rgba(247, 244, 238, 1) 100%);
}

#category-filters {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.category-scroll-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border-radius: 999px;
  border: 1px solid #E8DFCF;
  background: linear-gradient(135deg, #FFF6DF 0%, #F26A2E 100%);
  color: #FFFDF8;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(40, 30, 20, 0.10);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: var(--transition);
}

.scroll-btn:hover {
  background: linear-gradient(135deg, #FFF8E8 0%, #F26A2E 100%);
  box-shadow: 0 12px 30px rgba(40, 30, 20, 0.08);
  transform: translateY(-50%) scale(1.04);
}

.scroll-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.scroll-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-1px);
}

.scroll-btn-left {
  left: 0;
}

.scroll-btn-right {
  right: 0;
}

.filter-btn {
  flex-shrink: 0;
  padding: 10px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #FFFDF8;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* =========================
PRODUCTS
========================= */
.products-section {
  background: linear-gradient(180deg, #fffaf0 0%, #f4efe4 100%);
  padding: 10px 0 156px;
}

.shortcut-products-section {
  background: linear-gradient(180deg, #fffaf0 0%, #f4efe4 100%);
  padding: 10px 0 156px;
}

.category-items-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.category-items-copy {
  min-width: 0;
}

.category-items-copy .eyebrow {
  margin-bottom: 6px;
}

.category-items-copy h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--brand);
}

.category-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #FFFDF8;
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.category-back-btn:hover {
  border-color: rgba(42, 139, 79, 0.32);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.category-back-btn:active {
  transform: translateY(0);
}

.category-back-btn span {
  font-size: 28px;
  line-height: 1;
  transform: translateX(-1px);
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

#product-list {
  display: grid;
  gap: 26px;
}

#shortcut-product-list {
  display: grid;
  gap: 26px;
}

.category-section .section-head {
  margin-bottom: 14px;
}

.category-section .section-head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brand);
}

.product-grid {
  display: grid;
  gap: 14px;
}

.category-section .product-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-items: stretch;
}

.category-products-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  background: linear-gradient(135deg, #fffdf7 0%, #fff8ea 100%);
  border: 1px solid #E8DFCF;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(40, 30, 20, 0.08);
  padding: 13px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(46, 125, 50, 0.75) 0%, rgba(242, 106, 46, 0.72) 100%);
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover {
  border-color: rgba(92, 74, 58, 0.34);
  box-shadow: 0 12px 30px rgba(40, 30, 20, 0.08);
  transform: translateY(-2px);
}

.product-card:hover::before {
  opacity: 1;
}

.product-main {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.product-media {
  width: 74px;
  aspect-ratio: 1;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #E8DFCF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 7px 16px rgba(40, 30, 20, 0.06);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.product-image-placeholder {
  display: none;
  color: rgba(46, 125, 50, 0.82);
  font-size: 20px;
  font-weight: 800;
}

.product-media.is-fallback .product-image-placeholder {
  display: inline-flex;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  min-height: 100%;
}

.product-brand {
  margin: 0;
  color: rgba(92, 74, 58, 0.62);
  font-size: 10.5px;
  line-height: 1.1;
  font-weight: 700;
}

.product-name {
  margin: 0;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.26;
  letter-spacing: 0;
  color: #1F1A14;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.product-unit {
  width: fit-content;
  margin: 0;
  padding: 2px 7px;
  border-radius: 999px;
  background: #EEF6EA;
  border: 1px solid rgba(46, 125, 50, 0.20);
  color: #2E7D32;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.25;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding: 6px 1px 0;
}

.product-base-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.product-base-price span {
  color: rgba(92, 74, 58, 0.74);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
}

.product-base-price strong {
  color: #2E7D32;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.05;
}

.product-footer [data-product-controls] {
  width: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 0 0 auto;
}

.product-slabs {
  display: grid;
  gap: 4px;
  padding: 6px 9px 7px;
  border: 1px solid rgba(218, 196, 150, 0.5);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 250, 238, 0.74), rgba(255, 246, 224, 0.52));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.product-slabs-label {
  margin-bottom: 0;
  color: rgba(92, 74, 58, 0.68);
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.6px;
  opacity: 0.75;
  text-transform: uppercase;
}

.product-slab-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 26px;
  padding: 3px 7px;
  border-radius: 9px;
  background: #FFFDF8;
  border: 1px solid rgba(232, 223, 207, 0.58);
}

.product-slab-qty {
  font-size: 11px;
  font-weight: 700;
  color: rgba(31, 26, 20, 0.86);
}

.product-slab-price {
  white-space: nowrap;
  text-align: right;
  font-size: 11.5px;
  font-weight: 800;
  color: #2E7D32;
}

.product-card .add-btn {
  min-width: 76px;
  min-height: 33px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f8837 0%, #25742d 100%);
  border: 1px solid rgba(23, 92, 32, 0.12);
  font-size: 12.5px;
  font-weight: 650;
  box-shadow: 0 5px 12px rgba(34, 120, 48, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.product-card .add-btn:hover {
  background: linear-gradient(180deg, #36923e 0%, #26782f 100%);
  box-shadow: 0 6px 14px rgba(34, 120, 48, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.product-card .qty-box {
  gap: 6px;
  min-height: 33px;
  padding: 3px 5px;
  background: #FFFDF8;
  border-color: rgba(46, 125, 50, 0.20);
  box-shadow: 0 8px 16px rgba(40, 30, 20, 0.08);
}

.product-card .qty-btn {
  width: 26px;
  height: 26px;
  font-size: 13px;
}

.product-card .qty-number {
  min-width: 18px;
  font-size: 12px;
  font-weight: 750;
  color: #1F1A14;
}

.add-btn {
  min-width: 94px;
  min-height: 38px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 12.5px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.add-btn:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.add-btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.qty-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--line-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 5px;
  transition: var(--transition);
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #256b29 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.qty-btn:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, #1f5e24 100%);
  transform: scale(1.1);
  box-shadow: var(--shadow);
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-number {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
}

.no-results {
  text-align: center;
  color: var(--muted);
  padding: 48px 24px;
  font-size: 15px;
}

/* =========================
SHIVNERI FRESH CART V2
========================= */
.cart-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 999;
  border: 0;
  border-radius: 16px;
  background: var(--brand);
  color: #fff;
  min-height: 62px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  transition: var(--transition);
}

.cart-bar:hover {
  box-shadow: 0 18px 38px rgba(40, 30, 20, 0.12);
  transform: translateY(-4px);
}

.cart-bar:active {
  transform: translateY(-2px);
}

.cart-bar-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.cart-bar-count {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
}

.cart-bar-text {
  font-size: 15px;
  font-weight: 600;
}

.cart-bar-total {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.cart-drawer.open {
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: 0.25s ease;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: min(100%, 450px);
  height: 100%;
  background: #FFFDF8;
  transform: translateX(100%);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  pointer-events: auto;
}

.cart-drawer.open .cart-backdrop {
  opacity: 1;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: #FFFDF8;
  flex-shrink: 0;
}

.cart-mini-title {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.cart-title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.close-cart-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: #FFFDF8;
  cursor: pointer;
  color: #d90429;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.close-cart-btn:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.close-cart-btn:active {
  background: var(--line-soft);
}

.cart-scroll-area {
  position: relative;
  z-index: 1;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 18px 28px;
  background: #FFFDF8;
}

.cart-scroll-area::-webkit-scrollbar {
  width: 6px;
}

.cart-scroll-area::-webkit-scrollbar-track {
  background: transparent;
}

.cart-scroll-area::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}

.cart-scroll-area::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

.cart-items {
  margin-bottom: 16px;
}

.cart-empty {
  padding: 24px 16px;
  border: 1.5px dashed var(--line-soft);
  border-radius: var(--radius-md);
  background: #FFF6DF;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.cart-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
  background: #FFFDF8;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cart-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
  opacity: 0.3;
  transition: var(--transition);
}

.cart-item:hover {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.cart-item:hover::before {
  opacity: 1;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.cart-item-name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.cart-item-meta {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.cart-item-total {
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.3px;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.remove-btn {
  border: 0;
  background: transparent;
  color: #d32f2f;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.remove-btn:hover {
  color: #b71c1c;
}

.cart-summary {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 16px;
  background: #FFF6DF;
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
}

.summary-row strong {
  font-weight: 600;
}

.total-row {
  font-size: 16px;
  font-weight: 700;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 8px;
}

.cart-form {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 16px;
  background: #FFFDF8;
}

.field-group {
  margin-bottom: 16px;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  background: #FFFDF8;
  font-size: 14px;
  transition: var(--transition);
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.order-type-row {
  display: flex;
  gap: 10px;
}

.order-type-pill {
  flex: 1;
  position: relative;
  cursor: pointer;
}

.order-type-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.order-type-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  font-weight: 600;
  background: #FFFDF8;
  transition: var(--transition);
  font-size: 14px;
}

.order-type-pill input:checked + span {
  background: var(--brand);
  color: #fff;
  border-color: var(--accent);
}

.order-type-pill span:hover {
  border-color: var(--accent);
}

.checkout-btn {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-top: 8px;
}

.checkout-btn:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.checkout-btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* // Back To Category Top Button */
.back-to-category-top-btn {
  position: fixed;
  right: 18px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: #1f5e24;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(31, 94, 36, 0.24), 0 4px 10px rgba(40, 30, 20, 0.12);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.back-to-category-top-btn.hidden {
  display: inline-flex !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
}

.back-to-category-top-btn:hover {
  background: #17491b;
  transform: translateY(-2px);
}

.back-to-category-top-btn:active {
  transform: translateY(0);
}

.back-to-category-top-btn span {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

/* =========================
FOOTER
========================= */
.proof-section {
  margin-top: 56px;
}

.proof-wrap {
  padding: 24px 22px;
  border-radius: 24px;
  background: #FFFDF8;
  border: 1px solid #E8DFCF;
  box-shadow: var(--shadow-md);
}

.proof-head {
  margin-bottom: 16px;
}

.proof-head h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.proof-point {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: #FFF6DF;
  border: 1px solid #E8DFCF;
  color: #5C4A3A;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.site-footer {
  background: linear-gradient(135deg, #1F1A14 0%, #2d251c 100%);
  color: #fff;
  padding: 40px 0 32px;
  margin-top: 20px;
  border-top: 2px solid var(--accent);
}

.footer-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-section p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-section p:last-child {
  margin-bottom: 0;
}

.footer-section a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-section a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 8px;
}

.footer-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 32px 0;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  margin-top: 6px !important;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0.82;
}

/* =========================
IMAGE MODAL
========================= */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.image-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.image-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(86vw, 360px);
  aspect-ratio: 1;
  border-radius: 18px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  transform: scale(0.96);
  transition: transform 0.2s ease;
}

.image-modal.open .image-modal-dialog {
  transform: scale(1);
}

.image-modal-close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #d71920;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(215, 25, 32, 0.28);
}

.image-modal-close:hover {
  transform: scale(1.04);
  background: #b9151b;
}

.image-modal-preview {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

/* =========================
RESPONSIVE
========================= */
@media (min-width: 768px) {
  .hero-card {
    max-width: 520px;
  }

  .hero-card h1:not(.sr-only) {
    font-size: 48px;
  }

  .offer-product-card .qty-box,
  .offer-product-card .add-btn {
    min-width: 110px;
  }

  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-section .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .hero-section,
  .hero-slider {
    min-height: 450px;
  }

  .hero-slide {
    background-position: center 42%;
  }

  .category-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .category-section .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-footer {
    padding-top: 2px;
    margin-top: -2px;
  }
}

@media (min-width: 1440px) {
  .category-section .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 18px, var(--container));
  }

  .brand-logo {
    max-width: 156px;
  }

  .header-wrap {
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 7px 0 8px;
    text-align: center;
  }

  .brand-block {
    align-items: center;
    gap: 2px;
  }

  .brand-subtitle {
    max-width: 220px;
    font-size: 10.5px;
    line-height: 1.25;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .header-actions .header-btn {
    flex: 1;
    min-height: 40px;
    padding-inline: 12px;
  }

  .hero-section {
    min-height: 276px;
    padding: 4px 0 74px;
  }

  .hero-slider {
    min-height: 276px;
    overflow: visible;
  }

  .hero-slide {
    overflow: hidden;
    border-radius: 32px;
  }

  .hero-card {
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    bottom: auto;
    max-width: none;
  }

  .hero-dots {
    bottom: 10px;
  }

  .hero-actions {
    gap: 10px;
    flex-wrap: nowrap;
  }

  .hero-actions .hero-btn {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 14px;
    flex: 1;
  }

  .hero-actions .hero-btn:first-child {
    background: rgba(255, 253, 248, 0.98);
    border-color: rgba(230, 216, 195, 0.92);
    box-shadow: 0 5px 12px rgba(40, 30, 20, 0.07);
  }

  .hero-actions #hero-whatsapp-btn {
    background: linear-gradient(135deg, #1f5e24 0%, #2E7D32 100%);
    border-color: rgba(46, 125, 50, 0.38);
    box-shadow: 0 6px 14px rgba(31, 94, 36, 0.16);
  }

  .hero-card h1:not(.sr-only) {
    font-family: 'Pacifico', cursive;
    font-size: 32px;
  }

  .promo-strip-section {
    padding: 8px 0 4px;
  }

  .promo-strip-head {
    margin-bottom: 8px;
  }

  .promo-strip-head h2 {
    font-size: 17px;
  }

  .promo-strip {
    gap: 12px;
    margin-inline: -9px;
    padding: 2px 9px 7px;
    scroll-padding-left: 9px;
  }

  .promo-banner {
    flex-basis: 84vw;
    width: 84vw;
    min-width: 84vw;
    height: 92px;
    border-radius: 18px;
    padding: 14px 16px;
  }

  .promo-banner h3 {
    font-size: 15.5px;
  }

  .promo-banner p {
    max-width: 66vw;
    font-size: 11.8px;
  }

  .promo-badge {
    margin-bottom: 6px;
    font-size: 9px;
  }

  .quick-picks-section {
    padding: 6px 0 8px;
  }

  .quick-picks-wrap {
    border-radius: 24px;
    padding: 18px 14px 14px;
  }

  .category-showcase-section {
    padding: 12px 0 8px;
  }

  .category-showcase-head {
    margin-bottom: 14px;
  }

  .category-showcase-head h2 {
    font-size: 26px;
  }

  .category-grid {
    gap: 12px 10px;
  }

  .category-card {
    gap: 8px;
    padding: 10px 6px 6px;
    border-radius: 18px;
  }

  .category-card-media {
    border-radius: 16px;
  }

  .category-card-name {
    font-size: 12px;
    min-height: 2.55em;
  }

  .quick-picks-head {
    margin-bottom: 12px;
  }

  .quick-picks-head h2 {
    font-size: 24px;
  }

  .quick-picks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .quick-pick-card {
    align-items: flex-start;
    min-height: 124px;
    gap: 8px;
    padding: 12px;
    border-radius: 14px;
    text-align: left;
  }

  .quick-pick-media {
    width: 52px;
    height: 52px;
  }

  .quick-pick-icon {
    width: 36px;
    height: 28px;
    border-radius: 8px;
    font-size: 12px;
  }

  .quick-pick-copy {
    gap: 4px;
  }

  .quick-pick-copy strong {
    font-size: 13px;
  }

  .quick-pick-copy span {
    font-size: 11.5px;
    line-height: 1.35;
  }

  .quick-pick-cta {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11.5px;
  }

  /* Search Section Polish */
  .search-section {
    padding: 10px 0 7px;
  }

  .search-card {
    gap: 8px;
    border-radius: 18px;
    padding: 12px;
  }

  .search-copy h2 {
    font-size: 16px;
  }

  .search-copy p {
    font-size: 12px;
  }

  .search-input-wrap {
    min-height: 50px;
    border-radius: 16px;
  }

  .search-card input {
    min-height: 48px;
    font-size: 14px;
  }

  .offer-product-card {
    gap: 12px;
    padding: 12px;
    border-radius: 20px;
  }

  .offer-product-main {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
  }

  .offer-product-media {
    min-height: 96px;
    border-radius: 14px;
  }

  .offer-product-image {
    padding: 8px;
  }

  .offer-product-body {
    gap: 6px;
    padding-top: 0;
  }

  .offer-product-brand {
    font-size: 13px;
  }

  .offer-product-name {
    font-size: 16px;
    line-height: 1.2;
  }

  .offer-product-unit {
    padding: 4px 8px;
    font-size: 11px;
  }

  .offer-product-price-row {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 8px;
    padding-top: 10px;
  }

  .offer-product-mrp {
    min-height: auto;
    border-right: 0;
    text-align: left;
  }

  .offer-product-mrp span {
    font-size: 13px;
  }

  .offer-product-mrp strong {
    font-size: 21px;
  }

  .offer-product-mrp small {
    font-size: 14px;
  }

  .offer-product-price-panel {
    justify-items: start;
    min-height: 78px;
    padding: 12px;
  }

  .offer-product-price-panel .offer-product-badge {
    transform: none;
  }

  .offer-product-badge {
    min-height: 28px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 11px;
  }

  .offer-product-price-panel > span:not(.offer-product-badge) {
    font-size: 12px;
  }

  .offer-product-price-panel > strong {
    font-size: 23px;
  }

  .offer-product-actions {
    grid-column: 1 / -1;
    padding-top: 0;
  }

  .offer-product-actions .add-btn {
    width: 100%;
    min-height: 40px;
    font-size: 13px;
    border-radius: 14px;
  }

  .offer-product-savings {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
  }

  .offer-product-savings-copy {
    gap: 12px;
  }

  .offer-product-savings-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 18px;
  }

  .offer-product-savings-copy strong {
    font-size: 15px;
  }

  .offer-product-savings-copy span {
    font-size: 12px;
  }

  .offer-product-save-amount {
    justify-items: start;
    padding-left: 0;
    padding-top: 10px;
    border-left: 0;
    border-top: 1px dashed rgba(46, 125, 50, 0.18);
  }

  .offer-product-save-amount span {
    font-size: 13px;
  }

  .offer-product-save-amount strong {
    font-size: 24px;
  }

  .offer-product-validity {
    min-height: 36px;
    padding: 0 10px;
  }

  .offer-product-validity strong {
    font-size: 12px;
  }

  .image-modal {
    padding: 16px;
  }

  .image-modal-dialog {
    width: min(86vw, 360px);
    min-width: 280px;
  }

  .image-modal-close {
    top: -11px;
    right: -11px;
  }

  .category-scroll-shell {
    padding-inline: 40px;
  }

  .filter-scroll {
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .scroll-btn {
    width: 32px;
    height: 32px;
    border-color: #E8DFCF;
    box-shadow: 0 8px 18px rgba(40, 30, 20, 0.10);
  }

  .scroll-btn-left {
    left: 0;
  }

  .scroll-btn-right {
    right: 0;
  }

  .hero-btn {
    flex: 1;
    min-height: 46px;
  }

  .product-footer,
  .cart-item-top,
  .cart-item-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  #product-list {
    gap: 22px;
  }

  .category-items-head {
    gap: 12px;
    margin-bottom: 16px;
  }

  .category-items-copy h2 {
    font-size: 24px;
  }

  .category-back-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .category-back-btn span {
    font-size: 26px;
  }

  .category-section .section-head {
    margin-bottom: 12px;
  }

  .category-section .section-head h3 {
    font-size: 18px;
  }

  .product-card {
    gap: 9px;
    padding: 12px;
    border-radius: 18px;
  }

  .product-card .product-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .product-main {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 12px;
  }

  .product-media {
    width: 116px;
  }

  .product-card-body {
    gap: 3px;
  }

  .product-name {
    font-size: 14.5px;
    line-height: 1.24;
  }

  .product-base-price strong {
    font-size: 17px;
  }

  .product-slab-qty,
  .product-slab-price {
    font-size: 11.5px;
  }

  .product-slab-row {
    min-height: 25px;
    padding: 3px 7px;
  }

  .product-footer [data-product-controls] {
    width: auto;
    justify-content: flex-end;
  }

  .product-footer .add-btn {
    width: auto;
    min-width: 66px;
    padding-inline: 14px;
  }

  .product-card .qty-box {
    width: auto;
    justify-content: center;
    flex-shrink: 0;
  }

  /* // Back To Category Top Button */
  .back-to-category-top-btn {
    right: 16px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }

  .hero-points {
    display: none;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .proof-section {
    margin-top: 48px;
  }

  .proof-wrap {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .proof-head {
    margin-bottom: 14px;
    text-align: center;
  }

  .proof-head h2 {
    font-size: 20px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .proof-point {
    padding: 11px 12px;
    font-size: 12.5px;
  }
}
