/* ============================================================
   MultiVendor Market Pro – Frontend CSS  (vollständig)
   ============================================================ */

:root {
  --mvm-primary:       #2563eb;
  --mvm-primary-dark:  #1d4ed8;
  --mvm-primary-light: #dbeafe;
  --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-400:      #94a3b8;
  --mvm-gray-500:      #64748b;
  --mvm-gray-700:      #334155;
  --mvm-gray-900:      #0f172a;
  --mvm-radius:        12px;
  --mvm-radius-sm:     6px;
  --mvm-radius-lg:     20px;
  --mvm-shadow:        0 4px 24px rgba(0,0,0,.08);
  --mvm-shadow-lg:     0 12px 40px rgba(0,0,0,.14);
  --mvm-transition:    all .2s ease;
  --mvm-font:          system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ── Reset & Basis ─────────────────────────────────────────── */
.mvm-wrap { font-family: var(--mvm-font); color: var(--mvm-gray-900); line-height: 1.6; }
.mvm-wrap *, .mvm-wrap *::before, .mvm-wrap *::after { box-sizing: border-box; margin: 0; padding: 0; }
.mvm-wrap a { color: var(--mvm-primary); }
.mvm-wrap img { max-width: 100%; }

/* ── Layout ────────────────────────────────────────────────── */
.mvm-container  { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.mvm-grid       { display: grid; gap: 20px; }
.mvm-grid-2     { grid-template-columns: repeat(auto-fill, minmax(280px, 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: 12px; align-items: center; }
.mvm-flex-wrap  { flex-wrap: wrap; }
.mvm-flex-between { justify-content: space-between; }
.mvm-flex-center  { justify-content: center; }

/* ── Karten ────────────────────────────────────────────────── */
.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);
  display: flex; flex-direction: column; position: relative;
}
.mvm-card:hover { transform: translateY(-3px); box-shadow: var(--mvm-shadow-lg); }
.mvm-card__image { aspect-ratio: 16/9; overflow: hidden; background: var(--mvm-gray-100); flex-shrink: 0; }
.mvm-card__image img  { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.mvm-card:hover .mvm-card__image img { transform: scale(1.05); }
.mvm-card__image-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:40px; background:var(--mvm-gray-50); }
.mvm-card__body   { padding: 16px; flex: 1; }
.mvm-card__title  { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.mvm-card__title a { text-decoration: none; color: inherit; }
.mvm-card__title a:hover { color: var(--mvm-primary); }
.mvm-card__meta   { font-size: 12px; color: var(--mvm-gray-500); display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.mvm-card__price  { font-size: 22px; font-weight: 800; color: var(--mvm-primary); margin-top: 10px; }
.mvm-card__footer { padding: 12px 16px; border-top: 1px solid var(--mvm-gray-100); background: var(--mvm-gray-50); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* ── Buttons ───────────────────────────────────────────────── */
.mvm-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; 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.2; white-space: nowrap;
}
.mvm-btn--primary   { background: var(--mvm-primary);   color: #fff; }
.mvm-btn--primary:hover { background: var(--mvm-primary-dark); color: #fff; transform: translateY(-1px); }
.mvm-btn--secondary { background: var(--mvm-secondary); color: #fff; }
.mvm-btn--secondary:hover { background: #6d28d9; 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); border-color: transparent; }
.mvm-btn--ghost:hover { background: var(--mvm-gray-100); }
.mvm-btn--full  { width: 100%; justify-content: center; }
.mvm-btn--sm    { padding: 6px 12px; font-size: 13px; }
.mvm-btn--lg    { padding: 14px 28px; font-size: 16px; border-radius: var(--mvm-radius); }
.mvm-btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ── Badges ────────────────────────────────────────────────── */
.mvm-badge { display: inline-block; padding: 3px 8px; border-radius: 100px; font-size: 11px; font-weight: 700; line-height: 1.4; }
.mvm-badge--primary { background: var(--mvm-primary-light); color: var(--mvm-primary); }
.mvm-badge--success { background: #dcfce7; color: #15803d; }
.mvm-badge--warning { background: #fef3c7; color: #92400e; }
.mvm-badge--danger  { background: #fee2e2; color: #b91c1c; }
.mvm-badge--gray    { background: var(--mvm-gray-100); color: var(--mvm-gray-700); }
.mvm-price-badge    { display: inline-block; padding: 2px 8px; background: #fef3c7; color: #92400e; border-radius: 4px; font-size: 11px; font-weight: 700; margin-left: 4px; }

/* ── Formulare ─────────────────────────────────────────────── */
.mvm-form-group  { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.mvm-form-group label { font-size: 13px; font-weight: 600; color: var(--mvm-gray-700); }
.mvm-form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mvm-form-control {
  width: 100%; padding: 10px 14px; border: 2px solid var(--mvm-gray-200);
  border-radius: var(--mvm-radius-sm); font-size: 14px; font-family: var(--mvm-font);
  transition: border-color .2s; 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,.12); }
.mvm-form-control::placeholder { color: var(--mvm-gray-400); }
textarea.mvm-form-control { resize: vertical; min-height: 100px; }
.mvm-price-range { display: flex; gap: 8px; align-items: center; }
.mvm-price-range input { width: 50%; }

/* ── Notices & Alerts ──────────────────────────────────────── */
.mvm-notice { padding: 14px 18px; border-radius: var(--mvm-radius-sm); font-size: 14px; border-left: 4px solid; margin-bottom: 16px; }
.mvm-notice--success { background: #f0fdf4; border-color: var(--mvm-success); color: #166534; }
.mvm-notice--error   { background: #fef2f2; border-color: var(--mvm-danger);  color: #991b1b; }
.mvm-notice--warning { background: #fffbeb; border-color: var(--mvm-warning); color: #92400e; }
.mvm-notice--info    { background: #eff6ff; border-color: var(--mvm-primary); color: #1e40af; }

/* ── Toast ─────────────────────────────────────────────────── */
#mvm-toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 99999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.mvm-toast {
  color: #fff; padding: 13px 18px; border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.2); font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 10px; max-width: 360px;
  transform: translateX(120%); opacity: 0; transition: all .35s cubic-bezier(.34,1.56,.64,1);
  pointer-events: auto; min-width: 260px;
}
.mvm-toast.visible { transform: translateX(0); opacity: 1; }

/* ── Tabellen ──────────────────────────────────────────────── */
.mvm-table-wrap { overflow-x: auto; border-radius: var(--mvm-radius); border: 1px solid var(--mvm-gray-200); }
.mvm-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.mvm-table th { background: var(--mvm-gray-50); padding: 12px 14px; text-align: left; font-size: 12px; font-weight: 700; color: var(--mvm-gray-500); text-transform: uppercase; letter-spacing: .04em; border-bottom: 2px solid var(--mvm-gray-200); }
.mvm-table td { padding: 13px 14px; 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); }

/* ── Dashboard-Layout ──────────────────────────────────────── */
.mvm-dashboard { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.mvm-sidebar {
  background: #fff; border-radius: var(--mvm-radius); box-shadow: var(--mvm-shadow);
  overflow: hidden; border: 1px solid var(--mvm-gray-100); position: sticky; top: 20px;
}
.mvm-sidebar__user  { padding: 28px 20px; text-align: center; background: linear-gradient(135deg, var(--mvm-primary), var(--mvm-secondary)); color: #fff; }
.mvm-sidebar__avatar { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,.4); margin-bottom: 10px; }
.mvm-sidebar__name  { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.mvm-sidebar__role  { font-size: 12px; opacity: .85; }
.mvm-nav { list-style: none; padding: 8px 0; }
.mvm-nav__item + .mvm-nav__item { border-top: 1px solid var(--mvm-gray-100); }
.mvm-nav__link { display: flex; align-items: center; gap: 10px; padding: 12px 20px; font-size: 14px; font-weight: 500; color: var(--mvm-gray-700); text-decoration: none; transition: var(--mvm-transition); }
.mvm-nav__link:hover, .mvm-nav__link.active { color: var(--mvm-primary); background: var(--mvm-primary-light); }
.mvm-nav__link .dashicons { font-size: 18px; line-height: 1; }
.mvm-tab-content { display: none; }
.mvm-tab-content.active { display: block; }
.mvm-content { min-width: 0; }
.mvm-content h2 { font-size: 22px; font-weight: 800; margin-bottom: 20px; }

/* ── Stats-Grid ────────────────────────────────────────────── */
.mvm-stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 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: 4px solid var(--mvm-primary); transition: var(--mvm-transition); }
.mvm-stat-card:hover { transform: translateY(-2px); }
.mvm-stat-card__icon  { font-size: 28px; margin-bottom: 10px; }
.mvm-stat-card__value { font-size: 26px; font-weight: 800; line-height: 1; }
.mvm-stat-card__label { font-size: 12px; color: var(--mvm-gray-500); margin-top: 6px; }

/* ── Such-Hero ─────────────────────────────────────────────── */
.mvm-search-hero { background: linear-gradient(135deg, var(--mvm-primary) 0%, var(--mvm-secondary) 100%); padding: 64px 24px; text-align: center; color: #fff; }
.mvm-search-hero h1 { font-size: 38px; font-weight: 800; margin-bottom: 10px; text-shadow: 0 2px 8px rgba(0,0,0,.15); }
.mvm-search-box { display: flex; background: #fff; border-radius: 100px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.25); max-width: 680px; margin: 0 auto; }
.mvm-search-box input { flex: 1; border: none; outline: none; padding: 16px 24px; font-size: 16px; font-family: var(--mvm-font); color: var(--mvm-gray-900); }
.mvm-search-box button { background: var(--mvm-primary); color: #fff; border: none; cursor: pointer; padding: 0 28px; font-size: 15px; font-weight: 700; font-family: var(--mvm-font); transition: background .2s; border-radius: 0 100px 100px 0; }
.mvm-search-box button:hover { background: var(--mvm-primary-dark); }

/* ── Filter-Panel ──────────────────────────────────────────── */
.mvm-filter-panel { background: #fff; border-radius: var(--mvm-radius); padding: 20px; box-shadow: var(--mvm-shadow); border: 1px solid var(--mvm-gray-100); }
.mvm-filter-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border: 2px solid var(--mvm-gray-200); border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer; background: #fff; color: var(--mvm-gray-700); transition: var(--mvm-transition); }
.mvm-filter-chip:hover, .mvm-filter-chip.active { background: var(--mvm-primary); color: #fff; border-color: var(--mvm-primary); }

/* ── Warenkorb ─────────────────────────────────────────────── */
.mvm-cart-wrap { position: relative; }
.mvm-cart-icon-btn { background: none; border: none; cursor: pointer; font-size: 22px; position: relative; padding: 4px; }
.mvm-cart-badge { position: absolute; top: -4px; right: -6px; min-width: 18px; height: 18px; background: var(--mvm-danger); color: #fff; border-radius: 100px; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; padding: 0 4px; }
.mvm-minicart { position: absolute; top: calc(100% + 12px); right: 0; width: 320px; background: #fff; border-radius: var(--mvm-radius); box-shadow: var(--mvm-shadow-lg); border: 1px solid var(--mvm-gray-200); z-index: 9999; overflow: hidden; transform: translateY(-8px) scale(.97); opacity: 0; pointer-events: none; transition: all .2s cubic-bezier(.34,1.56,.64,1); }
.mvm-minicart.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.mvm-minicart-header { padding: 14px 16px; background: var(--mvm-gray-50); font-weight: 700; font-size: 14px; border-bottom: 1px solid var(--mvm-gray-200); }
.mvm-minicart-items  { max-height: 280px; overflow-y: auto; padding: 8px 0; }
.mvm-minicart-item { display: flex; gap: 10px; padding: 10px 14px; align-items: center; }
.mvm-minicart-item img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; background: var(--mvm-gray-100); }
.mvm-minicart-item__info { flex: 1; font-size: 13px; }
.mvm-minicart-item__info .name { font-weight: 600; }
.mvm-minicart-item__info .qty-price { color: var(--mvm-gray-500); margin-top: 2px; }
.mvm-minicart-remove { background: none; border: none; cursor: pointer; color: var(--mvm-gray-400); font-size: 16px; padding: 2px 6px; }
.mvm-minicart-remove:hover { color: var(--mvm-danger); }
.mvm-minicart-empty { padding: 24px; text-align: center; color: var(--mvm-gray-500); font-size: 13px; }
.mvm-minicart-footer { padding: 14px 16px; border-top: 1px solid var(--mvm-gray-200); }
.mvm-minicart-total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 12px; }
.mvm-cart-vendor-group { margin-bottom: 16px; }
.mvm-cart-vendor-name { font-size: 12px; font-weight: 700; color: var(--mvm-gray-500); text-transform: uppercase; letter-spacing: .05em; padding: 8px 0; border-bottom: 2px solid var(--mvm-gray-200); margin-bottom: 8px; }
.mvm-cart-item { display: grid; grid-template-columns: 72px 1fr auto auto auto; gap: 14px; align-items: center; padding: 14px; border: 1px solid var(--mvm-gray-100); border-radius: var(--mvm-radius-sm); margin-bottom: 8px; background: #fff; }
.mvm-cart-item__image { width: 72px; height: 72px; border-radius: 8px; overflow: hidden; background: var(--mvm-gray-100); }
.mvm-cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.mvm-cart-item__name  { font-weight: 600; font-size: 14px; }
.mvm-cart-item__price { font-size: 13px; color: var(--mvm-gray-500); margin-top: 4px; }
.mvm-cart-item__subtotal { font-weight: 700; font-size: 16px; min-width: 80px; text-align: right; }
.mvm-cart-remove-btn { background: none; border: 1px solid var(--mvm-gray-200); border-radius: 6px; cursor: pointer; padding: 6px 8px; font-size: 16px; transition: var(--mvm-transition); }
.mvm-cart-remove-btn:hover { background: #fee2e2; border-color: var(--mvm-danger); }
.mvm-qty-control { display: flex; align-items: center; gap: 6px; }
.mvm-qty-btn { width: 30px; height: 30px; border: 2px solid var(--mvm-gray-200); border-radius: 6px; cursor: pointer; font-size: 18px; background: #fff; transition: var(--mvm-transition); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.mvm-qty-btn:hover { border-color: var(--mvm-primary); color: var(--mvm-primary); }
.mvm-qty-value { font-weight: 700; font-size: 15px; min-width: 28px; text-align: center; }
.mvm-cart-summary { background: var(--mvm-gray-50); border-radius: var(--mvm-radius); padding: 24px; border: 1px solid var(--mvm-gray-200); }
.mvm-cart-summary table { width: 100%; font-size: 14px; }
.mvm-cart-summary td { padding: 8px 0; }
.mvm-cart-summary .total-row td { font-size: 20px; font-weight: 800; border-top: 2px solid var(--mvm-gray-200); padding-top: 14px; }
.mvm-coupon-row { display: flex; gap: 8px; margin-bottom: 14px; }
#mvm-cart-free-shipping-hint { font-size: 12px; color: var(--mvm-success); font-weight: 600; margin-bottom: 12px; display: block; }

/* ── Kasse ─────────────────────────────────────────────────── */
.mvm-checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 28px; }
.mvm-payment-methods { display: flex; flex-direction: column; gap: 10px; }
.mvm-payment-option { display: flex; align-items: center; gap: 14px; padding: 16px; border: 2px solid var(--mvm-gray-200); border-radius: var(--mvm-radius-sm); cursor: pointer; transition: var(--mvm-transition); }
.mvm-payment-option:hover { border-color: var(--mvm-primary); }
.mvm-payment-option.selected { border-color: var(--mvm-primary); background: var(--mvm-primary-light); }
.mvm-payment-option input { display: none; }
.mvm-payment-logo { font-size: 28px; }
.mvm-payment-option .name { font-weight: 600; font-size: 14px; }
.mvm-payment-option .desc { font-size: 12px; color: var(--mvm-gray-500); }
.mvm-checkout-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--mvm-gray-100); font-size: 14px; }
.mvm-checkout-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 800; padding-top: 14px; border-top: 2px solid var(--mvm-gray-200); margin-top: 8px; }
#stripe-card-element { padding: 14px; border: 2px solid var(--mvm-gray-200); border-radius: var(--mvm-radius-sm); background: #fff; }

/* ── Store-Seite ───────────────────────────────────────────── */
.mvm-store-banner { width: 100%; height: 220px; object-fit: cover; border-radius: var(--mvm-radius) var(--mvm-radius) 0 0; display: block; }
.mvm-store-header { display: flex; gap: 24px; align-items: flex-start; padding: 24px; background: #fff; border-radius: var(--mvm-radius); box-shadow: var(--mvm-shadow); margin-bottom: 28px; }
.mvm-store-logo   { width: 90px; height: 90px; border-radius: var(--mvm-radius); object-fit: cover; border: 3px solid var(--mvm-gray-200); flex-shrink: 0; }
.mvm-store-info   { flex: 1; }
.mvm-store-info h1 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.mvm-store-tabs   { display: flex; gap: 0; border-bottom: 2px solid var(--mvm-gray-200); margin-bottom: 28px; overflow-x: auto; }
.mvm-store-tab    { padding: 12px 22px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; background: none; color: var(--mvm-gray-500); border-bottom: 3px solid transparent; margin-bottom: -2px; transition: var(--mvm-transition); white-space: nowrap; }
.mvm-store-tab.active, .mvm-store-tab:hover { color: var(--mvm-primary); border-bottom-color: var(--mvm-primary); }

/* ── Terminbuchung ─────────────────────────────────────────── */
.mvm-booking-steps { display: flex; gap: 8px; margin-bottom: 28px; }
.mvm-step { flex: 1; text-align: center; padding: 10px 8px; font-size: 12px; font-weight: 600; border-radius: var(--mvm-radius-sm); background: var(--mvm-gray-100); color: var(--mvm-gray-500); border: 2px solid transparent; transition: var(--mvm-transition); }
.mvm-step.active { background: var(--mvm-primary-light); color: var(--mvm-primary); border-color: var(--mvm-primary); }
.mvm-step.done   { background: #dcfce7; color: var(--mvm-success); border-color: var(--mvm-success); }
.mvm-calendar    { background: #fff; border-radius: var(--mvm-radius); border: 1px solid var(--mvm-gray-200); overflow: hidden; }
.mvm-cal-header  { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: var(--mvm-gray-50); border-bottom: 1px solid var(--mvm-gray-200); }
.mvm-cal-title   { font-weight: 700; font-size: 15px; }
.mvm-cal-nav     { background: none; border: 2px solid var(--mvm-gray-200); border-radius: 6px; cursor: pointer; font-size: 20px; padding: 2px 10px; color: var(--mvm-gray-700); transition: var(--mvm-transition); }
.mvm-cal-nav:hover { border-color: var(--mvm-primary); color: var(--mvm-primary); }
.mvm-cal-grid    { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; padding: 8px; }
.mvm-cal-day-header { font-size: 11px; font-weight: 700; color: var(--mvm-gray-500); text-align: center; padding: 6px 0; text-transform: uppercase; }
.mvm-cal-cell    { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; border-radius: 8px; cursor: pointer; transition: var(--mvm-transition); }
.mvm-cal-cell:hover:not(.disabled):not(.empty) { background: var(--mvm-primary-light); color: var(--mvm-primary); }
.mvm-cal-cell.today    { font-weight: 800; color: var(--mvm-primary); border: 2px solid var(--mvm-primary); }
.mvm-cal-cell.selected { background: var(--mvm-primary) !important; color: #fff !important; }
.mvm-cal-cell.disabled { color: var(--mvm-gray-300); cursor: not-allowed; }
.mvm-cal-cell.empty    { cursor: default; }
.mvm-slots-grid  { display: flex; flex-wrap: wrap; gap: 10px; padding: 4px 0; }
.mvm-slot-btn    { padding: 9px 16px; border: 2px solid var(--mvm-gray-200); border-radius: var(--mvm-radius-sm); cursor: pointer; font-size: 14px; font-weight: 600; background: #fff; transition: var(--mvm-transition); }
.mvm-slot-btn:hover:not(.disabled) { border-color: var(--mvm-primary); color: var(--mvm-primary); }
.mvm-slot-btn.selected { background: var(--mvm-primary); color: #fff; border-color: var(--mvm-primary); }
.mvm-slot-btn.disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.mvm-slots-empty { color: var(--mvm-gray-500); font-size: 14px; padding: 16px 0; text-align: center; }
.mvm-staff-btn   { padding: 8px 14px; border: 2px solid var(--mvm-gray-200); border-radius: var(--mvm-radius-sm); cursor: pointer; font-size: 13px; font-weight: 600; background: #fff; transition: var(--mvm-transition); }
.mvm-staff-btn.selected { background: var(--mvm-primary); color: #fff; border-color: var(--mvm-primary); }

/* ── Live-Tracking ─────────────────────────────────────────── */
.mvm-tracking-timeline { display: flex; flex-direction: column; }
.mvm-timeline-item { display: flex; gap: 16px; padding: 12px 0; position: relative; }
.mvm-timeline-item + .mvm-timeline-item::before { content: ''; position: absolute; left: 9px; top: 0; width: 2px; height: 100%; background: var(--mvm-gray-200); }
.mvm-timeline-item.done + .mvm-timeline-item::before { background: var(--mvm-success); }
.mvm-timeline-item .dot { width: 20px; height: 20px; border-radius: 50%; background: var(--mvm-gray-200); flex-shrink: 0; margin-top: 2px; border: 3px solid #fff; box-shadow: 0 0 0 2px var(--mvm-gray-200); z-index: 1; }
.mvm-timeline-item.done   .dot { background: var(--mvm-success); box-shadow: 0 0 0 2px var(--mvm-success); }
.mvm-timeline-item.active .dot { background: var(--mvm-primary); box-shadow: 0 0 0 2px var(--mvm-primary); animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100%{box-shadow:0 0 0 2px var(--mvm-primary)}50%{box-shadow:0 0 0 7px rgba(37,99,235,.25)} }
.mvm-timeline-item .body .label { font-size: 14px; font-weight: 600; color: var(--mvm-gray-700); }
.mvm-timeline-item.active .body .label { color: var(--mvm-primary); }
.mvm-timeline-item .body .time  { font-size: 12px; color: var(--mvm-gray-500); margin-top: 2px; }
.mvm-map-icon { background: none !important; border: none !important; }

/* ── Bewertungen ───────────────────────────────────────────── */
.mvm-review-item { border-bottom: 1px solid var(--mvm-gray-100); padding: 20px 0; }
.mvm-review-item:last-child { border-bottom: none; }
.mvm-review-item__header { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.mvm-review-item__avatar  { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.mvm-review-item__name    { font-weight: 700; font-size: 14px; }
.mvm-review-item__date    { font-size: 12px; color: var(--mvm-gray-500); }
.mvm-review-item__title   { font-weight: 700; margin-bottom: 6px; font-size: 15px; }
.mvm-review-item__content { font-size: 14px; color: var(--mvm-gray-700); line-height: 1.7; }
.mvm-review-item__footer  { margin-top: 10px; }
.mvm-vendor-reply { background: var(--mvm-gray-50); border-left: 3px solid var(--mvm-primary); padding: 12px 16px; border-radius: 0 var(--mvm-radius-sm) var(--mvm-radius-sm) 0; margin-top: 12px; font-size: 13px; }
.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 input:checked ~ label { color: #f59e0b; }
.mvm-star-input label:hover,
.mvm-star-input label:hover ~ label { color: #f59e0b; }

/* ── Benachrichtigungen ────────────────────────────────────── */
.mvm-notif-wrap   { position: relative; display: inline-block; }
.mvm-notif-bell   { background: none; border: none; cursor: pointer; font-size: 22px; padding: 4px; position: relative; display: inline-flex; }
.mvm-notif-count  { position: absolute; top: -4px; right: -6px; min-width: 18px; height: 18px; background: var(--mvm-danger); color: #fff; border-radius: 100px; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; padding: 0 4px; }
.mvm-notif-count.pulse { animation: notif-pulse .8s infinite; }
@keyframes notif-pulse { 0%,100%{transform:scale(1)}50%{transform:scale(1.2)} }
.mvm-notif-dropdown { position: absolute; top: calc(100% + 10px); right: 0; width: 340px; background: #fff; border-radius: var(--mvm-radius); box-shadow: var(--mvm-shadow-lg); border: 1px solid var(--mvm-gray-200); overflow: hidden; z-index: 9999; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all .2s; }
.mvm-notif-dropdown.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mvm-notif-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--mvm-gray-100); }
.mvm-notif-header h4 { font-size: 14px; font-weight: 700; }
.mvm-notif-list { max-height: 380px; overflow-y: auto; }
.mvm-notif-item { display: flex; gap: 12px; padding: 13px 16px; cursor: pointer; transition: background .15s; }
.mvm-notif-item:hover   { background: var(--mvm-gray-50); }
.mvm-notif-item.unread  { background: var(--mvm-primary-light); }
.mvm-notif-icon { font-size: 20px; flex-shrink: 0; }
.mvm-notif-body .title  { font-size: 13px; font-weight: 700; }
.mvm-notif-body .msg    { font-size: 12px; color: var(--mvm-gray-500); margin-top: 2px; }

/* ── Featured ──────────────────────────────────────────────── */
.mvm-featured-header { text-align: center; padding: 56px 24px 44px; background: linear-gradient(135deg, #fef3c7, #fde68a); margin-bottom: 32px; }
.mvm-featured-header h1 { font-size: 34px; font-weight: 800; }
.mvm-featured-header .subtitle { color: var(--mvm-gray-600, #4b5563); margin-top: 8px; font-size: 15px; }
.mvm-featured-badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(0,0,0,.65); color: #fff; padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 700; backdrop-filter: blur(4px); }
.mvm-vote-section { padding: 12px 16px; border-top: 1px solid var(--mvm-gray-100); display: flex; align-items: center; gap: 10px; background: var(--mvm-gray-50); }
.mvm-vote-btn { background: none; border: 2px solid var(--mvm-gray-200); border-radius: var(--mvm-radius-sm); cursor: pointer; padding: 6px 14px; font-size: 13px; font-weight: 600; transition: var(--mvm-transition); }
.mvm-vote-btn:hover  { border-color: var(--mvm-primary); color: var(--mvm-primary); }
.mvm-vote-btn.voted  { background: #dcfce7; border-color: var(--mvm-success); color: var(--mvm-success); cursor: not-allowed; }
.mvm-vote-count { font-size: 13px; color: var(--mvm-gray-500); font-weight: 600; }

/* ── Fahrer-Dashboard ──────────────────────────────────────── */
.mvm-driver-status { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: var(--mvm-gray-50); }
.mvm-status-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.mvm-status-dot.available { background: var(--mvm-success); animation: pulse-dot 2s infinite; }
.mvm-status-dot.busy      { background: var(--mvm-warning); }
.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: 18px; margin-bottom: 12px; transition: var(--mvm-transition); background: #fff; }
.mvm-delivery-card.active { border-color: var(--mvm-primary); background: var(--mvm-primary-light); }
.mvm-delivery-card.urgent { border-color: var(--mvm-danger); }

/* ── Loader & Empty ────────────────────────────────────────── */
.mvm-loader  { display: flex; align-items: center; justify-content: center; padding: 48px; }
.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); } }
.mvm-empty { text-align: center; padding: 60px 24px; }
.mvm-empty__icon { font-size: 52px; margin-bottom: 16px; display: block; }
.mvm-empty__text { font-size: 16px; color: var(--mvm-gray-500); }

/* ── Paginierung ───────────────────────────────────────────── */
.mvm-pagination { display: flex; gap: 6px; justify-content: center; padding: 28px 0; flex-wrap: wrap; }
.mvm-page-btn { width: 38px; height: 38px; border: 2px solid var(--mvm-gray-200); border-radius: 8px; cursor: pointer; font-size: 14px; font-weight: 600; background: #fff; transition: var(--mvm-transition); display: flex; align-items: center; justify-content: center; }
.mvm-page-btn:hover, .mvm-page-btn.active { background: var(--mvm-primary); color: #fff; border-color: var(--mvm-primary); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .mvm-dashboard { grid-template-columns: 220px 1fr; }
  .mvm-checkout-grid { grid-template-columns: 1fr 320px; }
}
@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; }
  .mvm-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .mvm-store-header { flex-direction: column; }
}
@media (max-width: 640px) {
  .mvm-search-hero h1  { font-size: 24px; }
  .mvm-search-hero     { padding: 40px 16px; }
  .mvm-search-box      { flex-direction: column; border-radius: var(--mvm-radius); }
  .mvm-search-box button { border-radius: 0 0 var(--mvm-radius) var(--mvm-radius); padding: 14px; }
  .mvm-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mvm-cart-item  { grid-template-columns: 60px 1fr; gap: 10px; }
  .mvm-minicart   { width: calc(100vw - 32px); right: -8px; }
  .mvm-notif-dropdown { width: calc(100vw - 32px); right: -8px; }
  .mvm-filter-panel  { display: none; }
  .mvm-filter-mobile-btn { display: flex !important; }
}
.mvm-filter-mobile-btn { display: none; }
