/* ════════════════════════════════════════════════════════
   SHARED.CSS — Tradi-Market
   Fichier CSS complet et professionnel
   Palette : vert #306b34 · orange #E8791A · noir #1A1209 · crème #FFFAF4
   ════════════════════════════════════════════════════════ */

/* ══════════════
   1. VARIABLES
   ══════════════ */
:root {
  --vert:       #306b34;
  --vert2:      #1e4d21;
  --terre:      #C4622D;
  --or:         #E9B949;
  --rouge:      #8B2020;
  --nuit:       #1A1209;
  --creme:      #FFFAF4;
  --sable:      #F5ECD7;
  --bg:         #F4F1EC;
  --border:     rgba(26,18,9,0.08);
  --text-muted: rgba(26,18,9,0.45);
  --shadow:     0 2px 16px rgba(26,18,9,0.07);
  --shadow-lg:  0 12px 40px rgba(26,18,9,0.14);
  --nav-h:      72px;
}

/* ══════════════
   2. RESET
   ══════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--nuit);
  background: var(--creme);
  overflow-x: clip;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
/* Reset couleurs natives navigateur mobile */
button { color: inherit; -webkit-appearance: none; appearance: none; }
.filter-btn { color: #306b34; }

/* ══════════════
   3. TYPOGRAPHY
   ══════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.15;
}
.section-tag {
  display: inline-block;
  background: rgba(196,98,45,0.1);
  color: var(--terre);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 0.6rem;
  font-family: 'Montserrat', sans-serif;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* Utilitaires texte */
.text-sm    { font-size: 0.85rem; }
.text-xs    { font-size: 0.75rem; }
.text-muted { color: var(--text-muted); }
.font-bold  { font-weight: 700; }
.mt-1       { margin-top: 0.5rem; }
.mt-2       { margin-top: 1rem; }
.mb-1       { margin-bottom: 0.5rem; }

/* ══════════════
   4. NAV (desktop)
   ══════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: white;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(26,18,9,0.1);
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-center {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nuit);
  text-decoration: none;
  position: relative;
  font-family: 'Open Sans', sans-serif;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--terre);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--terre); }
.nav-link.active::after, .nav-link:hover::after { transform: scaleX(1); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Bouton panier top nav */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem 0.45rem 0.8rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: white;
  cursor: pointer;
  text-decoration: none;
  color: var(--nuit);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.2s;
}
.nav-cart:hover {
  border-color: var(--terre);
  background: var(--creme);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.nav-cart::after {
  content: 'Panier';
  font-size: 0.82rem;
  font-weight: 600;
}
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 18px; height: 18px;
  border-radius: 100px;
  background: var(--terre);
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid white;
  font-family: 'Montserrat', sans-serif;
}

/* ══════════════
   5. BOTTOM NAV (mobile uniquement)
   ══════════════ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--vert);
  border-top: 1px solid var(--vert);
  box-shadow: 0 -4px 20px rgba(26,18,9,0.08);
  height: 64px;
  padding: 0 4px;
  padding-bottom: env(safe-area-inset-bottom);
}
/* Motif décoratif wax en fond (même style que le footer) */
.bottom-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 50%);
  background-size: 28px 28px;
  pointer-events: none;
}
.bn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  height: 100%;
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.50rem;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
}
.bn-item.active, .bn-item:hover { color: #ffffff; }
.bn-icon {
  width: 22px; height: 22px;
  stroke: currentColor;
  transition: stroke 0.2s;
}
/* Bouton Panier central — mis en valeur */
.bn-item-panier { color: white; }
.bn-item-panier:hover, .bn-item-panier.active { color: white; }
.bn-item-panier > span:last-child {
  color: var(--terre);
  font-size: 0.62rem;
  font-weight: 700;
  margin-top: 2px;
}
.bn-panier-wrap {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--terre);
  border: 2.5px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -22px;
  box-shadow: 0 4px 18px rgba(196,98,45,0.55), 0 0 0 3px rgba(196,98,45,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.bn-item-panier:hover .bn-panier-wrap,
.bn-item-panier.active .bn-panier-wrap {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(196,98,45,0.7), 0 0 0 4px rgba(196,98,45,0.25);
}
.bn-item-panier .bn-icon { width: 20px; height: 20px; stroke: white; }
.bn-cart-badge {
  display: none;
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 17px;
  height: 17px;
  border-radius: 100px;
  background: white;
  color: var(--terre);
  font-size: 0.6rem;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 1.5px solid var(--terre);
  font-family: 'Montserrat', sans-serif;
}

/* Bouton Commander — central mis en valeur */
.bn-item-commander { color: var(--terre); }
.bn-item-commander:hover, .bn-item-commander.active { color: var(--vert); }
.bn-commander-wrap {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--terre);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
  box-shadow: 0 4px 16px rgba(196,98,45,0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.bn-item-commander:hover .bn-commander-wrap,
.bn-item-commander.active .bn-commander-wrap {
  background: var(--vert);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(48,107,52,0.5);
}
.bn-item-commander .bn-icon { width: 20px; height: 20px; stroke: white; }
.bn-item-commander > span:last-child {
  color: var(--terre);
  font-size: 0.62rem;
  font-weight: 700;
  margin-top: 2px;
}
.bn-item-commander:hover > span:last-child,
.bn-item-commander.active > span:last-child { color: var(--vert); }

/* ══════════════
   6. BUTTONS
   ══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--terre);
  color: white;
  box-shadow: 0 4px 14px rgba(196,98,45,0.3);
}
.btn-primary:hover {
  background: #a84e22;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,98,45,0.4);
}
.btn-secondary {
  background: var(--sable);
  color: var(--nuit);
}
.btn-secondary:hover {
  background: #e8d8c0;
  transform: translateY(-1px);
}
.btn-vert {
  background: var(--vert);
  color: white;
  box-shadow: 0 4px 14px rgba(48,107,52,0.3);
}
.btn-vert:hover {
  background: var(--vert2);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  border-radius: 100px;
}

/* Bouton Se connecter dans la nav */
.btn-nav-connexion {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: none;
  background: #306b34;
  color: white !important;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-nav-connexion:hover {
  background: #1e4d21;
}

/* ══════════════
   7. INPUTS / FORMS
   ══════════════ */
.input-group { margin-bottom: 1rem; }
.input-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-family: 'Montserrat', sans-serif;
}
.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--nuit);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.input:focus {
  border-color: var(--vert);
  box-shadow: 0 0 0 3px rgba(48,107,52,0.08);
}
.input-select { appearance: none; cursor: pointer; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ══════════════
   8. SECTION
   ══════════════ */
.section { padding: 5rem 5%; }

/* ══════════════
   9. CARDS
   ══════════════ */
.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-img { height: 180px; overflow: hidden; background: var(--sable); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.2rem; }
.p-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--terre);
}

/* ── PRODUCT CARD — éléments partagés ── */
.p-vendor {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
  font-family: 'Open Sans', sans-serif;
}
.p-market {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.p-unit {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: 'Open Sans', sans-serif;
}
.p-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 0.7rem;
}
.p-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--nuit);
  margin-bottom: 0.2rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Badge "Frais" sur image */
.fresh-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--vert);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Bouton + ajouter au panier */
.add-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: none;
  background: #C4622D;
  color: white;
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(196,98,45,0.4);
  line-height: 1;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}
.add-btn:hover {
  background: #306b34;
  transform: scale(1.08);
  box-shadow: 0 5px 14px rgba(48,107,52,0.4);
}
.add-btn:active {
  transform: scale(0.95);
}

/* ══════════════
   10. BREADCRUMB
   ══════════════ */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--or); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ══════════════
   11. FOOTER
   ══════════════ */
footer {
  display: none; /* Caché par défaut — mobile first */
  background: #306b34;
  padding: 1.8rem 5% 0.8rem;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Motif décoratif wax en fond */
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 50%);
  background-size: 28px 28px;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

/* Logo footer */
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: white;
  letter-spacing: -0.01em;
}
.footer-logo span { color: white; }

/* Description */
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  line-height: 1.6;
}

/* Trait décoratif sous le logo */
.footer-grid > div:first-child::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 100px;
  margin-top: 0.9rem;
}

/* Titres colonnes */
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 0.8rem;
  font-family: 'Montserrat', sans-serif;
}

/* Liens */
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-col ul li a::before {
  content: '›';
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s;
}
.footer-col ul li a:hover {
  color: rgba(255,255,255,0.7);
  transform: translateX(3px);
}
.footer-col ul li a:hover::before {
  transform: translateX(2px);
}

/* Barre basse */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: white;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/* ══════════════
   12. TOAST
   ══════════════ */
.tm-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--nuit);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  font-family: 'Montserrat', sans-serif;
}
.tm-toast.show { transform: translateX(-50%) translateY(0); }
.tm-toast-error { background: var(--rouge); }

/* ══════════════
   13. PAGE HEADER
   ══════════════ */
.page-header {
  padding: 8rem 5% 3rem;
}

/* ══════════════
   14. BANNIÈRE BOUTON
   ══════════════ */
.banner-btn {
  font-size: 0.55rem;
  padding: 4px 10px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* ══════════════════════════════════════════════════
   15. RESPONSIVE
   Breakpoints : ≤768px mobile | 769–1024px tablette | ≥1440px grand écran
   ══════════════════════════════════════════════════ */

/* ─── Desktop tablette ─── */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav { padding: 0 3%; }
  .nav-center { gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ─── Grand écran ─── */
@media (min-width: 1440px) {
  .nav { padding: 0 6%; }
  .section { padding: 6rem 8%; max-width: 1600px; margin-left: auto; margin-right: auto; }
  .footer-grid { gap: 4rem; }
}

/* ─── Ultra-large (≥1800px) : sections centrées ─── */
@media (min-width: 1800px) {
  .section { max-width: 1500px; margin-left: auto; margin-right: auto; }
  footer { padding-left: calc((100vw - 1500px) / 2); padding-right: calc((100vw - 1500px) / 2); }
}

/* ─── Mobile (≤768px) ─── */
@media (max-width: 768px) {

  /* Top nav : logo + panier seulement */
  :root { --nav-h: 58px; }
  .nav { padding: 0 1rem; height: 58px; }
  .nav-center { display: none; }
  .nav-right .btn-sm { display: none; }
  .nav-right .btn-nav-connexion { display: none; }
  .nav-right .btn-primary { display: none; }
  .nav-compte-wrap { display: none; }
  .nav-cart { display: none !important; }
  .logo img { height: 32px !important; }
  .nav-search-wrap { padding: 0.35rem 0.7rem; }
  .nav-search-input { width: 110px; }

  /* Bottom nav visible */
  .bottom-nav {
    display: flex;
    align-items: stretch;
  }

  /* Espace bas pour ne pas être masqué par la bottom nav */
  body {
    padding-bottom: 64px;
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  /* Footer — masqué sur mobile (apparence app native) */
  footer { display: none !important; }

  /* Sections */
  .section { padding: 2.5rem 4%; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section-sub { font-size: 0.85rem; }
  .page-header { padding: 4rem 5% 1.5rem; }
  .page-header h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  /* Cards */
  .filter-btn { color: var(--nuit); }

  /* Cards */
  .card { border-radius: 16px; }
  .card-img { height: 150px; }
  .card-body { padding: 0.9rem; }

  /* Grilles 2 colonnes */
  .grid-2 { grid-template-columns: 1fr; }

  /* Boutons */
  .btn { padding: 0.7rem 1.2rem; font-size: 0.88rem; }

  /* Toast — au-dessus de la bottom nav */
  .tm-toast { bottom: 76px; }

  /* Bannière */
  .banner-btn { font-size: 0.5rem; padding: 3px 8px; }
}

@media (max-width: 480px) {
  /* footer masqué, règles de grille inutiles */
}

/* ─── Desktop : jamais de bottom nav, footer visible ─── */
@media (min-width: 769px) {
  .bottom-nav { display: none !important; }
  footer { display: block; }
}

/* ══════════════
   16. UTILITAIRES
   ══════════════ */
@media (max-width: 768px) { .hide-mobile { display: none !important; } }
@media (min-width: 769px) { .hide-desktop { display: none !important; } }

/* ══════════════════════════════════════════════
   17. PWA MOBILE — Améliorations v3
   ══════════════════════════════════════════════ */

/* Tap highlight supprimé sur mobile */
* { -webkit-tap-highlight-color: transparent; }

/* Rebond iOS supprimé (overscroll uniquement sur body) */
body { overscroll-behavior-y: none; }

/* Scroll momentum iOS sur les conteneurs scrollables */
.scroll-container, .mobile-cat-bar, .tabs {
  -webkit-overflow-scrolling: touch;
}

/* Touch target minimum 44px — uniquement sur les boutons explicites */
@media (max-width: 768px) {
  .btn-primary, .btn-secondary, .btn-add,
  .mobile-cat-btn, .bn-item, .add-btn,
  button[type="submit"], .checkout-btn {
    min-height: 44px;
  }
}

/* Formulaires : zoom désactivé sur iOS (font-size >= 16px) */
@media (max-width: 768px) {
  input[type="text"], input[type="tel"], input[type="email"],
  input[type="password"], input[type="number"], input[type="date"],
  select, textarea {
    font-size: 16px !important;
  }
}

/* Icônes bottom nav plus grandes sur très petit écran */
@media (max-width: 390px) {
  .bn-icon { width: 22px; height: 22px; }
  .bn-item span { font-size: 0.6rem; }
}

/* Bannière d'installation PWA */
#pwa-prompt {
  padding-bottom: calc(1.2rem + env(safe-area-inset-bottom));
}

/* Skeleton loader animé */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skeleton-pulse {
  background: linear-gradient(90deg, #f0ede8 25%, #e8e4df 50%, #f0ede8 75%);
  background-size: 400px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: 8px;
}
