/* ═══════════════════════════════════════════════════════════
   HomeFixPro – Shared Stylesheet  (BizPro Navy Theme)
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

/* ── CSS VARIABLES  (BizPro palette) ── */
:root {
  --primary:       #1B3A6B;   /* deep navy  */
  --primary-light: #E8EEF8;   /* soft blue-white */
  --primary-mid:   #4A72B0;   /* mid navy */
  --primary-dark:  #0D2040;   /* darkest navy */
  --accent:        #E8534A;   /* BizPro red accent */
  --accent2:       #4CAF50;   /* green for positive values */
  --white:         #FFFFFF;
  --bg:            #EEF2F7;   /* light grey-blue page bg */
  --text:          #1A2233;
  --text-muted:    #6B7A99;
  --border:        #D0DCF0;
  --card-shadow:   0 4px 20px rgba(27,58,107,0.10);
  --radius:        18px;
  --radius-sm:     10px;

  /* nav raised button */
  --nav-fab:       #1B3A6B;
  --nav-fab-size:  58px;
}

/* ── RESET ── */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* ── BODY ── */
body {
    font-family: 'Nunito', sans-serif;
    background: #dde3ee;
    display: contents;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 30px 20px;
    height: 100%;
    overflow: hidden;
}

/* ── PAGE HEADER ── */
.pg-header {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 4px;
}
.pg-sub {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── PAGE NAV ── */
.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  max-width: 500px;
}
.page-nav a {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  transition: all 0.2s;
}
.page-nav a:hover, .page-nav a.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ── PHONE SHELL ── */
.phone-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh; /* or 100% if parent is fixed */
    max-height: 100%;
}

.phone {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 375 / 780; /* keeps phone shape */
    background: var(--bg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.28);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone-label {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #555;
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── STATUS BAR  (dark navy like BizPro) ── */
.status-bar {
  height: 44px;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── SCROLLABLE SCREEN ── */
.screen {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  background: var(--bg);
}
.screen::-webkit-scrollbar { display: none; }

/* ═══════════════════════════════════════════════════════════
   BOTTOM NAV  –  BizPro style
   White bar, 5 items, centre HOME is a raised navy circle FAB
   ═══════════════════════════════════════════════════════════ */
.bottom-nav {
  height: 64px;
  background: white;
  border-top: 1px solid #E2E8F4;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 6px;
  flex-shrink: 0;
  position: relative;
  /* slight top shadow like BizPro */
  box-shadow: 0 -4px 16px rgba(27,58,107,0.08);
}

/* regular nav items */
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 12px;
  transition: background 0.2s;
  min-width: 52px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.nav-item:hover { background: var(--primary-light); }
.nav-icon { font-size: 22px; color: #8FA0BE; line-height: 1; }
.nav-text {
  font-size: 9px;
  color: #8FA0BE;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* active state – navy icon + text */
.nav-item.active .nav-icon { color: var(--primary); }
.nav-item.active .nav-text { color: var(--primary); }

/* ── FAB  centre HOME button ── */
.nav-fab-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin-bottom: 18px;   /* lifts button above bar */
  text-decoration: none;
  cursor: pointer;
}
.nav-fab {
  width:  var(--nav-fab-size);
  height: var(--nav-fab-size);
  border-radius: 50%;
  background: var(--nav-fab);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 18px rgba(27,58,107,0.45);
  border: 3px solid white;
  transition: transform 0.2s, box-shadow 0.2s;
  color: white;
}
.nav-fab:hover { transform: scale(1.08); box-shadow: 0 8px 24px rgba(27,58,107,0.5); }
.nav-fab-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* notif dot */
.notif-dot {
  position: absolute; top: -3px; right: -3px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); border: 2px solid white;
}

/* ── SECTION HEADER ── */
.sec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 8px;
}
.sec-title { font-size: 16px; font-weight: 800; color: var(--text); }
.sec-link  { font-size: 12px; color: var(--primary); font-weight: 700; text-decoration: none; }

/* ── HERO BANNER ── */
.hero {
  height: 200px;
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-mid) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
}
.hero-anim { position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden; }
.hero-circle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: pulse-circle 3s ease-in-out infinite;
}
.hc1 { width: 220px; height: 220px; top: -80px; right: -60px; animation-delay: 0s; }
.hc2 { width: 140px; height: 140px; top: 20px;  right: 40px;  animation-delay: 0.8s; }
.hc3 { width: 80px;  height: 80px;  top: 60px;  left: 20px;   animation-delay: 1.6s; }
.hc4 { width: 60px;  height: 60px;  bottom: 10px; right: 90px; animation-delay: 0.4s; }
.hero-greeting  { color: rgba(255,255,255,0.80); font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.hero-name      { color: white; font-size: 22px; font-weight: 800; font-family: 'Poppins',sans-serif; }
.hero-subtitle  { color: rgba(255,255,255,0.75); font-size: 12px; margin-top: 4px; }

/* ── SEARCH BAR ── */
.search-bar {
  margin: -18px 16px 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(27,58,107,0.12);
  display: flex; align-items: center;
  padding: 10px 14px; gap: 10px;
  position: relative; z-index: 10;
}
.search-bar input {
  flex: 1; border: none; outline: none;
  font-size: 13px; font-family: 'Nunito',sans-serif;
  color: var(--text); background: transparent;
}
.search-bar input::placeholder { color: #bbb; }

/* ── CHIPS ── */
.chip-row {
  display: flex; gap: 8px; padding: 10px 16px;
  overflow-x: auto; scrollbar-width: none;
}
.chip-row::-webkit-scrollbar { display: none; }
.chip {
  background: white; border: 1.5px solid var(--border);
  border-radius: 20px; padding: 5px 14px;
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  white-space: nowrap; cursor: pointer; transition: all 0.2s; flex-shrink: 0;
}
.chip.active, .chip:hover { background: var(--primary); border-color: var(--primary); color: white; }

/* ── CATEGORY GRID ── */
.cat-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 10px; padding: 8px 16px;
}
.cat-card {
  background: white; border-radius: 16px; padding: 12px 6px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  box-shadow: var(--card-shadow); cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeInUp 0.5s ease both; text-decoration: none;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(27,58,107,0.16); }
.cat-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.cat-name { font-size: 10px; font-weight: 700; color: var(--text); text-align: center; }

/* ── SERVICE CARDS ── */
.service-row {
  display: flex; gap: 12px; padding: 8px 16px;
  overflow-x: auto; scrollbar-width: none;
}
.service-row::-webkit-scrollbar { display: none; }
.service-card {
  min-width: 150px; background: white; border-radius: var(--radius);
  padding: 14px; box-shadow: var(--card-shadow); cursor: pointer;
  transition: transform 0.2s; animation: fadeInUp 0.5s ease both;
  flex-shrink: 0; text-decoration: none; display: block;
}
.service-card:hover { transform: translateY(-3px); }
.service-img {
  width: 100%; height: 80px; border-radius: 12px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; margin-bottom: 8px;
}
.service-name  { font-size: 13px; font-weight: 800; color: var(--text); }
.service-price { font-size: 12px; color: var(--primary); font-weight: 700; margin-top: 3px; }
.service-rating{ font-size: 11px; color: #888; margin-top: 2px; }

/* ── TECHNICIAN CARDS ── */
.tech-row { display: flex; gap: 12px; padding: 8px 16px; overflow-x: auto; scrollbar-width: none; }
.tech-row::-webkit-scrollbar { display: none; }
.tech-card {
  min-width: 90px; background: white; border-radius: 16px; padding: 14px 10px;
  text-align: center; box-shadow: var(--card-shadow);
  animation: fadeInUp 0.5s ease both; flex-shrink: 0;
}
.tech-avatar {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 16px;
}
.tech-name  { font-size: 11px; font-weight: 800; color: var(--text); }
.tech-role  { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.tech-stars { font-size: 10px; color: #F59E0B; margin-top: 3px; }

/* ── PROMO BANNER ── */
.promo {
  margin: 4px 16px; border-radius: 16px;
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 16px 18px; display: flex; justify-content: space-between;
  align-items: center; position: relative; overflow: hidden;
}
.promo-anim {
  position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  animation: pulse-circle 2s ease-in-out infinite;
}
.promo-text h3 { color: white; font-size: 16px; font-weight: 800; }
.promo-text p  { color: rgba(255,255,255,0.75); font-size: 11px; margin-top: 3px; }
.promo-btn {
  background: white; color: var(--primary); border: none;
  border-radius: 12px; padding: 10px 16px; font-size: 13px;
  font-weight: 800; cursor: pointer; font-family: 'Nunito',sans-serif;
  white-space: nowrap; position: relative; z-index: 2;
}

/* ── BIG BUTTON ── */
.big-btn {
  display: block; width: calc(100% - 32px); margin: 10px 16px;
  background: var(--primary); color: white; border: none;
  border-radius: 16px; padding: 14px; font-size: 15px;
  font-weight: 800; text-align: center; cursor: pointer;
  font-family: 'Nunito',sans-serif; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  position: relative; overflow: hidden;
}
.big-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ── BADGES ── */
.badge {
  display: inline-block; border-radius: 8px;
  padding: 3px 8px; font-size: 10px; font-weight: 800;
}
.badge-red   { background: #FDEAEA; color: var(--accent); }
.badge-green { background: #E6F4EA; color: #2E7D32; }
.badge-blue  { background: var(--primary-light); color: var(--primary); }

/* ── CART ── */
.cart-item {
  background: white; margin: 6px 16px; border-radius: 16px;
  padding: 14px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--card-shadow); animation: fadeInUp 0.4s ease both;
}
.qty-ctrl  { display: flex; align-items: center; gap: 8px; }
.qty-btn   {
  width: 28px; height: 28px; border-radius: 8px;
  border: 1.5px solid var(--border); background: var(--primary-light);
  color: var(--primary); font-size: 18px; font-weight: 800;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  line-height: 1; font-family: 'Nunito',sans-serif;
}
.cart-summary {
  background: white; margin: 10px 16px; border-radius: 16px;
  padding: 16px; box-shadow: var(--card-shadow);
}
.cart-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); padding: 5px 0; }
.cart-row.total { font-size: 15px; font-weight: 800; color: var(--text); border-top: 1px solid var(--border); margin-top: 6px; padding-top: 10px; }

/* ── FORM ELEMENTS ── */
.form-group { padding: 0 16px 10px; }
.form-label { font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; display: block; }
.form-input {
  width: 100%; background: white; border: 1.5px solid var(--border);
  border-radius: 12px; padding: 12px 14px; font-size: 14px;
  font-family: 'Nunito',sans-serif; color: var(--text);
  outline: none; transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--primary); }

/* ── PAGE TOP ── */
.page-top {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px 6px; background: white;
  border-bottom: 1px solid var(--border);
}
.page-top h2 { font-size: 17px; font-weight: 800; color: var(--text); }
.back-btn {
  font-size: 22px; color: var(--primary); text-decoration: none;
  font-weight: 800; line-height: 1;
}

/* ── PRODUCT LIST ── */
.product-list { display: flex; flex-direction: column; gap: 10px; padding: 8px 16px; }
.product-item {
  background: white; border-radius: 16px; padding: 14px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--card-shadow); animation: fadeInUp 0.4s ease both;
}
.product-icon { font-size: 32px; flex-shrink: 0; width: 50px; height: 50px;
  background: var(--primary-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.product-info { flex: 1; }
.product-name  { font-size: 13px; font-weight: 800; color: var(--text); }
.product-brand { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.product-price { font-size: 14px; font-weight: 800; color: var(--primary); margin-top: 4px; }

/* ── DATE/TIME PICKERS ── */
.date-grid {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: 6px; padding: 6px 16px;
}
.date-cell {
  aspect-ratio: 1; border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; border: 1.5px solid transparent;
}
.date-cell.day-head { color: var(--text-muted); font-size: 10px; cursor: default; border: none; }
.date-cell.available { background: white; color: var(--text); border-color: var(--border); }
.date-cell.available:hover { border-color: var(--primary); color: var(--primary); }
.date-cell.selected { background: var(--primary); color: white; border-color: var(--primary); }
.date-cell.today    { border-color: var(--primary); color: var(--primary); }
.time-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 6px 16px; }
.time-slot {
  background: white; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 10px; text-align: center; font-size: 12px; font-weight: 700;
  color: var(--text); cursor: pointer; transition: all 0.2s;
}
.time-slot.selected { background: var(--primary); color: white; border-color: var(--primary); }
.time-slot:hover:not(.selected) { border-color: var(--primary); color: var(--primary); }

/* ── TRACKING ── */
.tracking-card { margin: 12px 16px; background: white; border-radius: 20px; padding: 18px; box-shadow: var(--card-shadow); }
.tracking-steps { display: flex; flex-direction: column; }
.tracking-step  { display: flex; gap: 14px; animation: fadeInUp 0.4s ease both; }
.step-line-wrap { display: flex; flex-direction: column; align-items: center; }
.step-dot { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.step-dot.done    { background: var(--primary); color: white; }
.step-dot.active  { background: var(--primary-light); color: var(--primary); border: 2px solid var(--primary); animation: step-pulse 1.5s ease-in-out infinite; }
.step-dot.pending { background: #f0f4fb; color: #bbb; border: 2px solid #dde3f0; }
.step-connector   { width: 2px; flex: 1; min-height: 24px; margin: 3px 0; }
.step-connector.done    { background: var(--primary); }
.step-connector.pending { background: #dde3f0; }
.step-info  { padding-bottom: 20px; flex: 1; }
.step-title { font-size: 14px; font-weight: 800; color: var(--text); }
.step-desc  { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.step-time  { font-size: 10px; color: var(--primary); font-weight: 700; margin-top: 2px; }
.map-placeholder {
  height: 140px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #C9D8F0 100%);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 42px; margin-bottom: 14px; position: relative; overflow: hidden;
}
.map-dot {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: var(--primary); bottom: 32px; left: 60px;
  animation: map-ping 1.5s ease-in-out infinite;
}

/* ── PAYMENT ── */
.pay-method {
  background: white; border-radius: 16px; margin: 8px 16px; padding: 14px 16px;
  display: flex; align-items: center; gap: 14px; box-shadow: var(--card-shadow);
  cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s;
}
.pay-method.selected { border-color: var(--primary); }
.pay-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.pay-name { font-size: 14px; font-weight: 800; color: var(--text); }
.pay-sub  { font-size: 11px; color: var(--text-muted); }
.radio-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border); margin-left: auto; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.radio-dot.selected { border-color: var(--primary); }
.radio-inner { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); }

/* ── WALLET ── */
.wallet-card { margin: 14px 16px; border-radius: 24px; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); padding: 24px 22px; position: relative; overflow: hidden; }
.wallet-anim { position: absolute; top: -30px; right: -30px; width: 130px; height: 130px; border-radius: 50%; background: rgba(255,255,255,0.08); animation: pulse-circle 2.5s ease-in-out infinite; }
.wallet-bal-label { color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 600; }
.wallet-bal { color: white; font-size: 36px; font-weight: 800; font-family: 'Poppins',sans-serif; margin: 6px 0; }
.wallet-num { color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 600; letter-spacing: 2px; }
.wallet-tx  { background: white; border-radius: 14px; margin: 8px 16px; padding: 14px; display: flex; align-items: center; gap: 12px; box-shadow: var(--card-shadow); animation: fadeInUp 0.4s ease both; }
.tx-icon    { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.tx-icon.credit { background: #E6F4EA; }
.tx-icon.debit  { background: var(--primary-light); }
.tx-title  { font-size: 13px; font-weight: 800; color: var(--text); }
.tx-date   { font-size: 11px; color: var(--text-muted); }
.tx-amount { margin-left: auto; font-weight: 800; font-size: 14px; }
.tx-amount.credit { color: #2E7D32; }
.tx-amount.debit  { color: var(--accent); }

/* ── REPORTS ── */
.report-card { background: white; border-radius: 18px; margin: 8px 16px; padding: 18px; box-shadow: var(--card-shadow); animation: fadeInUp 0.4s ease both; }
.stat-grid   { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin: 8px 16px; }
.stat-box    { background: white; border-radius: 16px; padding: 16px; box-shadow: var(--card-shadow); animation: fadeInUp 0.4s ease both; }
.stat-val    { font-size: 26px; font-weight: 800; color: var(--primary); font-family: 'Poppins',sans-serif; }
.stat-label  { font-size: 11px; color: var(--text-muted); font-weight: 600; margin-top: 3px; }
.bar-chart   { display: flex; gap: 6px; align-items: flex-end; height: 80px; }
.bar-wrap    { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.bar         { width: 100%; border-radius: 6px 6px 0 0; background: var(--primary-light); transition: height 0.6s ease; animation: bar-grow 0.8s ease both; }
.bar.highlight { background: var(--primary); }
.bar-label   { font-size: 9px; color: var(--text-muted); font-weight: 600; }
.pie-ring {
  width: 100px; height: 100px; border-radius: 50%;
  background: conic-gradient(var(--primary) 0% 40%, var(--primary-mid) 40% 65%, var(--accent) 65% 80%, #C9D8F0 80% 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; animation: spin-in 1s ease both;
}
.pie-inner   { width: 60px; height: 60px; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-muted); }
.legend-dot  { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ── PROFILE ── */
.profile-hero {
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
  padding: 30px 20px 50px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative; overflow: hidden;
}
.avatar-ring {
  width: 80px; height: 80px; border-radius: 50%; background: white;
  display: flex; align-items: center; justify-content: center; font-size: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2); border: 3px solid rgba(255,255,255,0.5);
}
.menu-item {
  background: white; margin: 6px 16px; border-radius: 14px; padding: 14px 16px;
  display: flex; align-items: center; gap: 14px; box-shadow: var(--card-shadow);
  cursor: pointer; transition: transform 0.15s; text-decoration: none;
}
.menu-item:hover { transform: scale(0.98); }
.menu-icon  { width: 36px; height: 36px; border-radius: 10px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.menu-text  { font-size: 14px; font-weight: 700; color: var(--text); flex: 1; }
.menu-arrow { color: #ccc; font-size: 18px; }

/* ── MISC ── */
.ripple-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; overflow: hidden; }
.ripple    { position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,0.20); animation: ripple-out 3s linear infinite; }
.r1 { width: 60px; height: 60px; top: 40%; left: 50%; animation-delay: 0s; }
.r2 { width: 60px; height: 60px; top: 40%; left: 50%; animation-delay: 1s; }
.r3 { width: 60px; height: 60px; top: 40%; left: 50%; animation-delay: 2s; }
.particles { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; overflow: hidden; }
.particle  { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.35); animation: float-up linear infinite; }
.video-banner {
  height: 120px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-mid) 100%);
  display: flex; align-items: center; justify-content: center; gap: 14px;
  position: relative; overflow: hidden; margin: 10px 16px; border-radius: 20px;
}
.vb-icon { font-size: 42px; animation: bounce 2s ease-in-out infinite; z-index: 2; }
.vb-text { z-index: 2; }
.vb-text h3 { color: white; font-size: 15px; font-weight: 800; }
.vb-text p  { color: rgba(255,255,255,0.75); font-size: 11px; }
.vb-waves { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.wave { position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,0.12); animation: ripple-out 2.5s linear infinite; }
.w1 { width: 50px; height: 50px; top: 50%; left: 50%; animation-delay: 0s; }
.w2 { width: 50px; height: 50px; top: 50%; left: 50%; animation-delay: 0.8s; }
.w3 { width: 50px; height: 50px; top: 50%; left: 50%; animation-delay: 1.6s; }
.rating-stars { color: #F59E0B; font-size: 13px; }
.offer-tag    { position: absolute; top: 8px; right: 8px; background: var(--accent); color: white; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 8px; }
.notif-dot    { position: absolute; top: -3px; right: -3px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); border: 2px solid white; }
.divider      { height: 8px; background: var(--bg); }
.small-divider{ height: 1px; background: var(--border); margin: 0 16px; }
.spacer       { height: 16px; }
.ph { padding: 0 16px; }
.mt8  { margin-top: 8px; }
.mb16 { margin-bottom: 16px; }

/* ── KEYFRAMES ── */
@keyframes fadeInUp    { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse-circle{ 0%,100%{ transform:scale(1); opacity:0.6; } 50%{ transform:scale(1.15); opacity:1; } }
@keyframes ripple-out  { from { transform:translate(-50%,-50%) scale(0.5); opacity:1; } to { transform:translate(-50%,-50%) scale(4); opacity:0; } }
@keyframes float-up    { from { transform:translateY(200px) scale(0); opacity:0; } 20%{ opacity:1; } to { transform:translateY(-20px) scale(1); opacity:0; } }
@keyframes step-pulse  { 0%,100%{ box-shadow:0 0 0 0 rgba(27,58,107,0.4); } 50%{ box-shadow:0 0 0 8px rgba(27,58,107,0); } }
@keyframes map-ping    { 0%{ box-shadow:0 0 0 0 rgba(27,58,107,0.6); } 70%{ box-shadow:0 0 0 14px rgba(27,58,107,0); } 100%{ box-shadow:0 0 0 0 rgba(27,58,107,0); } }
@keyframes bar-grow    { from { transform:scaleY(0); transform-origin:bottom; } to { transform:scaleY(1); } }
@keyframes spin-in     { from { transform:rotate(-90deg) scale(0.8); opacity:0; } to { transform:rotate(0deg) scale(1); opacity:1; } }
@keyframes bounce      { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }
@keyframes shimmer     { 0%{ background-position:-400px 0; } 100%{ background-position:400px 0; } }
@keyframes ripple-click{ to { width:300px; height:300px; opacity:0; } }
