/* ══════════════════════════════════════
   Airbt Instant — Swiggy Instamart Style
   ══════════════════════════════════════ */

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

:root {
  --blue:      #2563eb;
  --blue-dark: #1e40af;
  --navy:      #0f172a;
  --green:     #16a34a;
  --red:       #dc2626;
  --amber:     #d97706;
  --bg:        #f8fafc;
  --surface:   #ffffff;
  --border:    #e2e8f0;
  --muted:     #64748b;
  --text:      #0f172a;
  --sidebar-w: 110px;
  --header-h:  70px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ────────────────────────── */
#main-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

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

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1.5px solid var(--border);
}

.logo-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.logo-text {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.6px;
  line-height: 1;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.logo-badge {
  background: var(--blue);
  color: white;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 5px;
  letter-spacing: 0.6px;
}

.header-delivery-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  background: #eff6ff;
  padding: 2px 8px;
  border-radius: 100px;
  width: fit-content;
}

.header-delivery-badge i {
  width: 12px;
  height: 12px;
}

/* Location */
.location-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  transition: border-color 0.2s;
}

.location-btn:hover { border-color: var(--blue); }
.location-btn i { color: var(--blue); }
.loc-chevron { color: var(--muted); }

/* Search */
.search-bar {
  flex: 1;
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 0 16px;
  height: 46px;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin: 0 auto;
}

.search-bar:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.search-icon { color: var(--muted); flex-shrink: 0; }

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.search-bar input::placeholder { color: var(--muted); }
.search-clear { background: none; border: none; cursor: pointer; color: var(--muted); }

/* Cart */
.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.cart-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  transition: transform 0.2s;
}

.cart-badge.bump { animation: bump 0.2s ease; }

@keyframes bump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* ── LAYOUT ────────────────────────── */
.app-layout {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  min-height: calc(100vh - var(--header-h));
  position: relative;
}

/* ── SIDEBAR ───────────────────────── */
.cat-sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow-y: auto;
  scrollbar-width: none;
  padding: 12px 0;
}

.cat-sidebar::-webkit-scrollbar { display: none; }

.sidebar-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.2s;
  text-align: center;
}

.sidebar-cat:hover { background: #f0f9ff; border-left-color: #93c5fd; }
.sidebar-cat.active { background: #eff6ff; border-left-color: var(--blue); }

.cat-img-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.2s;
}

.sidebar-cat.active .cat-img-wrap { background: #dbeafe; }
.sidebar-cat.active .cat-img-wrap i { color: var(--blue); }

.grocery-bg { background: #f0fdf4; } .grocery-bg i { color: #16a34a; }
.dairy-bg   { background: #fefce8; } .dairy-bg   i { color: #ca8a04; }
.meat-bg    { background: #fff1f2; } .meat-bg    i { color: #e11d48; }
.bakery-bg  { background: #fff7ed; } .bakery-bg  i { color: #ea580c; }
.fruits-bg  { background: #f0fdf4; } .fruits-bg  i { color: #16a34a; }
.drinks-bg  { background: #eff6ff; } .drinks-bg  i { color: #2563eb; }

.sidebar-cat span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.sidebar-cat.active span { color: var(--blue); }

/* ── MAIN CONTENT ──────────────────── */
.main-content {
  flex: 1;
  padding: 20px 24px 80px;
  overflow-x: hidden;
}

/* Delivery Slot Selector */
.delivery-slot-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.slot-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--text);
}

.slot-fee-note {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  background: #f1f5f9;
  padding: 3px 10px;
  border-radius: 20px;
}

.slot-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.slot-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 12px 22px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
}

.slot-btn span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
}

.slot-btn:hover {
  border-color: var(--blue);
  background: #eff6ff;
  color: var(--blue);
}

.slot-btn.active {
  border-color: var(--blue);
  background: #eff6ff;
  color: var(--blue);
}

.slot-btn.active span { color: var(--blue); opacity: 0.8; }

/* Delivery ribbon (kept for compatibility) */
.delivery-ribbon {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--navy);
}

/* Promo Banners */
.promo-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.promo-card {
  border-radius: 20px;
  padding: 28px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s;
}

.promo-card:hover { transform: translateY(-3px); }

.promo-blue { background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%); color: white; }
.promo-dark { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: white; }

.promo-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 6px;
}

.promo-card h3 { font-size: 2rem; font-weight: 900; margin-bottom: 6px; }
.promo-sub { font-size: 0.85rem; opacity: 0.8; margin-bottom: 16px; }

.promo-btn {
  background: white;
  color: var(--navy);
  border: none;
  padding: 9px 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.promo-btn:hover { opacity: 0.9; }
.promo-img { font-size: 5rem; line-height: 1; }

/* Section Header */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-header h2 { font-size: 1.35rem; font-weight: 800; }
.view-all { color: var(--blue); font-weight: 700; font-size: 0.85rem; text-decoration: none; }

/* ── PRODUCT GRID ──────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.product-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-discount {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--blue);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  z-index: 10;
}

.cat-img-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all 0.2s;
}

.cat-img-wrap i {
  width: 26px;
  height: 26px;
}

.product-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-name {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-qty { font-size: 0.78rem; color: var(--muted); }

.product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.product-price { font-weight: 800; font-size: 1rem; }
.product-mrp { font-size: 0.78rem; color: var(--muted); text-decoration: line-through; }

.product-footer {
  padding: 0 14px 14px;
}

.add-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border: 2px solid var(--blue);
  border-radius: 12px;
  background: white;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.add-btn:hover { background: var(--blue); color: white; }

/* In-cart quantity stepper */
.qty-stepper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue);
  border-radius: 12px;
  overflow: hidden;
}

.qty-stepper button {
  background: none;
  border: none;
  color: white;
  font-size: 1.3rem;
  font-weight: 900;
  padding: 9px 16px;
  cursor: pointer;
  transition: background 0.15s;
}

.qty-stepper button:hover { background: rgba(255,255,255,0.15); }
.qty-stepper .qty-val { color: white; font-weight: 800; font-size: 1rem; }

/* ── CART DRAWER ───────────────────── */
.cart-drawer {
  width: 360px;
  flex-shrink: 0;
  background: var(--surface);
  border-left: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 { font-size: 1.1rem; font-weight: 800; }
.cart-header button { background: none; border: none; cursor: pointer; color: var(--muted); padding: 4px; border-radius: 8px; }
.cart-header button:hover { background: var(--bg); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 40px 0;
}

.cart-empty p { font-weight: 700; font-size: 1.1rem; }
.cart-empty span { color: var(--muted); font-size: 0.9rem; }

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  animation: slideIn 0.25s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(15px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cart-item-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f1f5f9;
}

.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 700; font-size: 0.88rem; }
.cart-item-price { color: var(--blue); font-weight: 800; font-size: 0.9rem; }

.cart-item-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-stepper button {
  width: 28px; height: 28px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.15s;
}

.cart-item-stepper button:hover { border-color: var(--blue); color: var(--blue); }
.cart-item-stepper span { font-weight: 800; font-size: 0.95rem; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1rem;
}

.cart-total strong { font-size: 1.3rem; font-weight: 900; }

.checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.checkout-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ── RESPONSIVE ────────────────────── */
@media (max-width: 1200px) {
  .cart-drawer { display: none; }
}

@media (max-width: 768px) {
  :root { --sidebar-w: 80px; }
  .cat-img-wrap { width: 44px; height: 44px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .promo-banners { grid-template-columns: 1fr; }
  .header-inner { gap: 10px; padding: 0 14px; }
  .cart-label { display: none; }
  .location-btn .loc-name { max-width: 80px; overflow: hidden; text-overflow: ellipsis; }
}

/* Product Brand Label */
.product-brand {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-item-brand {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   CHECKOUT & ORDER STATUS MODALS
   ══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-box {
  background: white;
  border-radius: 24px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  scrollbar-width: thin;
}

.modal-box-sm { max-width: 560px; }

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
  border-radius: 24px 24px 0 0;
}

.modal-header h2 { font-size: 1.3rem; font-weight: 800; }
.modal-header button {
  background: var(--bg);
  border: 1px solid var(--border);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center; justify-content: center;
  color: var(--muted);
  transition: 0.2s;
}
.modal-header button:hover { background: var(--border); }

/* Two-column body */
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.checkout-left {
  padding: 28px;
  border-right: 1px solid var(--border);
}

.checkout-right {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-section-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}

.locate-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  border: 1.5px dashed var(--blue);
  border-radius: 12px;
  background: #eff6ff;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s;
}
.locate-btn:hover { background: #dbeafe; }

/* Payment */
.pay-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pay-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.2s;
}

.pay-opt:has(input:checked) {
  border-color: var(--blue);
  background: #eff6ff;
  color: var(--blue);
}

.pay-opt input { display: none; }

/* Bill Items */
.bill-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  padding-right: 4px;
  margin-bottom: 8px;
}

.bill-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 4px 0;
}

.bill-divider {
  border-top: 1px solid var(--border);
  margin: 8px 0;
}

.bill-grand {
  font-size: 1.1rem;
  font-weight: 900;
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.contact-card i { color: var(--blue); flex-shrink: 0; }
.contact-label { font-size: 0.7rem; font-weight: 700; color: var(--muted); text-transform: uppercase; }
.contact-name { font-size: 0.85rem; font-weight: 800; }
.contact-num { font-size: 0.82rem; color: var(--blue); font-weight: 700; text-decoration: none; }
.contact-num:hover { text-decoration: underline; }

/* Place Order Button */
.place-order-btn {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  margin-top: auto;
  transition: background 0.2s, transform 0.15s;
}
.place-order-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ── ORDER STATUS ───────────────────── */
.order-id-badge {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.9rem;
  margin-bottom: 28px;
  display: inline-block;
}

.status-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.status-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 28px;
  position: relative;
  opacity: 0.35;
  transition: opacity 0.5s;
}

.status-step::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.status-step:last-child { padding-bottom: 0; }
.status-step:last-child::after { display: none; }

.status-step.active { opacity: 1; }
.status-step.done   { opacity: 1; }

.status-step.active .step-dot { background: var(--blue); color: white; }
.status-step.done   .step-dot { background: var(--green); color: white; }

.step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.step-dot i { width: 16px; height: 16px; }

.step-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
}

.step-info strong { font-size: 0.95rem; font-weight: 800; }
.step-info span   { font-size: 0.82rem; color: var(--muted); }

.status-address-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.status-address-box div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.status-address-box i { color: var(--blue); flex-shrink: 0; }

/* Form select styling */
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  background: white;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

.form-select:focus {
  border-color: var(--blue);
}

/* Footer styling */
.app-footer {
  margin-top: 60px;
  padding: 40px 24px 60px;
  border-top: 1px solid var(--border);
  background: white;
}

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.footer-links-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-links-sm a {
  text-decoration: none;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links-sm a:hover {
  text-decoration: underline;
}

.footer-links-sm .sep {
  color: var(--border);
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .logo-text { font-size: 1.35rem; }
  .logo-img { width: 38px; height: 38px; }
  .logo-badge { display: none; }
  .footer-links-sm { gap: 8px; }
}