/* ============================================================
   MultiVendor Market Pro – Frontend CSS
   ============================================================ */

:root {
  --mvm-primary:     #2563eb;
  --mvm-primary-dark:#1d4ed8;
  --mvm-secondary:   #7c3aed;
  --mvm-success:     #16a34a;
  --mvm-warning:     #d97706;
  --mvm-danger:      #dc2626;
  --mvm-gray-50:     #f8fafc;
  --mvm-gray-100:    #f1f5f9;
  --mvm-gray-200:    #e2e8f0;
  --mvm-gray-300:    #cbd5e1;
  --mvm-gray-500:    #64748b;
  --mvm-gray-700:    #334155;
  --mvm-gray-900:    #0f172a;
  --mvm-radius:      12px;
  --mvm-radius-sm:   6px;
  --mvm-shadow:      0 4px 24px rgba(0,0,0,.08);
  --mvm-shadow-lg:   0 12px 40px rgba(0,0,0,.12);
  --mvm-transition:  all .2s ease;
}

/* ── Basis ─────────────────────────────────────────────────── */
.mvm-wrap { font-family: system-ui, -apple-system, sans-serif; color: var(--mvm-gray-900); }
.mvm-wrap *, .mvm-wrap *::before, .mvm-wrap *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Layout ────────────────────────────────────────────────── */
.mvm-grid         { display: grid; gap: 24px; }
.mvm-grid-2       { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.mvm-grid-3       { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.mvm-grid-4       { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.mvm-flex         { display: flex; gap: 16px; align-items: center; }
.mvm-flex-wrap    { flex-wrap: wrap; }
.mvm-flex-between { justify-content: space-between; }
.mvm-container    { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Cards ─────────────────────────────────────────────────── */
.mvm-card {
  background: #fff;
  border-radius: var(--mvm-radius);
  box-shadow: var(--mvm-shadow);
  overflow: hidden;
  transition: var(--mvm-transition);
  border: 1px solid var(--mvm-gray-100);
}
.mvm-card:hover { transform: translateY(-4px); box-shadow: var(--mvm-shadow-lg); }
.mvm-card__image { aspect-ratio: 16/9; overflow: hidden; }
.mvm-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.mvm-card:hover .mvm-card__image img { transform: scale(1.04); }
.mvm-card__body { padding: 16px; }
.mvm-card__title { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--mvm-gray-900); }
.mvm-card__meta  { font-size: 13px; color: var(--mvm-gray-500); display: flex; gap: 12px; flex-wrap: wrap; }
.mvm-card__price { font-size: 20px; font-weight: 700; color: var(--mvm-primary); margin-top: 8px; }
.mvm-card__footer { padding: 12px 16px; border-top: 1px solid var(--mvm-gray-100); background: var(--mvm-gray-50); }

/* ── Buttons ───────────────────────────────────────────────── */
.mvm-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--mvm-radius-sm);
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: var(--mvm-transition);
  text-decoration: none; line-height: 1;
}
.mvm-btn--primary { background: var(--mvm-primary); color: #fff; }
.mvm-btn--primary:hover { background: var(--mvm-primary-dark); color: #fff; }
.mvm-btn--secondary { background: var(--mvm-secondary); color: #fff; }
.mvm-btn--outline { background: transparent; border-color: var(--mvm-primary); color: var(--mvm-primary); }
.mvm-btn--outline:hover { background: var(--mvm-primary); color: #fff; }
.mvm-btn--success { background: var(--mvm-success); color: #fff; }
.mvm-btn--danger  { background: var(--mvm-danger); color: #fff; }
.mvm-btn--ghost   { background: transparent; color: var(--mvm-gray-700); }
.mvm-btn--ghost:hover { background: var(--mvm-gray-100); }
.mvm-btn--full { width: 100%; justify-content: center; }
.mvm-btn--sm { padding: 7px 14px; font-size: 13px; }
.mvm-btn--lg { padding: 14px 28px; font-size: 16px; }
.mvm-btn:disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }

/* ── Badges ────────────────────────────────────────────────── */
.mvm-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 99px;
  font-size: 12px; font-weight: 600;
}
.mvm-badge--primary  { background: #dbeafe; color: var(--mvm-primary); }
.mvm-badge--success  { background: #dcfce7; color: var(--mvm-success); }
.mvm-badge--warning  { background: #fef3c7; color: var(--mvm-warning); }
.mvm-badge--danger   { background: #fee2e2; color: var(--mvm-danger); }
.mvm-badge--gray     { background: var(--mvm-gray-100); color: var(--mvm-gray-700); }

/* ── Stars ─────────────────────────────────────────────────── */
.mvm-stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.mvm-stars .empty { color: var(--mvm-gray-300); }

/* ── Forms ─────────────────────────────────────────────────── */
.mvm-form-group { margin-bottom: 16px; }
.mvm-form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--mvm-gray-700); }
.mvm-form-control {
  width: 100%; padding: 10px 14px;
  border: 2px solid var(--mvm-gray-200); border-radius: var(--mvm-radius-sm);
  font-size: 14px; transition: var(--mvm-transition);
  background: #fff; color: var(--mvm-gray-900);
}
.mvm-form-control:focus { outline: none; border-color: var(--mvm-primary); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.mvm-form-control::placeholder { color: var(--mvm-gray-300); }
.mvm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mvm-form-error { color: var(--mvm-danger); font-size: 12px; margin-top: 4px; }

/* ── Notices ───────────────────────────────────────────────── */
.mvm-notice {
  padding: 14px 18px; border-radius: var(--mvm-radius-sm);
  font-size: 14px; margin-bottom: 16px;
  border-left: 4px solid var(--mvm-primary);
  background: #eff6ff;
}
.mvm-notice--error   { background: #fff1f1; border-color: var(--mvm-danger); }
.mvm-notice--success { background: #f0fdf4; border-color: var(--mvm-success); }
.mvm-notice--warning { background: #fffbeb; border-color: var(--mvm-warning); }

/* ── Dashboard Layout ──────────────────────────────────────── */
.mvm-dashboard { display: grid; grid-template-columns: 260px 1fr; gap: 24px; min-height: 600px; }
.mvm-sidebar {
  background: #fff; border-radius: var(--mvm-radius);
  box-shadow: var(--mvm-shadow); padding: 24px;
  position: sticky; top: 20px; align-self: start;
}
.mvm-sidebar__user { text-align: center; margin-bottom: 24px; }
.mvm-sidebar__avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin-bottom: 8px; border: 3px solid var(--mvm-primary); }
.mvm-sidebar__name { font-weight: 700; font-size: 15px; }
.mvm-sidebar__role { font-size: 12px; color: var(--mvm-gray-500); }
.mvm-nav { list-style: none; }
.mvm-nav__item { margin-bottom: 4px; }
.mvm-nav__link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--mvm-radius-sm);
  text-decoration: none; color: var(--mvm-gray-700);
  font-size: 14px; font-weight: 500; transition: var(--mvm-transition);
}
.mvm-nav__link:hover, .mvm-nav__link.active {
  background: #eff6ff; color: var(--mvm-primary);
}
.mvm-nav__link .dashicons { font-size: 18px; width: 18px; height: 18px; }
.mvm-nav__badge { margin-left: auto; font-size: 11px; background: var(--mvm-danger); color: #fff; padding: 2px 7px; border-radius: 99px; }
.mvm-content { min-width: 0; }

/* ── Stats Cards ───────────────────────────────────────────── */
.mvm-stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 16px; margin-bottom: 24px; }
.mvm-stat-card { background: #fff; border-radius: var(--mvm-radius); padding: 20px; box-shadow: var(--mvm-shadow); border-top: 3px solid var(--mvm-primary); }
.mvm-stat-card__icon { font-size: 28px; margin-bottom: 8px; }
.mvm-stat-card__value { font-size: 28px; font-weight: 800; color: var(--mvm-gray-900); }
.mvm-stat-card__label { font-size: 12px; color: var(--mvm-gray-500); margin-top: 4px; }

/* ── Table ─────────────────────────────────────────────────── */
.mvm-table-wrap { overflow-x: auto; }
.mvm-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.mvm-table th { padding: 12px 16px; text-align: left; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--mvm-gray-500); background: var(--mvm-gray-50); border-bottom: 2px solid var(--mvm-gray-200); }
.mvm-table td { padding: 14px 16px; border-bottom: 1px solid var(--mvm-gray-100); vertical-align: middle; }
.mvm-table tr:last-child td { border-bottom: none; }
.mvm-table tr:hover td { background: var(--mvm-gray-50); }
.mvm-table__actions { display: flex; gap: 6px; }

/* ── Modal ─────────────────────────────────────────────────── */
.mvm-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity .2s;
}
.mvm-modal-overlay.active { opacity: 1; pointer-events: all; }
.mvm-modal {
  background: #fff; border-radius: var(--mvm-radius);
  max-width: 540px; width: 100%; max-height: 90vh;
  overflow-y: auto; box-shadow: var(--mvm-shadow-lg);
  transform: translateY(20px); transition: transform .2s;
}
.mvm-modal-overlay.active .mvm-modal { transform: translateY(0); }
.mvm-modal__header { padding: 20px 24px; border-bottom: 1px solid var(--mvm-gray-200); display: flex; align-items: center; justify-content: space-between; }
.mvm-modal__title  { font-size: 18px; font-weight: 700; }
.mvm-modal__close  { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--mvm-gray-500); padding: 4px; }
.mvm-modal__body   { padding: 24px; }
.mvm-modal__footer { padding: 16px 24px; border-top: 1px solid var(--mvm-gray-200); display: flex; gap: 10px; justify-content: flex-end; }

/* ── Search & Filters ──────────────────────────────────────── */
.mvm-search-hero { background: linear-gradient(135deg, var(--mvm-primary), var(--mvm-secondary)); padding: 48px 24px; border-radius: var(--mvm-radius); margin-bottom: 32px; text-align: center; }
.mvm-search-hero h1 { color: #fff; font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.mvm-search-box { display: flex; gap: 0; max-width: 640px; margin: 0 auto; background: #fff; border-radius: 99px; overflow: hidden; box-shadow: var(--mvm-shadow-lg); }
.mvm-search-box input { flex: 1; padding: 16px 24px; border: none; font-size: 16px; outline: none; }
.mvm-search-box button { padding: 14px 28px; background: var(--mvm-primary); color: #fff; border: none; font-size: 16px; font-weight: 600; cursor: pointer; border-radius: 0 99px 99px 0; }
.mvm-filters { display: flex; gap: 12px; flex-wrap: wrap; padding: 16px 0; }
.mvm-filter-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 99px; border: 2px solid var(--mvm-gray-200);
  background: #fff; font-size: 13px; cursor: pointer; transition: var(--mvm-transition);
}
.mvm-filter-chip:hover, .mvm-filter-chip.active { border-color: var(--mvm-primary); color: var(--mvm-primary); background: #eff6ff; }
.mvm-filter-panel { background: #fff; border-radius: var(--mvm-radius); box-shadow: var(--mvm-shadow); padding: 20px; margin-bottom: 20px; }
.mvm-price-range { display: flex; gap: 12px; align-items: center; }
.mvm-price-range input { width: 100px; }

/* ── Appointment Booking ───────────────────────────────────── */
.mvm-booking-widget { background: #fff; border-radius: var(--mvm-radius); box-shadow: var(--mvm-shadow); overflow: hidden; }
.mvm-booking-steps { display: flex; background: var(--mvm-gray-50); padding: 0; border-bottom: 1px solid var(--mvm-gray-200); }
.mvm-step { flex: 1; text-align: center; padding: 14px; font-size: 13px; font-weight: 600; color: var(--mvm-gray-500); position: relative; }
.mvm-step.active { color: var(--mvm-primary); border-bottom: 3px solid var(--mvm-primary); }
.mvm-step.done { color: var(--mvm-success); }
.mvm-booking-body { padding: 24px; }
.mvm-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.mvm-cal-header { grid-column: 1/-1; display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.mvm-cal-day { text-align: center; font-size: 11px; font-weight: 700; color: var(--mvm-gray-500); padding: 6px 0; }
.mvm-cal-cell {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: var(--mvm-radius-sm); font-size: 13px; cursor: pointer;
  transition: var(--mvm-transition);
}
.mvm-cal-cell:hover:not(.disabled) { background: #eff6ff; color: var(--mvm-primary); }
.mvm-cal-cell.has-slots { background: #dcfce7; color: var(--mvm-success); font-weight: 600; }
.mvm-cal-cell.selected  { background: var(--mvm-primary); color: #fff; }
.mvm-cal-cell.disabled  { opacity: .3; cursor: not-allowed; }
.mvm-cal-cell.today     { border: 2px solid var(--mvm-primary); }
.mvm-slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 8px; margin-top: 16px; }
.mvm-slot-btn {
  padding: 10px; text-align: center; border-radius: var(--mvm-radius-sm);
  border: 2px solid var(--mvm-gray-200); background: #fff;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--mvm-transition);
}
.mvm-slot-btn:hover, .mvm-slot-btn.selected { border-color: var(--mvm-primary); color: var(--mvm-primary); background: #eff6ff; }

/* ── Order Tracking ────────────────────────────────────────── */
.mvm-tracking-timeline { position: relative; padding-left: 32px; }
.mvm-tracking-timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--mvm-gray-200); }
.mvm-timeline-item { position: relative; margin-bottom: 24px; }
.mvm-timeline-item::before {
  content: ''; position: absolute; left: -28px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--mvm-gray-300); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--mvm-gray-300);
}
.mvm-timeline-item.done::before  { background: var(--mvm-success); box-shadow: 0 0 0 2px var(--mvm-success); }
.mvm-timeline-item.active::before { background: var(--mvm-primary); box-shadow: 0 0 0 2px var(--mvm-primary); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 2px var(--mvm-primary); } 50% { box-shadow: 0 0 0 6px rgba(37,99,235,.2); } }
.mvm-timeline-item .time { font-size: 12px; color: var(--mvm-gray-500); }
.mvm-timeline-item .label { font-size: 14px; font-weight: 600; }
.mvm-timeline-item .message { font-size: 13px; color: var(--mvm-gray-500); margin-top: 2px; }

/* ── Live Map ──────────────────────────────────────────────── */
#mvm-tracking-map { height: 350px; border-radius: var(--mvm-radius); overflow: hidden; }

/* ── Review System ─────────────────────────────────────────── */
.mvm-review-form { background: var(--mvm-gray-50); border-radius: var(--mvm-radius); padding: 24px; }
.mvm-star-input { display: flex; flex-direction: row-reverse; gap: 4px; }
.mvm-star-input input { display: none; }
.mvm-star-input label { font-size: 28px; cursor: pointer; color: var(--mvm-gray-300); transition: color .15s; }
.mvm-star-input label:hover,
.mvm-star-input label:hover ~ label,
.mvm-star-input input:checked ~ label { color: #f59e0b; }
.mvm-review-item { padding: 20px 0; border-bottom: 1px solid var(--mvm-gray-100); }
.mvm-review-item:last-child { border-bottom: none; }
.mvm-review-item__header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.mvm-review-item__avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: var(--mvm-gray-200); }
.mvm-review-item__name { font-weight: 600; font-size: 14px; }
.mvm-review-item__date { font-size: 12px; color: var(--mvm-gray-500); }
.mvm-review-item__title { font-weight: 600; margin-bottom: 6px; }
.mvm-review-item__content { font-size: 14px; color: var(--mvm-gray-700); line-height: 1.6; }
.mvm-vendor-reply { background: var(--mvm-gray-50); border-left: 3px solid var(--mvm-primary); padding: 12px; margin-top: 12px; border-radius: 0 var(--mvm-radius-sm) var(--mvm-radius-sm) 0; font-size: 13px; }

/* ── Price Comparison ──────────────────────────────────────── */
.mvm-compare-table { width: 100%; }
.mvm-compare-table .best-price { background: #f0fdf4; font-weight: 700; }
.mvm-compare-table .best-price .price { color: var(--mvm-success); }
.mvm-price-badge { font-size: 11px; background: var(--mvm-success); color: #fff; padding: 2px 8px; border-radius: 99px; margin-left: 6px; }

/* ── Featured Cards ────────────────────────────────────────── */
.mvm-featured-header { text-align: center; margin-bottom: 40px; }
.mvm-featured-header h1 { font-size: 36px; font-weight: 800; }
.mvm-featured-header .subtitle { font-size: 16px; color: var(--mvm-gray-500); margin-top: 8px; }
.mvm-featured-hero { position: relative; overflow: hidden; }
.mvm-featured-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 99px; text-transform: uppercase; letter-spacing: 1px;
}
.mvm-vote-section { display: flex; align-items: center; gap: 12px; padding: 12px 16px; }
.mvm-vote-btn { display: flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 99px; border: 2px solid var(--mvm-gray-200); background: #fff; font-size: 13px; cursor: pointer; transition: var(--mvm-transition); }
.mvm-vote-btn:hover, .mvm-vote-btn.voted { border-color: #f59e0b; color: #f59e0b; }
.mvm-vote-count { font-weight: 700; }

/* ── Store Header ──────────────────────────────────────────── */
.mvm-store-hero { height: 220px; background: var(--mvm-gray-200); position: relative; overflow: hidden; }
.mvm-store-hero img { width: 100%; height: 100%; object-fit: cover; }
.mvm-store-header { background: #fff; border-radius: var(--mvm-radius); padding: 24px; box-shadow: var(--mvm-shadow); margin-top: -40px; position: relative; z-index: 1; margin: -40px 24px 24px; display: flex; gap: 20px; align-items: flex-end; }
.mvm-store-logo { width: 80px; height: 80px; border-radius: var(--mvm-radius); border: 4px solid #fff; box-shadow: var(--mvm-shadow); object-fit: cover; }
.mvm-store-info { flex: 1; }
.mvm-store-name { font-size: 24px; font-weight: 800; }
.mvm-store-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--mvm-gray-200); margin-bottom: 24px; }
.mvm-store-tab { padding: 12px 20px; font-size: 14px; font-weight: 600; color: var(--mvm-gray-500); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: var(--mvm-transition); }
.mvm-store-tab.active, .mvm-store-tab:hover { color: var(--mvm-primary); border-color: var(--mvm-primary); }

/* ── Notifications ─────────────────────────────────────────── */
.mvm-notif-bell { position: relative; cursor: pointer; }
.mvm-notif-count { position: absolute; top: -5px; right: -5px; background: var(--mvm-danger); color: #fff; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.mvm-notif-dropdown { position: absolute; top: 100%; right: 0; width: 340px; background: #fff; border-radius: var(--mvm-radius); box-shadow: var(--mvm-shadow-lg); border: 1px solid var(--mvm-gray-200); z-index: 1000; display: none; }
.mvm-notif-bell.open .mvm-notif-dropdown { display: block; }
.mvm-notif-item { display: flex; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--mvm-gray-100); cursor: pointer; transition: background .15s; }
.mvm-notif-item:hover { background: var(--mvm-gray-50); }
.mvm-notif-item.unread { background: #eff6ff; }
.mvm-notif-item.unread:hover { background: #dbeafe; }
.mvm-notif-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--mvm-primary); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.mvm-notif-text .title { font-size: 13px; font-weight: 600; }
.mvm-notif-text .time { font-size: 11px; color: var(--mvm-gray-500); }

/* ── Cart ──────────────────────────────────────────────────── */
.mvm-cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--mvm-gray-100); align-items: center; }
.mvm-cart-item__image { width: 80px; height: 80px; border-radius: var(--mvm-radius-sm); object-fit: cover; }
.mvm-cart-item__info { flex: 1; }
.mvm-cart-item__name { font-weight: 600; font-size: 14px; }
.mvm-cart-item__meta { font-size: 12px; color: var(--mvm-gray-500); }
.mvm-qty-control { display: flex; align-items: center; gap: 8px; }
.mvm-qty-btn { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--mvm-gray-200); background: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--mvm-transition); }
.mvm-qty-btn:hover { border-color: var(--mvm-primary); color: var(--mvm-primary); }
.mvm-qty-value { font-weight: 600; font-size: 15px; min-width: 24px; text-align: center; }
.mvm-cart-total { background: var(--mvm-gray-50); border-radius: var(--mvm-radius); padding: 20px; }
.mvm-cart-total table { width: 100%; font-size: 14px; }
.mvm-cart-total td { padding: 6px 0; }
.mvm-cart-total .total-row td { font-size: 18px; font-weight: 700; border-top: 2px solid var(--mvm-gray-200); padding-top: 12px; }

/* ── Checkout ──────────────────────────────────────────────── */
.mvm-checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 24px; }
.mvm-payment-methods { display: flex; flex-direction: column; gap: 10px; }
.mvm-payment-option { display: flex; align-items: center; gap: 12px; padding: 14px; border: 2px solid var(--mvm-gray-200); border-radius: var(--mvm-radius-sm); cursor: pointer; transition: var(--mvm-transition); }
.mvm-payment-option:hover, .mvm-payment-option.selected { border-color: var(--mvm-primary); }
.mvm-payment-option input { display: none; }
.mvm-payment-logo { width: 48px; height: 30px; object-fit: contain; }

/* ── Driver Dashboard ──────────────────────────────────────── */
.mvm-driver-status { display: flex; align-items: center; gap: 12px; padding: 16px; background: var(--mvm-gray-50); border-radius: var(--mvm-radius); margin-bottom: 20px; }
.mvm-status-dot { width: 12px; height: 12px; border-radius: 50%; }
.mvm-status-dot.available { background: var(--mvm-success); box-shadow: 0 0 0 4px rgba(22,163,74,.2); }
.mvm-status-dot.busy      { background: var(--mvm-warning); box-shadow: 0 0 0 4px rgba(217,119,6,.2); }
.mvm-status-dot.offline   { background: var(--mvm-gray-300); }
.mvm-delivery-card { border: 2px solid var(--mvm-gray-200); border-radius: var(--mvm-radius); padding: 16px; margin-bottom: 12px; transition: var(--mvm-transition); }
.mvm-delivery-card.urgent { border-color: var(--mvm-danger); }
.mvm-delivery-card.active { border-color: var(--mvm-primary); }

/* ── Loader ────────────────────────────────────────────────── */
.mvm-loader { display: flex; align-items: center; justify-content: center; padding: 40px; }
.mvm-spinner { width: 36px; height: 36px; border: 3px solid var(--mvm-gray-200); border-top-color: var(--mvm-primary); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Empty State ───────────────────────────────────────────── */
.mvm-empty { text-align: center; padding: 48px 20px; }
.mvm-empty__icon { font-size: 48px; color: var(--mvm-gray-300); margin-bottom: 16px; }
.mvm-empty__text { font-size: 15px; color: var(--mvm-gray-500); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .mvm-dashboard { grid-template-columns: 1fr; }
  .mvm-sidebar { position: static; }
  .mvm-checkout-grid { grid-template-columns: 1fr; }
  .mvm-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .mvm-search-hero h1 { font-size: 22px; }
  .mvm-search-box { flex-direction: column; border-radius: var(--mvm-radius); }
  .mvm-search-box input { border-bottom: 1px solid var(--mvm-gray-200); }
  .mvm-search-box button { border-radius: 0 0 var(--mvm-radius) var(--mvm-radius); }
  .mvm-store-header { flex-direction: column; text-align: center; }
  .mvm-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
