/* ============================================================
   Fleur Occitane — Espace Client B2B
   Palette : ardoise #3B3F52 | or #C4952A | or clair #EDCF7A
   ============================================================ */

:root {
  --dark:   #3B3F52;
  --gold:   #C4952A;
  --gold-l: #EDCF7A;
  --text:   #1A1A1A;
  --muted:  #6B7280;
  --border: #E5E7EB;
  --bg:     #F8F7F4;
  --white:  #ffffff;
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: #fff;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

a { text-decoration: none; color: var(--gold); }
a:hover { opacity: .8; }

/* ── TOP BAR ─────────────────────────────────────────────── */
.fo-topbar {
  background: var(--dark);
  padding: 8px 0;
  padding-top: calc(8px + env(safe-area-inset-top));
  font-size: 0.8rem;
}
.fo-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fo-topbar-company {
  color: var(--gold-l);
  display: flex;
  align-items: center;
  gap: 6px;
}
.fo-topbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fo-topbar-right a {
  color: var(--gold-l);
  font-size: 0.8rem;
  text-decoration: none;
  opacity: 0.85;
}
.fo-topbar-right a:hover { color: var(--gold); opacity: 1; }
.fo-topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(196,149,42,.3);
  color: var(--gold-l) !important;
  transition: background .15s, border-color .15s;
}
.fo-topbar-social:hover {
  background: rgba(196,149,42,.12);
  border-color: var(--gold);
  color: var(--gold) !important;
  opacity: 1 !important;
}
.fo-topbar-social--wa:hover  { background: rgba(37,211,102,.15); border-color: #25D366; color: #25D366 !important; }
.fo-topbar-social--fb:hover  { background: rgba(24,119,242,.15); border-color: #1877F2; color: #1877F2 !important; }
.fo-topbar-social--ig:hover  { background: rgba(225,48,108,.15);  border-color: #E1306C; color: #E1306C !important; }
.fo-topbar-logout {
  padding: 3px 10px;
  border-radius: 14px;
  font-size: 0.75rem;
  border: 1px solid rgba(255,255,255,.15);
  margin-left: 6px;
}
.fo-topbar-logout:hover { border-color: rgba(255,255,255,.4); }

/* ── HEADER ──────────────────────────────────────────────── */
.fo-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--border);
}
.fo-header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}
.fo-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.fo-logo img {
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  background: var(--dark);
  border-radius: 6px;
  padding: 4px 8px;
}
.fo-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.fo-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0 18px;
  height: 68px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.fo-nav a:hover, .fo-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  opacity: 1;
}
.fo-cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-left: auto;
  transition: border-color .2s, color .2s;
  position: relative;
}
.fo-cart-btn:hover { border-color: var(--gold); color: var(--gold); opacity: 1; }
.fo-cart-badge {
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── MAIN ────────────────────────────────────────────────── */
.fo-main { padding: 40px 0 80px; min-height: 60vh; }

/* ── PAGE HEADER ─────────────────────────────────────────── */
.fo-page-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.fo-page-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.fo-page-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 4px 0 0;
}

/* ── LOGIN ───────────────────────────────────────────────── */
.fo-login-body {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.fo-login-wrapper {
  width: 100%;
  max-width: 420px;
  padding: 24px;
}
.fo-login-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  padding: 40px 36px;
}
.fo-login-logo {
  text-align: center;
  margin-bottom: 24px;
}
.fo-login-logo img {
  background: var(--dark);
  border-radius: 8px;
  padding: 6px 12px;
}
.fo-login-title {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 4px;
}
.fo-login-subtitle {
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  margin: 0 0 28px;
}
.fo-login-form .form-label { font-weight: 500; font-size: 0.88rem; }
.fo-login-form .form-control { border-color: var(--border); }
.fo-login-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,149,42,.15);
}
.fo-login-contact {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 20px 0 0;
}

/* ── BOUTONS ─────────────────────────────────────────────── */
.fo-btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 0.92rem;
  transition: background .2s, border-color .2s;
  border: 1px solid var(--gold);
  cursor: pointer;
}
.fo-btn-primary:hover {
  background: #A87E22;
  border-color: #A87E22;
  color: #fff;
  opacity: 1;
}
.fo-btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 0.92rem;
  transition: border-color .2s;
  cursor: pointer;
}
.fo-btn-outline:hover { border-color: var(--gold); color: var(--gold); opacity: 1; }

/* ── CATALOGUE ───────────────────────────────────────────── */
.fo-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.fo-product-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.fo-product-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.fo-product-img {
  background: var(--bg);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fo-product-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.fo-product-info {
  padding: 14px 16px 8px;
  flex: 1;
}
.fo-product-ref {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.fo-product-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.3;
}
.fo-product-price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
}
.fo-price-quote { color: var(--muted); font-weight: 400; font-style: italic; }
.fo-product-actions { padding: 12px 16px 16px; }
.fo-add-form { width: 100%; }
.fo-qty-row {
  display: flex;
  gap: 8px;
}
.fo-qty-input {
  width: 72px;
  flex-shrink: 0;
  border-color: var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  text-align: center;
}
.fo-qty-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,149,42,.15);
}
.fo-btn-add {
  flex: 1;
  background: var(--dark);
  color: var(--gold-l);
  font-weight: 600;
  border-color: var(--dark);
  border-radius: 6px;
  font-size: 0.88rem;
  transition: background .2s;
}
.fo-btn-add:hover { background: #2E3244; color: var(--gold-l); border-color: #2E3244; }

/* ── PANIER ──────────────────────────────────────────────── */
.fo-cart-table {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
.fo-cart-header {
  display: grid;
  grid-template-columns: 1fr 120px 100px 120px;
  gap: 0;
  padding: 12px 20px;
  background: var(--bg);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.fo-cart-row {
  display: grid;
  grid-template-columns: 1fr 120px 100px 120px;
  gap: 0;
  padding: 14px 20px;
  align-items: center;
  border-top: 1px solid var(--border);
}
.fo-cart-row:hover { background: var(--bg); }
.fo-cart-ref { font-size: 0.75rem; color: var(--muted); display: block; }
.fo-cart-name { font-weight: 500; font-size: 0.92rem; }
.fo-cart-price { color: var(--muted); font-size: 0.9rem; }
.fo-cart-total { font-weight: 700; color: var(--gold); }
.fo-cart-footer {
  padding: 16px 20px;
  border-top: 2px solid var(--border);
  background: var(--bg);
}
.fo-cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.fo-total-amount { color: var(--gold); font-size: 1.2rem; }
.fo-cart-note { color: var(--muted); font-size: 0.82rem; margin: 8px 0 0; }
.fo-cart-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}
.fo-order-section {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  background: var(--bg);
}
.fo-order-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 16px;
}
.fo-btn-order {
  padding: 12px 32px;
  font-size: 1rem;
}

/* ── CONFIRMATION ────────────────────────────────────────── */
.fo-confirm {
  max-width: 540px;
  margin: 60px auto;
  text-align: center;
}
.fo-confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.fo-confirm h1 { font-size: 1.6rem; font-weight: 700; margin-bottom: 12px; }
.fo-confirm-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }
.fo-confirm-lines {
  background: var(--bg);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  margin-bottom: 28px;
}
.fo-confirm-lines h3 { font-size: 0.88rem; font-weight: 700; margin: 0 0 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.fo-confirm-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.fo-confirm-line:last-child { border-bottom: none; }
.fo-confirm-actions { display: flex; gap: 12px; justify-content: center; }

/* ── COMMANDES ───────────────────────────────────────────── */
.fo-orders-list { display: flex; flex-direction: column; gap: 16px; }
.fo-order-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  background: #fff;
  transition: box-shadow .2s;
}
.fo-order-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.fo-order-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.fo-order-num { font-weight: 700; display: block; }
.fo-order-ref { font-size: 0.8rem; color: var(--muted); }
.fo-order-meta { text-align: right; }
.fo-order-date { display: block; font-size: 0.82rem; color: var(--muted); }
.fo-order-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
}
/* Statuts SQLite */
.fo-status-draft     { background: #FEF3C7; color: #92400E; }
.fo-status-confirmed { background: #DBEAFE; color: #1E40AF; }
.fo-status-shipped   { background: #D1FAE5; color: #065F46; }
.fo-status-invoiced  { background: #E0E7FF; color: #3730A3; }
.fo-status-cancelled { background: #FEE2E2; color: #991B1B; }
/* Compat Dolibarr */
.fo-status-0 { background: #F3F4F6; color: var(--muted); }
.fo-status-1 { background: #FEF3C7; color: #92400E; }
.fo-status-2 { background: #DBEAFE; color: #1E40AF; }
.fo-status-3 { background: #D1FAE5; color: #065F46; }
.fo-status--1 { background: #FEE2E2; color: #991B1B; }
.fo-order-lines { border-top: 1px solid var(--border); padding-top: 12px; }
.fo-order-line {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 0.88rem;
  gap: 12px;
}
.fo-order-line span:first-child { flex: 1; }
.fo-order-more { font-size: 0.8rem; color: var(--muted); padding-top: 4px; }
.fo-order-total {
  text-align: right;
  padding-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}
.fo-order-total strong { color: var(--gold); }

/* ── VIDE ────────────────────────────────────────────────── */
.fo-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
}
.fo-empty-sub { font-size: 0.88rem; margin-top: 8px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.fo-footer {
  background: var(--dark);
  color: rgba(237,207,122,.7);
  padding: 20px 0;
  font-size: 0.82rem;
}
.fo-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── FLASH MESSAGES ──────────────────────────────────────── */
.fo-flash {
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  font-weight: 500;
}
.fo-flash--success { background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; }
.fo-flash--error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }

/* ── FILTRES CATÉGORIES ──────────────────────────────────── */
.fo-cat-tab {
  padding: 0 16px;
  height: 36px;
  line-height: 36px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  background: #fff;
  transition: all .2s;
  white-space: nowrap;
}
.fo-cat-tab:hover { border-color: var(--gold); color: var(--gold); opacity: 1; }
.fo-cat-tab--active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.fo-cat-tab--active:hover { opacity: .9; color: #fff; }

/* ── EN-TÊTE CATÉGORIE dans liste rapide ─────────────────── */
.fo-categ-header {
  background: var(--dark);
  color: var(--gold-l);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 7px 20px;
}

/* ── COMMANDE RAPIDE (liste B2B) ─────────────────────────── */
.fo-quick-grid {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.fo-quick-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  transition: background .15s;
}
.fo-quick-row:last-child { border-bottom: none; }
.fo-quick-row:hover { background: #FAFAF8; }
.fo-quick-row--active { background: #FFFBF0; border-left: 3px solid var(--gold); }
.fo-quick-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
/* Photo produit dans la liste rapide */
.fo-quick-photo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  cursor: zoom-in;
  transition: opacity .15s;
}
.fo-quick-photo:hover { opacity: .85; }

/* ── Lightbox ─────────────────────────────────────────────── */
.fo-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 24px;
}
.fo-lightbox.open { display: flex; }
.fo-lightbox img {
  max-width: min(700px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 48px rgba(0,0,0,.5);
  cursor: default;
}
.fo-lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
}
.fo-lightbox-close {
  position: absolute;
  top: 16px; right: 20px;
  color: rgba(255,255,255,.7);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  padding: 4px 10px;
  transition: color .15s;
}
.fo-lightbox-close:hover { color: #fff; }
.fo-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  z-index: 9001;
}
.fo-lightbox-nav:hover { background: rgba(0,0,0,.7); }
.fo-lightbox-prev { left: 16px; }
.fo-lightbox-next { right: 16px; }
.fo-lightbox-dots {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  pointer-events: none;
}
.lb-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}
.lb-dot--active { background: #fff; }
.fo-card-img-count {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 12px;
  pointer-events: none;
}

/* Badge initiales coloré */
.fo-quick-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
  background: var(--dark);
  letter-spacing: .02em;
}
/* Couleurs par famille (basées sur les 3 premières lettres de la ref) */
.fo-badge-lis { background: #9B59B6; }
.fo-badge-ane { background: #2980B9; }
.fo-badge-piv { background: #E91E8C; }
.fo-badge-gir { background: #E67E22; }
.fo-badge-cel { background: #E74C3C; }
.fo-badge-rei { background: #16A085; }
.fo-badge-feu { background: #27AE60; }

.fo-quick-ref {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  flex-shrink: 0;
  width: 80px;
}
.fo-quick-name {
  font-weight: 500;
  font-size: 0.92rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fo-quick-desc {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
}
/* Badges déclinaisons */
.fo-variant-sub {
  display: flex;
  gap: 4px;
  margin-top: 3px;
  flex-wrap: wrap;
}
.fo-variant-color, .fo-variant-size, .fo-variant-variety {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 20px;
  white-space: nowrap;
}
.fo-variant-color   { background: #EDE9FE; color: #5B21B6; }
.fo-variant-variety { background: #DCFCE7; color: #15803D; }
.fo-variant-size    { background: #FEF3C7; color: #92400E; }

.fo-price-botte {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
}
.fo-price-botte small { font-size: 0.68rem; font-weight: 400; color: var(--muted); }
.fo-price-details {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 1px;
  white-space: nowrap;
}

.fo-quick-price {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  min-width: 120px;
  text-align: right;
}
.fo-quick-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
/* ── STEPPER +/- ─────────────────────────────────────────── */
.fo-stepper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fo-stepper-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  transition: border-color .15s, background .15s, color .15s;
  user-select: none;
  touch-action: manipulation;
}
.fo-stepper-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.fo-stepper-plus {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}
.fo-stepper-plus:hover {
  background: #A87E22;
  border-color: #A87E22;
  color: #fff;
}
.fo-stepper-btn:active { transform: scale(.9); }

.fo-qty-quick {
  width: 46px;
  text-align: center;
  border: none;
  border-bottom: 2px solid var(--border);
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  padding: 2px 0;
  background: transparent;
  outline: none;
  transition: border-color .15s, color .15s;
  -moz-appearance: textfield;
}
.fo-qty-quick::-webkit-inner-spin-button,
.fo-qty-quick::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.fo-qty-quick::placeholder { color: #D1D5DB; font-weight: 400; font-size: 0.9rem; }
.fo-qty-quick:focus { border-bottom-color: var(--gold); outline: none; }
/* Ligne active : chiffre et bouton − en or */
.fo-quick-row--active .fo-qty-quick {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.fo-quick-row--active .fo-stepper-btn:not(.fo-stepper-plus) {
  border-color: var(--gold);
  color: var(--gold);
}

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

/* ── TOGGLE VUE LISTE / GRILLE ───────────────────────────── */
.fo-view-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.fo-view-btn {
  background: #fff;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: background .15s, color .15s;
}
.fo-view-btn:first-child { border-right: 1px solid var(--border); }
.fo-view-btn:hover { background: #F8F7F4; color: var(--dark); }
.fo-view-btn--active { background: var(--dark); color: #fff !important; }
.fo-view-btn--active:hover { background: var(--dark); }

/* Éléments cachés en mode liste (défaut) */
.fo-card-img-wrap      { display: none; }
.fo-card-attrs         { display: none; }
.fo-card-unit-pill     { display: none; }
.fo-card-price-pill    { display: none; }
.fo-card-ref-inline    { display: none; }
.fo-price-tige-badge { display: none; }

/* ── VUE GRILLE (mode cartes) ────────────────────────────── */
.fo-quick-grid--cards {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  border: none;
  background: transparent;
  overflow: visible;
  border-radius: 0;
}
.fo-quick-grid--cards .fo-categ-header {
  grid-column: 1 / -1;
}
.fo-quick-grid--cards .fo-quick-row {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  padding: 0;
  gap: 0;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  overflow: hidden;
  transition: box-shadow .2s, transform .15s;
}
.fo-quick-grid--cards .fo-quick-row:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.fo-quick-grid--cards .fo-quick-row--active {
  border-color: var(--gold);
  background: #FFFBF0;
}
.fo-quick-grid--cards .fo-quick-row:last-child {
  border-bottom: 1px solid var(--border);
}

/* Photo pleine largeur en haut de la carte */
.fo-quick-grid--cards .fo-card-img-wrap {
  display: block;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  min-width: 0;
}
.fo-quick-grid--cards .fo-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.fo-quick-grid--cards .fo-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--dark) 0%, #5a5f7a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.25);
}

/* Bloc info en colonne */
.fo-quick-grid--cards .fo-quick-info {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 14px 16px 8px;
  width: 100%;
  min-width: 0;
  flex-shrink: 0;
  flex-basis: auto;
}
.fo-quick-grid--cards .fo-quick-photo { display: none; }
.fo-quick-grid--cards .fo-quick-badge { display: none; }
.fo-quick-grid--cards .fo-quick-desc  { display: none; }
.fo-quick-grid--cards .fo-quick-name {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  white-space: normal;
}
.fo-quick-grid--cards .fo-card-ref-inline {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--muted);
  font-family: monospace;
  font-weight: 400;
  margin-left: 4px;
}
.fo-quick-grid--cards .fo-quick-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
  text-align: left;
  font-size: 0.82rem;
}
.fo-quick-grid--cards .fo-variant-sub    { display: none; }
.fo-quick-grid--cards .fo-price-details  { white-space: normal; }
.fo-quick-grid--cards .fo-price-per-tige { display: none; }
.fo-quick-grid--cards .fo-card-attr--desc { display: none; }

/* Attributs */
.fo-quick-grid--cards .fo-card-attrs {
  display: block;
  padding: 2px 16px 10px;
  border-bottom: 1px solid #F3F4F6;
}
.fo-card-attr {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
  font-size: 0.81rem;
  border-bottom: 1px solid #F9FAFB;
}
.fo-card-attr:last-child { border-bottom: none; }
.fo-card-attr span:first-child { color: #9CA3AF; }
.fo-card-attr span:last-child  { font-weight: 500; color: var(--dark); text-align: right; }
.fo-card-attr--desc span { color: #9CA3AF; font-style: italic; font-size: 0.78rem; }

/* Barre actions en bas */
.fo-quick-grid--cards .fo-quick-actions {
  padding: 10px 14px;
  border-top: 1px solid #F3F4F6;
  gap: 6px;
  flex-shrink: 0;
  width: 100%;
  justify-content: space-between;
}
.fo-quick-grid--cards .fo-card-unit-pill {
  display: inline-flex;
  align-items: center;
  background: #F3F4F6;
  color: #6B7280;
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.fo-quick-grid--cards .fo-qty-unit { display: none; }
.fo-quick-grid--cards .fo-row-total { display: none; }
/* Pill stock en barre action */
.fo-quick-grid--cards .fo-card-price-pill {
  display: inline-flex;
  align-items: center;
  background: #065F46;
  color: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
  gap: 3px;
}
/* Badge prix/tige : visible en grille, dans le bloc info */
.fo-quick-grid--cards .fo-price-tige-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 20px;
  background: #D1FAE5;
  color: #065F46;
}
/* Stock : caché en grille depuis le bloc info (la pill actions le remplace) */
.fo-quick-grid--cards .fo-quick-price .fo-stock { display: none; }
/* Couleurs pill stock */
.fo-stock-pill--out { background: #DC2626 !important; }
.fo-stock-pill--low { background: #D97706 !important; }
.fo-quick-grid--cards .fo-stepper { flex: 1; justify-content: center; }
.fo-quick-grid--cards .fo-qty-quick { flex: 1; min-width: 0; text-align: center; }

.fo-quick-footer {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 16px 0;
}
.fo-quick-footer > div { flex: 1; }
.fo-note-label { font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.fo-note-input { font-size: 0.9rem; border-color: var(--border); }
.fo-btn-order { padding: 12px 32px; white-space: nowrap; flex-shrink: 0; }
.fo-cart-btn-large {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color .2s;
  position: relative;
}
.fo-cart-btn-large:hover { border-color: var(--gold); color: var(--gold); opacity: 1; }

/* ── DÉTAIL COMMANDE ─────────────────────────────────────── */
.fo-order-detail-grid { display: grid; grid-template-columns: 280px 1fr; gap: 24px; }
.fo-detail-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  height: fit-content;
}
.fo-detail-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin: 0 0 16px; }
.fo-dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; margin: 0; }
.fo-dl dt { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.fo-dl dd { font-size: 0.88rem; margin: 0; }
.fo-detail-lines h3 { font-size: 0.88rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin: 0 0 12px; }

/* ── BOUTON SUPPRIMER dans le panier ─────────────────────── */
.fo-remove-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0 4px;
  transition: color .2s;
  line-height: 1;
}
.fo-remove-btn:hover { color: #EF4444; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .fo-header-inner { height: 56px; gap: 12px; }
  .fo-nav { gap: 0; }
  .fo-nav a { padding: 0 10px; font-size: 0.85rem; height: 56px; }

  .fo-quick-ref { display: none; }
  .fo-quick-badge { width: 30px; height: 30px; font-size: 0.6rem; }
  .fo-quick-photo { width: 36px; height: 36px; }
  .fo-quick-price { min-width: 72px; font-size: 0.78rem; }
  .fo-quick-name { font-size: 0.88rem; }
  .fo-quick-desc { display: none; }
  .fo-qty-quick { width: 36px; }
  .fo-stepper-btn { width: 26px; height: 26px; font-size: 0.9rem; }
  .fo-row-total { min-width: 56px; font-size: 0.8rem; }
  .fo-quick-row { padding: 10px 12px; gap: 8px; }

  .fo-order-summary { margin: 0; padding: 10px 12px; }
  .fo-summary-right { gap: 8px; }
  .fo-note-inline { display: none; }
  .fo-pickup-select { min-width: 160px; font-size: 0.8rem; }

  .fo-toolbar { gap: 8px; }
  .fo-search-input { width: 100%; order: -1; }
  .fo-cat-tabs { order: 1; }

  .fo-order-detail-grid { grid-template-columns: 1fr; }
  .fo-profile-grid { grid-template-columns: 1fr; }
  .fo-cart-header, .fo-cart-row { grid-template-columns: 1fr 72px 72px 72px; font-size: 0.85rem; }
  .fo-cart-header { padding: 10px 12px; }
  .fo-cart-row { padding: 10px 12px; }

  .fo-page-header h1 { font-size: 1.2rem; }
  .fo-main { padding: 24px 0 80px; }

  .fo-confirm-actions { flex-direction: column; align-items: stretch; }
  .fo-confirm-actions .btn { width: 100%; }
  .fo-confirm-actions form { display: block; width: 100%; }

  /* Tableau factures : scroll horizontal au lieu de couper la colonne Statut */
  .fo-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .fo-table-wrap table { min-width: 560px; }

  /* Facture détail : en-tête (titre + dates) en colonne au lieu de côte à côte */
  .invoice-doc { padding: 6mm !important; }
  .invoice-doc > div:first-child { flex-direction: column !important; }
  .invoice-doc > div:first-child > div:last-child {
    flex: 1 1 auto !important;
    text-align: left !important;
    margin-top: 3mm;
  }
}

/* ── BARRE RECHERCHE + TOOLBAR ───────────────────────────── */
.fo-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.fo-cat-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1;
}
.fo-search-input {
  width: 240px;
  flex-shrink: 0;
  border-color: var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 0.88rem;
  height: 36px;
  line-height: 1;
}
.fo-search-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,149,42,.15); }
.fo-species-select {
  height: 36px;
  width: 180px;
  flex-shrink: 0;
  border-color: var(--border);
  border-radius: 20px;
  padding: 0 28px 0 14px;
  font-size: 0.88rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  appearance: none;
}
.fo-species-select:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(196,149,42,.15); }

/* ── RÉSUMÉ COMMANDE STICKY ──────────────────────────────── */
.fo-order-summary {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 2px solid var(--border);
  padding: 0 20px;
  max-height: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 -15px;
  z-index: 50;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity .3s, transform .3s, max-height .3s, padding .3s;
  transform: translateY(20px);
}
.fo-order-summary.fo-summary--active {
  opacity: 1;
  max-height: 200px;
  padding: 12px 20px;
  pointer-events: all;
  transform: translateY(0);
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}
.fo-summary-left { font-size: 0.88rem; color: var(--muted); }
.fo-summary-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
#summary-total {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.fo-note-inline {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 0.85rem;
  width: 180px;
}
.fo-note-inline:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(196,149,42,.15); }

.fo-pickup-select {
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background: #FFFBF0;
  cursor: pointer;
  min-width: 200px;
}
.fo-pickup-select:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(196,149,42,.15); }

/* ── PROFIL ──────────────────────────────────────────────── */
.fo-profile-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}
@media (max-width: 640px) { .fo-profile-grid { grid-template-columns: 1fr; } }

/* ── BADGES STOCK ────────────────────────────────────────── */
.fo-stock {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}
.fo-stock--ok  { background: #D1FAE5; color: #065F46; }
.fo-stock--low { background: #FEF3C7; color: #92400E; }
.fo-stock--out { background: #FEE2E2; color: #991B1B; }

/* ── TOTAL PAR LIGNE ─────────────────────────────────────── */
.fo-row-total { transition: color .2s; }

/* ── CHECKOUT ────────────────────────────────────────────── */
.fo-checkout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 768px) {
  .fo-checkout-grid { grid-template-columns: 1fr; }
  .fo-checkout-form-col { order: -1; }
}
.fo-checkout-recap h3,
.fo-checkout-card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin: 0 0 14px;
}
.fo-checkout-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}

/* Radio buttons mode de retrait */
.fo-pickup-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fo-pickup-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.fo-pickup-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.fo-pickup-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  width: 100%;
  font-weight: 500;
  font-size: 0.92rem;
  transition: border-color .15s, background .15s;
  cursor: pointer;
}
.fo-pickup-option input[type="radio"]:checked + .fo-pickup-label {
  border-color: var(--gold);
  background: #FFFBF0;
}
.fo-pickup-option:hover .fo-pickup-label {
  border-color: var(--gold-l);
}
.fo-pickup-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: border-color .15s, background .15s;
  position: relative;
}
.fo-pickup-option input[type="radio"]:checked + .fo-pickup-label .fo-pickup-dot {
  border-color: var(--gold);
  background: var(--gold);
}
.fo-pickup-option input[type="radio"]:checked + .fo-pickup-label .fo-pickup-dot::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ── RESPONSIVE CLIENT ───────────────────────────────────────── */
@media (max-width: 768px) {
  /* Header */
  .fo-header-inner { height: 56px; gap: 12px; justify-content: center; }
  .fo-logo img     { height: 36px; }
  .fo-nav          { display: none; } /* remplacée par la bottom nav */
  .fo-cart-btn     { display: none; } /* remplacé par la bottom nav */
  .fo-main         { padding: 24px 0 calc(72px + env(safe-area-inset-bottom)); }

  /* Page header */
  .fo-page-header  { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
  .fo-page-header h1 { font-size: 1.2rem; }

  /* Toolbar / filtres */
  .fo-toolbar      { flex-direction: column; align-items: stretch; gap: 10px; }
  .fo-cat-tabs     { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; flex: none; }
  .fo-species-select { width: 100%; border-radius: 8px; order: 2; flex-shrink: 0; }
  .fo-search-input { width: 100%; }

  /* Barre résumé commande */
  .fo-order-summary { position: fixed; left: 0; right: 0; bottom: calc(56px + env(safe-area-inset-bottom)); flex-direction: column; align-items: stretch; gap: 10px; padding: 0 16px; margin: 0; }
  .fo-order-summary.fo-summary--active { padding: 12px 16px; }
  .fo-summary-right { flex-direction: column; gap: 8px; }
  .fo-summary-right button { width: 100%; padding: 12px; font-size: 1rem; }

  /* Catalogue quick grid */
  .fo-quick-row    { flex-wrap: wrap; gap: 8px; padding: 12px; }
  .fo-quick-info   { flex: 1 1 100%; }
  .fo-quick-actions { width: 100%; justify-content: flex-end; }

  /* Stepper plus grand pour les doigts */
  .fo-stepper-btn  { width: 36px; height: 36px; font-size: 1.1rem; }
  .fo-qty-quick    { width: 48px; height: 36px; font-size: 1rem; }

  /* Cart */
  .fo-cart-btn span:not(.fo-cart-badge) { display: none; }
}

@media (max-width: 480px) {
  body             { font-size: 14px; }
  .fo-login-card   { padding: 28px 20px; }
  .fo-main         { padding: 16px 0 calc(72px + env(safe-area-inset-bottom)); }
}

/* ── VUE GRILLE MOBILE ───────────────────────────────────── */
@media (max-width: 640px) {
  /* Topbar : icônes seules, sans nom d'entreprise */
  .fo-topbar-company { display: none; }
  .fo-topbar-social span { display: none; }
  .fo-topbar-social { padding: 4px 7px; gap: 0; }

  /* Barre de recherche + toggle : flex:1 pour laisser de la place au toggle */
  .fo-search-input { flex: 1; width: auto; min-width: 0; }

  /* 2 colonnes */
  .fo-quick-grid--cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* Photo courte */
  .fo-quick-grid--cards .fo-card-img,
  .fo-quick-grid--cards .fo-card-img-placeholder {
    height: 120px;
  }
  .fo-quick-grid--cards .fo-card-img-placeholder {
    font-size: 1.6rem;
  }

  /* Bloc info compact */
  .fo-quick-grid--cards .fo-quick-info {
    padding: 8px 10px 4px;
    gap: 3px;
  }
  .fo-quick-grid--cards .fo-quick-name {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  /* Attributs compacts */
  .fo-quick-grid--cards .fo-card-attrs {
    padding: 0 10px 4px;
    gap: 0;
  }
  .fo-quick-grid--cards .fo-card-attr {
    font-size: 0.68rem;
    padding: 2px 0;
  }

  /* Actions : prix au-dessus du stepper */
  .fo-quick-grid--cards .fo-quick-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 10px;
    gap: 5px;
  }
  .fo-quick-grid--cards .fo-card-price-pill {
    margin-left: 0;
    justify-content: center;
    font-size: 0.82rem;
    padding: 4px 8px;
  }
  .fo-quick-grid--cards .fo-stepper {
    justify-content: center;
    gap: 8px;
  }
  .fo-quick-grid--cards .fo-stepper-btn {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
  .fo-quick-grid--cards .fo-qty-quick {
    width: 44px;
    min-width: 0;
    font-size: 1rem;
  }
  .fo-quick-grid--cards .fo-quick-price { display: flex; flex-direction: column; gap: 2px; padding: 0 10px 6px; font-size: 0.75rem; }
}

/* ── BOTTOM NAV MOBILE ───────────────────────────────────── */
.fo-bottom-nav {
  display: none;
}
@media (max-width: 768px) {
  .fo-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1.5px solid #E5E7EB;
    z-index: 999;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -2px 12px rgba(0,0,0,.08);
  }
}
.fo-bn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 2px 6px;
  color: #9CA3AF;
  text-decoration: none;
  font-size: 0.62rem;
  font-weight: 600;
  gap: 3px;
  position: relative;
  transition: color .15s;
}
.fo-bn-item.active { color: #3B3F52; }
.fo-bn-item svg { width: 22px; height: 22px; }
.fo-bn-badge {
  position: absolute;
  top: 5px;
  left: 50%;
  margin-left: 6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #EF4444;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
