/* ============================================================
   KASHMIRA CAFE & RESTAURANT — MAIN STYLESHEET
   Design System + Global Styles
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Design Tokens --- */
:root {
  --primary:       #E8722A;
  --primary-dark:  #C85A18;
  --primary-light: #FFF0E6;
  --secondary:     #1B3A5C;
  --secondary-dark:#122843;
  --bg:            #FFF8F0;
  --text:          #1C1C1E;
  --muted:         #9E9E9E;
  --success:       #2ECC71;
  --danger:        #E74C3C;
  --warning:       #F39C12;
  --white:         #FFFFFF;
  --border:        #E8DDD3;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.16);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --font-head:     'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --transition:    all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { display: block; max-width: 100%; height: auto; }
button { font-family: var(--font-body); cursor: pointer; border: none; }

/* --- Typography Scale --- */
.display-hero { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; line-height: 1.1; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
.card-title    { font-size: 1.1rem; font-weight: 600; }

/* --- Utility Classes --- */
.text-primary   { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-muted     { color: var(--muted) !important; }
.bg-primary-soft { background: var(--primary-light) !important; }
.bg-navy        { background: var(--secondary) !important; }
.fw-700 { font-weight: 700 !important; }
.ff-head { font-family: var(--font-head) !important; }
.price-tag { font-weight: 700; font-size: 1.15rem; color: var(--primary); font-variant-numeric: tabular-nums; }

/* --- Buttons --- */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.btn-primary-custom:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline-primary-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 11px 26px;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.btn-outline-primary-custom:hover { background: var(--primary); color: var(--white); transform: translateY(-1px); }

.btn-secondary-custom {
  background: var(--secondary);
  color: var(--white);
  border: 2px solid var(--secondary);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.btn-secondary-custom:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: var(--white); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: 2px solid #25D366;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
}
.btn-whatsapp:hover { background: #1EBE59; border-color: #1EBE59; color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.35); }

.btn-sm-custom { padding: 8px 18px; font-size: 0.85rem; min-height: 36px; }

/* --- Badges --- */
.badge-chef { background: var(--secondary); color: var(--white); padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3px; }
.badge-popular { background: var(--primary); color: var(--white); padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; }
.badge-budget { background: var(--success); color: var(--white); padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; }
.badge-open { background: var(--success); color: var(--white); padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.badge-open::before { content: ''; width: 7px; height: 7px; background: var(--white); border-radius: 50%; animation: pulse-dot 2s infinite; }
.badge-closed { background: var(--danger); color: var(--white); padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }

@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-kashmira {
  background: var(--secondary) !important;
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(27,58,92,0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar-kashmira.scrolled { padding: 10px 0; }

.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); color: var(--white); font-size: 1.3rem; font-weight: 800; flex-shrink: 0; }
.brand-text { line-height: 1.1; }
.brand-text .name { font-family: var(--font-head); color: var(--white); font-size: 1.15rem; font-weight: 700; }
.brand-text .tagline { color: rgba(255,255,255,0.65); font-size: 0.72rem; }

.nav-link-custom { color: rgba(255,255,255,0.85) !important; font-weight: 500; font-size: 0.9rem; padding: 8px 14px !important; border-radius: var(--radius-sm); transition: var(--transition); }
.nav-link-custom:hover, .nav-link-custom.active { color: var(--white) !important; background: rgba(232,114,42,0.2); }

.navbar-phone { color: var(--primary); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; cursor: pointer; text-decoration: none; }
.navbar-phone:hover { color: #ff8a45; }

.cart-btn {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  font-size: 1.05rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
}
.cart-btn:hover { background: var(--primary-dark); }
.cart-btn i, .cart-btn svg { color: #ffffff; fill: #ffffff; pointer-events: none; }
.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--danger);
  color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cart-count-badge.show { display: flex; }

.lang-toggle { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: var(--white) !important; border-radius: 20px; padding: 5px 14px !important; font-size: 0.82rem; font-weight: 600; }
.lang-toggle:hover { background: rgba(255,255,255,0.22); }

/* ── Mobile navbar collapse ── */
@media (max-width: 991.98px) {
  .navbar-collapse {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 10px -12px 0;
    padding: 6px 0 14px;
  }
  .navbar-nav { gap: 0 !important; flex-direction: column; }
  .navbar-nav .nav-item { width: 100%; }
  .navbar-nav .nav-link-custom {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 11px 20px !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
  }
  .navbar-nav .nav-link-custom:last-child { border-bottom: none; }
  .navbar-collapse > .d-flex {
    padding: 12px 20px 0;
    gap: 10px !important;
    flex-wrap: wrap;
  }
  .open-status-badge { font-size: 0.78rem; }
}

/* ============================================================
   MOBILE BOTTOM NAV
   ============================================================ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  height: 60px;
  overflow: hidden;
}
.mobile-bottom-nav .nav-items {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  height: 100%;
}
.mobile-bottom-nav .nav-item {
  flex: 1;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--muted) !important;
  font-size: 0.65rem;
  font-weight: 500;
  text-decoration: none !important;
  cursor: pointer;
  min-height: 44px;
  padding: 0;
  transition: color 0.2s;
}
.mobile-bottom-nav .nav-item i {
  font-size: 1.25rem;
  display: block;
  line-height: 1;
}
.mobile-bottom-nav .nav-item span { display: block; line-height: 1; }
.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover { color: var(--primary) !important; }

@media (max-width: 991px) { .mobile-bottom-nav { display: flex; } body { padding-bottom: 60px; } }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 998;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.6rem;
  text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); color: var(--white); }
@media (min-width: 992px) { .whatsapp-fab { bottom: 30px; } }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--secondary) 0%, #0D2235 60%, #1a3050 100%);
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,58,92,0.92) 0%, rgba(13,34,53,0.85) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }

.hero-badge { background: rgba(232,114,42,0.15); border: 1px solid rgba(232,114,42,0.35); color: var(--primary); padding: 7px 18px; border-radius: 20px; font-size: 0.82rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 24px; }

.hero-headline { font-size: clamp(2rem, 5.5vw, 3.8rem); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.hero-headline span { color: var(--primary); }

.hero-sub { color: rgba(255,255,255,0.75); font-size: clamp(1rem, 2vw, 1.15rem); margin-bottom: 36px; max-width: 520px; line-height: 1.7; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.trust-bar { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.trust-item i { color: var(--primary); font-size: 1.1rem; }

.hero-image-col { position: relative; z-index: 2; }
.hero-food-img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); width: 100%; max-height: 480px; object-fit: cover; }
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-float-card.card-1 { bottom: 40px; left: -20px; animation: float 3s ease-in-out infinite; }
.hero-float-card.card-2 { top: 40px; right: -20px; animation: float 3s ease-in-out infinite 1.5s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow { color: var(--primary); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; display: block; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--secondary); margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 1rem; max-width: 520px; margin: 0 auto; line-height: 1.7; }

.divider-line { width: 56px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: 2px; margin: 16px auto 0; }

/* ============================================================
   FOOD CARDS
   ============================================================ */
.food-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.food-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--border); }

.food-card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; }
.food-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.food-card:hover .food-card-img { transform: scale(1.05); }
.food-card-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 5px; }
.food-card-quick-view {
  position: absolute;
  inset: 0;
  background: rgba(27,58,92,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.food-card:hover .food-card-quick-view { opacity: 1; }
.quick-view-btn { background: var(--white); color: var(--secondary); border: none; padding: 10px 22px; border-radius: var(--radius-md); font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: var(--transition); }
.quick-view-btn:hover { background: var(--primary); color: var(--white); }

.food-card-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.food-card-name { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.food-card-tagline { color: var(--muted); font-size: 0.82rem; margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.food-card-meta { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--muted); margin-bottom: 12px; }
.food-card-meta i { font-size: 0.85rem; }

.food-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 10px; }
.add-to-cart-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  flex: 1;
  justify-content: center;
  min-height: 38px;
}
.add-to-cart-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

.view-count { display: flex; align-items: center; gap: 4px; color: var(--muted); font-size: 0.75rem; }

/* ============================================================
   HORIZONTAL SCROLL CAROUSEL
   ============================================================ */
.h-scroll-wrapper { overflow-x: auto; padding-bottom: 12px; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.h-scroll-wrapper::-webkit-scrollbar { height: 5px; }
.h-scroll-wrapper::-webkit-scrollbar-track { background: transparent; }
.h-scroll-wrapper::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.h-scroll-track { display: flex; gap: 20px; width: max-content; }
.h-scroll-track .food-card { width: 240px; flex-shrink: 0; }

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.category-card:hover, .category-card.active { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.category-card.active { background: var(--primary-light); }
.category-icon { width: 60px; height: 60px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 1.6rem; transition: var(--transition); }
.category-card:hover .category-icon, .category-card.active .category-icon { background: var(--primary); }
.category-name { font-weight: 600; font-size: 0.88rem; color: var(--secondary); }
.category-count { font-size: 0.75rem; color: var(--muted); margin-top: 4px; }

/* ============================================================
   OFFER CARDS
   ============================================================ */
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 5px solid var(--primary);
}
.offer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.offer-card-img { width: 100%; height: 200px; object-fit: cover; }
.offer-card-body { padding: 20px; }
.offer-discount { font-size: 2.2rem; font-weight: 800; font-family: var(--font-head); color: var(--primary); line-height: 1; margin-bottom: 6px; }
.offer-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.offer-desc { color: var(--muted); font-size: 0.88rem; margin-bottom: 14px; line-height: 1.6; }

.countdown-timer { display: flex; gap: 10px; margin-bottom: 16px; }
.countdown-unit { text-align: center; background: var(--secondary); color: var(--white); border-radius: var(--radius-sm); padding: 8px 12px; min-width: 52px; }
.countdown-num { font-size: 1.5rem; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1; }
.countdown-label { font-size: 0.65rem; font-weight: 500; opacity: 0.75; margin-top: 2px; }
.countdown-timer.urgent .countdown-unit { background: var(--danger); animation: pulse-red 1s infinite; }
.countdown-timer.warning .countdown-unit { background: var(--warning); }
@keyframes pulse-red { 0%,100%{opacity:1} 50%{opacity:0.75} }

.offer-type-pill { font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 8px; }
.offer-type-hourly { background: rgba(232,114,42,0.12); color: var(--primary); }
.offer-type-weekly { background: rgba(27,58,92,0.1); color: var(--secondary); }
.offer-type-event  { background: rgba(46,204,113,0.1); color: #1A8C4E; }

/* ============================================================
   EVENT CARDS
   ============================================================ */
.event-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-card-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.5s ease; }
.event-card:hover .event-card-img { transform: scale(1.05); }
.event-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,58,92,0.95) 0%, rgba(27,58,92,0.4) 60%, transparent 100%); }
.event-card-body { position: relative; z-index: 2; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.event-card-icon { font-size: 2.2rem; margin-bottom: 12px; }
.event-card-title { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.event-card-desc { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-bottom: 16px; line-height: 1.6; }
.event-social-proof { color: rgba(255,255,255,0.65); font-size: 0.78rem; margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }

/* ============================================================
   LEAD CAPTURE SECTION
   ============================================================ */
.lead-section { background: linear-gradient(135deg, var(--secondary) 0%, #0D2235 100%); padding: 72px 0; position: relative; overflow: hidden; }
.lead-section::before { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(232,114,42,0.08); }
.lead-section::after  { content: ''; position: absolute; left: -80px; bottom: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(232,114,42,0.05); }

.lead-form-wrap { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-xl); padding: 40px; backdrop-filter: blur(12px); max-width: 480px; margin: 0 auto; }
.lead-input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  width: 100%;
  transition: var(--transition);
}
.lead-input::placeholder { color: rgba(255,255,255,0.5); }
.lead-input:focus { outline: none; border-color: var(--primary); background: rgba(255,255,255,0.15); }
.lead-privacy { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin-top: 8px; display: flex; align-items: center; gap: 6px; }

/* ============================================================
   BUILD YOUR MEAL
   ============================================================ */
.meal-step-indicator { display: flex; gap: 0; margin-bottom: 36px; position: relative; }
.meal-step-indicator::before { content: ''; position: absolute; top: 20px; left: 40px; right: 40px; height: 2px; background: var(--border); z-index: 0; }
.meal-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.meal-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.meal-step.active .meal-step-num { background: var(--primary); color: var(--white); }
.meal-step.done .meal-step-num { background: var(--success); color: var(--white); }
.meal-step-label { font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.meal-step.active .meal-step-label { color: var(--primary); }

.meal-item-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}
.meal-item-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.meal-item-card.selected { border-color: var(--primary); background: var(--primary-light); }
.meal-item-img { width: 70px; height: 70px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.meal-select-btn { margin-left: auto; background: var(--primary-light); color: var(--primary); border: 2px solid var(--primary); border-radius: var(--radius-sm); padding: 8px 16px; font-weight: 600; font-size: 0.82rem; transition: var(--transition); flex-shrink: 0; }
.meal-item-card.selected .meal-select-btn { background: var(--primary); color: var(--white); }

.meal-summary-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.meal-summary-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--secondary); margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.meal-summary-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 0.88rem; }
.meal-summary-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.1rem; margin-top: 12px; color: var(--secondary); }
.combo-discount-banner { background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.3); border-radius: var(--radius-sm); padding: 10px 14px; margin: 12px 0; font-size: 0.85rem; color: #1A8C4E; display: flex; align-items: center; gap: 8px; }

/* Mobile meal summary drawer */
.meal-sticky-bar { display: none; position: fixed; bottom: 60px; left: 0; right: 0; background: var(--secondary); color: var(--white); padding: 14px 20px; z-index: 990; align-items: center; justify-content: space-between; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
@media (max-width: 991px) { .meal-sticky-bar { display: flex; } }
.meal-sticky-info { font-size: 0.88rem; opacity: 0.85; }
.meal-sticky-total { font-size: 1.2rem; font-weight: 700; color: var(--primary); }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; opacity: 0; visibility: hidden; transition: var(--transition); }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-drawer-header { padding: 20px 22px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.cart-drawer-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--secondary); }
.cart-close-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); font-size: 1.1rem; color: var(--text); border: none; }
.cart-close-btn:hover { background: var(--border); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 16px 22px; }
.cart-drawer-footer { padding: 16px 22px; border-top: 1px solid var(--border); flex-shrink: 0; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty i { font-size: 3.5rem; color: var(--border); margin-bottom: 16px; display: block; }
.cart-empty p { color: var(--muted); }

.cart-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.9rem; color: var(--secondary); margin-bottom: 4px; }
.cart-item-price { color: var(--primary); font-weight: 700; font-size: 0.9rem; }
.qty-ctrl { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { width: 28px; height: 28px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; font-weight: 700; transition: var(--transition); }
.qty-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.qty-num { font-weight: 700; font-size: 0.9rem; min-width: 24px; text-align: center; }
.cart-remove-btn { color: var(--muted); cursor: pointer; font-size: 1rem; transition: var(--transition); background: none; border: none; padding: 4px; }
.cart-remove-btn:hover { color: var(--danger); }

.cart-subtotal { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 8px 0; }
.cart-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 700; color: var(--secondary); padding: 10px 0; border-top: 2px solid var(--border); margin-top: 4px; }
.cart-wa-section { background: rgba(37,211,102,0.06); border: 1px solid rgba(37,211,102,0.2); border-radius: var(--radius-md); padding: 14px; margin: 12px 0; }
.cart-wa-label { font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; }
.cart-wa-number { font-weight: 700; font-size: 1rem; color: var(--secondary); margin-bottom: 10px; }

/* ============================================================
   FILTER PILLS
   ============================================================ */
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-pill {
  padding: 8px 18px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  min-height: 38px;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-wrap { position: relative; max-width: 540px; }
.search-input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.search-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(232,114,42,0.12); }
.search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 1.1rem; }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast-container { position: fixed; top: 80px; right: 20px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
.toast-kashmira {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  border-left: 4px solid var(--success);
  animation: slideInRight 0.35s ease, fadeOut 0.4s ease 2.6s forwards;
  font-size: 0.9rem;
  font-weight: 500;
}
.toast-kashmira.error { border-left-color: var(--danger); }
@keyframes slideInRight { from{transform:translateX(100%);opacity:0} to{transform:translateX(0);opacity:1} }
@keyframes fadeOut { from{opacity:1} to{opacity:0;transform:translateX(100%)} }

/* ============================================================
   MODAL
   ============================================================ */
.modal-kashmira .modal-content { border: none; border-radius: var(--radius-lg); overflow: hidden; }
.modal-kashmira .modal-header { background: var(--secondary); color: var(--white); border: none; padding: 20px 24px; }
.modal-kashmira .modal-title { font-family: var(--font-head); font-size: 1.3rem; }
.modal-kashmira .btn-close { filter: invert(1); }
.modal-kashmira .modal-body { padding: 24px; }
.food-detail-modal-img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 20px; }
.spice-indicators { display: flex; gap: 6px; }
.spice-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--border); }
.spice-dot.active { background: var(--danger); }
.diet-tag { display: inline-flex; align-items: center; gap: 5px; background: rgba(46,204,113,0.1); color: #1A8C4E; border-radius: 20px; padding: 4px 12px; font-size: 0.78rem; font-weight: 600; margin: 3px; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img { transform: scale(1.03); }
.blog-card-img-wrap { overflow: hidden; }
.blog-card-body { padding: 20px; }
.blog-cat-pill { background: var(--primary-light); color: var(--primary); border-radius: 20px; padding: 4px 12px; font-size: 0.75rem; font-weight: 600; margin-bottom: 10px; display: inline-block; }
.blog-card-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin-bottom: 8px; line-height: 1.4; }
.blog-card-excerpt { color: var(--muted); font-size: 0.85rem; margin-bottom: 14px; line-height: 1.6; }
.blog-meta { display: flex; gap: 14px; font-size: 0.78rem; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-kashmira { background: var(--secondary); color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer-brand .name { font-family: var(--font-head); color: var(--white); font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.footer-brand .tagline { font-size: 0.85rem; opacity: 0.65; margin-bottom: 20px; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; opacity: 0.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; transition: var(--transition); }
.social-icon:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.footer-heading { font-family: var(--font-head); color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid rgba(232,114,42,0.4); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: var(--transition); display: flex; align-items: center; gap: 7px; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-icon { color: var(--primary); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-text { font-size: 0.88rem; opacity: 0.8; }
.footer-bottom { margin-top: 48px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; opacity: 0.6; }

/* ============================================================
   SECTIONS SPACING
   ============================================================ */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #0D2235 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; right: -80px; top: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(232,114,42,0.08); }
.page-hero-title { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.page-hero-sub { color: rgba(255,255,255,0.65); font-size: 1rem; }
.breadcrumb-custom { margin-bottom: 14px; }
.breadcrumb-custom .breadcrumb-item a { color: rgba(255,255,255,0.6); }
.breadcrumb-custom .breadcrumb-item.active { color: var(--primary); }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================================
   AVAILABILITY BADGE
   ============================================================ */
.avail-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.avail-now { background: rgba(46,204,113,0.12); color: #1A8C4E; }
.avail-later { background: rgba(243,156,18,0.12); color: #B7770D; }

/* ============================================================
   STICKY SEARCH BAR (Menu page)
   ============================================================ */
.sticky-menu-bar { position: sticky; top: 68px; z-index: 100; background: var(--bg); padding: 14px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border-bottom: 1px solid var(--border); }

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-table th { background: var(--secondary); color: var(--white); font-weight: 600; font-size: 0.85rem; }
.checkout-table td { vertical-align: middle; font-size: 0.9rem; }
.checkout-summary-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); position: sticky; top: 80px; }
.checkout-total-row { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.sticky-checkout-bar { display: none; position: fixed; bottom: 60px; left: 0; right: 0; background: var(--secondary); padding: 12px 20px; z-index: 990; }
@media (max-width: 767px) { .sticky-checkout-bar { display: block; } }

/* ============================================================
   RATINGS
   ============================================================ */
.star-rating { color: #F5A623; font-size: 0.9rem; }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 767px) {
  .hero-section { min-height: 100svh; }
  .hero-float-card { display: none; }
  .trust-bar { gap: 12px; }
  .section-pad { padding: 56px 0; }
  .lead-form-wrap { padding: 28px 20px; }
  .cart-drawer { width: 100vw; right: -100vw; }
}

@media (max-width: 575px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary-custom, .hero-ctas .btn-outline-primary-custom { width: 100%; justify-content: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   ADMIN PANEL STYLES
   ============================================================ */
.admin-sidebar { width: 260px; background: var(--secondary); min-height: 100vh; position: fixed; left: 0; top: 0; z-index: 100; transition: var(--transition); }
.admin-sidebar-logo { padding: 22px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-sidebar-logo .name { font-family: var(--font-head); color: var(--white); font-size: 1.1rem; font-weight: 700; }
.admin-sidebar-logo .sub { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.sidebar-nav { padding: 16px 0; }
.sidebar-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.35); padding: 14px 24px 8px; }
.sidebar-link { display: flex; align-items: center; gap: 12px; padding: 11px 24px; color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 500; transition: var(--transition); }
.sidebar-link:hover, .sidebar-link.active { color: var(--white); background: rgba(232,114,42,0.15); border-right: 3px solid var(--primary); }
.sidebar-link i { width: 18px; text-align: center; font-size: 1rem; }
.sidebar-link .badge { margin-left: auto; background: var(--primary); color: var(--white); font-size: 0.7rem; padding: 2px 7px; border-radius: 20px; }
.admin-main { margin-left: 260px; min-height: 100vh; background: #F5F5F7; }
.admin-topbar { background: var(--white); padding: 16px 28px; border-bottom: 1px solid #E0E0E0; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 99; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.admin-page-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--secondary); }
.admin-content { padding: 28px; }
.stat-card { background: var(--white); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--primary); transition: var(--transition); }
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-num { font-size: 2.4rem; font-weight: 800; font-family: var(--font-head); color: var(--secondary); line-height: 1; }
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.stat-change { font-size: 0.78rem; font-weight: 600; margin-top: 8px; }
.stat-change.up { color: var(--success); }
.stat-change.down { color: var(--danger); }
.admin-table th { background: #F5F5F7; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); padding: 12px 16px; border: none; }
.admin-table td { padding: 14px 16px; border-color: #F0F0F0; vertical-align: middle; font-size: 0.88rem; }
.admin-table tbody tr:hover { background: #FAFAFA; }
.status-pill { padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.status-published { background: rgba(46,204,113,0.12); color: #1A8C4E; }
.status-draft { background: rgba(158,158,158,0.12); color: var(--muted); }
.status-active { background: rgba(46,204,113,0.12); color: #1A8C4E; }
.status-inactive { background: rgba(231,76,60,0.1); color: var(--danger); }
/* Video Grids */
.video-grid-regular { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.video-grid-shorts  { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; max-width:1080px; margin:0 auto; }
.mb-video { margin-bottom:32px; }
.video-cell-regular { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); }
.video-cell-short   { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); }
.video-ratio-16x9 { position:relative; padding-bottom:56.25%; background:#111; }
.video-ratio-9x16 { position:relative; padding-bottom:177.78%; background:#111; }
.video-ratio-16x9 iframe,
.video-ratio-9x16 iframe { position:absolute; inset:0; width:100%; height:100%; border:none; }
@media(max-width:991px) {
  .video-grid-regular { grid-template-columns:repeat(2,1fr); }
  .video-grid-shorts  { grid-template-columns:repeat(2,1fr); max-width:560px; }
}
@media(max-width:576px) {
  .video-grid-regular { grid-template-columns:1fr; }
  .video-grid-shorts  { grid-template-columns:repeat(2,1fr); max-width:380px; }
}
/* Gallery Grid */
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:12px; }
.gallery-item { position:relative; border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/3; cursor:zoom-in; background:#111; }
.gallery-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s ease; }
.gallery-item:hover img { transform:scale(1.08); }
.gallery-item-overlay { position:absolute; inset:0; background:rgba(27,58,92,0); display:flex; align-items:center; justify-content:center; transition:background 0.3s; }
.gallery-item-overlay i { color:white; font-size:2.2rem; opacity:0; transform:scale(0.6); transition:all 0.3s; }
.gallery-item:hover .gallery-item-overlay { background:rgba(27,58,92,0.45); }
.gallery-item:hover .gallery-item-overlay i { opacity:1; transform:scale(1); }
/* Lightbox */
#lightbox { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.94); z-index:9999; align-items:center; justify-content:center; }
#lightbox.active { display:flex; }
#lbImgWrap { max-width:90vw; max-height:85vh; overflow:hidden; display:flex; align-items:center; justify-content:center; cursor:grab; }
#lbImgWrap:active { cursor:grabbing; }
#lbImg { max-width:88vw; max-height:82vh; object-fit:contain; transition:transform 0.2s ease; border-radius:4px; user-select:none; pointer-events:none; }
.lb-close { position:fixed; top:16px; right:20px; background:rgba(255,255,255,0.13); border:none; color:white; width:42px; height:42px; border-radius:50%; font-size:1.3rem; cursor:pointer; z-index:10001; transition:background 0.2s; display:flex; align-items:center; justify-content:center; }
.lb-close:hover { background:rgba(255,255,255,0.28); }
.lb-nav { position:fixed; top:50%; transform:translateY(-50%); background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.15); color:white; width:50px; height:70px; font-size:1.6rem; cursor:pointer; z-index:10001; transition:background 0.2s; display:flex; align-items:center; justify-content:center; }
.lb-nav:hover { background:rgba(255,255,255,0.22); }
.lb-prev { left:0; border-radius:0 8px 8px 0; }
.lb-next { right:0; border-radius:8px 0 0 8px; }
.lb-zoom-bar { position:fixed; bottom:20px; left:50%; transform:translateX(-50%); display:flex; align-items:center; gap:10px; background:rgba(0,0,0,0.65); border:1px solid rgba(255,255,255,0.15); border-radius:30px; padding:8px 20px; z-index:10001; backdrop-filter:blur(8px); }
.lb-zoom-bar button { background:rgba(255,255,255,0.12); border:none; color:white; width:34px; height:34px; border-radius:50%; font-size:1.4rem; cursor:pointer; transition:background 0.2s; display:flex; align-items:center; justify-content:center; line-height:1; }
.lb-zoom-bar button:hover { background:rgba(255,255,255,0.28); }
.lb-zoom-bar span { color:rgba(255,255,255,0.85); font-size:0.83rem; min-width:42px; text-align:center; }
.lb-counter { position:fixed; top:20px; left:50%; transform:translateX(-50%); color:rgba(255,255,255,0.7); font-size:0.85rem; background:rgba(0,0,0,0.5); border-radius:20px; padding:4px 14px; z-index:10001; }
/* Testimonial Cards */
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; gap: 12px; border: 1px solid rgba(0,0,0,0.05); }
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-text { font-style: italic; color: var(--text); line-height: 1.7; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.testimonial-avatar { width: 44px; height: 44px; min-width: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; font-family: var(--font-head); }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--secondary); }
@media (max-width: 991px) { .admin-sidebar { transform: translateX(-100%); } .admin-main { margin-left: 0; } }
