/* ============================================================
   GASTRO-CI — Design System Global (Client)
   Couleurs inspirées du drapeau ivoirien + ambiance food premium
   ============================================================ */

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

:root {
  --orange:       #FF6B00;
  --orange-light: #FF8C35;
  --orange-dark:  #CC5500;
  --vert:         #009A44;
  --vert-light:   #00C656;
  --or:           #FFD700;
  --blanc:        #FFF8F0;
  --dark-bg:      #0F0700;
  --dark-card:    #1A0E00;
  --dark-surface: #2A1800;
  --dark-border:  rgba(255,107,0,0.15);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.65);
  --text-muted:   rgba(255,255,255,0.4);
  --shadow-orange: 0 8px 32px rgba(255,107,0,0.25);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.4);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-bg: rgba(15,7,0,0.85);
}

body.light-theme {
  --dark-bg: #F8F9FA;
  --dark-card: #FFFFFF;
  --dark-surface: #F0F2F5;
  --dark-border: rgba(0,0,0,0.1);
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #888888;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
  --nav-bg: rgba(255, 255, 255, 0.95);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── Liens ── */
a { text-decoration: none; color: inherit; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  padding: 0 2rem;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}

.navbar-brand {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.4rem; font-weight: 800;
  white-space: nowrap; flex-shrink: 0;
}
.navbar-brand .logo-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.navbar-brand span { color: var(--orange); }

.navbar-menu { display: flex; align-items: center; gap: 1.5rem; }
.navbar-menu a {
  color: var(--text-secondary); font-size: 0.9rem; font-weight: 500;
  padding: 0.4rem 0.8rem; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar-menu a:hover, .navbar-menu a.active { color: var(--text-primary); background: rgba(255,107,0,0.12); }

.navbar-actions { display: flex; align-items: center; gap: 1rem; }

.btn-cart {
  position: relative; background: rgba(255,107,0,0.15); border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange); width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); font-size: 1rem;
}
.btn-cart:hover { background: var(--orange); color: white; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--vert); color: white;
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── BOUTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.5rem; border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
  text-align: center; justify-content: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(255,107,0,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,0,0.5);
}
.btn-secondary {
  background: rgba(255,107,0,0.12); border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange);
}
.btn-secondary:hover { background: rgba(255,107,0,0.2); }
.btn-success {
  background: linear-gradient(135deg, var(--vert), #007A35);
  color: white; box-shadow: 0 4px 20px rgba(0,154,68,0.3);
}
.btn-success:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,154,68,0.4); }
.btn-ghost { background: transparent; border: 1px solid var(--dark-border); color: var(--text-secondary); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ── CARDS ── */
.card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { border-color: rgba(255,107,0,0.4); transform: translateY(-4px); box-shadow: var(--shadow-orange); }

.card-restaurant {
  cursor: pointer; position: relative;
}
.card-restaurant .card-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: var(--transition);
}
.card-restaurant:hover .card-img { transform: scale(1.05); }
.card-restaurant .card-img-wrap { overflow: hidden; height: 200px; }
.card-restaurant .card-body { padding: 1rem 1.2rem 1.2rem; }
.card-restaurant .card-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.card-restaurant .card-subtitle { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 0.7rem; }
.card-restaurant .card-meta { display: flex; align-items: center; gap: 1rem; }

.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.2rem 0.7rem; border-radius: 20px;
  font-size: 0.72rem; font-weight: 600;
}
.badge-orange { background: rgba(255,107,0,0.15); color: var(--orange); }
.badge-vert   { background: rgba(0,154,68,0.15);  color: var(--vert-light); }
.badge-or     { background: rgba(255,215,0,0.15);  color: var(--or); }
.badge-warning { background: rgba(255,165,0,0.15); color: #FFA500; }
.badge-danger  { background: rgba(220,38,38,0.15); color: #F87171; }

/* ── ÉTOILES ── */
.stars { display: flex; gap: 2px; }
.star { font-size: 0.85rem; color: var(--text-muted); }
.star.filled { color: var(--or); }
.rating-text { font-size: 0.8rem; color: var(--text-secondary); font-weight: 600; }

/* ── INPUTS ── */
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-secondary); }
.form-control {
  width: 100%; padding: 0.8rem 1rem;
  background: var(--dark-surface); border: 1px solid var(--dark-border);
  border-radius: var(--radius-md); color: var(--text-primary);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.15);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control select { background: var(--dark-surface); }
select.form-control { cursor: pointer; }

/* ── SEARCH BAR ── */
.search-wrapper {
  position: relative; display: flex; align-items: center;
}
.search-wrapper .search-icon {
  position: absolute; left: 1rem; color: var(--text-muted); pointer-events: none;
}
.search-wrapper .form-control { padding-left: 2.8rem; }
.search-wrapper .btn { position: absolute; right: 0.4rem; padding: 0.5rem 1rem; font-size: 0.85rem; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 70px;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,107,0,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0,154,68,0.08) 0%, transparent 50%),
              var(--dark-bg);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-content { position: relative; z-index: 1; text-align: center; padding: 2rem; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,107,0,0.12); border: 1px solid rgba(255,107,0,0.3);
  padding: 0.4rem 1.2rem; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600; color: var(--orange);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--or));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2.5rem; line-height: 1.7; }

/* ── SECTIONS ── */
.section { padding: 5rem 2rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.section-header p { color: var(--text-secondary); }
.section-title-accent { color: var(--orange); }

/* ── GRID ── */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── FILTERS ── */
.filters {
  display: flex; gap: 0.7rem; flex-wrap: wrap; align-items: center;
  margin-bottom: 2rem;
}
.filter-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.1rem; border-radius: 20px;
  border: 1px solid var(--dark-border); background: var(--dark-card);
  color: var(--text-secondary); font-size: 0.83rem; font-weight: 500;
  cursor: pointer; transition: var(--transition); font-family: 'Poppins', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(255,107,0,0.15); border-color: var(--orange); color: var(--orange);
}

/* ── CARTE LEAFLET ── */
#map {
  width: 100%; height: 500px; border-radius: var(--radius-lg);
  border: 1px solid var(--dark-border); overflow: hidden;
}
.map-container { position: relative; }

/* ── PANIER SIDEBAR ── */
.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 400px; height: 100vh;
  background: var(--dark-card); border-left: 1px solid var(--dark-border);
  z-index: 2000; padding: 1.5rem; display: flex; flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.cart-sidebar.open { right: 0; }
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 1999; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.cart-header h3 { font-size: 1.1rem; font-weight: 700; }
.cart-close { background: none; border: none; color: var(--text-secondary); cursor: pointer; font-size: 1.2rem; }
.cart-item {
  display: flex; gap: 0.8rem; align-items: center;
  padding: 0.8rem; border-radius: var(--radius-md);
  background: var(--dark-surface); margin-bottom: 0.8rem;
}
.cart-item img { width: 55px; height: 55px; border-radius: var(--radius-sm); object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.85rem; font-weight: 600; }
.cart-item-price { font-size: 0.8rem; color: var(--orange); font-weight: 700; }
.cart-qty { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%; border: none;
  background: rgba(255,107,0,0.2); color: var(--orange); cursor: pointer;
  font-size: 0.9rem; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--orange); color: white; }
.cart-footer { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--dark-border); }

/* ── TOAST / NOTIFICATIONS ── */
.toast-container {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.toast {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  padding: 0.9rem 1.3rem; border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.87rem; box-shadow: var(--shadow-card);
  animation: toastIn 0.35s ease;
  min-width: 280px; max-width: 380px;
}
.toast.success { border-left: 3px solid var(--vert); }
.toast.error   { border-left: 3px solid #F87171; }
.toast.info    { border-left: 3px solid var(--orange); }
@keyframes toastIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  z-index: 3000; display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl); padding: 2rem; max-width: 500px; width: 100%;
  transform: scale(0.9); transition: transform 0.3s;
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.modal-title { font-size: 1.2rem; font-weight: 700; }
.modal-close { background: none; border: none; color: var(--text-secondary); cursor: pointer; font-size: 1.3rem; }

/* ── PAIEMENT UI ── */
.payment-methods { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.8rem; margin: 1rem 0; }
.payment-method {
  border: 2px solid var(--dark-border); border-radius: var(--radius-md);
  padding: 1rem; cursor: pointer; transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  background: var(--dark-surface);
}
.payment-method:hover { border-color: var(--orange); }
.payment-method.selected { border-color: var(--orange); background: rgba(255,107,0,0.08); }
.payment-method .pm-logo {
  width: 50px; height: 30px; object-fit: contain; border-radius: 4px;
}
.payment-method .pm-name { font-size: 0.8rem; font-weight: 600; }
.orange-money  .pm-badge { background: #FF6B00; }
.wave-money    .pm-badge { background: #1E3A8A; }
.moov-money    .pm-badge { background: #06B6D4; }
.mtn-money     .pm-badge { background: #FBBF24; color: #000; }
.pm-badge {
  font-size: 0.65rem; font-weight: 700; color: white;
  padding: 0.15rem 0.5rem; border-radius: 4px;
}

/* ── NOTATION ÉTOILES INTERACTIVES ── */
.star-rating { display: flex; gap: 6px; cursor: pointer; }
.star-rating .star-input {
  font-size: 1.8rem; color: var(--text-muted); transition: var(--transition);
  line-height: 1;
}
.star-rating .star-input:hover,
.star-rating .star-input.active { color: var(--or); transform: scale(1.15); }

/* ── PAGE HEADERS ── */
.page-header {
  padding: 7rem 2rem 3rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,107,0,0.1) 0%, transparent 70%);
  text-align: center;
}
.page-header h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 0.5rem; }
.page-header p  { color: var(--text-secondary); }

/* ── LOADER ── */
.loader {
  display: flex; align-items: center; justify-content: center;
  padding: 3rem; flex-direction: column; gap: 1rem;
}
.spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--dark-border);
  border-top-color: var(--orange);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FOOTER ── */
.footer {
  background: var(--dark-card); border-top: 1px solid var(--dark-border);
  padding: 3rem 2rem 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand .brand-name { font-size: 1.4rem; font-weight: 800; color: var(--orange); }
.footer-brand p { color: var(--text-secondary); font-size: 0.85rem; margin-top: 0.5rem; line-height: 1.7; }
.footer h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; color: var(--orange); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul li a { color: var(--text-secondary); font-size: 0.85rem; transition: var(--transition); }
.footer ul li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--dark-border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.animate-fade-up { animation: fadeUp 0.6s ease forwards; }
.float { animation: float 3s ease-in-out infinite; }

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu-overlay {
  position: fixed; inset: 0; background: var(--dark-bg);
  z-index: 3000; padding: 2rem;
  display: flex; flex-direction: column;
  transform: translateY(-100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu-overlay.open { transform: translateY(0); }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.mobile-menu-header .brand-name { font-size: 1.5rem; font-weight: 800; color: var(--text-primary); }
.mobile-menu-header .brand-name span { color: var(--orange); }
#mobile-menu-close { background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu-links a {
  font-size: 1.2rem; font-weight: 600; color: var(--text-secondary);
  display: flex; align-items: center; gap: 1rem; transition: var(--transition);
}
.mobile-menu-links a i { color: var(--orange); width: 24px; text-align: center; }
.mobile-menu-links a:hover, .mobile-menu-links a.active { color: var(--orange); transform: translateX(10px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 0.6rem; height: 60px; }
  .navbar-brand { font-size: 1rem; gap: 5px; }
  .navbar-brand .logo-icon { width: 28px; height: 28px; font-size: 0.8rem; }
  .navbar-menu { display: none; }
  
  /* #theme-toggle { display: none !important; } */
  #nav-login { display: none !important; }
  #nav-user { display: none !important; }
  
  .navbar-actions { gap: 0.4rem; }
  #mobile-menu-toggle { 
    display: flex !important; 
    width: auto !important; 
    padding: 0 10px !important; 
    gap: 5px; 
    font-size: 0.85rem !important;
    background: rgba(255,107,0,0.1) !important;
    border: 1px solid var(--dark-border) !important;
  }
  #mobile-menu-toggle::after { content: "Menu"; font-weight: 600; }
  
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 60px; min-height: auto; padding-bottom: 2rem; }
  .hero-title { font-size: 1.7rem; margin-top: 1.5rem; }
  .hero-subtitle { font-size: 0.85rem; margin-bottom: 1.2rem; }
  .stats-bar { gap: 0.8rem; margin: 1rem 0; }
  .stat-value { font-size: 1.3rem; }
  .stat-label { font-size: 0.65rem; }
  
  .cart-sidebar { width: 100%; right: -100%; }
  .payment-methods { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  #map { height: 280px; }
}
@media (max-width: 480px) {
  .section { padding: 3rem 1rem; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center; padding: 4rem 2rem;
  color: var(--text-secondary);
}
.empty-state i { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }
.empty-state h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }

/* ── CHIP / TAG ── */
.chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--dark-surface); border: 1px solid var(--dark-border);
  padding: 0.25rem 0.7rem; border-radius: 20px; font-size: 0.78rem; color: var(--text-secondary);
}

/* ── COMPOSANTS RÉUTILISABLES ── */
.switch { position: relative; display: inline-block; width: 44px; height: 22px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: var(--dark-surface); border: 1px solid var(--dark-border); transition: .4s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 14px; width: 14px; left: 3px; bottom: 3px; background-color: var(--text-muted); transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--vert); border-color: var(--vert); }
input:checked + .slider:before { transform: translateX(22px); background-color: white; }

.badge-status { padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.st-online { background: rgba(0, 198, 86, 0.15); color: var(--vert); }
.st-offline { background: rgba(248, 113, 113, 0.15); color: #F87171; }
