@font-face {
  font-family: 'Rabar';
  src: url('Rabar_022.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --green:      #1B3E7D;
  --green-2:    #2A5AB8;
  --green-bg:   #EEF3FB;
  --green-ring: rgba(27,62,125,.18);
  --white:      #ffffff;
  --bg:         #f8fafc;
  --card:       #ffffff;
  --border:     #e2e8f0;
  --text-1:     #0f172a;
  --text-2:     #334155;
  --text-3:     #94a3b8;
  --r-sm: 10px; --r-md: 16px; --r-lg: 22px; --r-xl: 28px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:  0 20px 50px rgba(0,0,0,.1),  0 8px 20px rgba(0,0,0,.06);
}

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

body{
  font-family:'Rabar',sans-serif;
  min-height:100vh;
  background:var(--bg);
  color:var(--text-1);
  overflow-x:hidden;
}



/* ── PAGE ── */
.page-wrapper{
  min-height:100vh;display:flex;align-items:center;justify-content:center;padding:24px 16px;
  background:linear-gradient(160deg,#EEF3FB 0%,#f8fafc 50%,#EEF3FB 100%);
}

/* ── AUTH CARD ── */
.auth-card{
  width:100%;max-width:420px;
  background:var(--card);
  border-radius:var(--r-xl);
  padding:40px 34px;
  box-shadow:var(--shadow-lg);
  border:1px solid var(--border);
  animation:card-in .55s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes card-in{from{opacity:0;transform:translateY(36px) scale(.95);}to{opacity:1;transform:none;}}

/* ── BRAND ── */
.brand{text-align:center;margin-bottom:22px;}
.brand-logo{
  width:72px;height:72px;
  background:linear-gradient(135deg,var(--green-2),var(--green));
  border-radius:20px;display:inline-flex;align-items:center;justify-content:center;
  margin-bottom:12px;
  box-shadow:0 8px 24px rgba(22,163,74,.32),0 0 0 6px rgba(22,163,74,.08);
}
.brand-logo svg{width:38px;height:38px;fill:#fff;}
.brand-name{font-size:22px;font-weight:800;color:var(--text-1);letter-spacing:-.4px;}
.brand-name span{color:var(--green);}
.brand-tag{font-size:12px;color:var(--text-3);margin-top:2px;letter-spacing:.3px;}

/* ── TITLES ── */
.page-title{font-size:24px;font-weight:700;color:var(--green);text-align:center;margin-bottom:3px;}
.page-sub{font-size:13.5px;color:var(--text-3);text-align:center;margin-bottom:20px;}

/* ── TABS ── */
.tab-nav{display:flex;border-bottom:2px solid var(--border);margin-bottom:24px;}
.tab-btn{
  flex:1;padding:11px 0;background:none;border:none;
  font-family:'Inter',sans-serif;font-size:15px;font-weight:600;
  color:var(--text-3);cursor:pointer;position:relative;
  text-align:center;text-decoration:none;display:block;transition:color .2s;
}
.tab-btn.active{color:var(--text-1);}
.tab-btn.active::after{
  content:'';position:absolute;bottom:-2px;left:0;right:0;
  height:2.5px;background:var(--green);border-radius:2px;
}

/* ── FORM ── */
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.form-group{margin-bottom:14px;}
.form-label{display:block;font-size:12.5px;font-weight:600;color:var(--text-2);margin-bottom:5px;}
.input-wrap{position:relative;}
.form-input{
  width:100%;padding:13px 46px 13px 14px;
  background:#f8fafc;border:1.5px solid var(--border);
  border-radius:var(--r-md);
  font-family:'Inter',sans-serif;font-size:14.5px;color:var(--text-1);
  outline:none;transition:border-color .2s,box-shadow .2s,background .2s;
}
.form-input::placeholder{color:var(--text-3);}
.form-input:focus{border-color:var(--green);background:#fff;box-shadow:0 0 0 4px var(--green-ring);}
.input-icon{
  position:absolute;right:13px;top:50%;transform:translateY(-50%);
  color:var(--text-3);display:flex;align-items:center;pointer-events:none;
}
.input-icon svg{width:18px;height:18px;fill:currentColor;}
.toggle-pw{
  position:absolute;right:11px;top:50%;transform:translateY(-50%);
  background:none;border:none;cursor:pointer;color:var(--text-3);
  padding:4px;display:flex;align-items:center;transition:color .2s;
}
.toggle-pw:hover{color:var(--green);}

/* ── PHONE PREFIX (+964) ── */
.phone-wrap{display:flex;align-items:stretch;border:1.5px solid var(--border);border-radius:var(--r-md);overflow:hidden;background:#f8fafc;transition:border-color .2s,box-shadow .2s,background .2s;}
.phone-wrap:focus-within{border-color:var(--green);background:#fff;box-shadow:0 0 0 4px var(--green-ring);}
.phone-prefix{
  display:flex;align-items:center;gap:5px;
  padding:0 12px;
  background:var(--green-bg);
  border-right:1.5px solid #C0D3F5;
  font-size:14px;font-weight:700;color:var(--green);
  white-space:nowrap;flex-shrink:0;user-select:none;
}
.phone-prefix svg{width:16px;height:16px;fill:var(--green);}
.phone-num{
  flex:1;padding:13px 12px;
  background:transparent;border:none;outline:none;
  font-family:'Inter',sans-serif;font-size:14.5px;color:var(--text-1);
  width:100%;
}
.phone-num::placeholder{color:var(--text-3);}

/* Strength */
.strength-bar{margin-top:5px;height:3px;background:var(--border);border-radius:3px;overflow:hidden;}
.strength-fill{height:100%;width:0%;border-radius:3px;transition:width .35s,background .35s;}

/* Checkbox */
.check-row{display:flex;align-items:flex-start;gap:9px;margin-bottom:16px;}
.check-row input{width:17px;height:17px;accent-color:var(--green);margin-top:2px;cursor:pointer;flex-shrink:0;}
.check-row label{font-size:12.5px;color:var(--text-2);line-height:1.5;cursor:pointer;}
.check-row a{color:var(--green);text-decoration:none;font-weight:500;}

/* ── BUTTON ── */
.btn-primary{
  width:100%;padding:14px;
  background:linear-gradient(135deg,var(--green-2),var(--green));
  color:#fff;border:none;border-radius:var(--r-md);
  font-family:'Inter',sans-serif;font-size:15.5px;font-weight:700;
  cursor:pointer;position:relative;overflow:hidden;
  transition:transform .15s,box-shadow .15s;
  box-shadow:0 5px 18px rgba(22,163,74,.38);
  margin-top:6px;letter-spacing:.1px;
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(22,163,74,.48);}
.btn-primary:active{transform:none;}
.ripple{
  position:absolute;border-radius:50%;
  background:rgba(255,255,255,.28);
  transform:scale(0);animation:ripple .65s linear;pointer-events:none;
}
@keyframes ripple{to{transform:scale(4);opacity:0;}}

/* ── ALERT ── */
.alert{display:flex;align-items:center;gap:9px;padding:11px 14px;border-radius:var(--r-sm);font-size:13px;font-weight:500;margin-bottom:16px;}
.alert-error{background:#fef2f2;color:#dc2626;border:1px solid #fecaca;}
.alert-success{background:var(--green-bg);color:var(--green);border:1px solid #C0D3F5;}

/* ── AUTH FOOTER ── */
.auth-footer{text-align:center;font-size:13.5px;color:var(--text-3);margin-top:20px;}
.auth-footer a{color:var(--green);font-weight:600;text-decoration:none;}

/* ── LANGUAGE CARD ── */
.lang-card{
  width:100%;max-width:420px;
  background:var(--card);border-radius:var(--r-xl);
  padding:40px 34px;box-shadow:var(--shadow-lg);border:1px solid var(--border);
  animation:card-in .55s cubic-bezier(.34,1.56,.64,1) both;
}
.lang-title{font-size:22px;font-weight:700;color:var(--green);text-align:center;margin-bottom:4px;}
.lang-sub{font-size:13.5px;color:var(--text-3);text-align:center;margin-bottom:26px;}
.lang-options{display:flex;flex-direction:column;gap:10px;}
.lang-btn{
  display:flex;align-items:center;gap:14px;
  width:100%;padding:15px 18px;
  background:#f8fafc;border:1.5px solid var(--border);
  border-radius:var(--r-md);cursor:pointer;
  font-family:'Inter',sans-serif;transition:all .22s;text-align:left;
}
.lang-btn:hover{border-color:var(--green);background:var(--green-bg);transform:translateX(4px);box-shadow:0 4px 14px rgba(22,163,74,.12);}
.lang-flag{width:38px;height:26px;border-radius:5px;overflow:hidden;flex-shrink:0;display:flex;align-items:center;justify-content:center;}
.lang-flag svg{width:38px;height:26px;}
.lang-info{flex:1;display:flex;flex-direction:column;}
.lang-name{font-size:14.5px;font-weight:600;color:var(--text-1);}
.lang-native{font-size:12px;color:var(--text-3);}
.lang-arr{color:var(--text-3);}

/* ── DASHBOARD (full-height sections) ── */
.dash-root{height:100vh;display:flex;flex-direction:column;overflow:hidden;background:var(--bg);}

/* Nav */
.top-nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:0 24px;height:60px;
  background:#fff;border-bottom:1px solid var(--border);
  box-shadow:var(--shadow-sm);flex-shrink:0;
}
.nav-brand{display:flex;align-items:center;gap:10px;}
.nav-logo{
  width:36px;height:36px;
  background:linear-gradient(135deg,var(--green-2),var(--green));
  border-radius:10px;display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(22,163,74,.35);
}
.nav-logo svg{width:20px;height:20px;fill:#fff;}
.nav-title{font-size:17px;font-weight:800;color:var(--text-1);}
.nav-title span{color:var(--green);}
.nav-actions{display:flex;align-items:center;gap:8px;}
.nav-lang{
  padding:5px 12px;background:var(--green-bg);border:1px solid #C0D3F5;
  border-radius:20px;font-size:12.5px;font-weight:600;color:var(--green);
  text-decoration:none;transition:background .2s;
}
.nav-lang:hover{background:#DBE7F8;}
.nav-logout{
  padding:6px 14px;background:#fef2f2;border:1px solid #fecaca;
  border-radius:20px;font-family:'Inter',sans-serif;font-size:12.5px;font-weight:600;
  color:#dc2626;text-decoration:none;cursor:pointer;transition:background .2s;
}
.nav-logout:hover{background:#fee2e2;}

/* Profile Nav Button */
.nav-profile{
  width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:var(--green-bg);border:2px solid #C0D3F5;
  color:var(--green);text-decoration:none;
  transition:all .22s;position:relative;flex-shrink:0;
  overflow:hidden;
}
.nav-profile:hover{background:#DBE7F8;border-color:var(--green);transform:scale(1.08);box-shadow:0 4px 14px rgba(27,62,125,.18);}
.nav-avatar{width:100%;height:100%;object-fit:cover;border-radius:50%;}
.nav-profile-dot{
  position:absolute;top:1px;right:1px;
  width:9px;height:9px;border-radius:50%;
  background:#f97316;border:2px solid #fff;
}

/* Hero strip */
.dash-hero{
  padding:18px 24px 14px;background:#fff;border-bottom:1px solid var(--border);
  flex-shrink:0;
}
.greeting{font-size:13px;color:var(--text-3);margin-bottom:2px;}
.dash-hero h1{font-size:20px;font-weight:800;color:var(--text-1);letter-spacing:-.3px;}
.dash-hero h1 span{color:var(--green);}
.dash-hero p{font-size:12.5px;color:var(--text-3);margin-top:2px;}

/* Services: equal flex rows, no scroll */
.services-list{flex:1;display:flex;flex-direction:column;padding:12px 16px;gap:10px;overflow:hidden;}
.svc-row{
  flex:1;display:flex;align-items:center;gap:16px;
  background:#fff;border:1.5px solid var(--border);
  border-radius:var(--r-lg);padding:16px 20px;
  cursor:pointer;text-decoration:none;color:inherit;
  transition:all .22s;position:relative;overflow:hidden;
}
.svc-row:hover{border-color:var(--green);box-shadow:var(--shadow-md);transform:translateX(3px);}
.svc-icon{
  width:52px;height:52px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.svc-icon svg{width:26px;height:26px;}
.svc-icon-delivery{background:linear-gradient(135deg,#DBE7F8,#BDD1F5);}
.svc-icon-delivery svg{fill:#1B3E7D;}
.svc-icon-food{background:linear-gradient(135deg,#ffedd5,#fed7aa);}
.svc-icon-food svg{fill:#92400e;}
.svc-icon-shipping{background:linear-gradient(135deg,#DBE7F8,#BDD1F5);}
.svc-icon-shipping svg{fill:#1B3E7D;}
.svc-body{flex:1;}
.svc-badge{
  display:inline-block;font-size:10px;font-weight:700;letter-spacing:1.2px;
  text-transform:uppercase;padding:2px 8px;border-radius:20px;margin-bottom:5px;
}
.svc-badge-delivery{background:#DBE7F8;color:#1B3E7D;}
.svc-badge-food{background:#ffedd5;color:#92400e;}
.svc-badge-shipping{background:#DBE7F8;color:#1B3E7D;}
.svc-title{font-size:16px;font-weight:700;color:var(--text-1);margin-bottom:3px;}
.svc-desc{font-size:12.5px;color:var(--text-3);line-height:1.5;}
.svc-arrow{
  width:36px;height:36px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:var(--green-bg);flex-shrink:0;
  transition:background .2s,transform .2s;
}
.svc-arrow svg{width:18px;height:18px;fill:var(--green);}
.svc-row:hover .svc-arrow{background:var(--green);transform:translateX(3px);}
.svc-row:hover .svc-arrow svg{fill:#fff;}

/* ── RESPONSIVE ── */
@media(max-width:480px){
  .auth-card,.lang-card{padding:30px 20px;border-radius:22px;}
  .form-row{grid-template-columns:1fr;}
  .services-list{padding:8px 12px;gap:8px;}
  .svc-row{padding:12px 14px;}
  .top-nav{padding:0 14px;}
}

/* ═══════════════════════════════
   BOTTOM NAVIGATION BAR
═══════════════════════════════ */
.bnav{
  position:fixed;bottom:0;left:0;right:0;z-index:1000;
  background:#fff;
  border-top:1px solid #e8eef8;
  display:flex;align-items:stretch;
  height:64px;
  box-shadow:0 -4px 20px rgba(27,62,125,.10);
  padding-bottom:env(safe-area-inset-bottom);
}
.bnav-item{
  flex:1;display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  gap:3px;text-decoration:none;
  color:#94a3b8;transition:all .2s;
  padding:8px 4px 6px;position:relative;
}
.bnav-item::before{
  content:'';position:absolute;top:0;left:20%;right:20%;
  height:3px;border-radius:0 0 4px 4px;
  background:linear-gradient(90deg,#1B3E7D,#2A5AB8);
  opacity:0;transition:opacity .25s;
}
.bnav-item.active{color:#1B3E7D;}
.bnav-item.active::before{opacity:1;}
.bnav-icon{
  width:26px;height:26px;display:flex;align-items:center;justify-content:center;
  position:relative;
}
.bnav-icon svg{width:24px;height:24px;fill:currentColor;transition:transform .2s;}
.bnav-item.active .bnav-icon svg{transform:scale(1.12);}
.bnav-item:hover .bnav-icon svg{transform:scale(1.1);}
.bnav-label{font-size:10px;font-weight:600;letter-spacing:.2px;white-space:nowrap;}
.bnav-badge{
  position:absolute;top:-4px;right:-6px;
  min-width:16px;height:16px;border-radius:8px;
  background:#f97316;color:#fff;
  font-size:9px;font-weight:800;
  display:flex;align-items:center;justify-content:center;
  padding:0 3px;border:2px solid #fff;
}
/* Make food pages content not hide under bottom nav */
.food-wrap{padding-bottom:72px !important;}

/* ═══════════════════════════════
   ORDER STATUS TRACKING BANNER
   ═══════════════════════════════ */
.tracking-banner {
  position: sticky;
  top: 0;
  z-index: 150;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid rgba(27, 62, 125, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 12px 16px;
  animation: slideDown 0.3s ease;
  transition: all 0.3s ease;
  display: none;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.tb-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tb-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tb-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(27, 62, 125, 0.1);
  color: #1B3E7D;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}
.tb-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
  animation: tbPulse 1.2s infinite;
}
@keyframes tbPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}
.tb-eta {
  font-size: 12px;
  font-weight: 800;
  color: #16a34a;
}
.tb-progress-container {
  position: relative;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  margin: 10px 10px;
}
.tb-progress-bar {
  position: absolute;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2A5AB8, #1B3E7D);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.tb-steps {
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.tb-step {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e2e8f0;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.tb-step.active {
  border-color: #1B3E7D;
  background: #1B3E7D;
  color: #fff;
  transform: scale(1.15);
}
.tb-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #64748b;
}
.tb-order-num {
  font-weight: 700;
}
.tb-close {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 800;
  color: #94a3b8;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s;
}
.tb-close:hover {
  color: #ef4444;
}

/* ═══════════════════════════════
   PREMIUM NOTIFICATION BELL & SHEET
   ═══════════════════════════════ */

/* Notification Button (Header) */
.fh-notif-btn, .mhd-notif-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}
.fh-notif-btn:hover, .mhd-notif-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.06);
}
.fh-notif-btn svg, .mhd-notif-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  stroke: none;
  transition: transform 0.3s ease;
}
.fh-notif-btn:hover svg, .mhd-notif-btn:hover svg {
  transform: rotate(15deg);
}
.notif-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 9px;
  height: 9px;
  background: #f97316;
  border: 1.8px solid #1B3E7D;
  border-radius: 50%;
  box-shadow: 0 0 8px #f97316;
  animation: notifPulse 1.5s infinite alternate;
}
@keyframes notifPulse {
  from { transform: scale(0.9); box-shadow: 0 0 2px #f97316; }
  to { transform: scale(1.15); box-shadow: 0 0 10px #f97316; }
}

/* Modal Overlay & Bottom Sheet */
.ns-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.ns-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.ns-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1.5px solid rgba(27, 62, 125, 0.16);
  border-radius: 26px 26px 0 0;
  padding: 20px 20px calc(24px + env(safe-area-inset-bottom));
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 85vh;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.ns-sheet.show {
  transform: translateY(0);
}
.ns-handle {
  width: 44px;
  height: 5px;
  background: rgba(148, 163, 184, 0.4);
  border-radius: 3px;
  margin: 0 auto 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.ns-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 0 4px;
  flex-shrink: 0;
}
.ns-title {
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ns-title svg {
  width: 20px;
  height: 20px;
  fill: #1B3E7D;
}
.ns-close-top {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.15);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 800;
  font-size: 16px;
}
.ns-close-top:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* Tabs */
.ns-tabs {
  display: flex;
  background: rgba(241, 245, 249, 0.7);
  padding: 4px;
  border-radius: 14px;
  margin-bottom: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(27, 62, 125, 0.05);
}
.ns-tab {
  flex: 1;
  padding: 10px 0;
  border: none;
  background: transparent;
  font-family: 'Rabar', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #64748b;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ns-tab.act {
  background: #fff;
  color: #1B3E7D;
  box-shadow: 0 4px 12px rgba(27, 62, 125, 0.08);
}

/* Panels */
.ns-panels {
  flex: 1;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: thin;
}
.ns-panel {
  display: none;
  animation: panelFadeIn 0.3s ease both;
}
.ns-panel.act {
  display: block;
}
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* Empty State */
.ns-empty {
  text-align: center;
  padding: 46px 20px;
}
.ns-empty-icon {
  font-size: 48px;
  margin-bottom: 14px;
  filter: drop-shadow(0 8px 16px rgba(27, 62, 125, 0.1));
  display: inline-block;
  animation: floatEmpty 3s infinite ease-in-out;
}
@keyframes floatEmpty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.ns-empty-title {
  font-size: 15px;
  font-weight: 800;
  color: #334155;
  margin-bottom: 6px;
}
.ns-empty-desc {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

/* Active Tracker */
.ns-tracker {
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(27, 62, 125, 0.1);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(27, 62, 125, 0.04);
  margin-bottom: 12px;
}
.ns-tracker-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.3);
  padding-bottom: 10px;
}
.ns-tracker-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ns-tracker-dot {
  width: 8px;
  height: 8px;
  background: #2563eb;
  border-radius: 50%;
  animation: trackerPulse 1.2s infinite;
}
@keyframes trackerPulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0; box-shadow: 0 0 8px #2563eb; }
}
.ns-tracker-eta {
  font-size: 13px;
  font-weight: 800;
  color: #16a34a;
}
.ns-tracker-status {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

/* Polished Step Progress */
.ns-steps-progress {
  position: relative;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  margin: 18px 12px 28px;
}
.ns-steps-fill {
  position: absolute;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2A5AB8, #1B3E7D);
  border-radius: 3px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(27, 62, 125, 0.35);
}
.ns-steps {
  position: absolute;
  top: -9px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.ns-step {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #cbd5e1;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.ns-step.active {
  border-color: #1B3E7D;
  background: #1B3E7D;
  color: #fff;
  transform: scale(1.22);
  box-shadow: 0 4px 12px rgba(27, 62, 125, 0.3);
}

.ns-tracker-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: #64748b;
  background: rgba(241, 245, 249, 0.6);
  padding: 8px 12px;
  border-radius: 10px;
}

/* Offers & Broadcasts Cards */
.ns-offer-card {
  background: #fff;
  border: 1px solid rgba(27, 62, 125, 0.08);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 3px 14px rgba(27, 62, 125, 0.03);
  transition: all 0.25s ease;
}
.ns-offer-card:hover {
  transform: translateY(-2px);
  border-color: #2A5AB8;
  box-shadow: 0 8px 24px rgba(27, 62, 125, 0.08);
}
.ns-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.ns-card-badge {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2.5px 8px;
  border-radius: 20px;
  letter-spacing: 0.8px;
}
.ns-card-badge.promo {
  background: #fef3c7;
  color: #d97706;
}
.ns-card-badge.system {
  background: #e0f2fe;
  color: #0284c7;
}
.ns-card-time {
  font-size: 10.5px;
  color: #94a3b8;
}
.ns-card-title {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}
.ns-card-body {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 10px;
}
.ns-coupon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(241, 245, 249, 0.8);
  border: 1px dashed rgba(27, 62, 125, 0.2);
  padding: 8px 12px;
  border-radius: 10px;
}
.ns-coupon-code {
  font-family: monospace;
  font-size: 13.5px;
  font-weight: 800;
  color: #1B3E7D;
  letter-spacing: 0.5px;
}
.ns-coupon-btn {
  background: #1B3E7D;
  color: #fff;
  border: none;
  padding: 5px 12px;
  border-radius: 6px;
  font-family: 'Rabar', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.ns-coupon-btn:hover {
  background: #2A5AB8;
}
.ns-coupon-btn.copied {
  background: #16a34a;
}

