/* ====================================================================
 * shop-admin.css — V61 (01/05/2026)
 *
 * Desktop polish for shop back-office (admin module).
 * Applies ONLY ≥768px (mobile vue stays untouched <768px).
 *
 * Quick Wins pack :
 *   #1 Container fluid (max-width + adaptive padding)
 *   #2 Orders desktop table
 *   #3 Catalog grid 3-4 columns
 *   #6 Header enriched (status + day KPIs + actions)
 *
 * Pattern : classes utilitaires `.shop-*` (préfixe shop-admin pour éviter
 * collision avec `.z-shop-*` utilisées par shop-public.css côté vitrine).
 * ====================================================================*/

/* ─── Container ─────────────────────────────────────────── */

/* V61-FIX overlap (01/05/2026) :
 * AVANT : #shopScreen avait max-width:1400px + margin:0 auto -> centrage dans
 * le viewport entier sans tenir compte de la sidebar (250px) -> superposition
 * a taille intermediaire 1024-1400px.
 * MAINTENANT : on suit le meme pattern que #facturoScreen, #recettesScreen,
 * etc. (margin-left: var(--sidebar-width)) ET on centre le contenu interne
 * (.shop-header-enhanced + #shopTabContent) avec max-width 1400px.
 */
@media (min-width: 1024px) {
  body.z-authenticated:not(.z-force-mobile) #shopScreen {
    margin-left: var(--sidebar-width);
  }
}

/* Centrage du contenu interne (le header simple + tabs prennent toute la
 * largeur de la zone main pour ne pas casser le sticky V2). */
.shop-header-enhanced,
#shopTabContent {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  #shopTabContent {
    padding: 0 24px 100px 24px !important;
  }
}

@media (min-width: 1024px) {
  #shopTabContent {
    padding: 0 32px 100px 32px !important;
  }
}

@media (min-width: 1280px) {
  #shopTabContent {
    padding: 0 48px 100px 48px !important;
  }
}

/* ─── Header enriched (KPIs jour + status badge) ────────── */

.shop-header-enhanced {
  display: none;
}

@media (min-width: 1024px) {
  .shop-header-enhanced {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 32px 16px;
    background: #FAFAF9;
    border-bottom: 1px solid #E5E7EB;
    flex-wrap: wrap;
  }
}

.shop-header-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}

.shop-header-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.shop-header-stat-label {
  font-size: 10px;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.shop-header-stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #1A1632;
  font-variant-numeric: tabular-nums;
}

.shop-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.shop-status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.shop-status-badge.open {
  background: #ECFDF5;
  color: #059669;
}
.shop-status-badge.closed {
  background: #FEE2E2;
  color: #DC2626;
}

.shop-header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.shop-header-action {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  color: #1A1632;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.shop-header-action:hover {
  background: #F3F4F6;
}
.shop-header-action.primary {
  background: #7C3AED;
  color: #FFFFFF;
  border-color: #7C3AED;
}
.shop-header-action.primary:hover {
  background: #6D28D9;
}

/* ─── Catalog grid (≥768px) ─────────────────────────────── */

.shop-catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-top: 4px;
}

@media (min-width: 768px) {
  .shop-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .shop-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1400px) {
  .shop-catalog-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .shop-catalog-grid > div[data-action="shopEditProduct"] {
    background: #FFFFFF;
    border: 1px solid #E5E7EB !important;
    border-radius: 12px;
    padding: 16px !important;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .shop-catalog-grid > div[data-action="shopEditProduct"]:hover {
    border-color: #7C3AED !important;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.08);
  }
}

/* ─── Orders : mobile cards (default) | desktop table (≥1024px) ─── */

.shop-orders-mobile { display: block; }
.shop-orders-desktop { display: none; }

@media (min-width: 1024px) {
  .shop-orders-mobile { display: none; }
  .shop-orders-desktop { display: block; }
}

.shop-orders-table-wrap {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 12px;
}

.shop-orders-table {
  width: 100%;
  border-collapse: collapse;
}

.shop-orders-table thead {
  background: #FAFAF9;
}

.shop-orders-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.shop-orders-table th.right { text-align: right; }
.shop-orders-table th.center { text-align: center; }

.shop-orders-table td {
  padding: 14px 16px;
  border-top: 1px solid #F3F4F6;
  font-size: 13px;
  color: #1A1632;
  vertical-align: middle;
}

.shop-orders-table td.right { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
.shop-orders-table td.center { text-align: center; }

.shop-orders-table tbody tr {
  cursor: pointer;
  transition: background 0.1s;
}
.shop-orders-table tbody tr:hover {
  background: #FAFAFA;
}

.shop-orders-table .order-num {
  font-weight: 700;
  color: #1A1632;
  font-variant-numeric: tabular-nums;
}

.shop-orders-table .order-customer {
  font-size: 12px;
  color: #6B7280;
  margin-top: 2px;
}

.shop-orders-table .order-items {
  font-size: 12px;
  color: #6B7280;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-orders-table .order-asap {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #DC2626;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.shop-orders-table .order-time-scheduled {
  font-size: 12px;
  color: #6B7280;
  font-variant-numeric: tabular-nums;
}

.shop-order-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
}
.shop-order-status.new,
.shop-order-status.paid { background: #FEF3C7; color: #92400E; }
.shop-order-status.preparing { background: #EDE9FE; color: #5B21B6; }
.shop-order-status.ready { background: #ECFDF5; color: #059669; }
.shop-order-status.delivering { background: #DBEAFE; color: #1E40AF; }
.shop-order-status.delivered,
.shop-order-status.picked_up { background: #F3F4F6; color: #6B7280; }
.shop-order-status.refunded,
.shop-order-status.cancelled { background: #FEE2E2; color: #DC2626; }

.shop-orders-table-row-action {
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  background: #7C3AED;
  color: #FFFFFF;
  white-space: nowrap;
}
.shop-orders-table-row-action.ready { background: #059669; }
.shop-orders-table-row-action.done { background: #6B7280; }

.shop-orders-table-section-title {
  background: #FAFAF9;
  font-size: 11px;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  border-top: 1px solid #E5E7EB;
}

.shop-orders-empty {
  text-align: center;
  padding: 60px 0;
  color: #9CA3AF;
  font-size: 14px;
}

/* ─── KPI grid Stats (4 cols desktop) ───────────────────── */

.shop-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .shop-kpi-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.shop-kpi-card {
  padding: 16px;
  background: #FAFAF9;
  border-radius: 10px;
  border: 1px solid #F3F4F6;
}

@media (min-width: 768px) {
  .shop-kpi-card {
    padding: 20px;
  }
}

.shop-kpi-label {
  font-size: 10px;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.shop-kpi-value {
  font-size: 18px;
  font-weight: 700;
  color: #1A1632;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
  .shop-kpi-value {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .shop-kpi-value {
    font-size: 28px;
  }
}

.shop-kpi-card.accent-revenue .shop-kpi-value { color: #059669; }
.shop-kpi-card.accent-orders .shop-kpi-value { color: #7C3AED; }


/* ====================================================================
 * V61-DESKTOP-2 (01/05/2026) — Polish supplémentaire desktop
 * #5 Créneaux 2-col | #7 Tabs sticky | #8 Clients table |
 * #9 Config max-width | #4 Top 5 produits visuels
 * ====================================================================*/

/* ─── #7 Onglets sticky desktop ─────────────────────────── */

@media (min-width: 1024px) {
  .z-shop-tabs {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #FFFFFF;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  }
  .z-shop-header {
    position: sticky;
    top: 0;
    z-index: 6;
    background: #FFFFFF;
  }
}

/* ─── #5 Créneaux : grille 2-col desktop pour mode "always" ─── */

.shop-slots-grid-always {
  display: block;
}

@media (min-width: 1024px) {
  .shop-slots-grid-always {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 4px;
  }
}

/* ─── #8 Clients : mobile cards | desktop table ─────────── */

.shop-clients-mobile { display: block; }
.shop-clients-desktop { display: none; }

@media (min-width: 1024px) {
  .shop-clients-mobile { display: none; }
  .shop-clients-desktop { display: block; }
}

.shop-clients-table-wrap {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 12px;
}

.shop-clients-table {
  width: 100%;
  border-collapse: collapse;
}

.shop-clients-table thead {
  background: #FAFAF9;
}

.shop-clients-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.shop-clients-table th.right { text-align: right; }
.shop-clients-table th.center { text-align: center; }

.shop-clients-table td {
  padding: 14px 16px;
  border-top: 1px solid #F3F4F6;
  font-size: 13px;
  color: #1A1632;
  vertical-align: middle;
}
.shop-clients-table td.right { text-align: right; font-variant-numeric: tabular-nums; }

.shop-clients-table tbody tr {
  cursor: pointer;
  transition: background 0.1s;
}
.shop-clients-table tbody tr:hover {
  background: #FAFAFA;
}

.shop-client-cell-name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shop-client-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #7C3AED;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.shop-client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.shop-client-name-text {
  font-weight: 600;
  color: #1A1632;
}

.shop-client-tier-badge {
  display: inline-block;
  margin-left: 6px;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  background: #FDE68A;
  color: #92400E;
  font-weight: 600;
}

/* ─── #9 Config : max-width desktop pour confort lecture ─── */

@media (min-width: 1024px) {
  #shopTabContent .shop-config-container {
    max-width: 720px;
  }
}

/* ─── #4 Top 5 produits — barres horizontales ───────────── */

.shop-top-products {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .shop-top-products {
    padding: 20px;
  }
}

.shop-top-products-title {
  font-size: 11px;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.shop-top-products-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shop-top-product-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shop-top-product-rank {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F3F4F6;
  color: #6B7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.shop-top-product-row:nth-child(1) .shop-top-product-rank { background: #FEF3C7; color: #92400E; }
.shop-top-product-row:nth-child(2) .shop-top-product-rank { background: #E5E7EB; color: #6B7280; }
.shop-top-product-row:nth-child(3) .shop-top-product-rank { background: #FED7AA; color: #C2410C; }

.shop-top-product-name {
  font-size: 13px;
  font-weight: 600;
  color: #1A1632;
  flex-shrink: 0;
  min-width: 120px;
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .shop-top-product-name {
    min-width: 180px;
    max-width: 360px;
  }
}

.shop-top-product-bar-wrap {
  flex: 1;
  height: 8px;
  background: #F3F4F6;
  border-radius: 999px;
  overflow: hidden;
  min-width: 60px;
}

.shop-top-product-bar {
  height: 100%;
  background: linear-gradient(90deg, #7C3AED 0%, #A78BFA 100%);
  border-radius: 999px;
}

.shop-top-product-qty {
  font-size: 12px;
  font-weight: 700;
  color: #1A1632;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 40px;
  text-align: right;
}


/* ====================================================================
 * V62-SHOP-LIVE (01/05/2026) — Mode kiosque tablette/iPhone
 * Auto-refresh 60s + Wake Lock + Fullscreen optionnel
 * Theme sombre haute lisibilite, cards XXL, animations subtiles
 * ====================================================================*/

/* Bouton trigger dans header enrichi : look distinctif (verde-violet gradient) */
.shop-header-action.shop-live-trigger {
  background: linear-gradient(135deg, #10B981 0%, #7C3AED 100%);
  color: #FFFFFF;
  border-color: transparent;
  font-weight: 700;
}
.shop-header-action.shop-live-trigger:hover {
  background: linear-gradient(135deg, #059669 0%, #6D28D9 100%);
  transform: translateY(-1px);
}

/* === Mode kiosque actif : masque sidebar + header app === */
body.shop-live-mode {
  overflow: hidden;
  background: #0F0E1A;
}
body.shop-live-mode .z-sidebar,
body.shop-live-mode #zenoiaFloatingNav,
body.shop-live-mode .z-shop-header,
body.shop-live-mode .z-shop-tabs,
body.shop-live-mode .shop-header-enhanced {
  display: none !important;
}
body.shop-live-mode #shopScreen {
  margin-left: 0 !important;
  position: fixed;
  inset: 0;
  background: #0F0E1A;
  color: #E5E7EB;
  z-index: 9000;
  overflow-y: auto;
}

.shop-live-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 16px;
}

@media (min-width: 768px) {
  .shop-live-container { padding: 24px 32px; }
}

/* === Header live (clock + shop + exit) === */
.shop-live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #2A2840;
  margin-bottom: 24px;
  gap: 16px;
}

.shop-live-header-left {
  flex: 1;
  min-width: 0;
}

.shop-live-clock {
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  line-height: 1;
}

@media (min-width: 768px) {
  .shop-live-clock { font-size: 48px; }
}

.shop-live-date {
  font-size: 13px;
  color: #9CA3AF;
  margin-top: 6px;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .shop-live-date { font-size: 15px; }
}

.shop-live-header-center {
  flex: 1;
  text-align: center;
}

.shop-live-shop {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .shop-live-shop { font-size: 22px; }
}

.shop-live-counter {
  font-size: 12px;
  color: #A78BFA;
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shop-live-header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.shop-live-exit-btn {
  padding: 10px 18px;
  background: #DC2626;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.15s;
}
.shop-live-exit-btn:hover {
  background: #B91C1C;
}

@media (min-width: 768px) {
  .shop-live-exit-btn { padding: 12px 24px; font-size: 14px; }
}

/* === Grid commandes responsive === */
.shop-live-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  flex: 1;
  align-content: start;
}

@media (min-width: 600px) {
  .shop-live-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .shop-live-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (min-width: 1400px) {
  .shop-live-grid { grid-template-columns: repeat(4, 1fr); }
}

/* === Card commande === */
.shop-live-card {
  background: #1A1830;
  border: 2px solid #2A2840;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s;
}

.shop-live-card.status-paid,
.shop-live-card.status-new {
  border-color: #F59E0B;
  background: linear-gradient(135deg, #1A1830 0%, #2A1F0F 100%);
}

.shop-live-card.status-preparing {
  border-color: #7C3AED;
  background: linear-gradient(135deg, #1A1830 0%, #1F1530 100%);
}

.shop-live-card.status-ready {
  border-color: #10B981;
  background: linear-gradient(135deg, #1A1830 0%, #0F2A20 100%);
}

.shop-live-card.status-delivering {
  border-color: #3B82F6;
  background: linear-gradient(135deg, #1A1830 0%, #0F1A2A 100%);
}

/* Animation pulsante pour nouvelles commandes (<2 min) */
.shop-live-card-new {
  animation: shopLivePulse 2s ease-in-out infinite;
}

@keyframes shopLivePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(245, 158, 11, 0); }
}

.shop-live-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shop-live-card-num {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
}

.shop-live-card-status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shop-live-card-status.status-paid,
.shop-live-card-status.status-new { background: #F59E0B; color: #FFFFFF; }
.shop-live-card-status.status-preparing { background: #7C3AED; color: #FFFFFF; }
.shop-live-card-status.status-ready { background: #10B981; color: #FFFFFF; }
.shop-live-card-status.status-delivering { background: #3B82F6; color: #FFFFFF; }

.shop-live-card-customer {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
}

.shop-live-card-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #9CA3AF;
  gap: 8px;
}

.shop-live-asap {
  background: #DC2626;
  color: #FFFFFF;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.shop-live-card-age {
  color: #9CA3AF;
}

.shop-live-card-items {
  font-size: 14px;
  line-height: 1.6;
  color: #D1D5DB;
  padding: 12px 0;
  border-top: 1px solid #2A2840;
  border-bottom: 1px solid #2A2840;
  flex: 1;
  word-break: break-word;
}

.shop-live-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-live-card-total {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
}

.shop-live-action {
  padding: 10px 18px;
  background: #7C3AED;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, transform 0.1s;
}
.shop-live-action:hover { transform: translateY(-1px); }
.shop-live-action.ready { background: #10B981; }
.shop-live-action.ready:hover { background: #059669; }
.shop-live-action.done { background: #6B7280; }
.shop-live-action.done:hover { background: #4B5563; }

/* Boutons ASAP rapides (5/10/15/20/30 min) sur card paid sans estimation */
.shop-live-asap-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.shop-live-asap-btn {
  padding: 8px 12px;
  background: #2A2840;
  color: #FFFFFF;
  border: 1px solid #4A4860;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  min-width: 44px;
}
.shop-live-asap-btn:hover {
  background: #7C3AED;
  border-color: #7C3AED;
}

/* === Empty state === */
.shop-live-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  min-height: 50vh;
}

.shop-live-empty-icon {
  font-size: 60px;
  color: #4B5563;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.shop-live-empty-text {
  font-size: 22px;
  font-weight: 700;
  color: #9CA3AF;
  margin-bottom: 8px;
}

.shop-live-empty-sub {
  font-size: 14px;
  color: #6B7280;
  max-width: 400px;
  line-height: 1.5;
}

/* === Footer indicator === */
.shop-live-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #2A2840;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #6B7280;
}

.shop-live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  animation: shopLiveBlink 2s ease-in-out infinite;
}

@keyframes shopLiveBlink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
