/*
  KGcart — Zippy Theme Preview
  Brand: Japanese Laurel green #066A09 | Gold #E8A020 | Navy #0D2080
*/

:root {
  --brand-primary: #066A09;
  --brand-primary-dark: #044A06;
  --brand-accent: #E8A020;
  --brand-accent-dark: #C78010;
  --brand-navy: #0D2080;
  --navy: #0A1628;
  --white: #ffffff;
  --off-white: #F5F7FA;
  --border: #E0E0E0;
  --text-dark: #1A1A2E;
  --text-muted: #6B7280;
  --page-px: 4rem;
  --radius: 8px;
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --typography-font-family: 'Outfit', system-ui, sans-serif !important;
}

body {
  font-family: 'Outfit', system-ui, sans-serif !important;
}


/* =====store level css========= */
.shop-now-button {
  background: white;
    color: #256E2A;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 5px;
}

.ProductGridCollection-component .collection-header {
  display: none !important;
}

#categories {
  padding-left: 0px;
  padding-right: 0px;
}


.page-container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--page-px);
  padding-right: var(--page-px);
}

/* ════════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════════ */
.announcement-bar {
  background: var(--brand-navy);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-items {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.announcement-items strong {
  color: #FFD740;
}

.ann-divider {
  color: rgba(255,255,255,0.3);
  padding: 0 0.75rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .announcement-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .announcement-bar::-webkit-scrollbar {
    display: none;
  }

  .announcement-inner {
    justify-content: flex-start;
    width: max-content;
    min-width: 100%;
    padding: 10px 16px;
  }

  .announcement-items {
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: max-content;
  }

  .announcement-items span {
    flex-shrink: 0;
  }
}

/* ════════════════════════════════
   HERO CAROUSEL
════════════════════════════════ */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.slide-1 {
  background: linear-gradient(135deg, #071A07 0%, #0D5C10 45%, #1B8C20 100%);
}

.slide-2 {
  background: linear-gradient(135deg, #1A0A00 0%, #7B2D0A 45%, #A84215 100%);
}

.slide-3 {
  background: linear-gradient(135deg, #020B1A 0%, #0D3070 45%, #1155A8 100%);
}

.slide-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.25) 100%);
}

.slide-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 28px 28px;
}

.slide-content {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 52px var(--page-px);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.slide-text {
  flex: 1;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.slide-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 12px;
}

.slide-title span {
  color: #FFD740;
}

.slide-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.6;
}

.slide-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.slide-pill {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 5px 13px;
}

.slide-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  background: var(--brand-accent);
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--brand-accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
}

.btn-ghost:hover {
  color: white;
}

.slide-products {
  flex-shrink: 0;
  width: 320px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-prod-item {
  background: white;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-prod-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-prod-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: var(--brand-accent);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 3px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.1rem;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}

.carousel-dot.active {
  background: white;
  width: 22px;
  border-radius: 4px;
}

/* ════════════════════════════════
   SECTION HEADER
════════════════════════════════ */
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 8px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--brand-primary);
  border-radius: 2px;
}

.section-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.view-all-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.view-all-link:hover {
  text-decoration: underline;
}

/* ════════════════════════════════
   CATEGORIES
════════════════════════════════ */

/* ════════════════════════════════
   DEAL OF THE DAY — special banner
════════════════════════════════ */
.deal-section.page-container {
  padding: 0 var(--page-px);
}

.deal-banner {
  background: linear-gradient(135deg, #B8860B 0%, #DAA520 40%, #FFD700 100%);
  border-radius: 12px;
  padding: 20px 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.deal-banner-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1A0A00;
  margin-bottom: 4px;
}

.deal-banner-text p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 500;
}

.deal-timer {
  display: flex;
  gap: 8px;
  align-items: center;
}

.timer-unit {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  min-width: 52px;
}

.timer-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1A0A00;
  line-height: 1;
}

.timer-label {
  font-size: 0.6rem;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  font-weight: 600;
}

.timer-sep {
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.5);
}


/* ════════════════════════════════
   TYPE 3: Full-width landscape banner
════════════════════════════════ */
.banner-collection.page-container {
  padding: 0 var(--page-px) 3rem;
}
.banner-collection .banner {
  border-radius: 12px;
}



/* ════════════════════════════════
   MEAT LOVERS SECTION
════════════════════════════════ */
.meat-lovers-section.page-container {
  padding: 0 var(--page-px) 3rem;
}

.meat-lovers-banner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 20px;
  min-height: 140px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.meat-lovers-banner .banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.meat-lovers-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 4, 4, 0.88) 0%, rgba(80, 10, 10, 0.72) 60%, rgba(0, 0, 0, 0.4) 100%);
}

.meat-lovers-banner .flame,
.meat-lovers-banner-text,
.meat-lovers-banner .btn-white {
  position: relative;
  z-index: 1;
}

.meat-lovers-banner .flame {
  font-size: 2rem;
}

.meat-lovers-banner-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin-bottom: 2px;
}

.meat-lovers-banner-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.meat-lovers-banner .btn-white {
  background: white;
  color: #7B1A1A;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 6px;
  margin-left: auto;
  white-space: nowrap;
  display: inline-block;
}

.meat-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.meat-tab {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
  background: white;
  font-family: inherit;
}

.meat-tab.active,
.meat-tab:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

/* ════════════════════════════════
   BULK DEALS
════════════════════════════════ */
.bulk-section.page-container {
  padding: 0 var(--page-px) 3rem;
}

.bulk-banner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 20px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bulk-banner .banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.bulk-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 30, 10, 0.85) 0%, rgba(10, 50, 10, 0.7) 60%, rgba(0, 0, 0, 0.3) 100%);
}

.bulk-banner-text,
.bulk-banner .btn-yellow {
  position: relative;
  z-index: 1;
}

.bulk-banner-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
}

.bulk-banner-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.bulk-banner .btn-yellow {
  background: #FFD740;
  color: #0D4F8B;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 6px;
  white-space: nowrap;
  display: inline-block;
}

/* ════════════════════════════════
   BUY IN COMBO
════════════════════════════════ */
.combo-section.page-container {
  padding: 0 var(--page-px) 3rem;
}

.combo-banner {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #388E3C 100%);
  border-radius: 12px;
  padding: 18px 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.combo-banner-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
}

.combo-banner-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.combo-banner .btn-gold {
  background: #FFD740;
  color: #1B5E20;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 6px;
  white-space: nowrap;
  display: inline-block;
}

.combo-circles-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

.combo-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  cursor: pointer;
}

.combo-circle {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: transform 0.2s;
  border: 2px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.combo-circle-item:hover .combo-circle {
  transform: scale(1.1);
}

.combo-circle-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.combo-shop-promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.combo-promo-card {
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.combo-promo-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.combo-promo-card:nth-child(2) {
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
}

.combo-promo-card .promo-text h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.combo-promo-card .promo-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.combo-promo-card .promo-btn {
  background: var(--brand-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
}

/* ════════════════════════════════
   BUDGET SHOPPING
════════════════════════════════ */
.budget-section.page-container {
  padding: 0 var(--page-px) 3rem;
}

.budget-banner {
  background: linear-gradient(135deg, #004D40 0%, #00695C 60%, #00897B 100%);
  border-radius: 12px;
  padding: 18px 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.budget-banner-text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.budget-banner-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

/* ════════════════════════════════
   GRADIENT BANNER sections (no photos)
   Used for: Organic, Nilgiri, GoGreen, CutVeg, CutFruits, Sprouts, Nuts
════════════════════════════════ */
.gradient-banner-section.page-container {
  padding: 0 var(--page-px) 3rem;
}

/* ════════════════════════════════
   STRIPE SECTIONS (eggs, chicken, mutton, fish)
════════════════════════════════ */
.stripe-section.page-container {
  padding: 0 var(--page-px) 2.5rem;
}

.stripe-banner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 14px 24px;
  margin-bottom: 16px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.stripe-banner .stripe-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stripe-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.stripe-banner .stripe-icon,
.stripe-banner .stripe-text,
.stripe-banner .stripe-view-all {
  position: relative;
  z-index: 1;
}

.stripe-eggs {
  background: #F57F17;
}

.stripe-chicken {
  background: #4E342E;
}

.stripe-mutton {
  background: #880E4F;
}

.stripe-fish {
  background: #01579B;
}

.stripe-banner .stripe-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.stripe-banner .stripe-text h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
}

.stripe-banner .stripe-text p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

.stripe-banner .stripe-view-all {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stripe-products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* ════════════════════════════════
   COUPON CAROUSEL (Instacart style)
════════════════════════════════ */
.coupon-carousel-section.page-container {
  padding: 0 var(--page-px) 3rem;
}

.coupon-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.coupon-carousel-track::-webkit-scrollbar {
  display: none;
}

.coupon-card {
  min-width: 200px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.coupon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.coupon-card-top {
  padding: 20px 16px;
  text-align: center;
}

.coupon-card-top .coupon-emoji {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.coupon-card-top h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.coupon-card-top p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.coupon-card-bottom {
  background: white;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.coupon-card-code {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: monospace;
  background: var(--off-white);
  padding: 4px 8px;
  border-radius: 4px;
}

.coupon-card-btn {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.cc-1 {
  background: linear-gradient(135deg, #1B5E20, #388E3C);
}

.cc-2 {
  background: linear-gradient(135deg, #E65100, #F57C00);
}

.cc-3 {
  background: linear-gradient(135deg, #4A148C, #7B1FA2);
}

.cc-4 {
  background: linear-gradient(135deg, #0D47A1, #1976D2);
}

.cc-5 {
  background: linear-gradient(135deg, #880E4F, #C2185B);
}

.cc-6 {
  background: linear-gradient(135deg, #004D40, #00897B);
}

/* ════════════════════════════════
   ZONE DIVIDER
════════════════════════════════ */
.zone-divider {
  background: #1A0A0A;
  padding: 22px var(--page-px);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
  margin-top: 20px;
}

.zone-divider span {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.zone-divider p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.zone-divider::before {
  content: '';
  display: block;
  width: 4px;
  height: 36px;
  background: var(--brand-accent);
  border-radius: 4px;
  flex-shrink: 0;
}

/* ════════════════════════════════
   TRUST STRIP
════════════════════════════════ */
.trust-strip.page-container {
  padding-top: 0;
  padding-bottom: 0;
}

.trust-strip-inner {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 0 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.trust-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.trust-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ════════════════════════════════
   TYPE 1: Single-row collection
════════════════════════════════ */
.product-collection.page-container {
  padding: 0 var(--page-px) 3rem;
}
.collection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.heading-wrap .heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}
.heading-wrap .sub-heading {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.shop-all-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}
.shop-all-link:hover {
  text-decoration: underline;
}
.single-row-swiper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  overflow: hidden;
}


/* ════════════════════════════════
   NON-VEG CAROUSEL (6 poster)
════════════════════════════════ */
.poster-carousel-section.page-container {
  padding: 0 var(--page-px) 3rem;
}

.poster-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.poster-carousel-track::-webkit-scrollbar {
  display: none;
}

.poster-card {
  min-width: 180px;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.poster-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.poster-card:hover {
  transform: translateY(-4px);
}

.poster-card-text {
  position: relative;
  z-index: 1;
  padding: 16px;
  width: 100%;
}

.poster-card-text h3 {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.poster-card-text p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.pc-1 {
  background: linear-gradient(180deg, #3E1A00 0%, #8B4513 100%);
}

.pc-2 {
  background: linear-gradient(180deg, #1A0A2E 0%, #6A0572 100%);
}

.pc-3 {
  background: linear-gradient(180deg, #0A2E1A 0%, #1B6E3F 100%);
}

.pc-4 {
  background: linear-gradient(180deg, #1A1A00 0%, #6E5A00 100%);
}

.pc-5 {
  background: linear-gradient(180deg, #0A1A2E 0%, #1A4E8B 100%);
}

.pc-6 {
  background: linear-gradient(180deg, #2E0A0A 0%, #8B1A1A 100%);
}


/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer {
  background: #0A1A0C;
  margin-top: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.6fr;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

.footer-logo {
  height: 44px;
  width: auto;
  border-radius: 8px;
  margin-bottom: 12px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s;
}

.social-btn:hover {
  background: var(--brand-primary);
  color: white;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: white;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-accent);
}

.footer-app-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 8px 12px;
  color: white;
  transition: background 0.2s;
}

.app-store-btn:hover {
  background: rgba(255, 255, 255, 0.13);
}

.app-btn-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
}

.app-btn-main {
  font-size: 0.85rem;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-pay-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

.pay-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 3px 7px;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════
   TABLET ≤1100px
════════════════════════════════ */
@media (max-width: 1100px) {
  :root {
    --page-px: 2rem;
  }

  .cat-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .combo-circles-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .single-row-swiper {
    grid-template-columns: repeat(4, 1fr);
  }

  .stripe-products {
    grid-template-columns: repeat(4, 1fr);
  }

  .slide-products {
    width: 240px;
  }

  .slide-title {
    font-size: 2.4rem;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-app-btns {
    flex-direction: row;
  }
}

/* ════════════════════════════════
   MOBILE ≤768px
════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --page-px: 1rem;
  }

  body {
    padding-bottom: 72px;
  }


  /* Hero */
  .carousel-slide {
    min-height: 260px;
  }

  .slide-content {
    flex-direction: column;
    padding: 24px var(--page-px);
    gap: 16px;
  }

  .slide-products {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .hero-prod-item {
    aspect-ratio: 1;
  }

  .slide-title {
    font-size: 1.7rem;
  }

  .slide-sub {
    font-size: 0.85rem;
  }

  .slide-pills {
    display: none;
  }

  /* Combo circles */
  .combo-circles-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .combo-circle {
    font-size: 1.4rem;
  }

  .combo-shop-promos {
    grid-template-columns: 1fr;
  }

  /* Deal banner */
  .deal-banner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    margin-top: 20px;
  }

  .deal-banner-text h2 {
    font-size: 1.4rem;
  }

  /* Section headers */
  .section-title {
    font-size: 1.2rem;
  }

  /* Trust strip */
  .trust-strip-inner {
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .trust-item {
    width: 50%;
    border-right: none;
    padding: 14px 10px;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-bottom: none;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-app-btns {
    flex-direction: row;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .meat-lovers-banner {
    justify-content: center;
    flex-direction: column;
  }
  .meat-lovers-banner-text {
    text-align: center;
  }
  .meat-lovers-banner .btn-white {
    margin-left: 0px;
  }
  .zone-divider {
    flex-direction: column;
  }
  .zone-divider::before {
  content: '';
  display: none;
  width: 4px;
  height: 36px;
  background: var(--brand-accent);
  border-radius: 4px;
  flex-shrink: 0;
}
.combo-banner {
  flex-direction: column;
  text-align: center;
  gap: 12px;
}
}

