/* ============================================================
   Delivra — Web Ordering UI (DoorDash / Uber Eats style)
   assets/css/web.css
   Teamseven Private Limited | teamseven.ltd
   ============================================================ */

/* ── Layout Shell ────────────────────────────────────────── */
.web-shell {
  min-height: 100vh;
  background: var(--clr-bg-dark-1);
  display: flex;
  flex-direction: column;
}
body.light-mode .web-shell { background: #F7F7F7; }

.web-page {
  flex: 1;
  padding-top: 72px;
}

/* ── Top Nav ─────────────────────────────────────────────── */
.web-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  background: rgba(8, 16, 7, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
}
body.light-mode .web-nav {
  background: rgba(255,255,255,0.97);
  border-bottom-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.web-nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.web-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg,#22C55E,#16A34A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.web-logo span {
  background: linear-gradient(135deg,#F97316,#FCD34D);
  -webkit-background-clip: text;
  background-clip: text;
}

.web-location-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(240,253,244,0.80);
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.web-location-btn:hover { background: rgba(22,163,74,0.10); border-color: rgba(22,163,74,0.20); }
body.light-mode .web-location-btn { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.10); color: rgba(7,26,6,0.80); }
body.light-mode .web-location-btn:hover { background: rgba(22,163,74,0.07); }

/* ── Nav Search ──────────────────────────────────────────── */
.web-nav-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}
.web-nav-search-input {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(240,253,244,0.90);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0 14px 0 40px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.web-nav-search-input::placeholder { color: rgba(240,253,244,0.35); }
.web-nav-search-input:focus { border-color: rgba(22,163,74,0.40); background: rgba(255,255,255,0.10); box-shadow: 0 0 0 3px rgba(22,163,74,0.10); }
body.light-mode .web-nav-search-input { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.12); color: rgba(7,26,6,0.88); }
body.light-mode .web-nav-search-input::placeholder { color: rgba(7,26,6,0.38); }
body.light-mode .web-nav-search-input:focus { border-color: rgba(22,163,74,0.35); background: #fff; box-shadow: 0 0 0 3px rgba(22,163,74,0.08); }

.web-nav-search-icon {
  position: absolute;
  left: 12px; top: 50%; transform: translateY(-50%);
  color: rgba(240,253,244,0.35);
  pointer-events: none;
}
body.light-mode .web-nav-search-icon { color: rgba(7,26,6,0.38); }

.web-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.web-nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(240,253,244,0.60);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}
.web-nav-link:hover { color: rgba(240,253,244,0.90); background: rgba(255,255,255,0.06); }
body.light-mode .web-nav-link { color: rgba(7,26,6,0.60); }
body.light-mode .web-nav-link:hover { color: rgba(7,26,6,0.90); background: rgba(0,0,0,0.05); }

.web-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
  border: none;
}
.web-nav-btn-outline {
  background: transparent;
  color: rgba(240,253,244,0.80);
  border: 1px solid rgba(255,255,255,0.15);
}
.web-nav-btn-outline:hover { border-color: rgba(22,163,74,0.40); color: #22C55E; }
body.light-mode .web-nav-btn-outline { color: rgba(7,26,6,0.78); border-color: rgba(0,0,0,0.15); }
body.light-mode .web-nav-btn-outline:hover { border-color: rgba(22,163,74,0.40); color: #16A34A; }

.web-nav-btn-primary {
  background: linear-gradient(135deg,#16A34A,#22C55E);
  color: #fff;
  box-shadow: 0 2px 10px rgba(22,163,74,0.35);
}
.web-nav-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(22,163,74,0.45); }

.web-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 10px;
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.22);
  color: #22C55E;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
}
.web-cart-btn:hover { background: rgba(22,163,74,0.20); }
body.light-mode .web-cart-btn { background: rgba(22,163,74,0.10); border-color: rgba(22,163,74,0.22); color: #15803D; }

.web-cart-count {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg,#16A34A,#22C55E);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── Hero / Banner ───────────────────────────────────────── */
.web-hero {
  padding: 40px 24px 32px;
  max-width: 1320px;
  margin: 0 auto;
}
.web-hero-inner {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  background: linear-gradient(135deg,#052e16 0%,#14532d 50%,#166534 100%);
  display: flex;
  align-items: center;
  padding: 40px 48px;
}
.web-hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(34,197,94,0.15) 0%, transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(249,115,22,0.10) 0%, transparent 50%);
}
.web-hero-content { position: relative; z-index: 1; max-width: 520px; }
.web-hero-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.web-hero-title span { color: #4ADE80; }
.web-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.70); margin-bottom: 24px; line-height: 1.5; }

.web-hero-search {
  display: flex;
  gap: 0;
  max-width: 440px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.30);
}
.web-hero-search-input {
  flex: 1;
  height: 50px;
  background: rgba(255,255,255,0.95);
  border: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0 18px;
  outline: none;
  color: #071A06;
}
.web-hero-search-input::placeholder { color: rgba(7,26,6,0.42); }
.web-hero-search-btn {
  height: 50px;
  padding: 0 22px;
  background: linear-gradient(135deg,#16A34A,#22C55E);
  color: #fff;
  font-weight: 700;
  font-size: 0.90rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.18s;
}
.web-hero-search-btn:hover { filter: brightness(1.08); }
.web-hero-emoji { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); font-size: 5rem; opacity: 0.25; pointer-events: none; }

/* ── Content Container ───────────────────────────────────── */
.web-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Category Pills ──────────────────────────────────────── */
.web-cats {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 0 16px;
  scrollbar-width: none;
}
.web-cats::-webkit-scrollbar { display: none; }

.web-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  padding: 12px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
}
.web-cat:hover { background: rgba(22,163,74,0.08); border-color: rgba(22,163,74,0.18); transform: translateY(-2px); }
.web-cat.active { background: rgba(22,163,74,0.14); border-color: rgba(22,163,74,0.28); }
body.light-mode .web-cat { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
body.light-mode .web-cat:hover { border-color: rgba(22,163,74,0.25); background: rgba(22,163,74,0.05); }
body.light-mode .web-cat.active { background: rgba(22,163,74,0.08); border-color: rgba(22,163,74,0.25); }

.web-cat-emoji { font-size: 1.6rem; line-height: 1; }
.web-cat-label { font-size: 0.72rem; font-weight: 600; color: rgba(240,253,244,0.55); white-space: nowrap; }
.web-cat.active .web-cat-label { color: #22C55E; }
body.light-mode .web-cat-label { color: rgba(7,26,6,0.60); }
body.light-mode .web-cat.active .web-cat-label { color: #16A34A; }

/* ── Section Headers ─────────────────────────────────────── */
.web-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  margin-top: 32px;
}
.web-section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(240,253,244,0.95);
}
body.light-mode .web-section-title { color: rgba(7,26,6,0.92); }
.web-see-all {
  font-size: 0.84rem;
  font-weight: 600;
  color: #22C55E;
  text-decoration: none;
  display: flex; align-items: center; gap: 4px;
  transition: gap 0.15s;
}
.web-see-all:hover { gap: 7px; }
body.light-mode .web-see-all { color: #16A34A; }

/* ── Restaurant Cards Grid ───────────────────────────────── */
.web-rest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 8px;
}
@media (max-width: 768px) { .web-rest-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }
@media (max-width: 500px) { .web-rest-grid { grid-template-columns: 1fr; } }

.web-rest-card {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.web-rest-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.28); border-color: rgba(22,163,74,0.20); }
body.light-mode .web-rest-card { background: #fff; border-color: rgba(0,0,0,0.07); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
body.light-mode .web-rest-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.12); border-color: rgba(22,163,74,0.18); }

.web-rest-img {
  width: 100%;
  height: 160px;
  position: relative;
  overflow: hidden;
}
.web-rest-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.web-rest-promo {
  position: absolute;
  top: 10px; left: 10px;
  background: linear-gradient(135deg,#16A34A,#22C55E);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
}
.web-rest-fav {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(8,16,7,0.65);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: rgba(240,253,244,0.65);
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
}
.web-rest-fav:hover, .web-rest-fav.active { color: #EF4444; background: rgba(239,68,68,0.18); }

.web-rest-info { padding: 14px 16px 16px; }
.web-rest-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(240,253,244,0.92);
  margin-bottom: 6px;
}
body.light-mode .web-rest-name { color: rgba(7,26,6,0.92); }
.web-rest-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
}
.web-rest-tag { color: rgba(240,253,244,0.48); display: flex; align-items: center; gap: 3px; }
body.light-mode .web-rest-tag { color: rgba(7,26,6,0.50); }
.web-rest-rating { display: flex; align-items: center; gap: 3px; font-weight: 700; color: #FCD34D; }
.web-rest-cuisine { font-size: 0.75rem; color: rgba(240,253,244,0.38); margin-top: 4px; }
body.light-mode .web-rest-cuisine { color: rgba(7,26,6,0.42); }

/* ── Promo Banner Carousel ───────────────────────────────── */
.web-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 8px;
}
@media (max-width: 640px) { .web-banners { grid-template-columns: 1fr; } }

.web-banner {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 130px;
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s;
}
.web-banner:hover { transform: scale(1.02); }
.web-banner-overlay { position: absolute; inset: 0; }
.web-banner-content { position: relative; z-index: 1; }
.web-banner-label { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.70); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.web-banner-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: #fff; line-height: 1.25; }
.web-banner-sub { font-size: 0.78rem; color: rgba(255,255,255,0.72); margin-top: 3px; }
.web-banner-emoji { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 3.2rem; opacity: 0.45; }

/* ── Search / Filter Layout ──────────────────────────────── */
.web-search-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) { .web-search-layout { grid-template-columns: 1fr; } }

/* Sidebar */
.web-filter-sidebar {
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  position: sticky;
  top: 88px;
}
body.light-mode .web-filter-sidebar { background: #fff; border-color: rgba(0,0,0,0.07); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }

.web-filter-header {
  padding: 16px 18px 14px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(240,253,244,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.light-mode .web-filter-header { color: rgba(7,26,6,0.88); border-bottom-color: rgba(0,0,0,0.07); }
.web-filter-clear { font-size: 0.76rem; font-weight: 600; color: #22C55E; cursor: pointer; }
body.light-mode .web-filter-clear { color: #16A34A; }

.web-filter-section { padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.05); }
body.light-mode .web-filter-section { border-bottom-color: rgba(0,0,0,0.06); }
.web-filter-section:last-child { border-bottom: none; }
.web-filter-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(240,253,244,0.40);
  margin-bottom: 10px;
}
body.light-mode .web-filter-section-title { color: rgba(7,26,6,0.42); }

.web-filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  cursor: pointer;
  transition: color 0.15s;
}
.web-filter-checkbox {
  width: 16px; height: 16px;
  border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,0.18);
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.web-filter-item.checked .web-filter-checkbox {
  background: #22C55E;
  border-color: #22C55E;
}
body.light-mode .web-filter-checkbox { border-color: rgba(7,26,6,0.22); }
.web-filter-label { font-size: 0.84rem; color: rgba(240,253,244,0.70); }
.web-filter-item.checked .web-filter-label { color: rgba(240,253,244,0.92); }
body.light-mode .web-filter-label { color: rgba(7,26,6,0.68); }
body.light-mode .web-filter-item.checked .web-filter-label { color: rgba(7,26,6,0.90); }
.web-filter-count { margin-left: auto; font-size: 0.70rem; color: rgba(240,253,244,0.30); }
body.light-mode .web-filter-count { color: rgba(7,26,6,0.35); }

/* Rating stars filter */
.web-filter-stars { display: flex; gap: 6px; flex-wrap: wrap; }
.web-filter-star-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.78rem; font-weight: 600;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(240,253,244,0.60);
  transition: all 0.15s;
}
.web-filter-star-btn:hover { background: rgba(252,211,77,0.10); border-color: rgba(252,211,77,0.20); color: #FCD34D; }
.web-filter-star-btn.active { background: rgba(252,211,77,0.14); border-color: rgba(252,211,77,0.30); color: #FCD34D; }
body.light-mode .web-filter-star-btn { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.09); color: rgba(7,26,6,0.55); }

/* Price range */
.web-price-range-track {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.10);
  position: relative;
  margin: 10px 0 4px;
}
.web-price-range-fill { position: absolute; left: 0; right: 30%; height: 100%; background: linear-gradient(90deg,#16A34A,#22C55E); border-radius: 2px; }
.web-price-labels { display: flex; justify-content: space-between; font-size: 0.72rem; color: rgba(240,253,244,0.45); }
body.light-mode .web-price-labels { color: rgba(7,26,6,0.45); }

/* Search bar (full-width on search page) */
.web-search-bar {
  position: relative;
  margin-bottom: 20px;
}
.web-search-bar-input {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(240,253,244,0.90);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0 18px 0 52px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.web-search-bar-input::placeholder { color: rgba(240,253,244,0.30); }
.web-search-bar-input:focus { border-color: rgba(22,163,74,0.40); background: rgba(255,255,255,0.09); box-shadow: 0 0 0 3px rgba(22,163,74,0.10); }
body.light-mode .web-search-bar-input { background: #fff; border-color: rgba(0,0,0,0.12); color: rgba(7,26,6,0.90); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
body.light-mode .web-search-bar-input:focus { border-color: rgba(22,163,74,0.35); box-shadow: 0 0 0 3px rgba(22,163,74,0.08); }
.web-search-bar-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: rgba(240,253,244,0.35); pointer-events: none; }
body.light-mode .web-search-bar-icon { color: rgba(7,26,6,0.38); }

/* Results header */
.web-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.web-results-count { font-size: 0.90rem; color: rgba(240,253,244,0.55); }
body.light-mode .web-results-count { color: rgba(7,26,6,0.55); }
.web-results-count strong { color: rgba(240,253,244,0.90); font-weight: 700; }
body.light-mode .web-results-count strong { color: rgba(7,26,6,0.90); }

.web-sort-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(240,253,244,0.70);
  cursor: pointer;
  transition: all 0.18s;
}
.web-sort-btn:hover { border-color: rgba(22,163,74,0.25); color: #22C55E; }
body.light-mode .web-sort-btn { background: #fff; border-color: rgba(0,0,0,0.10); color: rgba(7,26,6,0.70); }

/* Active filter chips */
.web-active-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.web-active-filter {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 0.78rem; font-weight: 600;
  background: rgba(22,163,74,0.14);
  border: 1px solid rgba(22,163,74,0.24);
  color: #22C55E;
  cursor: pointer;
}
body.light-mode .web-active-filter { background: rgba(22,163,74,0.10); color: #15803D; }

/* ── Restaurant Page Layout ──────────────────────────────── */
.web-rest-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 1024px) { .web-rest-layout { grid-template-columns: 1fr; } }

/* Restaurant hero */
.web-rest-hero {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}
.web-rest-hero-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.web-rest-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,12,4,0.88) 0%, rgba(5,12,4,0.20) 60%, transparent 100%);
}
.web-rest-hero-content { position: absolute; bottom: 24px; left: 28px; right: 28px; }
.web-rest-hero-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.web-rest-hero-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.web-rest-hero-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  font-size: 0.78rem; color: rgba(255,255,255,0.90);
  font-weight: 500;
}
.web-rest-hero-chip.green { background: rgba(22,163,74,0.30); color: #4ADE80; }

/* Sticky menu tabs */
.web-menu-tabs {
  position: sticky;
  top: 68px;
  z-index: 50;
  background: rgba(8,16,7,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 0 24px;
}
.web-menu-tabs::-webkit-scrollbar { display: none; }
body.light-mode .web-menu-tabs { background: rgba(255,255,255,0.97); border-bottom-color: rgba(0,0,0,0.08); }

.web-menu-tab {
  padding: 14px 20px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(240,253,244,0.48);
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  text-decoration: none;
}
.web-menu-tab:hover { color: rgba(240,253,244,0.80); }
.web-menu-tab.active { color: #22C55E; border-bottom-color: #22C55E; }
body.light-mode .web-menu-tab { color: rgba(7,26,6,0.50); }
body.light-mode .web-menu-tab.active { color: #16A34A; border-bottom-color: #16A34A; }

/* Menu section */
.web-menu-section { margin-bottom: 32px; }
.web-menu-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(240,253,244,0.90);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
body.light-mode .web-menu-section-title { color: rgba(7,26,6,0.90); border-bottom-color: rgba(0,0,0,0.07); }

/* Menu items grid */
.web-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px) { .web-menu-grid { grid-template-columns: 1fr; } }

.web-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
}
.web-menu-item:hover { border-color: rgba(22,163,74,0.18); background: rgba(22,163,74,0.04); transform: translateY(-1px); }
body.light-mode .web-menu-item { background: #fff; border-color: rgba(0,0,0,0.07); box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
body.light-mode .web-menu-item:hover { border-color: rgba(22,163,74,0.18); }

.web-menu-item-thumb { width: 72px; height: 72px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; overflow: hidden; }
.web-menu-item-info { flex: 1; min-width: 0; }
.web-menu-item-name { font-size: 0.88rem; font-weight: 600; color: rgba(240,253,244,0.90); margin-bottom: 3px; }
body.light-mode .web-menu-item-name { color: rgba(7,26,6,0.90); }
.web-menu-item-desc { font-size: 0.72rem; color: rgba(240,253,244,0.42); line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
body.light-mode .web-menu-item-desc { color: rgba(7,26,6,0.45); }
.web-menu-item-footer { display: flex; align-items: center; justify-content: space-between; }
.web-menu-item-price { font-size: 0.92rem; font-weight: 700; color: #22C55E; }
body.light-mode .web-menu-item-price { color: #16A34A; }
.web-menu-item-popular { font-size: 0.60rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; background: rgba(249,115,22,0.15); color: #FB923C; border: 1px solid rgba(249,115,22,0.22); padding: 2px 7px; border-radius: 9999px; }

.web-add-btn {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg,#16A34A,#22C55E);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.web-add-btn:hover { transform: scale(1.10); box-shadow: 0 4px 14px rgba(22,163,74,0.42); }
.web-add-btn:active { transform: scale(0.90); }

/* ── Sticky Cart Sidebar ─────────────────────────────────── */
.web-cart-sidebar {
  position: sticky;
  top: 88px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
body.light-mode .web-cart-sidebar { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 4px 20px rgba(0,0,0,0.07); }

.web-cart-sidebar-header {
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 8px;
}
body.light-mode .web-cart-sidebar-header { border-bottom-color: rgba(0,0,0,0.07); }
.web-cart-sidebar-title {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  color: rgba(240,253,244,0.90);
}
body.light-mode .web-cart-sidebar-title { color: rgba(7,26,6,0.90); }
.web-cart-sidebar-rest { font-size: 0.72rem; color: rgba(240,253,244,0.40); margin-left: auto; }
body.light-mode .web-cart-sidebar-rest { color: rgba(7,26,6,0.42); }

.web-cart-items { padding: 8px 0; }
.web-cart-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.web-cart-item:last-child { border-bottom: none; }
body.light-mode .web-cart-item { border-bottom-color: rgba(0,0,0,0.05); }

.web-cart-item-qty {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(22,163,74,0.16);
  border: 1px solid rgba(22,163,74,0.26);
  color: #22C55E;
  font-size: 0.70rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
body.light-mode .web-cart-item-qty { background: rgba(22,163,74,0.10); color: #15803D; }
.web-cart-item-name { flex: 1; font-size: 0.82rem; color: rgba(240,253,244,0.80); }
body.light-mode .web-cart-item-name { color: rgba(7,26,6,0.80); }
.web-cart-item-price { font-size: 0.82rem; font-weight: 700; color: rgba(240,253,244,0.90); }
body.light-mode .web-cart-item-price { color: rgba(7,26,6,0.90); }

.web-cart-promo {
  margin: 8px 18px;
  display: flex; gap: 0;
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
}
body.light-mode .web-cart-promo { border-color: rgba(0,0,0,0.10); }
.web-cart-promo-input {
  flex: 1;
  height: 38px;
  background: rgba(255,255,255,0.04);
  border: none;
  font-family: var(--font-body);
  font-size: 0.80rem;
  padding: 0 12px;
  outline: none;
  color: rgba(240,253,244,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.web-cart-promo-input::placeholder { text-transform: none; letter-spacing: 0; color: rgba(240,253,244,0.28); }
body.light-mode .web-cart-promo-input { background: rgba(0,0,0,0.03); color: rgba(7,26,6,0.85); }
.web-cart-promo-btn {
  padding: 0 14px;
  background: rgba(22,163,74,0.16);
  border: none; border-left: 1px solid rgba(255,255,255,0.07);
  color: #22C55E; font-size: 0.78rem; font-weight: 700;
  cursor: pointer; transition: background 0.18s;
}
.web-cart-promo-btn:hover { background: rgba(22,163,74,0.26); }
body.light-mode .web-cart-promo-btn { background: rgba(22,163,74,0.10); color: #15803D; }

.web-cart-breakdown { padding: 12px 18px; }
.web-cart-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 0; font-size: 0.82rem;
}
.web-cart-row-label { color: rgba(240,253,244,0.50); }
body.light-mode .web-cart-row-label { color: rgba(7,26,6,0.52); }
.web-cart-row-val { color: rgba(240,253,244,0.85); font-weight: 500; }
body.light-mode .web-cart-row-val { color: rgba(7,26,6,0.85); }
.web-cart-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 0; }
body.light-mode .web-cart-divider { background: rgba(0,0,0,0.07); }
.web-cart-total-row { padding: 6px 0; }
.web-cart-total-row .web-cart-row-label { font-size: 0.90rem; font-weight: 700; color: rgba(240,253,244,0.88); }
.web-cart-total-row .web-cart-row-val { font-size: 1rem; font-weight: 800; color: #22C55E; }
body.light-mode .web-cart-total-row .web-cart-row-label { color: rgba(7,26,6,0.88); }
body.light-mode .web-cart-total-row .web-cart-row-val { color: #16A34A; }

.web-cart-cta {
  margin: 4px 18px 18px;
  display: block;
  width: calc(100% - 36px);
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg,#16A34A,#22C55E);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(22,163,74,0.38);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.web-cart-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(22,163,74,0.48); }

.web-cart-empty {
  padding: 40px 24px;
  text-align: center;
  color: rgba(240,253,244,0.35);
}
body.light-mode .web-cart-empty { color: rgba(7,26,6,0.35); }
.web-cart-empty-icon { font-size: 2.5rem; margin-bottom: 10px; }
.web-cart-empty-title { font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.web-cart-empty-desc { font-size: 0.76rem; line-height: 1.5; }

/* ── Checkout ────────────────────────────────────────────── */
.web-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 960px) { .web-checkout-layout { grid-template-columns: 1fr; } }

.web-checkout-card {
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  margin-bottom: 16px;
}
body.light-mode .web-checkout-card { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }

.web-checkout-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
body.light-mode .web-checkout-card-header { border-bottom-color: rgba(0,0,0,0.07); }
.web-checkout-card-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg,#16A34A,#22C55E);
  color: #fff; font-size: 0.72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.web-checkout-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  color: rgba(240,253,244,0.90);
  margin-left: 10px; flex: 1;
}
body.light-mode .web-checkout-card-title { color: rgba(7,26,6,0.90); }
.web-edit-link { font-size: 0.78rem; font-weight: 600; color: #22C55E; cursor: pointer; }
body.light-mode .web-edit-link { color: #16A34A; }

.web-checkout-body { padding: 16px 20px; }

/* Delivery options */
.web-delivery-option {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.09);
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.18s;
}
.web-delivery-option:hover { border-color: rgba(22,163,74,0.25); }
.web-delivery-option.selected { border-color: rgba(22,163,74,0.40); background: rgba(22,163,74,0.06); }
body.light-mode .web-delivery-option { border-color: rgba(0,0,0,0.10); }
body.light-mode .web-delivery-option.selected { border-color: rgba(22,163,74,0.35); background: rgba(22,163,74,0.05); }
.web-delivery-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.web-delivery-info { flex: 1; }
.web-delivery-name { font-size: 0.88rem; font-weight: 600; color: rgba(240,253,244,0.88); }
body.light-mode .web-delivery-name { color: rgba(7,26,6,0.88); }
.web-delivery-meta { font-size: 0.74rem; color: rgba(240,253,244,0.45); margin-top: 2px; }
body.light-mode .web-delivery-meta { color: rgba(7,26,6,0.47); }
.web-delivery-price { font-size: 0.88rem; font-weight: 700; color: rgba(240,253,244,0.85); }
body.light-mode .web-delivery-price { color: rgba(7,26,6,0.85); }
.web-delivery-price.free { color: #22C55E; }
body.light-mode .web-delivery-price.free { color: #16A34A; }

/* Payment method rows */
.web-payment-option {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.09);
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.18s;
}
.web-payment-option.selected { border-color: rgba(22,163,74,0.40); background: rgba(22,163,74,0.06); }
body.light-mode .web-payment-option { border-color: rgba(0,0,0,0.10); }
body.light-mode .web-payment-option.selected { border-color: rgba(22,163,74,0.35); background: rgba(22,163,74,0.04); }
.web-payment-card-icon { width: 46px; height: 30px; border-radius: 7px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.70rem; font-weight: 800; color: rgba(240,253,244,0.70); flex-shrink: 0; }
body.light-mode .web-payment-card-icon { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.12); color: rgba(7,26,6,0.68); }
.web-payment-label { flex: 1; font-size: 0.86rem; color: rgba(240,253,244,0.85); font-weight: 500; }
body.light-mode .web-payment-label { color: rgba(7,26,6,0.85); }
.web-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.20); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: border-color 0.18s; }
.web-radio.active { border-color: #22C55E; }
.web-radio.active::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #22C55E; display: block; }
body.light-mode .web-radio { border-color: rgba(7,26,6,0.22); }

/* Tip */
.web-tip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.web-tip-btn {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.84rem; font-weight: 700;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(240,253,244,0.60);
  cursor: pointer;
  transition: all 0.18s;
}
.web-tip-btn:hover { background: rgba(22,163,74,0.10); color: rgba(240,253,244,0.85); }
.web-tip-btn.active { background: rgba(22,163,74,0.18); border-color: rgba(22,163,74,0.35); color: #22C55E; }
body.light-mode .web-tip-btn { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.10); color: rgba(7,26,6,0.60); }
body.light-mode .web-tip-btn.active { background: rgba(22,163,74,0.11); color: #15803D; }

/* Order summary sidebar (checkout) */
.web-order-summary-card {
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  position: sticky;
  top: 88px;
}
body.light-mode .web-order-summary-card { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

/* ── General CTA ─────────────────────────────────────────── */
.web-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg,#16A34A,#22C55E);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(22,163,74,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.web-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(22,163,74,0.45); }
.web-cta:active { transform: translateY(1px); }
.web-cta-full { width: 100%; justify-content: center; border-radius: 14px; height: 52px; font-size: 0.96rem; }

.web-cta-outline {
  background: transparent;
  color: #22C55E;
  border: 1.5px solid rgba(22,163,74,0.38);
  box-shadow: none;
}
body.light-mode .web-cta-outline { color: #16A34A; }
.web-cta-outline:hover { background: rgba(22,163,74,0.08); box-shadow: none; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.web-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem;
  color: rgba(240,253,244,0.40);
  padding: 16px 0 8px;
}
body.light-mode .web-breadcrumb { color: rgba(7,26,6,0.42); }
.web-breadcrumb a { color: rgba(240,253,244,0.50); text-decoration: none; transition: color 0.15s; }
.web-breadcrumb a:hover { color: #22C55E; }
body.light-mode .web-breadcrumb a { color: rgba(7,26,6,0.52); }
.web-breadcrumb-sep { font-size: 0.70rem; }

/* ── Page Header Util ────────────────────────────────────── */
.web-page-header { padding: 24px 0 8px; }
.web-page-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: rgba(240,253,244,0.96);
  letter-spacing: -0.03em;
}
body.light-mode .web-page-title { color: rgba(7,26,6,0.95); }
.web-page-sub { font-size: 0.88rem; color: rgba(240,253,244,0.45); margin-top: 4px; }
body.light-mode .web-page-sub { color: rgba(7,26,6,0.48); }

/* ── Order confirmed ─────────────────────────────────────── */
.web-confirm-hero {
  text-align: center;
  padding: 56px 24px 32px;
}
.web-confirm-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg,#16A34A,#22C55E);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 40px rgba(22,163,74,0.40);
  animation: confirmPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes confirmPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.web-confirm-title {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800;
  color: rgba(240,253,244,0.96); margin-bottom: 8px;
}
body.light-mode .web-confirm-title { color: rgba(7,26,6,0.96); }
.web-confirm-sub { font-size: 0.92rem; color: rgba(240,253,244,0.55); }
body.light-mode .web-confirm-sub { color: rgba(7,26,6,0.55); }
.web-order-num {
  display: inline-block;
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.22);
  color: #22C55E;
  font-family: var(--font-mono, monospace);
  font-size: 0.90rem; font-weight: 700;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-top: 10px;
}
body.light-mode .web-order-num { color: #15803D; }

.web-eta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 28px;
  margin: 0 auto 24px;
  max-width: 500px;
  border-radius: 18px;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.18);
}
body.light-mode .web-eta-strip { background: rgba(22,163,74,0.06); }
.web-eta-time { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: #22C55E; line-height: 1; }
body.light-mode .web-eta-time { color: #16A34A; }

/* ── Tracking ────────────────────────────────────────────── */
.web-track-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; }
@media (max-width: 1024px) { .web-track-layout { grid-template-columns: 1fr; } }

.web-map-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(8,16,7,0.90);
  height: 360px;
  position: relative;
  margin-bottom: 20px;
}
body.light-mode .web-map-card { border-color: rgba(0,0,0,0.08); }

.web-map-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
.web-map-bg { position: absolute; inset: 0; background: linear-gradient(135deg,#0A1409 0%,#0F1E0C 50%,#162B12 100%); }
body.light-mode .web-map-bg { background: linear-gradient(135deg,#ECFDF5 0%,#D1FAE5 50%,#A7F3D0 100%); }
.web-map-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(22,163,74,0.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(22,163,74,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.web-map-route-line { position: absolute; width: 55%; height: 2px; background: linear-gradient(90deg,#22C55E,rgba(22,163,74,0.15)); top: 50%; left: 22%; transform: rotate(-8deg); border-radius: 2px; }
.web-map-pin { position: absolute; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.25); font-size: 1rem; }
.web-map-pin-driver { background: linear-gradient(135deg,#16A34A,#22C55E); top: 46%; left: 44%; animation: driverPulse 2s ease-in-out infinite; }
@keyframes driverPulse { 0%,100% { transform:scale(1); } 50% { transform:scale(1.12); } }
.web-map-pin-dest { background: linear-gradient(135deg,#F97316,#EF4444); top: 28%; left: 72%; }
.web-map-pin-rest { background: rgba(255,255,255,0.12); border: 2px solid rgba(22,163,74,0.40); top: 64%; left: 16%; width: 32px; height: 32px; font-size: 0.85rem; }
.web-map-chip { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); background: rgba(8,16,7,0.80); backdrop-filter: blur(10px); border: 1px solid rgba(22,163,74,0.22); border-radius: 9999px; padding: 6px 16px; font-size: 0.78rem; font-weight: 600; color: rgba(240,253,244,0.90); white-space: nowrap; display: flex; align-items: center; gap: 8px; }
body.light-mode .web-map-chip { background: rgba(255,255,255,0.90); color: rgba(7,26,6,0.90); }
.web-map-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #22C55E; animation: liveDot 1.5s ease-in-out infinite; }
@keyframes liveDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }

/* Status steps */
.web-status-steps { display: flex; flex-direction: column; gap: 0; padding: 16px 0; }
.web-status-step { display: flex; align-items: flex-start; gap: 14px; padding-bottom: 18px; position: relative; }
.web-status-step:last-child { padding-bottom: 0; }
.web-status-step:not(:last-child)::before { content: ''; position: absolute; left: 15px; top: 30px; width: 2px; bottom: 0; background: rgba(255,255,255,0.07); }
body.light-mode .web-status-step:not(:last-child)::before { background: rgba(7,26,6,0.08); }
.web-status-step.done::before { background: rgba(22,163,74,0.30); }
.web-status-dot { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); position: relative; z-index: 1; }
.web-status-step.done .web-status-dot { background: rgba(22,163,74,0.18); border-color: rgba(22,163,74,0.40); }
.web-status-step.active .web-status-dot { background: linear-gradient(135deg,#16A34A,#22C55E); border-color: transparent; box-shadow: 0 0 0 5px rgba(22,163,74,0.18); animation: stepPulse 2s ease-in-out infinite; }
@keyframes stepPulse { 0%,100%{box-shadow:0 0 0 5px rgba(22,163,74,0.18)} 50%{box-shadow:0 0 0 9px rgba(22,163,74,0.08)} }
.web-status-info { flex: 1; padding-top: 4px; }
.web-status-title { font-size: 0.90rem; font-weight: 600; color: rgba(240,253,244,0.80); }
.web-status-step.active .web-status-title { color: #22C55E; font-weight: 700; }
.web-status-step.done .web-status-title { color: rgba(240,253,244,0.45); }
body.light-mode .web-status-title { color: rgba(7,26,6,0.78); }
body.light-mode .web-status-step.active .web-status-title { color: #16A34A; }
body.light-mode .web-status-step.done .web-status-title { color: rgba(7,26,6,0.40); }
.web-status-sub { font-size: 0.75rem; color: rgba(240,253,244,0.38); margin-top: 2px; }
body.light-mode .web-status-sub { color: rgba(7,26,6,0.42); }

/* Driver row */
.web-driver-row { display: flex; align-items: center; gap: 14px; padding: 16px; }
.web-driver-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg,rgba(22,163,74,0.22),rgba(22,163,74,0.08)); border: 2px solid rgba(22,163,74,0.30); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: #22C55E; flex-shrink: 0; }
.web-driver-info { flex: 1; }
.web-driver-name { font-size: 0.95rem; font-weight: 700; color: rgba(240,253,244,0.90); }
body.light-mode .web-driver-name { color: rgba(7,26,6,0.90); }
.web-driver-meta { font-size: 0.75rem; color: rgba(240,253,244,0.45); margin-top: 2px; display: flex; gap: 8px; }
body.light-mode .web-driver-meta { color: rgba(7,26,6,0.45); }
.web-driver-actions { display: flex; gap: 8px; }
.web-driver-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: rgba(240,253,244,0.65); cursor: pointer; transition: all 0.18s; }
.web-driver-btn:hover { background: rgba(22,163,74,0.12); color: #22C55E; border-color: rgba(22,163,74,0.25); }
body.light-mode .web-driver-btn { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.10); color: rgba(7,26,6,0.60); }

/* ── Orders / Account ────────────────────────────────────── */
.web-tabs { display: flex; gap: 4px; padding: 4px; background: rgba(255,255,255,0.04); border-radius: 12px; margin-bottom: 20px; width: fit-content; border: 1px solid rgba(255,255,255,0.07); }
body.light-mode .web-tabs { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); }
.web-tab { padding: 8px 18px; border-radius: 9px; font-size: 0.84rem; font-weight: 600; cursor: pointer; color: rgba(240,253,244,0.52); transition: all 0.18s; }
.web-tab.active { background: rgba(22,163,74,0.16); color: #22C55E; }
body.light-mode .web-tab { color: rgba(7,26,6,0.52); }
body.light-mode .web-tab.active { background: rgba(22,163,74,0.12); color: #15803D; }

.web-order-card { border-radius: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); overflow: hidden; margin-bottom: 12px; transition: border-color 0.18s; }
.web-order-card:hover { border-color: rgba(22,163,74,0.15); }
body.light-mode .web-order-card { background: #fff; border-color: rgba(0,0,0,0.07); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.web-order-header { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.05); }
body.light-mode .web-order-header { border-bottom-color: rgba(0,0,0,0.06); }
.web-order-rest-img { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.web-order-rest-name { font-size: 0.92rem; font-weight: 700; color: rgba(240,253,244,0.90); }
body.light-mode .web-order-rest-name { color: rgba(7,26,6,0.90); }
.web-order-date { font-size: 0.74rem; color: rgba(240,253,244,0.40); margin-top: 2px; }
body.light-mode .web-order-date { color: rgba(7,26,6,0.42); }
.web-order-status { margin-left: auto; font-size: 0.70rem; font-weight: 700; padding: 4px 12px; border-radius: 9999px; text-transform: uppercase; letter-spacing: 0.04em; flex-shrink: 0; }
.web-order-status.delivered { background: rgba(22,163,74,0.12); color: #22C55E; border: 1px solid rgba(22,163,74,0.20); }
.web-order-status.active { background: rgba(249,115,22,0.12); color: #FB923C; border: 1px solid rgba(249,115,22,0.20); }
.web-order-status.cancelled { background: rgba(239,68,68,0.10); color: #F87171; border: 1px solid rgba(239,68,68,0.18); }
body.light-mode .web-order-status.delivered { color: #15803D; }
body.light-mode .web-order-status.active { color: #C2410C; }
.web-order-body { padding: 12px 18px; font-size: 0.82rem; color: rgba(240,253,244,0.52); }
body.light-mode .web-order-body { color: rgba(7,26,6,0.55); }
.web-order-footer { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-top: 1px solid rgba(255,255,255,0.05); }
body.light-mode .web-order-footer { border-top-color: rgba(0,0,0,0.06); }
.web-order-total { font-size: 0.92rem; font-weight: 700; color: rgba(240,253,244,0.88); }
body.light-mode .web-order-total { color: rgba(7,26,6,0.88); }
.web-order-actions { display: flex; gap: 8px; }

/* Small buttons */
.web-sm-btn { display: inline-flex; align-items: center; gap: 5px; padding: 7px 16px; border-radius: 9px; font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: all 0.18s; text-decoration: none; border: 1px solid; }
.web-sm-btn-green { background: rgba(22,163,74,0.12); color: #22C55E; border-color: rgba(22,163,74,0.22); }
.web-sm-btn-green:hover { background: rgba(22,163,74,0.20); }
body.light-mode .web-sm-btn-green { color: #15803D; background: rgba(22,163,74,0.09); }
.web-sm-btn-ghost { background: rgba(255,255,255,0.05); color: rgba(240,253,244,0.60); border-color: rgba(255,255,255,0.09); }
.web-sm-btn-ghost:hover { background: rgba(255,255,255,0.09); color: rgba(240,253,244,0.85); }
body.light-mode .web-sm-btn-ghost { background: rgba(0,0,0,0.04); color: rgba(7,26,6,0.58); border-color: rgba(0,0,0,0.09); }

/* Footer */
.web-footer {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 24px;
}
body.light-mode .web-footer { border-top-color: rgba(0,0,0,0.07); }
.web-footer-inner { max-width: 1320px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.web-footer-copy { font-size: 0.78rem; color: rgba(240,253,244,0.35); }
body.light-mode .web-footer-copy { color: rgba(7,26,6,0.38); }
.web-footer-links { display: flex; gap: 20px; }
.web-footer-link { font-size: 0.78rem; color: rgba(240,253,244,0.40); text-decoration: none; transition: color 0.15s; }
.web-footer-link:hover { color: #22C55E; }
body.light-mode .web-footer-link { color: rgba(7,26,6,0.42); }
