/* ============================================================
   Delivra — Customer App Stylesheet
   assets/css/customer.css
   Teamseven Private Limited | teamseven.ltd
   ============================================================ */

/* ── App Shell ───────────────────────────────────────────── */
.cust-shell {
  min-height: 100vh;
  background: var(--clr-bg-dark-1);
  display: flex;
  flex-direction: column;
}

body.light-mode .cust-shell {
  background: var(--clr-bg-light);
}

.cust-page {
  flex: 1;
  padding-top: 72px;
  padding-bottom: 80px;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .cust-page { max-width: 720px; padding-bottom: 40px; }
}
@media (min-width: 1024px) {
  .cust-page { max-width: 960px; }
}

/* ── Top Header ──────────────────────────────────────────── */
.cust-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: 64px;
  background: rgba(10, 20, 9, 0.92);
  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 .cust-header {
  background: rgba(247,254,244,0.95);
  border-bottom-color: rgba(22,163,74,0.14);
  box-shadow: 0 2px 16px rgba(7,26,6,0.07);
}

.cust-header-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

@media (min-width: 768px) { .cust-header-inner { max-width: 720px; } }
@media (min-width: 1024px) { .cust-header-inner { max-width: 960px; } }

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

.cust-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(240,253,244,0.70);
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
  flex-shrink: 1;
}
.cust-location:hover { background: rgba(255,255,255,0.07); color: rgba(240,253,244,0.95); }
body.light-mode .cust-location { color: rgba(7,26,6,0.65); }
body.light-mode .cust-location:hover { background: rgba(7,26,6,0.06); color: rgba(7,26,6,0.90); }

.cust-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.cust-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(240,253,244,0.65);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  position: relative;
  text-decoration: none;
  flex-shrink: 0;
}
.cust-icon-btn:hover { background: rgba(22,163,74,0.14); color: #22C55E; border-color: rgba(22,163,74,0.25); }
body.light-mode .cust-icon-btn { background: rgba(7,26,6,0.06); border-color: rgba(7,26,6,0.11); color: rgba(7,26,6,0.60); }
body.light-mode .cust-icon-btn:hover { background: rgba(22,163,74,0.10); color: #16A34A; border-color: rgba(22,163,74,0.22); }

.cust-cart-badge {
  position: absolute;
  top: -3px; right: -3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg,#16A34A,#22C55E);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(10,20,9,0.95);
}
body.light-mode .cust-cart-badge { border-color: rgba(247,254,244,0.97); }

.cust-avatar-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg,#16A34A,#22C55E);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  border: 2px solid rgba(22,163,74,0.35);
}

/* ── Bottom Navigation ───────────────────────────────────── */
.cust-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: 68px;
  background: rgba(10,20,9,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
body.light-mode .cust-bottom-nav {
  background: rgba(247,254,244,0.97);
  border-top-color: rgba(22,163,74,0.14);
  box-shadow: 0 -2px 16px rgba(7,26,6,0.07);
}

@media (min-width: 768px) { .cust-bottom-nav { display: none; } }

.cust-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(240,253,244,0.38);
  transition: color 0.18s, background 0.18s;
  flex: 1;
  cursor: pointer;
}
.cust-nav-item:hover { color: rgba(240,253,244,0.70); }
.cust-nav-item.active { color: #22C55E; }
body.light-mode .cust-nav-item { color: rgba(7,26,6,0.38); }
body.light-mode .cust-nav-item:hover { color: rgba(7,26,6,0.65); }
body.light-mode .cust-nav-item.active { color: #16A34A; }

.cust-nav-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #22C55E;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.18s;
}
.cust-nav-item.active .cust-nav-dot { opacity: 1; }

.cust-nav-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.01em; }

/* ── Section Utilities ───────────────────────────────────── */
.cust-section { padding: 20px 16px 4px; }
.cust-section-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(240,253,244,0.92);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.light-mode .cust-section-title { color: rgba(7,26,6,0.90); }

.cust-see-all {
  font-size: 0.78rem;
  font-weight: 600;
  color: #22C55E;
  text-decoration: none;
}
body.light-mode .cust-see-all { color: #16A34A; }

/* ── Search Bar ──────────────────────────────────────────── */
.cust-search-wrap {
  padding: 12px 16px;
  position: relative;
}
.cust-search-input {
  width: 100%;
  height: 46px;
  border-radius: 14px;
  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.88rem;
  padding: 0 16px 0 44px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.cust-search-input::placeholder { color: rgba(240,253,244,0.30); }
.cust-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 .cust-search-input { background: rgba(7,26,6,0.05); border-color: rgba(7,26,6,0.12); color: rgba(7,26,6,0.88); }
body.light-mode .cust-search-input::placeholder { color: rgba(7,26,6,0.35); }
body.light-mode .cust-search-input:focus { border-color: rgba(22,163,74,0.35); background: rgba(255,255,255,0.80); box-shadow: 0 0 0 3px rgba(22,163,74,0.08); }

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

/* ── Category Scrollable Pills ───────────────────────────── */
.cust-cats {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 16px 12px;
  scrollbar-width: none;
}
.cust-cats::-webkit-scrollbar { display: none; }

.cust-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
  text-decoration: none;
}
.cust-cat:hover { background: rgba(22,163,74,0.10); border-color: rgba(22,163,74,0.20); transform: translateY(-2px); }
.cust-cat.active { background: rgba(22,163,74,0.16); border-color: rgba(22,163,74,0.30); }
body.light-mode .cust-cat { background: rgba(7,26,6,0.04); border-color: rgba(7,26,6,0.09); }
body.light-mode .cust-cat:hover { background: rgba(22,163,74,0.08); border-color: rgba(22,163,74,0.18); }
body.light-mode .cust-cat.active { background: rgba(22,163,74,0.12); border-color: rgba(22,163,74,0.25); }

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

/* Filter Pills (search page) */
.cust-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 16px 12px;
  scrollbar-width: none;
}
.cust-filters::-webkit-scrollbar { display: none; }

.cust-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(240,253,244,0.60);
  transition: all 0.18s;
  flex-shrink: 0;
}
.cust-filter-pill:hover { background: rgba(22,163,74,0.10); color: rgba(240,253,244,0.85); border-color: rgba(22,163,74,0.20); }
.cust-filter-pill.active { background: rgba(22,163,74,0.18); color: #22C55E; border-color: rgba(22,163,74,0.35); }
body.light-mode .cust-filter-pill { background: rgba(7,26,6,0.05); border-color: rgba(7,26,6,0.11); color: rgba(7,26,6,0.60); }
body.light-mode .cust-filter-pill.active { background: rgba(22,163,74,0.12); color: #15803D; border-color: rgba(22,163,74,0.28); }

/* ── Restaurant Card ─────────────────────────────────────── */
.cust-scroll-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 16px 16px;
  scrollbar-width: none;
}
.cust-scroll-row::-webkit-scrollbar { display: none; }

.cust-rest-card {
  flex-shrink: 0;
  width: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  display: block;
}
.cust-rest-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.30); border-color: rgba(22,163,74,0.20); }
body.light-mode .cust-rest-card { background: rgba(255,255,255,0.85); border-color: rgba(22,163,74,0.12); box-shadow: 0 2px 12px rgba(7,26,6,0.06); }
body.light-mode .cust-rest-card:hover { box-shadow: 0 12px 40px rgba(22,163,74,0.12); border-color: rgba(22,163,74,0.25); }

/* Full-width restaurant card (grid) */
.cust-rest-card-full {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  display: block;
}
.cust-rest-card-full:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); border-color: rgba(22,163,74,0.18); }
body.light-mode .cust-rest-card-full { background: rgba(255,255,255,0.88); border-color: rgba(22,163,74,0.12); box-shadow: 0 2px 10px rgba(7,26,6,0.05); }
body.light-mode .cust-rest-card-full:hover { border-color: rgba(22,163,74,0.25); box-shadow: 0 8px 28px rgba(22,163,74,0.10); }

.cust-rest-img {
  width: 100%;
  height: 120px;
  position: relative;
  overflow: hidden;
}
.cust-rest-img-full { height: 160px; }

.cust-rest-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}

.cust-rest-promo {
  position: absolute;
  top: 8px; left: 8px;
  background: linear-gradient(135deg,#16A34A,#22C55E);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
}

.cust-rest-fav {
  position: absolute;
  top: 8px; right: 8px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(10,20,9,0.60);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: rgba(240,253,244,0.60);
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
}
.cust-rest-fav:hover, .cust-rest-fav.active { color: #EF4444; background: rgba(239,68,68,0.15); }

.cust-rest-info { padding: 10px 12px 12px; }
.cust-rest-info-full { padding: 12px 14px 14px; }

.cust-rest-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(240,253,244,0.92);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cust-rest-name-full { font-size: 1rem; white-space: normal; }
body.light-mode .cust-rest-name, body.light-mode .cust-rest-name-full { color: rgba(7,26,6,0.90); }

.cust-rest-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cust-rest-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.68rem;
  color: rgba(240,253,244,0.50);
}
body.light-mode .cust-rest-tag { color: rgba(7,26,6,0.50); }
.cust-rest-tag svg { flex-shrink: 0; }

.cust-rest-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #FCD34D;
}

.cust-rest-cuisine {
  font-size: 0.68rem;
  color: rgba(240,253,244,0.40);
  margin-top: 3px;
}
body.light-mode .cust-rest-cuisine { color: rgba(7,26,6,0.42); }

/* ── Menu Item Card ──────────────────────────────────────── */
.cust-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 4px 16px 12px;
}
@media (min-width: 600px) { .cust-menu-grid { grid-template-columns: 1fr 1fr 1fr; } }

.cust-item-card {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  position: relative;
}
.cust-item-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); border-color: rgba(22,163,74,0.18); }
body.light-mode .cust-item-card { background: rgba(255,255,255,0.88); border-color: rgba(22,163,74,0.10); box-shadow: 0 2px 8px rgba(7,26,6,0.05); }
body.light-mode .cust-item-card:hover { border-color: rgba(22,163,74,0.22); box-shadow: 0 6px 20px rgba(22,163,74,0.09); }

.cust-item-img {
  width: 100%; height: 100px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  position: relative;
}

.cust-item-popular {
  position: absolute;
  top: 6px; left: 6px;
  background: rgba(249,115,22,0.90);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cust-item-body { padding: 10px 10px 12px; }

.cust-item-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(240,253,244,0.88);
  margin-bottom: 3px;
  line-height: 1.3;
}
body.light-mode .cust-item-name { color: rgba(7,26,6,0.88); }

.cust-item-desc {
  font-size: 0.70rem;
  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 .cust-item-desc { color: rgba(7,26,6,0.45); }

.cust-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cust-item-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: #22C55E;
}
body.light-mode .cust-item-price { color: #16A34A; }

.cust-add-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg,#16A34A,#22C55E);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.15s;
  font-size: 1.1rem;
  line-height: 1;
}
.cust-add-btn:hover { transform: scale(1.12); box-shadow: 0 4px 12px rgba(22,163,74,0.40); }
.cust-add-btn:active { transform: scale(0.92); }

/* ── Restaurant Hero (restaurant.html) ───────────────────── */
.cust-rest-hero {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.cust-rest-hero-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.cust-rest-hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(7,14,6,0.90) 0%, transparent 100%);
  padding: 20px 16px 14px;
}
body.light-mode .cust-rest-hero-overlay {
  background: linear-gradient(to top, rgba(7,14,6,0.75) 0%, transparent 100%);
}
.cust-rest-hero-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}
.cust-rest-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cust-rest-hero-tag {
  font-size: 0.72rem;
  color: rgba(240,253,244,0.75);
  display: flex; align-items: center; gap: 4px;
}

/* Menu sticky tab nav */
.cust-menu-tabs {
  position: sticky;
  top: 64px;
  z-index: 40;
  background: rgba(10,20,9,0.90);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 12px;
}
.cust-menu-tabs::-webkit-scrollbar { display: none; }
body.light-mode .cust-menu-tabs { background: rgba(247,254,244,0.95); border-bottom-color: rgba(22,163,74,0.12); }

.cust-menu-tab {
  padding: 12px 14px;
  font-size: 0.80rem;
  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;
}
.cust-menu-tab:hover { color: rgba(240,253,244,0.80); }
.cust-menu-tab.active { color: #22C55E; border-bottom-color: #22C55E; }
body.light-mode .cust-menu-tab { color: rgba(7,26,6,0.48); }
body.light-mode .cust-menu-tab.active { color: #16A34A; border-bottom-color: #16A34A; }

/* Menu section heading */
.cust-menu-section { padding: 20px 16px 8px; }
.cust-menu-section-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(240,253,244,0.88);
  margin-bottom: 12px;
}
body.light-mode .cust-menu-section-title { color: rgba(7,26,6,0.88); }

/* Horizontal menu item (list style) */
.cust-menu-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: background 0.18s;
}
.cust-menu-item-row:hover { background: rgba(22,163,74,0.05); }
body.light-mode .cust-menu-item-row { border-bottom-color: rgba(7,26,6,0.07); }
body.light-mode .cust-menu-item-row:hover { background: rgba(22,163,74,0.04); }

.cust-menu-item-thumb {
  width: 72px; height: 72px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  overflow: hidden;
}
.cust-menu-item-info { flex: 1; min-width: 0; }
.cust-menu-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(240,253,244,0.90);
  margin-bottom: 3px;
}
body.light-mode .cust-menu-item-name { color: rgba(7,26,6,0.90); }
.cust-menu-item-desc {
  font-size: 0.72rem;
  color: rgba(240,253,244,0.42);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.light-mode .cust-menu-item-desc { color: rgba(7,26,6,0.45); }
.cust-menu-item-price-row {
  display: flex; align-items: center; justify-content: space-between;
}
.cust-menu-item-price { font-size: 0.88rem; font-weight: 700; color: #22C55E; }
body.light-mode .cust-menu-item-price { color: #16A34A; }

/* Floating Cart Bar */
.cust-cart-bar {
  position: fixed;
  bottom: 76px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 508px;
  background: linear-gradient(135deg,#16A34A,#22C55E);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(22,163,74,0.45);
  z-index: 60;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.cust-cart-bar:hover { transform: translateX(-50%) translateY(-2px); box-shadow: 0 12px 40px rgba(22,163,74,0.55); }
.cust-cart-bar-left { display: flex; align-items: center; gap: 10px; }
.cust-cart-bar-count {
  width: 26px; height: 26px; border-radius: 8px;
  background: rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: #fff;
}
.cust-cart-bar-text { font-size: 0.88rem; font-weight: 700; color: #fff; }
.cust-cart-bar-price { font-size: 0.95rem; font-weight: 800; color: #fff; }

@media (min-width: 768px) {
  .cust-cart-bar { bottom: 24px; }
}

/* ── Cart Page ───────────────────────────────────────────── */
.cust-cart-section {
  margin: 12px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
body.light-mode .cust-cart-section { background: rgba(255,255,255,0.88); border-color: rgba(22,163,74,0.12); box-shadow: 0 2px 10px rgba(7,26,6,0.05); }

.cust-cart-section-header {
  padding: 14px 16px 10px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(240,253,244,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
body.light-mode .cust-cart-section-header { color: rgba(7,26,6,0.65); border-bottom-color: rgba(7,26,6,0.07); }

.cust-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cust-cart-item:last-child { border-bottom: none; }
body.light-mode .cust-cart-item { border-bottom-color: rgba(7,26,6,0.06); }

.cust-cart-item-thumb {
  width: 52px; height: 52px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.cust-cart-item-info { flex: 1; min-width: 0; }
.cust-cart-item-name { font-size: 0.85rem; font-weight: 600; color: rgba(240,253,244,0.90); margin-bottom: 2px; }
body.light-mode .cust-cart-item-name { color: rgba(7,26,6,0.90); }
.cust-cart-item-mod { font-size: 0.70rem; color: rgba(240,253,244,0.38); }
body.light-mode .cust-cart-item-mod { color: rgba(7,26,6,0.42); }
.cust-cart-item-price { font-size: 0.88rem; font-weight: 700; color: #22C55E; white-space: nowrap; }
body.light-mode .cust-cart-item-price { color: #16A34A; }

/* Quantity control */
.cust-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cust-qty-btn {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(240,253,244,0.75);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem; font-weight: 700;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}
.cust-qty-btn:hover { background: rgba(22,163,74,0.18); color: #22C55E; border-color: rgba(22,163,74,0.30); }
body.light-mode .cust-qty-btn { background: rgba(7,26,6,0.06); border-color: rgba(7,26,6,0.12); color: rgba(7,26,6,0.70); }
.cust-qty-val { font-size: 0.85rem; font-weight: 700; color: rgba(240,253,244,0.90); min-width: 16px; text-align: center; }
body.light-mode .cust-qty-val { color: rgba(7,26,6,0.90); }

/* Promo code */
.cust-promo-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
}
.cust-promo-input {
  flex: 1;
  height: 42px;
  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.90);
  font-family: var(--font-body);
  font-size: 0.84rem;
  padding: 0 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cust-promo-input::placeholder { text-transform: none; letter-spacing: 0; color: rgba(240,253,244,0.30); }
.cust-promo-input:focus { border-color: rgba(22,163,74,0.40); background: rgba(255,255,255,0.09); }
body.light-mode .cust-promo-input { background: rgba(7,26,6,0.04); border-color: rgba(7,26,6,0.11); color: rgba(7,26,6,0.88); }

/* Price breakdown */
.cust-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  font-size: 0.84rem;
}
.cust-price-label { color: rgba(240,253,244,0.55); }
body.light-mode .cust-price-label { color: rgba(7,26,6,0.55); }
.cust-price-val { color: rgba(240,253,244,0.90); font-weight: 600; }
body.light-mode .cust-price-val { color: rgba(7,26,6,0.88); }
.cust-price-total .cust-price-label { font-weight: 700; color: rgba(240,253,244,0.85); font-size: 0.92rem; }
.cust-price-total .cust-price-val { color: #22C55E; font-size: 1rem; font-weight: 800; }
body.light-mode .cust-price-total .cust-price-label { color: rgba(7,26,6,0.85); }
body.light-mode .cust-price-total .cust-price-val { color: #16A34A; }
.cust-price-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 4px 16px; }
body.light-mode .cust-price-divider { background: rgba(7,26,6,0.07); }

/* ── Checkout ────────────────────────────────────────────── */
.cust-checkout-card {
  margin: 10px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
body.light-mode .cust-checkout-card { background: rgba(255,255,255,0.90); border-color: rgba(22,163,74,0.12); box-shadow: 0 2px 10px rgba(7,26,6,0.05); }

.cust-checkout-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
body.light-mode .cust-checkout-card-header { border-bottom-color: rgba(7,26,6,0.07); }

.cust-checkout-card-title {
  font-family: var(--font-display);
  font-size: 0.90rem;
  font-weight: 700;
  color: rgba(240,253,244,0.88);
}
body.light-mode .cust-checkout-card-title { color: rgba(7,26,6,0.88); }

.cust-edit-link { font-size: 0.76rem; font-weight: 600; color: #22C55E; cursor: pointer; }
body.light-mode .cust-edit-link { color: #16A34A; }

.cust-address-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
}
.cust-address-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.20);
  display: flex; align-items: center; justify-content: center;
  color: #22C55E;
  flex-shrink: 0;
}
.cust-address-text { font-size: 0.84rem; color: rgba(240,253,244,0.80); line-height: 1.5; }
body.light-mode .cust-address-text { color: rgba(7,26,6,0.78); }
.cust-address-label { font-size: 0.72rem; font-weight: 700; color: #22C55E; margin-bottom: 2px; }
body.light-mode .cust-address-label { color: #16A34A; }

/* Tip selector */
.cust-tip-row {
  display: flex;
  gap: 8px;
  padding: 10px 16px 14px;
}
.cust-tip-btn {
  flex: 1;
  padding: 8px 4px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(240,253,244,0.60);
  cursor: pointer;
  text-align: center;
  transition: all 0.18s;
}
.cust-tip-btn:hover { background: rgba(22,163,74,0.10); color: rgba(240,253,244,0.85); }
.cust-tip-btn.active { background: rgba(22,163,74,0.18); border-color: rgba(22,163,74,0.35); color: #22C55E; }
body.light-mode .cust-tip-btn { background: rgba(7,26,6,0.05); border-color: rgba(7,26,6,0.10); color: rgba(7,26,6,0.58); }
body.light-mode .cust-tip-btn.active { background: rgba(22,163,74,0.12); color: #15803D; border-color: rgba(22,163,74,0.28); }

/* Payment method row */
.cust-payment-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.18s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cust-payment-row:last-child { border-bottom: none; }
.cust-payment-row:hover { background: rgba(22,163,74,0.05); }
body.light-mode .cust-payment-row { border-bottom-color: rgba(7,26,6,0.06); }

.cust-payment-icon {
  width: 38px; height: 26px;
  border-radius: 6px;
  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.75rem; font-weight: 700;
  color: rgba(240,253,244,0.70);
  flex-shrink: 0;
}
body.light-mode .cust-payment-icon { background: rgba(7,26,6,0.06); border-color: rgba(7,26,6,0.12); color: rgba(7,26,6,0.65); }

.cust-payment-label { flex: 1; font-size: 0.85rem; color: rgba(240,253,244,0.85); font-weight: 500; }
body.light-mode .cust-payment-label { color: rgba(7,26,6,0.85); }

.cust-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;
}
.cust-radio.active { border-color: #22C55E; }
.cust-radio.active::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #22C55E; }
body.light-mode .cust-radio { border-color: rgba(7,26,6,0.20); }

/* ── Primary CTA Button ──────────────────────────────────── */
.cust-cta {
  display: block;
  width: calc(100% - 32px);
  margin: 12px 16px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg,#16A34A,#22C55E);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  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.40);
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.cust-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(22,163,74,0.50); }
.cust-cta:active { transform: translateY(1px); box-shadow: 0 2px 10px rgba(22,163,74,0.30); }

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

/* ── Order Confirmed ─────────────────────────────────────── */
.cust-success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg,#16A34A,#22C55E);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 32px rgba(22,163,74,0.45);
  animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.cust-eta-card {
  margin: 0 16px;
  border-radius: 16px;
  background: rgba(22,163,74,0.10);
  border: 1px solid rgba(22,163,74,0.22);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
body.light-mode .cust-eta-card { background: rgba(22,163,74,0.07); }

.cust-eta-time {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #22C55E;
  line-height: 1;
}
body.light-mode .cust-eta-time { color: #16A34A; }

/* ── Live Tracking ───────────────────────────────────────── */
.cust-map-area {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.cust-map-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0A1409 0%, #0F1E0C 50%, #162B12 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
body.light-mode .cust-map-inner {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 50%, #A7F3D0 100%);
}

.cust-map-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(22,163,74,0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(22,163,74,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}

.cust-map-route {
  position: absolute;
  width: 60%; height: 2px;
  background: linear-gradient(90deg, #22C55E, rgba(22,163,74,0.20));
  border-radius: 2px;
  top: 50%; left: 20%;
  transform: rotate(-10deg);
}

.cust-map-pin {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
}
.cust-map-pin-driver {
  background: linear-gradient(135deg,#16A34A,#22C55E);
  top: 45%; left: 42%;
  animation: driverPulse 2s ease-in-out infinite;
}
@keyframes driverPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-50%) scale(1.12); }
}
.cust-map-pin-dest {
  background: linear-gradient(135deg,#F97316,#EF4444);
  top: 30%; left: 75%;
}
.cust-map-pin-rest {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(22,163,74,0.40);
  top: 60%; left: 18%;
  width: 28px; height: 28px;
}

/* Status steps */
.cust-status-steps { padding: 16px; display: flex; flex-direction: column; gap: 0; }
.cust-status-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 16px;
  position: relative;
}
.cust-status-step:last-child { padding-bottom: 0; }
.cust-status-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 13px; top: 26px;
  width: 2px;
  bottom: 0;
  background: rgba(255,255,255,0.08);
}
body.light-mode .cust-status-step:not(:last-child)::before { background: rgba(7,26,6,0.08); }
.cust-status-step.done::before { background: rgba(22,163,74,0.35); }

.cust-status-dot-wrap {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
}
.cust-status-step.done .cust-status-dot-wrap { background: rgba(22,163,74,0.18); border-color: rgba(22,163,74,0.40); }
.cust-status-step.active .cust-status-dot-wrap {
  background: linear-gradient(135deg,#16A34A,#22C55E);
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.18);
  animation: stepPulse 1.8s ease-in-out infinite;
}
@keyframes stepPulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(22,163,74,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(22,163,74,0.08); }
}
.cust-status-step-info { flex: 1; padding-top: 3px; }
.cust-status-step-title { font-size: 0.86rem; font-weight: 600; color: rgba(240,253,244,0.80); }
.cust-status-step.active .cust-status-step-title { color: #22C55E; font-weight: 700; }
.cust-status-step.done .cust-status-step-title { color: rgba(240,253,244,0.45); }
body.light-mode .cust-status-step-title { color: rgba(7,26,6,0.75); }
body.light-mode .cust-status-step.active .cust-status-step-title { color: #16A34A; }
body.light-mode .cust-status-step.done .cust-status-step-title { color: rgba(7,26,6,0.38); }
.cust-status-step-sub { font-size: 0.72rem; color: rgba(240,253,244,0.38); margin-top: 2px; }
body.light-mode .cust-status-step-sub { color: rgba(7,26,6,0.40); }

/* Driver card */
.cust-driver-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}
.cust-driver-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg,rgba(22,163,74,0.20),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;
}
.cust-driver-info { flex: 1; }
.cust-driver-name { font-size: 0.90rem; font-weight: 700; color: rgba(240,253,244,0.90); }
body.light-mode .cust-driver-name { color: rgba(7,26,6,0.90); }
.cust-driver-meta { font-size: 0.72rem; color: rgba(240,253,244,0.45); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
body.light-mode .cust-driver-meta { color: rgba(7,26,6,0.45); }
.cust-driver-actions { display: flex; gap: 8px; }

/* ── Order History ───────────────────────────────────────── */
.cust-order-card {
  margin: 0 16px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}
.cust-order-card:hover { border-color: rgba(22,163,74,0.18); background: rgba(22,163,74,0.03); }
body.light-mode .cust-order-card { background: rgba(255,255,255,0.88); border-color: rgba(22,163,74,0.11); box-shadow: 0 2px 8px rgba(7,26,6,0.04); }

.cust-order-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
body.light-mode .cust-order-header { border-bottom-color: rgba(7,26,6,0.06); }

.cust-order-rest-img {
  width: 44px; height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.cust-order-rest-name { font-size: 0.88rem; font-weight: 700; color: rgba(240,253,244,0.90); }
body.light-mode .cust-order-rest-name { color: rgba(7,26,6,0.90); }
.cust-order-date { font-size: 0.70rem; color: rgba(240,253,244,0.40); margin-top: 1px; }
body.light-mode .cust-order-date { color: rgba(7,26,6,0.42); }

.cust-order-status {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.cust-order-status.delivered { background: rgba(22,163,74,0.14); color: #22C55E; border: 1px solid rgba(22,163,74,0.22); }
.cust-order-status.active { background: rgba(249,115,22,0.14); color: #FB923C; border: 1px solid rgba(249,115,22,0.22); }
.cust-order-status.cancelled { background: rgba(239,68,68,0.12); color: #F87171; border: 1px solid rgba(239,68,68,0.20); }
body.light-mode .cust-order-status.delivered { background: rgba(22,163,74,0.10); color: #15803D; }
body.light-mode .cust-order-status.active { background: rgba(249,115,22,0.10); color: #C2410C; }

.cust-order-items { padding: 10px 14px; font-size: 0.80rem; color: rgba(240,253,244,0.55); line-height: 1.5; }
body.light-mode .cust-order-items { color: rgba(7,26,6,0.55); }

.cust-order-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
body.light-mode .cust-order-footer { border-top-color: rgba(7,26,6,0.06); }
.cust-order-total { font-size: 0.90rem; font-weight: 700; color: rgba(240,253,244,0.88); }
body.light-mode .cust-order-total { color: rgba(7,26,6,0.88); }
.cust-order-actions { display: flex; gap: 8px; }

/* ── Profile ─────────────────────────────────────────────── */
.cust-profile-hero {
  text-align: center;
  padding: 28px 16px 20px;
}
.cust-profile-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg,#16A34A,#22C55E);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 8px 24px rgba(22,163,74,0.35);
  position: relative;
}
.cust-profile-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: rgba(240,253,244,0.92); }
body.light-mode .cust-profile-name { color: rgba(7,26,6,0.92); }
.cust-profile-email { font-size: 0.78rem; color: rgba(240,253,244,0.45); margin-top: 3px; }
body.light-mode .cust-profile-email { color: rgba(7,26,6,0.48); }

.cust-stats-row {
  display: flex;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  margin: 0 16px 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
body.light-mode .cust-stats-row { background: rgba(22,163,74,0.08); border-color: rgba(22,163,74,0.14); }

.cust-stat {
  flex: 1;
  padding: 14px 8px;
  text-align: center;
  background: rgba(10,20,9,0.60);
}
body.light-mode .cust-stat { background: rgba(255,255,255,0.75); }
.cust-stat-val { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: #22C55E; }
body.light-mode .cust-stat-val { color: #16A34A; }
.cust-stat-label { font-size: 0.65rem; color: rgba(240,253,244,0.42); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
body.light-mode .cust-stat-label { color: rgba(7,26,6,0.42); }

/* Menu list (profile navigation) */
.cust-menu-list {
  margin: 0 16px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
body.light-mode .cust-menu-list { background: rgba(255,255,255,0.88); border-color: rgba(22,163,74,0.12); box-shadow: 0 2px 8px rgba(7,26,6,0.04); }

.cust-menu-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: background 0.18s;
  text-decoration: none;
  color: inherit;
}
.cust-menu-list-item:last-child { border-bottom: none; }
.cust-menu-list-item:hover { background: rgba(22,163,74,0.05); }
body.light-mode .cust-menu-list-item { border-bottom-color: rgba(7,26,6,0.06); }

.cust-menu-list-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cust-menu-list-label { flex: 1; font-size: 0.88rem; font-weight: 500; color: rgba(240,253,244,0.85); }
body.light-mode .cust-menu-list-label { color: rgba(7,26,6,0.85); }
.cust-menu-list-sub { font-size: 0.72rem; color: rgba(240,253,244,0.38); margin-top: 1px; }
body.light-mode .cust-menu-list-sub { color: rgba(7,26,6,0.40); }
.cust-menu-list-arrow { color: rgba(240,253,244,0.25); flex-shrink: 0; }
body.light-mode .cust-menu-list-arrow { color: rgba(7,26,6,0.25); }

/* ── Address Cards ───────────────────────────────────────── */
.cust-address-card {
  margin: 0 16px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: border-color 0.18s;
}
.cust-address-card.default { border-color: rgba(22,163,74,0.28); background: rgba(22,163,74,0.05); }
body.light-mode .cust-address-card { background: rgba(255,255,255,0.88); border-color: rgba(22,163,74,0.11); box-shadow: 0 2px 8px rgba(7,26,6,0.04); }
body.light-mode .cust-address-card.default { background: rgba(22,163,74,0.05); border-color: rgba(22,163,74,0.24); }

.cust-address-card-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cust-address-card-content { flex: 1; min-width: 0; }
.cust-address-card-title { font-size: 0.88rem; font-weight: 700; color: rgba(240,253,244,0.90); display: flex; align-items: center; gap: 7px; }
body.light-mode .cust-address-card-title { color: rgba(7,26,6,0.90); }
.cust-address-card-text { font-size: 0.78rem; color: rgba(240,253,244,0.50); margin-top: 3px; line-height: 1.45; }
body.light-mode .cust-address-card-text { color: rgba(7,26,6,0.52); }
.cust-address-card-actions { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.cust-default-tag { font-size: 0.60rem; font-weight: 700; color: #22C55E; background: rgba(22,163,74,0.14); border: 1px solid rgba(22,163,74,0.24); padding: 2px 7px; border-radius: 9999px; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
body.light-mode .cust-default-tag { color: #15803D; }

/* ── Payment Method Cards ────────────────────────────────── */
.cust-card-item {
  margin: 0 16px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.18s;
}
.cust-card-item.default-card { border-color: rgba(22,163,74,0.28); }
body.light-mode .cust-card-item { background: rgba(255,255,255,0.88); border-color: rgba(22,163,74,0.11); box-shadow: 0 2px 8px rgba(7,26,6,0.04); }
body.light-mode .cust-card-item.default-card { border-color: rgba(22,163,74,0.26); }

.cust-card-brand {
  width: 48px; height: 32px;
  border-radius: 6px;
  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.7rem; font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
body.light-mode .cust-card-brand { background: rgba(7,26,6,0.06); border-color: rgba(7,26,6,0.12); }

.cust-card-info { flex: 1; }
.cust-card-number { font-family: var(--font-mono); font-size: 0.85rem; color: rgba(240,253,244,0.85); letter-spacing: 0.06em; }
body.light-mode .cust-card-number { color: rgba(7,26,6,0.85); }
.cust-card-expiry { font-size: 0.70rem; color: rgba(240,253,244,0.42); margin-top: 2px; }
body.light-mode .cust-card-expiry { color: rgba(7,26,6,0.44); }

/* ── Banner / Promo ──────────────────────────────────────── */
.cust-banner-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 16px 12px;
  scrollbar-width: none;
}
.cust-banner-scroll::-webkit-scrollbar { display: none; }

.cust-banner {
  flex-shrink: 0;
  width: 280px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  transition: transform 0.18s;
}
.cust-banner:hover { transform: scale(1.02); }
.cust-banner-text { position: relative; z-index: 1; }
.cust-banner-title { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: #fff; line-height: 1.2; }
.cust-banner-sub { font-size: 0.72rem; color: rgba(255,255,255,0.75); margin-top: 2px; }

/* ── General Text Utilities ──────────────────────────────── */
.cust-page-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: rgba(240,253,244,0.95);
  padding: 20px 16px 4px;
}
body.light-mode .cust-page-title { color: rgba(7,26,6,0.95); }

.cust-page-sub {
  font-size: 0.82rem;
  color: rgba(240,253,244,0.45);
  padding: 0 16px 12px;
}
body.light-mode .cust-page-sub { color: rgba(7,26,6,0.48); }

.cust-empty {
  text-align: center;
  padding: 60px 32px;
  color: rgba(240,253,244,0.38);
}
body.light-mode .cust-empty { color: rgba(7,26,6,0.38); }
.cust-empty-icon { font-size: 3rem; margin-bottom: 12px; }
.cust-empty-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.cust-empty-desc { font-size: 0.82rem; line-height: 1.6; }

/* ── Small action button ─────────────────────────────────── */
.cust-sm-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
  border: 1px solid;
}
.cust-sm-btn-green { background: rgba(22,163,74,0.14); color: #22C55E; border-color: rgba(22,163,74,0.24); }
.cust-sm-btn-green:hover { background: rgba(22,163,74,0.22); }
body.light-mode .cust-sm-btn-green { color: #15803D; background: rgba(22,163,74,0.10); border-color: rgba(22,163,74,0.22); }
.cust-sm-btn-ghost { background: rgba(255,255,255,0.06); color: rgba(240,253,244,0.60); border-color: rgba(255,255,255,0.10); }
.cust-sm-btn-ghost:hover { background: rgba(255,255,255,0.10); color: rgba(240,253,244,0.85); }
body.light-mode .cust-sm-btn-ghost { background: rgba(7,26,6,0.05); color: rgba(7,26,6,0.58); border-color: rgba(7,26,6,0.10); }
.cust-sm-btn-red { background: rgba(239,68,68,0.12); color: #F87171; border-color: rgba(239,68,68,0.20); }
body.light-mode .cust-sm-btn-red { color: #B91C1C; background: rgba(239,68,68,0.08); }

/* ── Tabs (orders page) ──────────────────────────────────── */
.cust-tabs {
  display: flex;
  padding: 4px 16px;
  gap: 4px;
  margin-bottom: 4px;
}
.cust-tab {
  flex: 1;
  text-align: center;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(240,253,244,0.52);
  transition: all 0.18s;
}
.cust-tab.active { background: rgba(22,163,74,0.16); border-color: rgba(22,163,74,0.28); color: #22C55E; }
body.light-mode .cust-tab { background: rgba(7,26,6,0.05); border-color: rgba(7,26,6,0.09); color: rgba(7,26,6,0.52); }
body.light-mode .cust-tab.active { background: rgba(22,163,74,0.11); border-color: rgba(22,163,74,0.24); color: #15803D; }

/* Divider */
.cust-divider { height: 6px; background: rgba(255,255,255,0.03); margin: 8px 0; }
body.light-mode .cust-divider { background: rgba(7,26,6,0.04); }
