/* ═══════════════════════════════════════════════════════════════════
   Rekha's Kitchen · Global Stylesheet v3.0
   Fresh Garden · Salad & Protein Bowl Brand
═══════════════════════════════════════════════════════════════════ */

/* ── Design tokens (mirrors base.html :root exactly) ── */
:root {
  --leaf-900:  #1B3A2B;
  --leaf-700:  #2F6B3F;
  --leaf-500:  #4CA362;
  --lime-300:  #C8E6A0;
  --cream-50:  #FAF7F0;
  --sand-100:  #F1EADB;
  --earth-700: #6B4F2A;
  --tomato-500:#E2533B;
  --ink-900:   #0F1A14;
  --mist-200:  #E8EFE6;

  /* Backward-compat */
  --saffron:    #4CA362;
  --saffron-lt: #6DB87A;
  --saffron-dark: #2F6B3F;
  --green:      #1B3A2B;
  --green-lt:   #2F6B3F;
  --cream:      #FAF7F0;
  --cream-2:    #F1EADB;
  --cream-dk:   #F1EADB;
  --ink:        #0F1A14;
  --ink-lt:     #1B3A2B;
  --ink-soft:   #3A5040;
  --muted:      #5A7060;
  --white:      #ffffff;
  --card-bg:    #ffffff;
  --line:       #E8EFE6;
  --gold:       #D4A017;

  --shadow-sm: 0 1px 4px rgba(11,26,15,0.06), 0 1px 2px rgba(11,26,15,0.04);
  --shadow-md: 0 4px 20px rgba(11,26,15,0.08), 0 2px 8px rgba(11,26,15,0.05);
  --shadow-lg: 0 20px 64px rgba(11,26,15,0.12), 0 8px 24px rgba(11,26,15,0.07);
  --shadow-xl: 0 40px 100px rgba(11,26,15,0.16);
  --shadow-green: 0 8px 32px rgba(76,163,98,0.25);

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --nav-h:     68px;
}

/* ── Base reset ── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.56;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink-900);
  margin: 0 0 .5em;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
a  { color: var(--leaf-700); text-decoration: none; }
img { max-width: 100%; display: block; }
.muted { color: var(--muted); font-size: .92rem; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.main { min-height: 70vh; }

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px; font-weight: 600; font-size: .9rem;
  border: 1.5px solid transparent; cursor: pointer; transition: all .22s ease;
  font-family: inherit; white-space: nowrap; text-decoration: none;
}
.btn-primary   { background: var(--leaf-500); color: #fff; border-color: var(--leaf-500); }
.btn-primary:hover { background: var(--leaf-700); border-color: var(--leaf-700); transform: translateY(-2px); box-shadow: var(--shadow-green); }
.btn-saffron   { background: var(--leaf-500); color: #fff; border-color: var(--leaf-500); }
.btn-saffron:hover { background: var(--leaf-700); border-color: var(--leaf-700); transform: translateY(-2px); box-shadow: var(--shadow-green); }
.btn-ghost     { background: transparent; color: var(--leaf-700); border-color: var(--mist-200); }
.btn-ghost:hover { background: var(--mist-200); }
.btn-outline   { background: #fff; color: var(--leaf-700); border: 1.5px solid var(--leaf-700); }
.btn-outline:hover { background: var(--leaf-700); color: #fff; }
.btn-danger    { background: #fff; color: var(--tomato-500); border: 1px solid #fbc4bc; }
.btn-danger:hover { background: var(--tomato-500); color: #fff; }
.btn-block { width: 100%; }
.btn-sm    { padding: 8px 16px; font-size: .84rem; }
.btn-lg    { padding: 14px 32px; font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════════════
   SECTION / PAGE LAYOUT
═══════════════════════════════════════════════════════════════════ */
.section { padding: 88px 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; gap: 24px; flex-wrap: wrap;
}
.section-head .eyebrow { color: var(--leaf-500); letter-spacing: .14em; text-transform: uppercase; font-weight: 700; font-size: .8rem; }
.section-head h2 { margin: 6px 0 0; }
.section-head p { color: var(--muted); max-width: 480px; margin: 8px 0 0; font-size: .93rem; }

/* Page header (menu, about, etc.) */
.page-header {
  position: relative;
  background: var(--leaf-900);
  overflow: hidden;
  padding: 72px 32px 60px;
  text-align: center;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  opacity: 0.15;
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,26,15,0.94) 0%, rgba(27,58,43,0.72) 100%);
}
.page-header-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.page-header .eyebrow {
  color: var(--lime-300);
  background: rgba(200,230,160,0.14);
  border: 1px solid rgba(200,230,160,0.28);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; padding: 5px 13px; border-radius: 100px; margin-bottom: 16px;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 12px;
}
.page-header h1 em { font-style: italic; color: var(--lime-300); }
.page-header p { font-size: .93rem; color: rgba(255,255,255,0.55); line-height: 1.68; max-width: 480px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════════
   CATEGORY STRIP
═══════════════════════════════════════════════════════════════════ */
.cat-strip { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; flex-wrap: wrap; }
.cat-pill {
  padding: 9px 20px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--mist-200);
  color: var(--ink-soft); font-weight: 500; font-size: .87rem;
  white-space: nowrap; cursor: pointer; transition: all .2s ease; text-decoration: none;
}
.cat-pill:hover { border-color: var(--leaf-500); color: var(--leaf-700); background: rgba(76,163,98,0.06); }
.cat-pill.active { background: var(--leaf-700); color: #fff; border-color: var(--leaf-700); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════
   DISH GRID & CARDS
═══════════════════════════════════════════════════════════════════ */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.dish-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--mist-200);
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.dish-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid var(--leaf-500);
  opacity: 0;
  transition: opacity .26s ease;
  pointer-events: none;
  z-index: 1;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.dish-card:hover::before { opacity: 1; }

.dish-img { position: relative; aspect-ratio: 4/3; overflow: hidden; flex-shrink: 0; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.dish-card:hover .dish-img img { transform: scale(1.06); }

.dish-tag {
  position: absolute; bottom: 10px; left: 10px;
  background: var(--leaf-700); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; letter-spacing: .04em;
  pointer-events: none; z-index: 2;
}

.wish-btn {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: 0;
  display: grid; place-items: center; cursor: pointer;
  color: var(--muted); transition: all .2s ease;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 2;
}
.wish-btn:hover { background: #fff; color: var(--tomato-500); transform: scale(1.12); }
.wish-btn.is-saved { color: var(--tomato-500); }
.wish-btn.is-saved svg { fill: currentColor; }

.veg-mark {
  position: absolute; top: 10px; left: 10px;
  width: 22px; height: 22px;
  background: #fff; border: 1.5px solid rgba(0,0,0,0.14);
  border-radius: 4px; display: flex; align-items: center; justify-content: center; z-index: 2;
}
.veg-mark::after { content: ''; width: 9px; height: 9px; border-radius: 50%; }
.veg-mark.veg::after    { background: #16a34a; }
.veg-mark.nonveg::after { background: #dc2626; }

.dish-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.dish-cat { font-size: .72rem; color: var(--leaf-500); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.dish-name { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--ink-900); font-size: 1.08rem; margin: 0; line-height: 1.3; }
.dish-desc { color: var(--muted); font-size: .86rem; line-height: 1.55; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dish-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px dashed var(--mist-200); }
.dish-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--leaf-700); font-weight: 700; }
.dish-price small { font-size: .82rem; color: var(--muted); font-weight: 400; }
.dish-rating { display: inline-flex; align-items: center; gap: 4px; color: var(--earth-700); font-weight: 600; font-size: .88rem; }
.dish-actions { display: flex; gap: 8px; margin-top: auto; }
.dish-actions .btn-sm {
  padding: 10px 16px; border-radius: 100px;
  font-size: .84rem; font-weight: 600;
  text-align: center; white-space: nowrap;
  display: flex; align-items: center; justify-content: center;
}
.dish-actions .btn-ghost.btn-sm { background: transparent; color: var(--leaf-700); border: 1.5px solid var(--leaf-700); }
.dish-actions .btn-ghost.btn-sm:hover { background: var(--leaf-700); color: #fff; }
.dish-actions .btn-primary.btn-sm { background: var(--leaf-500); color: #fff; border: none; cursor: pointer; }
.dish-actions .btn-primary.btn-sm:hover { background: var(--leaf-700); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════════════
   HOME PAGE — HERO, TRUST, FEATURES
═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 560px;
  display: flex; align-items: center; overflow: hidden;
  background: var(--leaf-900);
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .45; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(11,26,15,0.95) 0%, rgba(27,58,43,0.78) 48%, rgba(11,26,15,0.18) 100%); }

.trust-bar { background: var(--leaf-700); padding: 13px 0; overflow: hidden; }
.trust-ticker { display: flex; gap: 56px; animation: ticker 26s linear infinite; white-space: nowrap; width: max-content; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust-bar:hover .trust-ticker { animation-play-state: paused; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: .86rem; font-weight: 500; }
.trust-item span.dot { color: rgba(255,255,255,0.3); }

/* Category cards on home page */
.category-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
  padding: 40px 0 8px;
}
.cat-card {
  background: #fff; border-radius: 18px; padding: 24px 16px 20px;
  border: 1px solid var(--mist-200); text-align: center;
  text-decoration: none; color: var(--ink-900);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--leaf-500); }
.cat-card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--mist-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; transition: background .22s ease;
}
.cat-card:hover .cat-card-icon { background: rgba(76,163,98,0.15); }
.cat-card h4 { font-family: 'DM Sans', sans-serif; font-size: .84rem; font-weight: 600; color: var(--ink-900); margin: 0; line-height: 1.3; }
.cat-card span { font-size: .75rem; color: var(--muted); }

/* Feature cards */
.featured { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-card {
  background: var(--sand-100); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; align-items: center;
  gap: 28px; padding: 36px; transition: transform .22s ease, box-shadow .22s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card.alt { background: var(--leaf-900); }
.feature-card.alt h3, .feature-card.alt p { color: rgba(255,255,255,.88); }
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 10px; color: var(--ink-900); }
.feature-card p  { font-size: .92rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: 22px; }
.feat-img { width: 130px; height: 130px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }

/* Steps / How it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 32px; left: 12%; width: 76%; height: 2px;
  background: linear-gradient(90deg, var(--leaf-500), var(--lime-300));
  opacity: .25;
}
.step {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 12px; padding: 28px 24px;
  background: #fff; border-radius: var(--radius); border: 1px solid var(--mist-200);
  position: relative; transition: box-shadow .22s ease, transform .22s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--leaf-700), var(--leaf-500));
  color: #fff; font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.step h4 { font-size: 1rem; font-weight: 600; color: var(--ink-900); font-family: 'DM Sans', sans-serif; }
.step p  { font-size: .88rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 20px;
  border: 1px solid var(--mist-200); transition: box-shadow .22s ease, transform .22s ease;
}
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial p { font-size: .95rem; line-height: 1.72; color: var(--ink-soft); font-style: italic; }
.testimonial p::before { content: '\201C'; font-size: 2.4rem; line-height: 0; color: var(--leaf-500); vertical-align: -.5em; margin-right: 4px; font-style: normal; }
.who { display: flex; align-items: center; gap: 12px; }
.who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.who strong { font-size: .9rem; color: var(--ink-900); display: block; }
.who small   { font-size: .78rem; color: var(--muted); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--leaf-900) 0%, #183828 100%);
  border-radius: var(--radius-lg); padding: 72px 48px;
  text-align: center; max-width: 1180px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?w=1200&q=40') center/cover;
  opacity: .05;
}
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem); color: #fff; margin-bottom: 14px; position: relative; }
.cta-banner p  { color: rgba(255,255,255,.58); font-size: 1rem; margin-bottom: 32px; position: relative; }
.cta-banner .btn { position: relative; }

/* BG helpers */
.bg-white    { background: #fff; }
.bg-cream    { background: var(--cream-50); }
.bg-cream-dk { background: var(--sand-100); }

/* ═══════════════════════════════════════════════════════════════════
   SEARCH BOX
═══════════════════════════════════════════════════════════════════ */
.search-box {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid var(--mist-200);
  border-radius: 999px; padding: 10px 20px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.search-box:focus-within { border-color: var(--leaf-500); box-shadow: 0 0 0 3px rgba(76,163,98,0.12); }
.search-box svg { color: var(--muted); flex-shrink: 0; }
.search-box input {
  border: none; outline: none; background: transparent;
  font-family: inherit; font-size: .9rem; color: var(--ink-900); width: 100%;
}
.search-box input::placeholder { color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════════
   DISH DETAIL PAGE
═══════════════════════════════════════════════════════════════════ */
.dish-detail { padding: 60px 0; }
.dish-detail-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; }
.dish-detail-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.dish-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.dish-detail h1 { color: var(--ink-900); margin-bottom: 12px; }
.dish-detail .meta-row { display: flex; gap: 12px; align-items: center; margin: 16px 0; flex-wrap: wrap; }
.chip-info { background: var(--mist-200); padding: 6px 14px; border-radius: 999px; font-size: .85rem; color: var(--leaf-700); font-weight: 500; }
.chip-info.veg { background: rgba(22,163,74,0.1); color: #16a34a; }
.dish-detail .price-big { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--leaf-700); font-weight: 700; margin: 24px 0; }

.qty-picker { display: inline-flex; align-items: center; border: 1.5px solid var(--mist-200); border-radius: 999px; overflow: hidden; background: #fff; }
.qty-picker button { width: 40px; height: 40px; border: 0; background: transparent; cursor: pointer; font-size: 1.1rem; color: var(--leaf-700); transition: background .18s; }
.qty-picker button:hover { background: var(--mist-200); }
.qty-picker span { min-width: 36px; text-align: center; font-weight: 700; color: var(--ink-900); }
.detail-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 20px; }

@media (max-width: 880px) { .dish-detail-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ═══════════════════════════════════════════════════════════════════
   CART PAGE
═══════════════════════════════════════════════════════════════════ */
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 36px; padding: 50px 0; }
.cart-list { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: grid; grid-template-columns: 110px 1fr auto;
  gap: 18px; background: #fff; border: 1px solid var(--mist-200);
  border-radius: var(--radius); padding: 16px; align-items: center;
  transition: box-shadow .2s ease;
}
.cart-item:hover { box-shadow: var(--shadow-sm); }
.cart-item img { width: 110px; height: 110px; border-radius: var(--radius-sm); object-fit: cover; }
.cart-item h4 { color: var(--ink-900); margin: 0 0 4px; font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 600; }
.cart-item .ci-controls { display: flex; align-items: center; gap: 14px; margin-top: 10px; }
.cart-item .remove { background: transparent; border: 0; color: var(--tomato-500); cursor: pointer; font-size: .85rem; font-weight: 500; padding: 0; transition: opacity .18s; }
.cart-item .remove:hover { opacity: .7; }
.cart-item .ci-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--leaf-700); font-weight: 700; text-align: right; }

.summary {
  background: #fff; border: 1px solid var(--mist-200);
  border-radius: var(--radius-lg); padding: 28px;
  height: fit-content; position: sticky; top: calc(var(--nav-h) + 20px);
}
.summary h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; color: var(--ink-900); font-size: 1.1rem; margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; color: var(--ink-soft); font-size: .9rem; }
.summary-row.total {
  border-top: 1px dashed var(--mist-200); margin-top: 8px; padding-top: 16px;
  font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--leaf-700); font-weight: 700;
}
.coupon { display: flex; gap: 8px; margin: 14px 0 8px; }
.coupon input { flex: 1; padding: 10px 14px; border: 1px solid var(--mist-200); border-radius: var(--radius-sm); font-family: inherit; outline: none; transition: border-color .18s; }
.coupon input:focus { border-color: var(--leaf-500); }

.empty-state { text-align: center; padding: 80px 24px; }
.empty-state svg { color: var(--muted); opacity: .3; margin: 0 auto 16px; }
.empty-state h3 { color: var(--ink-900); margin-bottom: 8px; }
.empty-state p  { color: var(--muted); margin-bottom: 20px; max-width: 300px; margin-left: auto; margin-right: auto; }

@media (max-width: 880px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item img { width: 80px; height: 80px; }
  .cart-item .ci-price { grid-column: span 2; text-align: left; }
}

/* ═══════════════════════════════════════════════════════════════════
   AUTH PAGES
═══════════════════════════════════════════════════════════════════ */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - var(--nav-h)); }
.auth-art {
  background: linear-gradient(145deg, var(--leaf-900), var(--leaf-700)),
              url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?w=900&q=80') center/cover;
  background-blend-mode: multiply; color: #fff;
  padding: 60px; display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.auth-art::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(200,230,160,0.1) 0%, transparent 60%);
}
.auth-art h2 { color: #fff; font-size: 2.2rem; position: relative; }
.auth-art p  { color: rgba(255,255,255,0.82); position: relative; }
.auth-quote  { border-left: 3px solid var(--lime-300); padding-left: 18px; }
.auth-quote p { font-style: italic; font-size: 1.02rem; }
.auth-form-wrap { padding: 60px; display: grid; place-items: center; background: var(--cream-50); }
.auth-form { width: 100%; max-width: 420px; }
.auth-form h1 { color: var(--ink-900); font-size: 2rem; margin-bottom: 6px; }
.auth-form .subtitle { color: var(--muted); margin-bottom: 32px; font-size: .93rem; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: .84rem; color: var(--ink-soft); font-weight: 600; }
.field input, .field select, .field textarea {
  padding: 12px 14px; border: 1.5px solid var(--mist-200);
  border-radius: var(--radius-sm); background: #fff;
  font-family: inherit; font-size: .92rem; color: var(--ink-900);
  transition: border-color .2s ease, box-shadow .2s ease; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--leaf-500);
  box-shadow: 0 0 0 3px rgba(76,163,98,0.12);
}
.field-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-hint { font-size: .8rem; color: var(--muted); }

.auth-divider { text-align: center; color: var(--muted); margin: 22px 0; position: relative; font-size: .85rem; }
.auth-divider::before, .auth-divider::after { content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--mist-200); }
.auth-divider::before { left: 0; } .auth-divider::after { right: 0; }
.auth-foot { text-align: center; margin-top: 22px; color: var(--muted); font-size: .9rem; }
.auth-foot a { color: var(--leaf-700); font-weight: 600; }
.checkbox-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.checkbox-row label { font-size: .88rem; color: var(--ink-soft); display: flex; gap: 8px; align-items: center; }

@media (max-width: 880px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-art  { display: none; }
  .auth-form-wrap { padding: 40px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   CHECKOUT
═══════════════════════════════════════════════════════════════════ */
.checkout-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; padding: 50px 0; }
.checkout-section {
  background: #fff; border: 1px solid var(--mist-200);
  border-radius: var(--radius); padding: 28px; margin-bottom: 20px;
}
.checkout-section h3 { color: var(--ink-900); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 18px; }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pay-option {
  padding: 18px; border: 1.5px solid var(--mist-200);
  border-radius: var(--radius); cursor: pointer;
  display: flex; gap: 12px; align-items: center; transition: all .2s ease;
}
.pay-option:hover { border-color: var(--leaf-500); }
.pay-option.active { border-color: var(--leaf-700); background: rgba(76,163,98,0.06); }
.pay-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--mist-200); display: grid; place-items: center; color: var(--leaf-700); }
.pay-option strong { display: block; color: var(--ink-900); font-size: .9rem; }
.pay-option small  { color: var(--muted); font-size: .8rem; }
.notify-row { display: flex; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
.toggle-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  border-radius: 999px; background: var(--mist-200); cursor: pointer;
  border: 1px solid transparent; font-size: .88rem; color: var(--ink-soft); transition: all .18s;
}
.toggle-pill:hover { border-color: var(--leaf-500); }
.toggle-pill input { accent-color: var(--leaf-700); }

@media (max-width: 880px) { .checkout-layout { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════
   ORDER SUCCESS
═══════════════════════════════════════════════════════════════════ */
.success-wrap { text-align: center; padding: 80px 24px; max-width: 600px; margin: 0 auto; }
.success-icon {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--leaf-700), var(--leaf-500));
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 36px rgba(76,163,98,0.32);
  animation: successPop 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes successPop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.order-id-box {
  background: #fff; border: 1px dashed var(--leaf-700);
  border-radius: var(--radius); padding: 18px; margin: 24px 0; display: inline-block;
}
.order-id-box strong { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--leaf-700); }
.success-actions { display: flex; gap: 12px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════
   DASHBOARD / USER AREA
═══════════════════════════════════════════════════════════════════ */
.dash-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; padding: 50px 0; }
.side-nav {
  background: #fff; border: 1px solid var(--mist-200);
  border-radius: var(--radius); padding: 24px 0;
  height: fit-content; position: sticky; top: calc(var(--nav-h) + 20px);
}
.side-nav .user {
  padding: 0 24px 24px; border-bottom: 1px solid var(--mist-200);
  margin-bottom: 12px; display: flex; gap: 12px; align-items: center;
}
.side-nav .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf-700), var(--leaf-500));
  color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.1rem;
}
.side-nav a {
  display: flex; align-items: center; gap: 12px; padding: 11px 24px;
  color: var(--ink-soft); font-weight: 500; font-size: .9rem;
  transition: all .18s ease; border-left: 3px solid transparent;
  text-decoration: none;
}
.side-nav a:hover { background: var(--mist-200); color: var(--leaf-700); }
.side-nav a.active { background: rgba(76,163,98,0.08); color: var(--leaf-700); border-left-color: var(--leaf-500); }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-bottom: 28px; }
.stat-card {
  background: #fff; border: 1px solid var(--mist-200);
  border-radius: var(--radius); padding: 24px; transition: box-shadow .2s ease;
}
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-card .label { color: var(--muted); font-size: .85rem; margin-bottom: 8px; }
.stat-card .value { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--leaf-700); font-weight: 700; }
.stat-card .trend { font-size: .8rem; color: var(--leaf-500); margin-top: 4px; }
.stat-card .trend.down { color: var(--tomato-500); }

.panel { background: #fff; border: 1px solid var(--mist-200); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.panel-head h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; color: var(--ink-900); font-size: 1.05rem; margin: 0; }

table { width: 100%; border-collapse: collapse; }
table th, table td { padding: 13px 14px; text-align: left; border-bottom: 1px solid var(--mist-200); font-size: .9rem; }
table th { color: var(--muted); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; background: #fafbfa; }
table tr:last-child td { border-bottom: 0; }
table tbody tr:hover td { background: #f8faf7; }

.status-pill { padding: 4px 12px; border-radius: 999px; font-size: .75rem; font-weight: 600; display: inline-block; }
.status-Delivered, .status-Active    { background: rgba(22,163,74,0.1); color: #16a34a; }
.status-Preparing, .status-New       { background: rgba(212,160,23,0.12); color: var(--earth-700); }
.status-OutforDelivery               { background: rgba(37,99,235,0.1); color: #2563eb; }
.status-Cancelled, .status-Inactive  { background: rgba(226,83,59,0.1); color: var(--tomato-500); }
.status-VIP                          { background: rgba(109,40,217,0.1); color: #6d28d9; }

@media (max-width: 880px) { .dash-layout { grid-template-columns: 1fr; } .side-nav { position: static; } }

/* ═══════════════════════════════════════════════════════════════════
   PROFILE
═══════════════════════════════════════════════════════════════════ */
.profile-card {
  background: linear-gradient(135deg, var(--leaf-900), var(--leaf-700));
  color: #fff; border-radius: var(--radius); padding: 32px;
  display: flex; gap: 24px; align-items: center; margin-bottom: 24px;
}
.profile-card .avatar-lg {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf-500), var(--lime-300));
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700;
  border: 4px solid rgba(255,255,255,0.18); color: var(--leaf-900);
}
.profile-card h2 { color: #fff; margin: 0; }
.profile-card p  { color: rgba(255,255,255,.75); margin: 4px 0 0; font-size: .9rem; }

/* ═══════════════════════════════════════════════════════════════════
   NOTIFICATIONS
═══════════════════════════════════════════════════════════════════ */
.note-list { display: flex; flex-direction: column; gap: 10px; }
.note-item {
  display: flex; gap: 16px; padding: 18px; background: #fff;
  border: 1px solid var(--mist-200); border-radius: var(--radius);
  align-items: flex-start; transition: box-shadow .18s ease;
}
.note-item:hover { box-shadow: var(--shadow-sm); }
.note-item.unread { border-left: 3px solid var(--leaf-500); background: #f5fbf6; }
.note-icon {
  width: 42px; height: 42px; border-radius: 12px; background: var(--mist-200);
  display: grid; place-items: center; color: var(--leaf-700); flex-shrink: 0; font-size: 1.1rem;
}
.note-icon.order  { background: rgba(76,163,98,0.12); color: var(--leaf-700); }
.note-icon.review { background: rgba(212,160,23,0.12); color: var(--earth-700); }
.note-icon.stock  { background: rgba(226,83,59,0.1); color: var(--tomato-500); }
.note-body { flex: 1; }
.note-body strong { color: var(--ink-900); display: block; font-size: .9rem; margin-bottom: 3px; }
.note-body p  { color: var(--ink-soft); margin: 0; font-size: .88rem; }
.note-time { color: var(--muted); font-size: .79rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════
   ADMIN AREA
═══════════════════════════════════════════════════════════════════ */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
body.admin-body { background: #f0f4f0; }

.admin-side {
  background: var(--leaf-900); display: flex; flex-direction: column;
  padding: 0; position: fixed; top: 0; left: 0;
  width: 240px; height: 100vh; overflow-y: auto; z-index: 100;
}
.admin-brand {
  display: flex; align-items: center; gap: 12px;
  padding: 24px 20px 20px; border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none; margin-bottom: 8px;
}
.admin-brand-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--leaf-700), var(--leaf-500));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.admin-brand-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; display: block; }
.admin-brand-sub  { font-size: .7rem; color: rgba(255,255,255,.38); letter-spacing: .04em; display: block; }

.side-section { font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.28); padding: 16px 20px 6px; }
.admin-side a {
  display: flex; align-items: center; gap: 10px; padding: 10px 20px;
  font-size: .87rem; font-weight: 500; color: rgba(255,255,255,.58);
  text-decoration: none; border-radius: 10px; margin: 1px 8px; transition: all .15s ease;
}
.admin-side a:hover { background: rgba(255,255,255,.07); color: #fff; }
.admin-side a.active { background: var(--leaf-500); color: #fff; font-weight: 600; }
.admin-side a.danger { color: rgba(226,83,59,0.8); }
.admin-side a.danger:hover { background: rgba(226,83,59,0.12); color: var(--tomato-500); }
.side-spacer { flex: 1; }

.admin-main { margin-left: 240px; padding: 36px 40px; min-height: 100vh; }
.admin-main.no-sidebar { margin-left: 0; background: var(--leaf-900); }

.admin-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 16px;
}
.admin-head h1 { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 900; color: var(--ink-900); margin-bottom: 4px; }
.admin-head p  { font-size: .88rem; color: var(--muted); }
.head-actions  { display: flex; gap: 10px; align-items: center; }

.btn-sm   { padding: 7px 16px; font-size: .82rem; border-radius: 100px; }
.btn-danger { background: var(--tomato-500); color: #fff; border: none; font-family: inherit; font-weight: 600; cursor: pointer; transition: background .18s; border-radius: 100px; }
.btn-danger:hover { background: #c8402a; }

/* Admin charts */
.chart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 20px; }
.bar-chart { display: flex; align-items: flex-end; gap: 12px; height: 180px; padding: 16px 24px 12px; }
.bar {
  flex: 1; border-radius: 8px 8px 0 0;
  background: linear-gradient(to top, var(--leaf-900), var(--leaf-500));
  position: relative; cursor: pointer; transition: opacity .18s; min-height: 4px;
}
.bar:hover { opacity: .85; }
.bar::before { content: attr(data-val); position: absolute; top: -22px; left: 50%; transform: translateX(-50%); font-size: .72rem; color: var(--muted); white-space: nowrap; }
.bar span { position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%); font-size: .72rem; color: var(--muted); white-space: nowrap; }
.donut { width: 140px; height: 140px; margin: 20px auto 12px; display: block; transform: rotate(-90deg); }
.legend { padding: 0 20px 16px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--ink-soft); margin-bottom: 6px; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* Admin forms / panels */
.panel-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--mist-200); }
.panel-head h3 { font-size: .95rem; font-weight: 700; color: var(--ink-900); margin: 0; }

.search-box-admin { position: relative; }
.search-box-admin svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.search-box-admin input { padding-left: 36px !important; }

.cat-pill-admin {
  padding: 4px 14px; border-radius: 999px; font-size: .8rem; font-weight: 600;
  border: 1.5px solid var(--mist-200); background: transparent;
  color: var(--muted); cursor: pointer; transition: all .15s; font-family: inherit;
}
.cat-pill-admin.active, .cat-pill-admin:hover { background: var(--leaf-900); color: #fff; border-color: var(--leaf-900); }

/* Admin quick action cards */
.quick-grid-admin { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; padding: 20px; }
.quick-card-admin {
  background: #f7faf7; border: 1px solid var(--mist-200); border-radius: 14px;
  padding: 20px 16px; display: flex; flex-direction: column;
  align-items: flex-start; gap: 10px; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s; cursor: pointer;
}
.quick-card-admin:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: #fff; }
.quick-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--leaf-900); display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.quick-card-admin h4 { font-size: .88rem; font-weight: 700; color: var(--ink-900); margin: 0; }
.quick-card-admin p  { font-size: .76rem; color: var(--muted); margin: 0; line-height: 1.4; }

/* Admin notifications */
.note-item.unread { background: #f2f8f3; }

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
  padding: 72px 0;
}
.contact-form-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--mist-200); padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h2 { font-family: 'Playfair Display', serif; margin-bottom: 8px; color: var(--ink-900); }
.contact-form-card .subtitle { color: var(--muted); font-size: .93rem; margin-bottom: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: #fff; border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--mist-200);
  display: flex; gap: 16px; align-items: flex-start;
  transition: box-shadow .2s ease, transform .2s ease;
}
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(76,163,98,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-info-card h4 { font-size: .9rem; font-weight: 700; color: var(--ink-900); margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.contact-info-card p  { font-size: .87rem; color: var(--muted); line-height: 1.6; margin: 0; }
.contact-info-card a  { color: var(--leaf-700); font-weight: 500; }

.contact-success {
  text-align: center; padding: 32px 24px;
  animation: fadeScaleIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes fadeScaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
.contact-success-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--leaf-700), var(--leaf-500));
  display: grid; place-items: center; color: #fff; font-size: 2rem;
  box-shadow: 0 8px 28px rgba(76,163,98,0.3);
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════════ */
.about-hero { background: var(--leaf-900); position: relative; overflow: hidden; padding: 120px 32px 96px; text-align: center; }
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?w=1600&q=60');
  background-size: cover; background-position: center; opacity: .10;
}
.about-hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.about-hero h1 { font-size: clamp(2rem,5vw,3.4rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 18px; }
.about-hero h1 em { font-style: italic; color: var(--lime-300); }
.about-hero p { font-size: 1.05rem; color: rgba(255,255,255,.6); line-height: 1.75; max-width: 580px; margin: 0 auto; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); }
.story-text .eyebrow { color: var(--leaf-500); background: rgba(76,163,98,0.1); border: 1px solid rgba(76,163,98,0.25); margin-bottom: 14px; }
.story-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 700; color: var(--ink-900); margin-bottom: 18px; line-height: 1.2; }
.story-text p { font-size: .95rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 14px; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card {
  background: #fff; border-radius: var(--radius); padding: 36px 28px;
  border: 1px solid var(--mist-200); transition: transform .22s ease, box-shadow .22s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.value-card h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--ink-900); margin-bottom: 10px; }
.value-card p  { font-size: .9rem; color: var(--muted); line-height: 1.7; margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card { text-align: center; background: #fff; border-radius: var(--radius); padding: 36px 24px 28px; border: 1px solid var(--mist-200); transition: box-shadow .2s; }
.team-card:hover { box-shadow: var(--shadow-md); }
.team-card img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid var(--mist-200); }
.team-card strong { display: block; font-size: 1rem; font-weight: 600; color: var(--ink-900); margin-bottom: 4px; }
.team-card span   { font-size: .84rem; color: var(--leaf-500); font-weight: 500; display: block; margin-bottom: 12px; }
.team-card p      { font-size: .87rem; color: var(--muted); line-height: 1.65; margin: 0; }

.milestones { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.milestone { background: #fff; border-radius: var(--radius); padding: 36px 20px; border: 1px solid var(--mist-200); transition: box-shadow .2s; }
.milestone:hover { box-shadow: var(--shadow-md); }
.milestone span { display: block; font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--leaf-500); margin-bottom: 6px; }
.milestone p    { font-size: .88rem; color: var(--muted); margin: 0; }

/* ═══════════════════════════════════════════════════════════════════
   MISC / COMPLAINTS / ORDER DETAIL
═══════════════════════════════════════════════════════════════════ */
.eyebrow-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 10px;
  background: rgba(76,163,98,0.1); color: var(--leaf-700);
  border: 1px solid rgba(76,163,98,0.25);
}
.badge-veg {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(22,163,74,0.1); color: #16a34a;
  font-size: .78rem; font-weight: 700; padding: 4px 12px; border-radius: 999px;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .admin-main { padding: 28px 24px; }
  .chart-grid { grid-template-columns: 1fr; }
  .quick-grid-admin { grid-template-columns: repeat(3,1fr); }
  .category-strip { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .featured      { grid-template-columns: 1fr; }
  .steps         { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .testimonials  { grid-template-columns: 1fr; }
  .story-grid    { grid-template-columns: 1fr; gap: 36px; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .team-grid     { grid-template-columns: 1fr 1fr; }
  .milestones    { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .category-strip { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 860px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-side   { display: none; }
  .admin-main   { margin-left: 0; padding: 24px 16px; }
  .quick-grid-admin { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section         { padding: 56px 0; }
  .steps           { grid-template-columns: 1fr; }
  .dish-grid       { grid-template-columns: 1fr 1fr; gap: 10px; }
  .values-grid     { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: 1fr; }
  .milestones      { grid-template-columns: 1fr 1fr; }
  .cta-banner      { padding: 48px 24px; }
  .category-strip  { grid-template-columns: repeat(2,1fr); }
  .contact-form-card { padding: 28px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════
   ADDITIONAL MOBILE RESPONSIVE FIXES
═══════════════════════════════════════════════════════════════════ */

/* ── Scrollable table wrapper (admin pages) ── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
}

/* ── Admin mobile sidebar overlay ── */
.admin-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 99;
  cursor: pointer;
}

/* ── Admin mobile top bar ── */
.admin-mobile-topbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px;
  background: #1a1a2e;
  margin: 0 -16px 20px;
  position: sticky;
  top: 0;
  z-index: 50;
  gap: 12px;
}
.admin-mobile-topbar-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
  text-align: center;
}
.admin-sidebar-toggle {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  transition: background 0.18s;
}
.admin-sidebar-toggle:hover { background: rgba(255, 255, 255, 0.16); }
.admin-sidebar-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: all 0.2s;
}
.admin-sidebar-exit {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s;
}
.admin-sidebar-exit:hover { color: rgba(255, 255, 255, 0.9); }

@media (max-width: 860px) {
  /* Show admin mobile bar */
  .admin-mobile-topbar { display: flex; }

  /* Slide-in sidebar when opened */
  body.admin-sidebar-open .admin-side {
    display: flex !important;
    z-index: 100;
    animation: adminSideIn 0.22s ease;
  }
  @keyframes adminSideIn {
    from { transform: translateX(-100%); opacity: 0.6; }
    to   { transform: translateX(0); opacity: 1; }
  }
  body.admin-sidebar-open .admin-sidebar-overlay { display: block; }

  /* Reduce user orders page vertical padding */
  .orders-wrap { padding: 32px 16px 64px; }

  /* Admin main area padding reduction */
  .admin-main { padding: 0 16px 32px !important; }
  .admin-mobile-topbar { margin: 0 0 20px 0; }
}

@media (max-width: 640px) {
  /* Auth pages */
  .auth-page { overflow-y: auto; }

  /* Cart */
  .cart-layout { padding: 24px 0; }
  .cart-item   { grid-template-columns: 76px 1fr; }
  .cart-item img { width: 76px; height: 76px; }

  /* Contact section padding */
  .contact-section { padding: 48px 16px; }

  /* About hero */
  .about-hero { padding: 80px 20px 64px; }

  /* Milestones 1-col on small phones */
  .milestones { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  /* Checkout */
  .checkout-wrap { padding: 20px 16px 48px; }

  /* Smaller page header padding */
  .page-header { padding: 48px 16px 40px; }

  /* Cart summary */
  .summary { padding: 20px 16px; }

  /* Milestones single column on very small screens */
  .milestones { grid-template-columns: 1fr; }

  /* Dish grid: 2 compact columns on very small screens */
  .dish-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
}
