/* =========================================================
   home.css — Home page only
   Includes: page background split, hero, testimonials,
   dishes, delivery zones, steps, events, app promo,
   instagram slider, chefs.
   NOTE: Footer/Header/Buttons/Nav are in common.css
========================================================= */

/* ===========================
   HOME PAGE WRAPPER (SPLIT BG)
=========================== */
.page{
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.page::after{
  content:"";
  position:absolute;
  top:0; right:0;
  width: 34%;
  height: 100%;
  background: var(--maroon);
  z-index: 0;
}
.page .container{
  position: relative;
  z-index: 1;
}

/* ===========================
   HERO
=========================== */
.hero{
  padding: 38px 0 64px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items:center;
  gap: 40px;
}

/* pill */
.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.55);
  color: rgba(110,27,27,.95);
  font-weight: 600;
  font-size: 14px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.pillDot{
  width: 10px;
  height: 10px;
  background: var(--maroon);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(110,27,27,0.12);
}

/* heading */
.hero h1{
  margin: 18px 0 12px;
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: 1.03;
  letter-spacing: -1.4px;
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  font-weight: 800;
}
.accent{
  color: var(--maroon);
  font-family: 'Poppins', 'Raleway', sans-serif;
}

.muted{
  margin: 14px 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.ctaRow{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.divider{
  height: 1px;
  background: rgba(14,23,38,0.08);
  margin: 22px 0 18px;
  max-width: 540px;
}

/* social proof */
.socialProof{
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatars{
  display: flex;
  align-items: center;
}
.avatar{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 3px solid var(--bg);
  margin-left: -10px;
  box-shadow: 0 10px 18px rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
}
.avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.avatar:first-child{ margin-left: 0; }

.proofText{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.proofTitle{
  font-weight: 800;
  color: var(--text);
  font-family: 'Raleway', 'Segoe UI', sans-serif;
}
.ratingRow{
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(14,23,38,.75);
  font-weight: 600;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.star{
  width: 16px;
  height: 16px;
  display: inline-block;
}

/* food side */
.foodWrap{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.foodCircle{
  width: min(460px, 92%);
  aspect-ratio: 1/1;
  border-radius: 999px;
  background-image: url('../images/cuisine.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 26px 55px rgba(0,0,0,.15));
}

/* leaf */
.leaf-decoration{
  position: absolute;
  z-index: 1;
  bottom: 0px;
  left: 18px;
}
.leaf-img{
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  animation: floatLeaf 6s ease-in-out infinite;
}
@keyframes floatLeaf{
  0%, 100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-10px) rotate(2deg); }
}

/* ===========================
   TESTIMONIALS
=========================== */
.love-section{
  padding: 84px 0 94px;
  background: #fff;
}
.love-container{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}
.love-header{ text-align: center; }

.love-title{
  margin: 0;
  font-size: clamp(34px, 4.2vw, 64px);
  letter-spacing: -1.2px;
  line-height: 1.05;
  color: #0E1726;
  font-weight: 800;
}
.love-accent{ color: #6E1B1B; }

.love-subtitle{
  margin: 14px auto 0;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.6;
  color: #5A6473;
  font-weight: 500;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* badges */
.love-badges{
  margin: 28px auto 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.badge{
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(14,23,38,0.08);
  border-radius: 14px;
  padding: 12px 14px;
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.badge-icon{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #111;
  background: rgba(14,23,38,0.06);
  font-family: 'Poppins', 'Raleway', sans-serif;
}
.badge-icon--ta{
  background: rgba(34,197,94,0.14);
  color: #16a34a;
  font-weight: 900;
}
.badge-body{ text-align: left; }

.badge-top{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #0E1726;
}
.badge-top strong{
  font-size: 15px;
  font-weight: 800;
  font-family: 'Raleway', 'Segoe UI', sans-serif;
}

.badge-meta{
  margin-top: 2px;
  font-size: 12px;
  color: rgba(14,23,38,0.62);
  font-weight: 600;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.badge-meta--green{ color: #16a34a; }

.stars{
  display: inline-flex;
  gap: 2px;
  font-size: 14px;
  line-height: 1;
  color: #F59E0B;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* hygiene badge */
.badge--hygiene{
  padding: 0;
  overflow: hidden;
  min-width: 300px;
}
.badge-body--center{
  width: 100%;
  text-align: center;
  padding: 12px 14px 0;
}
.badge-label{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #16a34a;
  font-family: 'Poppins', 'Raleway', sans-serif;
}
.hygiene-scale{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 10px;
}
.h-dot{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  color: rgba(14,23,38,0.75);
  border: 1px solid rgba(14,23,38,0.14);
  background: #fff;
}
.h-dot--active{
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
}
.hygiene-footer{
  background: #0b0b0b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 0 0 14px 14px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* testimonials cards */
.testimonials-grid{
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.t-card{
  position: relative;
  background: #FCEFF0;
  border: 1.5px solid rgba(110, 27, 27, 0.6);
  border-radius: 26px;
  padding: 22px 22px 18px;
  min-height: 420px;
  outline: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.t-card:hover,
.t-card:focus{
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.08);
  background: #FDE9EA;
}
.t-stars{
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 16px;
}
.t-quote{
  position: absolute;
  top: 20px;
  right: 18px;
  font-size: 46px;
  color: rgba(110,27,27,0.22);
  font-weight: 900;
  font-family: 'Poppins', 'Raleway', sans-serif;
}
.t-text{
  margin: 0;
  color: rgba(14,23,38,0.78);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  padding-right: 28px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.t-footer{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
}
.t-avatar{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 3px solid #fff;
  box-shadow: 0 10px 18px rgba(0,0,0,0.06);
  overflow: hidden;
}
.t-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-person{ text-align: left; }
.t-name{
  font-weight: 800;
  color: #0E1726;
  font-size: 14px;
}
.t-role{
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(14,23,38,0.62);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===========================
   SIGNATURE DISHES
=========================== */
.dishes-section{
  background:#fff;
  padding: 86px 0 96px;
}
.dishes-container{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}
.dishes-header{
  text-align:center;
  margin-bottom: 34px;
}
.dishes-title{
  margin:0;
  font-size: clamp(34px, 4.3vw, 66px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  font-weight: 850;
  color:#0E1726;
}
.dishes-accent{ color:#6E1B1B; }

.dishes-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.dish-card{
  border-radius: 26px;
  background: #F6F6F7;
  border: 1px solid rgba(14,23,38,0.08);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
  outline:none;
}
.dish-card:hover,
.dish-card:focus{
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.10);
}

.dish-media{
  position: relative;
  background: #111;
  height: 260px;
}
.dish-img{
  width:100%;
  height: 100%;
  object-fit: cover;
  display:block;
  border-radius: 26px 26px 0 0;
}

.dish-tag{
  position:absolute;
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(110,27,27,0.22);
  color:#6E1B1B;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  z-index: 2;
  font-family: 'Poppins', 'Raleway', sans-serif;
}

.dish-body{
  padding: 20px 22px 22px;
  background: #F6F6F7;
  min-height: 215px;
  display:flex;
  flex-direction: column;
}

.dish-name{
  margin: 6px 0 12px;
  font-size: 30px;
  font-weight: 850;
  letter-spacing: -0.6px;
  color:#0E1726;
}
.dish-desc{
  margin: 0;
  color: rgba(14,23,38,0.62);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 600;
  max-width: 360px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.dish-btn{
  margin-top: auto;
  align-self: center;
  margin-top: 22px;
  padding: 12px 24px;
  min-width: 160px;
  border-radius: 999px;
  border: 1px solid rgba(110,27,27,0.18);
  background: #6E1B1B;
  color:#fff;
  font-weight: 800;
  cursor:pointer;
  transition: opacity .15s ease, transform .15s ease;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.dish-btn:hover{ opacity: .92; }
.dish-btn:active{ transform: translateY(1px); }

/* ===========================
   DELIVERY ZONES (DZP)
=========================== */
.dzp-section{
  background:#fff;
  padding: 86px 0 96px;
}
.dzp-container{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}
.dzp-header{
  text-align:center;
  margin-bottom: 34px;
}
.dzp-title{
  margin:0;
  font-size: clamp(34px, 4.4vw, 66px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  font-weight: 850;
  color:#0E1726;
}
.dzp-accent{ color:#6E1B1B; }

.dzp-subtitle{
  margin: 14px auto 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.6;
  color: #5A6473;
  font-weight: 500;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.dzp-grid{
  margin-top: 34px;
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}

.dzp-mapCard{
  border-radius: 28px;
  border: 1px solid rgba(110,27,27,0.18);
  background: #fff;
  overflow:hidden;
  box-shadow: 0 18px 52px rgba(0,0,0,0.06);
}
.dzp-mapFrame{
  position: relative;
  height: 520px;
  background: #EEF2F6;
}
.dzp-mapImg{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  filter: saturate(0.95);
}
.dzp-rings{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  pointer-events:none;
}
.ring{
  position:absolute;
  border-radius: 999px;
}
.ring--solid{
  width: 210px;
  height: 210px;
  border: 4px solid rgba(110,27,27,0.85);
}
.ring--mid{
  width: 320px;
  height: 320px;
  border: 4px solid rgba(110,27,27,0.35);
}
.ring--dashed{
  width: 460px;
  height: 460px;
  border: 3px dashed rgba(110,27,27,0.20);
}

.dzp-pinWrap{
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events:none;
}
.dzp-pin{
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #6E1B1B;
  display:grid;
  place-items:center;
  box-shadow: 0 18px 44px rgba(110,27,27,0.25);
}
.dzp-pinDot{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  display:block;
  opacity: 0.95;
}
.dzp-bubble{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(14,23,38,0.10);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  color:#0E1726;
  font-size: 13px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.dzp-mapFooter{
  padding: 16px 18px;
  text-align:center;
  font-weight: 700;
  color: rgba(14,23,38,0.70);
  background: rgba(246,246,247,0.7);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* right side cards */
.dzp-side{
  display:flex;
  flex-direction: column;
  gap: 18px;
}
.dzp-infoCard{
  background:#fff;
  border: 1px solid rgba(14,23,38,0.08);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.05);
}
.dzp-cardTop{
  display:flex;
  align-items:center;
  gap: 12px;
}
.dzp-icon{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(110,27,27,0.10);
  border: 1px solid rgba(110,27,27,0.12);
  font-size: 16px;
  font-family: 'Poppins', 'Raleway', sans-serif;
}
.dzp-cardTitle{
  font-weight: 850;
  font-size: 22px;
  color:#0E1726;
  letter-spacing: -0.4px;
}
.dzp-divider{
  height: 1px;
  background: rgba(14,23,38,0.08);
  margin: 14px 0;
}
.dzp-row{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.dzp-row--spaced{ margin-top: 14px; }
.dzp-miniIcon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(110,27,27,0.06);
  border: 1px solid rgba(110,27,27,0.10);
  font-size: 14px;
  font-family: 'Poppins', 'Raleway', sans-serif;
}
.dzp-rowBody{ flex: 1; }
.dzp-strong{
  font-weight: 850;
  color:#0E1726;
  font-size: 13.5px;
  font-family: 'Raleway', 'Segoe UI', sans-serif;
}
.dzp-muted{
  margin-top: 4px;
  color: rgba(14,23,38,0.62);
  font-weight: 600;
  font-size: 13px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.dzp-link{
  display:inline-block;
  margin-top: 6px;
  color:#6E1B1B;
  font-weight: 850;
  text-decoration:none;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.dzp-link:hover{ opacity: .85; }
.dzp-timeRow{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 2px 0;
}

/* ===========================
   STEPS
=========================== */
.steps{
  background: #fff;
  padding: 90px 0 96px;
}
.steps__container{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}
.steps__title{
  margin: 0 0 46px;
  text-align: center;
  font-size: clamp(38px, 4.6vw, 72px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  font-weight: 900;
  color: #0E1726;
}
.steps__accent{ color: #6E1B1B; }

.steps__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  justify-content: center;
}
.steps__card{
  background: #fff;
  border: 1px solid rgba(14, 23, 38, 0.10);
  border-radius: 20px;
  padding: 26px 24px 26px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.04);
  min-height: 240px;
}
.steps__num{
  font-size: 30px;
  font-weight: 900;
  color: #6E1B1B;
  margin-bottom: 10px;
  font-family: 'Poppins', 'Raleway', sans-serif;
}
.steps__cardTitle{
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.6px;
  font-weight: 900;
  color: #0E1726;
}
.steps__cardText{
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(14, 23, 38, 0.70);
  font-weight: 600;
  max-width: 280px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===========================
   EVENT GALLERY
=========================== */
.event-section{
  background:#fff;
  padding: 86px 0 96px;
}
.event-container{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}
.event-header{
  text-align:center;
  margin-bottom: 34px;
}
.event-title{
  margin:0;
  font-size: clamp(34px, 4.4vw, 66px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  font-weight: 850;
  color:#0E1726;
}
.event-accent{ color:#6E1B1B; }
.event-subtitle{
  margin: 14px auto 0;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.6;
  color: #5A6473;
  font-weight: 500;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.event-grid{
  margin-top: 36px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.event-tile{
  position: relative;
  display:block;
  border-radius: 24px;
  overflow:hidden;
  background: #EEF2F6;
  box-shadow: 0 16px 44px rgba(0,0,0,0.06);
  border: 1px solid rgba(14,23,38,0.06);
  height: 260px;
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
  cursor:pointer;
}
.event-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.event-tile:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.10);
}

.event-more{
  border: none;
  padding: 0;
  background: transparent;
}
.event-overlay{
  position:absolute;
  inset:0;
  background: rgba(14,23,38,0.42);
  display:grid;
  place-items:center;
}
.event-moreText{
  color:#fff;
  font-weight: 850;
  font-size: clamp(26px, 3.4vw, 46px);
  letter-spacing: -0.6px;
  font-family: 'Poppins', 'Raleway', sans-serif;
}

.event-cta{
  margin-top: 28px;
  display:flex;
  justify-content:center;
}
.event-btn{
  border: 1px solid rgba(110,27,27,0.18);
  background:#6E1B1B;
  color:#fff;
  padding: 14px 26px;
  border-radius: 999px;
  min-width: 320px;
  font-weight: 850;
  font-size: 15px;
  cursor:pointer;
  box-shadow: 0 14px 34px rgba(110,27,27,0.22);
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  transition: opacity .15s ease, transform .15s ease;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.event-btn:hover{ opacity:.93; }
.event-btn:active{ transform: translateY(1px); }
.event-arrow{
  font-size: 18px;
  transform: translateY(1px);
}

/* lightbox */
.lb{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 9999;
  padding: 22px;
}
.lb.open{ display:flex; }
.lb-img{
  max-width: min(980px, 95vw);
  max-height: 82vh;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
  background: #fff;
}
.lb-close{
  position:absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
  color:#fff;
  cursor:pointer;
  font-size: 18px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.lb-close:hover{ opacity: .9; }

/* ===========================
   APP PROMO
=========================== */
.appPromo{
  background: #F3E7E7;
  padding: 86px 0 96px;
}
.appPromo__container{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}
.appPromo__header{
  max-width: 980px;
}
.appPromo__title{
  margin:0;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1.02;
  letter-spacing: -1.3px;
  font-weight: 900;
  color:#0E1726;
}
.appPromo__accent{ color:#6E1B1B; }

.appPromo__subtitle{
  margin: 18px 0 0;
  max-width: 980px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(14,23,38,0.62);
  font-weight: 600;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.appPromo__features{
  margin-top: 38px;
  display:flex;
  flex-direction: column;
  gap: 26px;
  max-width: 820px;
}
.appPromo__feature{
  display:flex;
  align-items:flex-start;
  gap: 18px;
}
.appPromo__icon{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  color:#6E1B1B;
  border: 1.5px solid rgba(110,27,27,0.55);
  background: rgba(255,255,255,0.4);
  flex: 0 0 auto;
  font-family: 'Poppins', 'Raleway', sans-serif;
}
.appPromo__icon svg{
  width: 22px;
  height: 22px;
}
.appPromo__text{ padding-top: 2px; }

.appPromo__featureTitle{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.6px;
  color:#0E1726;
  margin-bottom: 4px;
}
.appPromo__featureDesc{
  font-size: 16px;
  line-height: 1.7;
  color: rgba(14,23,38,0.62);
  font-weight: 600;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.appPromo__cta{ margin-top: 34px; }
.appPromo__btn{
  border: 1px solid rgba(110,27,27,0.18);
  background:#6E1B1B;
  color:#fff;
  padding: 12px 22px;
  border-radius: 999px;
  min-width: 160px;
  font-weight: 850;
  cursor:pointer;
  box-shadow: 0 14px 34px rgba(110,27,27,0.22);
  transition: opacity .15s ease, transform .15s ease;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.appPromo__btn:hover{ opacity:.93; }
.appPromo__btn:active{ transform: translateY(1px); }

/* ===========================
   INSTAGRAM SECTION - COMPLETE
=========================== */
.ig {
  background: linear-gradient(135deg, #FDF6F6 0%, #FBF1E6 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ig__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header Styles */
.ig__header {
  text-align: center;
  margin-bottom: 60px;
}

.ig__title {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #0E1726;
  margin: 0 0 20px;
  font-family: 'Poppins', sans-serif;
}

.ig__accent {
  color: #6E1B1B;
  position: relative;
  display: inline-block;
}

.ig__accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #6E1B1B, rgba(110, 27, 27, 0.2));
  border-radius: 3px;
  z-index: -1;
  opacity: 0.3;
}

.ig__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #5A6473;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* Instagram Handle */
.ig__handle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.8);
  padding: 16px 28px;
  border-radius: 50px;
  border: 2px solid rgba(110, 27, 27, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
}

.ig__badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6E1B1B, #8A2323);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ig__badge svg {
  width: 24px;
  height: 24px;
  color: white;
}

.ig__handle-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ig__handle-name {
  font-weight: 800;
  font-size: 16px;
  color: #0E1726;
  font-family: 'Poppins', sans-serif;
}

.ig__followers {
  font-size: 13px;
  color: #5A6473;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

/* Slider Container */
.ig__slider {
  position: relative;
  margin: 0 -12px;
  padding: 0 12px;
}

/* Navigation Buttons */
.ig__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(110, 27, 27, 0.1);
  color: #6E1B1B;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}

.ig__nav:hover {
  background: #6E1B1B;
  color: white;
  border-color: #6E1B1B;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 20px 50px rgba(110, 27, 27, 0.25);
  opacity: 1;
}

.ig__nav:active {
  transform: translateY(-50%) scale(0.95);
}

.ig__nav svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
}

.ig__nav--prev {
  left: -28px;
}

.ig__nav--next {
  right: -28px;
}

.ig__nav[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.ig__nav[disabled]:hover {
  background: white;
  color: #6E1B1B;
  border-color: rgba(110, 27, 27, 0.1);
  transform: translateY(-50%);
}

/* Viewport */
.ig__viewport {
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}

/* Track */
.ig__track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

/* Slide */
.ig__slide {
  flex: 0 0 auto;
  width: calc((100% - 72px) / 4); /* 4 items with 24px gaps */
}

/* Instagram Card */
.ig__card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(110, 27, 27, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.ig__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(110, 27, 27, 0.15);
  border-color: rgba(110, 27, 27, 0.2);
}

/* Image Wrapper */
.ig__image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
  flex-shrink: 0;
}

.ig__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ig__card:hover .ig__image {
  transform: scale(1.08);
}

/* Instagram Overlay */
.ig__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 60%,
    rgba(0, 0, 0, 0.5) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ig__card:hover .ig__overlay {
  opacity: 1;
}

.ig__likes,
.ig__comments {
  color: white;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Inter', sans-serif;
}

/* Card Content */
.ig__content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: white;
}

.ig__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.ig__date {
  font-size: 12px;
  color: #5A6473;
  font-weight: 600;
}

.ig__type {
  font-size: 14px;
  opacity: 0.7;
}

.ig__caption {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #0E1726;
  font-weight: 500;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Dots Pagination */
.ig__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  height: 20px;
}

.ig__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(110, 27, 27, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.ig__dot:hover {
  background: rgba(110, 27, 27, 0.4);
  transform: scale(1.2);
}

.ig__dot.active {
  background: #6E1B1B;
  transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(110, 27, 27, 0.1);
}

/* Call to Action */
.ig__cta {
  margin-top: 60px;
  text-align: center;
}

.ig__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #6E1B1B, #8A2323);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 15px 40px rgba(110, 27, 27, 0.2);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.ig__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.ig__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(110, 27, 27, 0.3);
}

.ig__button:hover::before {
  left: 100%;
}

.ig__button:active {
  transform: translateY(0);
}

.ig__button-icon {
  display: grid;
  place-items: center;
}

.ig__button-icon svg {
  width: 20px;
  height: 20px;
}

.ig__button-text {
  font-family: 'Inter', sans-serif;
}

.ig__button-arrow {
  font-size: 18px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.ig__button:hover .ig__button-arrow {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .ig__slide {
    width: calc((100% - 48px) / 3); /* 3 items */
  }
  
  .ig__nav--prev {
    left: -20px;
  }
  
  .ig__nav--next {
    right: -20px;
  }
}

@media (max-width: 992px) {
  .ig__slide {
    width: calc((100% - 24px) / 2); /* 2 items */
  }
  
  .ig__nav {
    width: 48px;
    height: 48px;
  }
  
  .ig__nav svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  .ig {
    padding: 80px 0;
  }
  
  .ig__title {
    font-size: 36px;
  }
  
  .ig__subtitle {
    font-size: 16px;
  }
  
  .ig__handle {
    padding: 14px 24px;
  }
  
  .ig__slide {
    width: calc((100% - 24px) / 2);
  }
  
  .ig__nav {
    display: none; /* Hide arrows on mobile, use swipe */
  }
  
  .ig__image-wrapper {
    height: 240px;
  }
  
  .ig__button {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .ig {
    padding: 60px 0;
  }
  
  .ig__container {
    padding: 0 16px;
  }
  
  .ig__title {
    font-size: 32px;
  }
  
  .ig__handle {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .ig__slide {
    width: 100%; /* 1 item */
  }
  
  .ig__image-wrapper {
    height: 220px;
  }
  
  .ig__content {
    padding: 16px;
  }
  
  .ig__caption {
    font-size: 13px;
  }
  
  .ig__button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Decorative Elements */
.ig::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #6E1B1B, transparent);
  opacity: 0.1;
}

.ig::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #6E1B1B, transparent);
  opacity: 0.1;
}

/* Animation for initial load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ig__header,
.ig__handle,
.ig__slider,
.ig__cta {
  animation: fadeInUp 0.6s ease forwards;
}

.ig__handle {
  animation-delay: 0.1s;
}

.ig__slider {
  animation-delay: 0.2s;
}

.ig__cta {
  animation-delay: 0.3s;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .ig__track,
  .ig__card,
  .ig__image,
  .ig__nav,
  .ig__button,
  .ig__dot,
  .ig__header,
  .ig__handle,
  .ig__slider,
  .ig__cta {
    transition: none;
    animation: none;
  }
  
  .ig__card:hover .ig__image {
    transform: none;
  }
  
  .ig__card:hover {
    transform: none;
  }
  
  .ig__button:hover {
    transform: none;
  }
}

/* ===========================
   CHEFS
=========================== */
.chefs{
  background:#fff;
  padding: 86px 0 96px;
}
.chefs__container{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}
.chefs__header{
  text-align:center;
  margin-bottom: 34px;
}
.chefs__title{
  margin:0;
  font-size: clamp(34px, 4.4vw, 66px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  font-weight: 900;
  color:#0E1726;
}
.chefs__accent{ color:#6E1B1B; }

.chefs__quote{
  margin: 22px auto 0;
  max-width: 980px;
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.35;
  font-weight: 500;
  color: rgba(14,23,38,0.92);
  position: relative;
  padding-left: 22px;
  text-align: left;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.chefs__quote::before{
  content:"";
  position:absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: calc(100% - 16px);
  background:#6E1B1B;
  border-radius: 8px;
}

.chefs__grid{
  margin-top: 38px;
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}
.chefs__media{
  display:flex;
  justify-content:center;
}
.chefs__img{
  width: 100%;
  max-width: 320px;
  height: 420px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 18px 52px rgba(0,0,0,0.12);
}
.chefs__content{
  color: rgba(14,23,38,0.72);
  font-size: 18px;
  line-height: 2.0;
  font-weight: 500;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.chefs__content p{ margin: 0 0 18px; }
.chefs__content p:last-child{ margin-bottom: 0; }

/* ===== Menu Section ===== */
/* ===== Enhanced Menu Section ===== */
.menuSection {
  background: #fbf1e6; /* Changed to your theme color */
  padding: 80px 0 100px;
  position: relative;
}

.menuContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.menuHeader {
  text-align: center;
  margin-bottom: 48px;
}

.menuTitle {
  font-size: clamp(38px, 4vw, 58px);
  margin: 0;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1.1;
}

.menuAccent {
  color: var(--maroon);
  position: relative;
}

.menuAccent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--maroon) 0%, rgba(110, 27, 27, 0.2) 100%);
  border-radius: 3px;
  z-index: -1;
  opacity: 0.4;
}

.menuSubtitle {
  margin: 16px auto 0;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
}

/* ===== Enhanced Tabs ===== */
.menuTabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 40px 0 32px;
  padding: 0 10px;
}

.menuTab {
  border: 2px solid rgba(110, 27, 27, 0.15);
  background: #fff;
  padding: 12px 20px; /* Slightly reduced padding */
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
}

.menuTab:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 27, 27, 0.3);
  box-shadow: 0 8px 24px rgba(110, 27, 27, 0.1);
}

.menuTab:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 2px;
}

.menuTab.is-active {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
  box-shadow: 0 8px 24px rgba(110, 27, 27, 0.2);
  transform: translateY(-2px);
}

/* ===== Filter Bar ===== */
.menuFilters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 24px;
  padding: 0 10px;
}

.menuFilter {
  border: 2px solid rgba(14, 23, 38, 0.1);
  background: #fff;
  padding: 8px 16px; /* More compact */
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.menuFilter:hover {
  border-color: rgba(110, 27, 27, 0.3);
  transform: translateY(-1px);
}

.menuFilter[aria-pressed="true"] {
  background: var(--maroon); /* Dark background for active filter */
  border-color: var(--maroon);
  color: #fff; /* White text for better contrast */
  font-weight: 700;
}

.filterIcon {
  font-size: 16px;
  opacity: 0.8;
}

/* ===== Search Bar ===== */
.menuSearch {
  position: relative;
  max-width: 560px;
  margin: 0 auto 32px;
  padding: 0 10px;
}

.menuSearch input {
  width: 100%;
  padding: 16px 52px 16px 24px;
  border-radius: 50px;
  border: 2px solid rgba(14, 23, 38, 0.1);
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.menuSearch input:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 8px 30px rgba(110, 27, 27, 0.15);
}

.menuSearch input::placeholder {
  color: rgba(14, 23, 38, 0.5);
}

.searchIcon {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(14, 23, 38, 0.5);
  font-size: 18px;
  pointer-events: none;
}

/* ===== Enhanced Panel ===== */
.menuPanel {
  background: #fff;
  border: 1px solid rgba(14, 23, 38, 0.06);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  margin-top: 20px;
}

.menuNote {
  background: linear-gradient(90deg, rgba(110, 27, 27, 0.06), rgba(110, 27, 27, 0.03));
  border: 1px dashed rgba(110, 27, 27, 0.25);
  padding: 14px 18px; /* More compact */
  border-radius: 16px;
  margin-bottom: 20px; /* Reduced margin */
  font-weight: 600;
  color: var(--maroon);
  font-size: 14px; /* Smaller font */
  text-align: center;
}

.menuCards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* More compact cards */
  gap: 20px; /* Reduced gap */
}

@media (max-width: 768px) {
  .menuCards {
    grid-template-columns: 1fr;
    gap: 16px; /* Even smaller gap on mobile */
  }
}

/* ===== Compact Menu Item Card ===== */
.menuItem {
  background: #fff;
  border: 1px solid rgba(14, 23, 38, 0.08);
  border-radius: 16px; /* Slightly smaller radius */
  padding: 20px; /* Reduced padding */
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04); /* Lighter shadow */
}

.menuItem:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); /* Reduced hover shadow */
  border-color: rgba(110, 27, 27, 0.15);
}

.menuItem:focus-within {
  outline: 2px solid var(--maroon);
  outline-offset: 2px;
}

.menuItem__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px; /* Reduced margin */
}

.menuItem__name {
  font-weight: 800;
  font-size: 18px; /* Smaller font */
  line-height: 1.3;
  color: var(--text);
  flex: 1;
}

.menuItem__price {
  font-weight: 900;
  font-size: 20px; /* Slightly smaller */
  color: var(--maroon);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.menuItem__desc {
  margin-top: 6px; /* Reduced margin */
  color: rgba(14, 23, 38, 0.7);
  font-size: 14px; /* Smaller font */
  line-height: 1.5; /* Tighter line height */
  margin-bottom: 12px; /* Reduced margin */
}

/* ===== Dietary Pills with Icons ===== */
.menuPills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px; /* Smaller gap */
  margin-bottom: 8px; /* Reduced margin */
}

.menuPill {
  font-size: 11px; /* Smaller font */
  font-weight: 700;
  padding: 4px 10px; /* More compact padding */
  border-radius: 16px; /* Smaller radius */
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(76, 175, 80, 0.08); /* Lighter background */
  border: 1px solid rgba(76, 175, 80, 0.15);
  color: #2E7D32;
}

.menuPill::before {
  content: '✓';
  font-size: 9px; /* Smaller icon */
}

.menuPill[data-type="vegan"] {
  background: rgba(56, 142, 60, 0.08);
  border-color: rgba(56, 142, 60, 0.15);
  color: #1B5E20;
}

.menuPill[data-type="gluten_free"] {
  background: rgba(251, 192, 45, 0.08);
  border-color: rgba(251, 192, 45, 0.15);
  color: #F57C00;
}

/* ===== Tags Styling ===== */
.menuTags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px; /* Smaller gap */
  margin-bottom: 8px; /* Reduced margin */
}

.menuTag {
  font-size: 10px; /* Smaller font */
  font-weight: 700;
  padding: 3px 8px; /* More compact */
  border-radius: 10px; /* Smaller radius */
  background: linear-gradient(90deg, rgba(110, 27, 27, 0.06), rgba(110, 27, 27, 0.03));
  border: 1px solid rgba(110, 27, 27, 0.1);
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ===== Spice Level Indicator ===== */
.menuSpice {
  display: flex;
  align-items: center;
  gap: 3px; /* Smaller gap */
  margin-top: 8px; /* Reduced margin */
}

.spiceLabel {
  font-size: 11px; /* Smaller */
  font-weight: 600;
  color: rgba(14, 23, 38, 0.6);
  margin-right: 6px; /* Reduced */
}

.spiceDot {
  width: 7px; /* Smaller dots */
  height: 7px;
  border-radius: 50%;
  background: rgba(14, 23, 38, 0.1);
  transition: all 0.3s ease;
}

.spiceDot.active {
  background: #FF6B35;
  transform: scale(1.1); /* Less dramatic scale */
}

/* ===== Compact Variants Styling ===== */
.menuVariants {
  margin-top: 12px; /* Reduced margin */
  padding-top: 12px; /* Reduced padding */
  border-top: 1px dashed rgba(14, 23, 38, 0.1);
}

.menuVariant {
  background: rgba(14, 23, 38, 0.02);
  border: 1px solid rgba(14, 23, 38, 0.06);
  border-radius: 10px; /* Smaller radius */
  padding: 10px 14px; /* More compact */
  margin-bottom: 6px; /* Reduced margin */
}

.menuVariant:last-child {
  margin-bottom: 0;
}

.menuVariantName {
  font-weight: 700;
  font-size: 13px; /* Smaller */
  color: var(--text);
  margin-bottom: 4px;
}

.menuVariantDesc {
  font-size: 12px; /* Smaller */
  color: rgba(14, 23, 38, 0.6);
  line-height: 1.4;
}

/* ===== Compact Image Placeholder ===== */
.menuItem__image {
  width: 100%;
  height: 140px; /* Smaller height */
  border-radius: 10px; /* Smaller radius */
  background: linear-gradient(135deg, rgba(110, 27, 27, 0.1), rgba(110, 27, 27, 0.05));
  margin-bottom: 12px; /* Reduced margin */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menuItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imagePlaceholder {
  color: rgba(110, 27, 27, 0.3);
  font-size: 13px; /* Smaller font */
  font-weight: 600;
}

/* ===== Compact Order Button ===== */
.menuItem__order {
  margin-top: 12px; /* Reduced margin */
  display: flex;
  justify-content: center;
}

.menuItem__orderBtn {
  background: var(--maroon);
  color: #fff;
  border: none;
  padding: 8px 16px; /* More compact */
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px; /* Smaller font */
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px); /* Less movement */
}

.menuItem:hover .menuItem__orderBtn {
  opacity: 1;
  transform: translateY(0);
}

.menuItem__orderBtn:hover {
  background: var(--maroon-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(110, 27, 27, 0.25);
}

/* ===== State Messages ===== */
.menuState {
  margin: 20px auto; /* Reduced margin */
  text-align: center;
  padding: 18px 22px; /* More compact */
  border-radius: 16px;
  max-width: 600px;
  font-weight: 600;
  font-size: 15px; /* Slightly smaller */
  border: 1px solid;
}

.menuState--info {
  border-color: rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.05);
  color: #1D4ED8;
}

.menuState--error {
  border-color: rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.05);
  color: #DC2626;
}

.menuState--empty {
  border-color: rgba(14, 23, 38, 0.1);
  background: rgba(14, 23, 38, 0.03);
  color: rgba(14, 23, 38, 0.7);
}

.menuEmpty {
  padding: 30px 20px; /* More compact */
  text-align: center;
  color: rgba(14, 23, 38, 0.5);
  font-weight: 600;
  font-size: 15px; /* Smaller */
  background: rgba(14, 23, 38, 0.02);
  border-radius: 16px;
  border: 2px dashed rgba(14, 23, 38, 0.1);
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1024px) {
  .menuCards {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Even more compact */
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .menuSection {
    padding: 60px 0 80px; /* Reduced padding */
  }
  
  .menuHeader {
    margin-bottom: 36px;
  }
  
  .menuTabs {
    margin: 30px 0 24px;
    gap: 10px;
  }
  
  .menuTab {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .menuPanel {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .menuCards {
    gap: 14px;
  }
  
  .menuItem {
    padding: 16px;
  }
  
  .menuItem__name {
    font-size: 16px;
  }
  
  .menuItem__price {
    font-size: 18px;
  }
  
  .menuItem__image {
    height: 120px;
  }
}


/* =========================================================
   HOME — RESPONSIVE (all home media queries here)
========================================================= */

/* Tablet (<=1024px) */
@media (max-width: 1024px){
  .page::after{ width: 42%; }

  .menu{ gap: 18px; }
  .actions{ min-width: 260px; }
  .lang{ margin-right: 8px; }

  .testimonials-grid{ grid-template-columns: 1fr; }
  .t-card{ min-height: auto; }

  .badge{ min-width: 240px; }
  .badge--hygiene{ min-width: 280px; }

  .foodWrap{ min-height: 480px; }

  .dishes-grid{ grid-template-columns: 1fr; }
  .dish-media{ height: 240px; }
  .dish-name{ font-size: 26px; }

  .dzp-grid{ grid-template-columns: 1fr; }
  .dzp-mapFrame{ height: 420px; }
  .ring--dashed{ width: 380px; height: 380px; }
  .ring--mid{ width: 280px; height: 280px; }
  .ring--solid{ width: 180px; height: 180px; }

  .event-grid{ grid-template-columns: repeat(2, 1fr); }
  .event-tile{ height: 230px; }
  .event-btn{ min-width: 260px; }

  .chefs__grid{ grid-template-columns: 1fr; gap: 26px; }
  .chefs__quote{ padding-left: 18px; }
  .chefs__img{ max-width: 420px; height: 360px; }
  .chefs__content{ font-size: 16px; line-height: 1.9; }

  .steps__grid{
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .steps__cardText{ max-width: none; }
}

/* Mobile (<=768px) */
@media (max-width: 768px){
  .page::after{ display:none; }

  .heroGrid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .foodWrap{
    order: -1;
    min-height: 360px;
  }

  .ig__item{
    flex-basis: calc((100% - 22px) / 2);
    height: 360px;
  }

  .ig__btn{
    min-width: 280px;
    width: 100%;
    max-width: 520px;
  }

  .dzp-mapFrame{ height: 360px; }
  .ring--dashed{ width: 300px; height: 300px; }
  .ring--mid{ width: 220px; height: 220px; }
  .ring--solid{ width: 140px; height: 140px; }
}

/* Small Mobile (<=480px) */
@media (max-width: 480px){
  .hero{ padding: 28px 0 48px; }

  .love-section,
  .dishes-section,
  .dzp-section,
  .steps,
  .event-section,
  .appPromo,
  .ig,
  .chefs{
    padding: 60px 0 70px;
  }

  .event-grid{ grid-template-columns: 1fr; }
  .event-tile{ height: 240px; }

  .appPromo__featureTitle{ font-size: 22px; }
  .appPromo__featureDesc{ font-size: 15px; }

  .ig__item{ flex-basis: 100%; height: 340px; }
  .ig__nav{ display:none; }

  .ig__btn{ min-width: 0; width: 100%; }

  .steps__title,
  .love-title,
  .dishes-title,
  .dzp-title,
  .event-title,
  .appPromo__title,
  .chefs__title{
    font-size: clamp(30px, 7vw, 38px);
  }

  .hero h1{
    font-size: clamp(36px, 8vw, 42px);
  }
}

/* Reduced motion (home-only animations) */
@media (prefers-reduced-motion: reduce){
  .leaf-img{
    animation: none !important;
    transform: none !important;
  }
}
