/* Les Paniers de Christian — styles globaux (hérités v1 + adaptations) */

:root {
  --vert: #2d6a4f;
  --vert-clair: #52b788;
  --vert-pale: #d8f3dc;
  --terre: #7c4a1e;
  --creme: #faf7f0;
  --creme-fonce: #efe9dd;
  --blanc: #fff;
  --gris: #f4f1ea;
  --texte: #1a2e1a;
  --doux: #4a5e4a;
  --or: #e9a825;
  --rouge: #c0392b;
  --ombre: 0 2px 8px rgba(60, 40, 20, 0.07);
  --ombre-fort: 0 8px 20px rgba(60, 40, 20, 0.13);
  --radius: 12px;
  --radius-pill: 50px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--texte);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--texte);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }

a { color: var(--vert); text-decoration: none; transition: color .15s; }
a:hover { color: var(--vert-clair); }

p { margin-bottom: 0.9rem; }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 1.25rem; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--vert);
  height: 64px;
  display: flex; align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.15rem; font-weight: 700; }
.nav-logo em { font-style: italic; font-weight: 400; color: var(--or); }
.nav-links { display: flex; gap: 0.2rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  padding: 0 0.85rem;
  height: 64px;
  display: flex; align-items: center;
  border-bottom: 3px solid transparent;
  transition: all .2s;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  border-bottom-color: var(--or);
  background: rgba(255,255,255,.06);
}
.nav-cta {
  background: var(--or) !important;
  color: var(--texte) !important;
  border-radius: var(--radius-pill);
  height: 38px !important;
  padding: 0 1.1rem !important;
  margin-left: 0.5rem;
  font-weight: 600 !important;
  border-bottom: none !important;
}
.nav-cta:hover { background: #f5b942 !important; color: var(--texte) !important; }
.nav-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 8px; flex-direction: column; gap: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; }
@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--vert); flex-direction: column; padding: 0.5rem 0; }
  .nav-links.open { display: flex; }
  .nav-links a { height: 48px; padding: 0 1.5rem; width: 100%; }
  .nav-toggle { display: flex; }
}

/* HERO */
.hero { background: var(--vert); color: #fff; padding: 3.5rem 1.25rem 3rem; text-align: center; }
.hero-badge { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius-pill); padding: 6px 16px; font-size: .82rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 1rem; color: #fff; }
.hero h1 { color: #fff; margin-bottom: 0.8rem; }
.hero h1 em { color: var(--or); font-style: italic; }
.hero-lines { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; margin: 1.5rem 0 1.8rem; }
.hero-lines p { font-size: clamp(.95rem, 2vw, 1.05rem); opacity: 0.92; font-weight: 300; margin: 0; }
.hero-btns { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* Hero split (accueil avec photo panier) */
.hero-split { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2.5rem; align-items: center; max-width: 1180px; margin: 0 auto; padding: 4rem 1.5rem 3.5rem; text-align: left; }
.hero-split .hero-lines { align-items: flex-start; }
.hero-split .hero-btns { justify-content: flex-start; }
.hero-split-img img { width: 100%; max-width: 480px; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; box-shadow: 0 14px 40px rgba(0,0,0,0.35); margin-left: auto; display: block; }
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; padding: 2.5rem 1rem 2.2rem; gap: 1.5rem; }
  .hero-split .hero-lines, .hero-split .hero-btns { align-items: center; justify-content: center; }
  .hero-split-img img { margin: 0 auto; }
}

/* Surtitre */
.surtitre { display: block; color: var(--or); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.6rem; }

/* BOUTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-pill);
  font-family: inherit; font-size: 0.95rem; font-weight: 500;
  border: none; cursor: pointer;
  transition: all .15s;
  text-decoration: none;
}
.btn-primary { background: var(--vert); color: #fff; }
.btn-primary:hover { background: #245a40; color: #fff; }
.btn-or { background: var(--or); color: var(--texte); }
.btn-or:hover { background: #f5b942; }
.btn-outline { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-outline:hover { background: rgba(255,255,255,.22); color: #fff; }
.btn-terre { background: var(--terre); color: #fff; }
.btn-terre:hover { background: #5e3716; color: #fff; }
.btn-ghost { background: var(--creme-fonce); color: var(--texte); }
.btn-ghost:hover { background: var(--vert-pale); }

/* PAGE TITRE */
.page-titre { text-align: center; padding: 2.2rem 1.25rem 1.4rem; }
.page-titre h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 0.3rem; }
.page-titre p { color: var(--doux); font-size: 0.95rem; margin: 0; }

/* SECTIONS */
.section { padding: 3rem 0; }
.section-creme { background: var(--gris); }

/* STEPS */
.steps { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.step { flex: 1; min-width: 110px; background: #fff; border-radius: var(--radius); padding: 0.9rem; text-align: center; border: 1.5px solid var(--creme-fonce); }
.step .num { width: 26px; height: 26px; background: var(--vert); color: #fff; border-radius: 50%; font-size: .8rem; font-weight: 600; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.4rem; }
.step p { font-size: 0.82rem; color: var(--doux); margin: 0; }

/* CARTES */
.card { background: #fff; border-radius: var(--radius); padding: 1.5rem; border: 1.5px solid var(--creme-fonce); box-shadow: var(--ombre); }

/* PRODUITS */
.filtre-tabs { display: flex; gap: 0.45rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.filtre-btn { padding: 7px 16px; border-radius: var(--radius-pill); border: 1.5px solid var(--creme-fonce); background: #fff; font-size: 0.85rem; font-family: inherit; color: var(--texte); cursor: pointer; transition: all .15s; }
.filtre-btn:hover, .filtre-btn.active { background: var(--vert); border-color: var(--vert); color: #fff; }

.prod-section { margin-bottom: 2rem; }
.prod-section-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--vert); margin-bottom: 0.9rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--vert-pale); display: flex; align-items: center; gap: 8px; }

.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.9rem; }
@media (max-width: 460px) { .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; } }

.prod-card { background: #fff; border-radius: var(--radius); padding: 1rem 0.85rem; border: 1.5px solid var(--creme-fonce); text-align: center; transition: all .2s; }
.prod-card:hover { border-color: var(--vert-clair); box-shadow: var(--ombre); transform: translateY(-1px); }
.prod-card .pim { width: 76px; height: 76px; margin: 0 auto 0.4rem; display: flex; align-items: center; justify-content: center; background: var(--gris); border-radius: 50%; overflow: hidden; }
.prod-card .pim img { width: 100%; height: 100%; object-fit: cover; }
.prod-card .pim .pe { font-size: 2.1rem; line-height: 1; }
.prod-card .pn { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.15rem; }
.prod-card .pp { font-size: 1.05rem; font-weight: 700; color: var(--vert); line-height: 1.1; }
.prod-card .pp.empty { color: var(--doux); font-weight: 400; font-style: italic; font-size: 0.85rem; }
.prod-card .pp-bloc { display: flex; flex-direction: column; gap: 0.1rem; align-items: center; }
.prod-card .pp-ht { font-size: 0.72rem; color: var(--doux); font-weight: 500; line-height: 1; }
.prod-card .pu { font-size: 0.78rem; color: var(--doux); margin-top: 0.15rem; }

/* FORMULAIRES */
.form-card { background: #fff; border-radius: var(--radius); padding: 1.5rem; border: 1.5px solid var(--creme-fonce); margin-bottom: 1rem; }
.form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--vert); display: flex; align-items: center; gap: 7px; margin-bottom: 0.8rem; }
.fg { margin-bottom: 0.85rem; }
.fg label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.3rem; color: var(--texte); }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--creme-fonce);
  border-radius: 9px;
  font-size: 0.95rem; font-family: inherit;
  background: #fff; color: var(--texte);
  transition: border-color .15s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--vert-clair);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
@media (max-width: 480px) { .frow { grid-template-columns: 1fr; } }

/* INFO BOXES */
.info-box { background: #fff; border-radius: var(--radius); padding: 1.4rem; border: 1.5px solid var(--creme-fonce); margin: 1.2rem 0; }
.info-box h3 { color: var(--vert); margin-bottom: 0.9rem; font-size: 1.05rem; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.8rem; margin-bottom: 0.8rem; }
.info-cell { background: var(--gris); border-radius: 9px; padding: 0.85rem; }
.info-cell .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--doux); margin-bottom: 0.15rem; }
.info-cell .val { font-size: 0.96rem; font-weight: 600; }

.retrait-box { background: var(--vert-pale); border-radius: var(--radius); padding: 1.4rem; margin-bottom: 1.2rem; border-left: 4px solid var(--vert-clair); }
.retrait-box h3 { color: var(--vert); margin-bottom: 0.6rem; }
.retrait-steps { list-style: none; padding: 0; }
.retrait-steps li { display: flex; align-items: flex-start; gap: 10px; padding: 0.55rem 0; border-bottom: 1px solid rgba(0,0,0,.05); font-size: 0.92rem; }
.retrait-steps li:last-child { border-bottom: none; }
.rsn { min-width: 24px; height: 24px; background: var(--vert); color: #fff; border-radius: 50%; font-size: .76rem; display: flex; align-items: center; justify-content: center; font-weight: 600; flex-shrink: 0; }

.creneaux-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.creneau { background: var(--vert-pale); color: var(--vert); padding: 5px 13px; border-radius: var(--radius-pill); font-size: .85rem; font-weight: 500; }

/* TIPS / ALERTES */
.tip { background: #fff8e1; border: 1.5px solid #ffe082; border-radius: 11px; padding: 0.9rem 1.1rem; font-size: 0.88rem; color: #5d4037; margin-top: 0.8rem; }
.alert-info { background: #e8f0fa; border: 1.5px solid #b7d1ec; border-radius: 11px; padding: 0.9rem 1.1rem; color: #1f4f8b; font-size: 0.9rem; margin: 1rem 0; }

/* CONTACT CARDS */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.contact-card { background: #fff; border-radius: var(--radius); padding: 1.5rem 1.2rem; border: 1.5px solid var(--creme-fonce); text-align: center; transition: all .2s; }
.contact-card:hover { border-color: var(--vert-clair); transform: translateY(-2px); }
.contact-card .ci { font-size: 1.9rem; margin-bottom: 0.5rem; }
.contact-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.contact-card p { font-size: 0.85rem; color: var(--doux); margin-bottom: 0.9rem; }

/* FAQ */
.faq-item { background: #fff; border-radius: 11px; border: 1.5px solid var(--creme-fonce); margin-bottom: 0.6rem; overflow: hidden; }
.faq-item summary { padding: 0.95rem 1.1rem; font-weight: 500; cursor: pointer; font-size: 0.95rem; list-style: none; display: flex; justify-content: space-between; align-items: center; user-select: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--vert); font-weight: 300; }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 1.1rem 0.95rem; font-size: 0.9rem; color: var(--doux); line-height: 1.65; margin: 0; }

/* RECETTES */
.recette-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; }
.recette-card { background: #fff; border-radius: var(--radius); border: 1.5px solid var(--creme-fonce); padding: 1.2rem; transition: all .2s; }
.recette-card:hover { border-color: var(--vert-clair); box-shadow: var(--ombre); }
.recette-card h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.recette-card .meta { display: flex; gap: 0.7rem; font-size: 0.82rem; color: var(--doux); margin-bottom: 0.6rem; flex-wrap: wrap; }
.recette-card .meta span + span::before { content: '·'; margin-right: 0.5rem; color: var(--vert-clair); }
.recette-card .ingredients { font-size: 0.88rem; color: var(--texte); margin-bottom: 0.7rem; }
.recette-card .badge-match { display: inline-block; padding: 4px 11px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600; }
.recette-card .badge-match.full { background: var(--vert-pale); color: var(--vert); }
.recette-card .badge-match.partial { background: #fff4e0; color: #8C6914; }
.recette-card .manquants { font-size: 0.8rem; color: var(--doux); margin-top: 0.35rem; }

/* FOOTER */
.footer { background: var(--texte); color: rgba(255,255,255,.7); padding: 2.5rem 1.25rem 1.5rem; margin-top: 4rem; }
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 0.7rem; }
.footer a { color: var(--vert-pale); display: block; padding: 0.2rem 0; font-size: 0.9rem; }
.footer a:hover { color: #fff; }
.footer .flogo { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.1rem; margin-bottom: 0.4rem; font-weight: 700; }
.footer .flogo em { color: var(--or); font-style: italic; font-weight: 400; }
.footer-bas { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; color: rgba(255,255,255,.5); }
.footer-bas a { display: inline; padding: 0; font-size: 0.82rem; }

/* UTILS */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.muted { color: var(--doux); font-size: 0.92rem; }

/* ===== ADMIN ===== */
.admin-wrap { max-width: 1100px; margin: 0 auto; padding: 1.5rem 1.25rem 3rem; }
.admin-hdr {
  background: var(--terre); color: #fff;
  border-radius: var(--radius); padding: 1.4rem 1.6rem;
  margin-bottom: 1.8rem;
  display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap;
}
.admin-hdr h2 { color: #fff; font-size: 1.4rem; margin-bottom: 0.2rem; }
.admin-hdr p { opacity: 0.85; font-size: 0.88rem; margin: 0; }
.admin-hdr .icon { font-size: 1.8rem; }
.admin-hdr .actions { margin-left: auto; display: flex; gap: 0.5rem; flex-wrap: wrap; }

.admin-login { max-width: 380px; margin: 5rem auto; text-align: center; padding: 2.5rem 1.5rem; background: #fff; border-radius: var(--radius); box-shadow: var(--ombre); }
.admin-login h2 { margin-bottom: 0.8rem; color: var(--vert); }
.admin-login input { display: block; width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--creme-fonce); border-radius: 9px; font-family: inherit; font-size: 1rem; margin-bottom: 1rem; }
.admin-login input:focus { outline: none; border-color: var(--vert-clair); }
.admin-err { color: var(--rouge); font-size: 0.88rem; margin-top: 0.7rem; }

.admin-sec { margin-bottom: 2rem; background: #fff; border-radius: var(--radius); padding: 1.3rem 1.4rem; border: 1.5px solid var(--creme-fonce); box-shadow: var(--ombre); }
.admin-sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--vert-pale); flex-wrap: wrap; gap: 0.5rem; }
.admin-sec-head h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--vert); margin: 0; display: flex; align-items: center; gap: 7px; }

.compose-row {
  display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap;
  background: var(--vert-pale); border-radius: var(--radius); padding: 0.7rem 0.9rem;
  margin-bottom: 1rem;
  border: 1.5px dashed var(--vert-clair);
}
.compose-row .cmp-emoji { width: 48px; padding: 0.4rem; border: 1.5px solid #cde2c9; border-radius: 8px; font-size: 1.1rem; text-align: center; font-family: inherit; background: #fff; }
.compose-row .cmp-nom { flex: 1; min-width: 130px; padding: 0.5rem 0.75rem; border: 1.5px solid #cde2c9; border-radius: 8px; font-size: 0.95rem; font-family: inherit; background: #fff; }
.compose-row .cmp-prix { width: 80px; padding: 0.5rem 0.5rem; border: 1.5px solid #cde2c9; border-radius: 8px; font-size: 0.92rem; text-align: center; font-family: inherit; background: #fff; }
.compose-row .cmp-unite { width: 110px; padding: 0.5rem; border: 1.5px solid #cde2c9; border-radius: 8px; font-size: 0.86rem; font-family: inherit; background: #fff; }
.compose-row button { background: var(--vert); color: #fff; border: none; padding: 0.55rem 1.2rem; border-radius: var(--radius-pill); font-family: inherit; font-size: 0.9rem; font-weight: 500; cursor: pointer; }
.compose-row button:hover { background: #245a40; }

.prow {
  background: #fff; border-radius: 9px; border: 1.5px solid var(--creme-fonce);
  padding: 0.55rem 0.8rem; margin-bottom: 0.45rem;
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  transition: border-color .15s;
}
.prow:hover { border-color: var(--vert-clair); }
.prow.masque { opacity: 0.45; }
.prow .pe-mini { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; background: var(--gris); display: flex; align-items: center; justify-content: center; flex-shrink: 0; cursor: pointer; position: relative; }
.prow .pe-mini img { width: 100%; height: 100%; object-fit: cover; }
.prow .pe-mini .emoji-disp { font-size: 1.2rem; }
.prow .pe-mini .upload-hint { position: absolute; bottom: -2px; right: -2px; background: var(--or); border-radius: 50%; width: 16px; height: 16px; font-size: 9px; display: flex; align-items: center; justify-content: center; color: var(--texte); }
.prow input[type=file] { display: none; }
.ain { padding: 0.35rem 0.6rem; border: 1.5px solid var(--creme-fonce); border-radius: 7px; font-size: 0.92rem; font-family: inherit; background: #fff; }
.ain.nom { flex: 1; min-width: 120px; }
.ain.prix { width: 75px; text-align: center; }
.ain.unite { width: 100px; }
.ain.cat { width: 130px; }
.ain.emoji-edit { width: 50px; text-align: center; }
.ain:focus { outline: none; border-color: var(--vert-clair); }

.ttc-preview { display: inline-flex; align-items: center; min-width: 95px; padding: 0.35rem 0.55rem; background: var(--vert-pale); color: var(--vert); border-radius: 6px; font-size: 0.85rem; font-weight: 600; }
.rnm-info { display: inline-flex; align-items: center; padding: 0.3rem 0.55rem; background: #fff8e1; color: #8C6914; border-radius: 6px; font-size: 0.78rem; font-weight: 500; cursor: help; }

.tog { position: relative; width: 40px; height: 22px; margin-left: auto; flex-shrink: 0; }
.tog input { opacity: 0; width: 0; height: 0; }
.tog-sl { position: absolute; inset: 0; background: #d4d4d4; border-radius: 22px; cursor: pointer; transition: .3s; }
.tog-sl::before { content: ''; position: absolute; left: 3px; bottom: 3px; width: 16px; height: 16px; background: #fff; border-radius: 50%; transition: .3s; }
.tog input:checked + .tog-sl { background: var(--vert); }
.tog input:checked + .tog-sl::before { transform: translateX(18px); }

.btn-del-prod { padding: 0.3rem 0.6rem; border-radius: 6px; border: 1px solid #f5a0a0; background: transparent; color: var(--rouge); cursor: pointer; font-size: 0.78rem; font-family: inherit; }
.btn-del-prod:hover { background: #fdecea; }

.new-cat-row { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; margin-top: 1.5rem; padding: 0.9rem; background: var(--gris); border-radius: var(--radius); }
.new-cat-row input { padding: 0.55rem 0.85rem; border: 1.5px solid var(--creme-fonce); border-radius: 8px; font-size: 0.92rem; font-family: inherit; flex: 1; min-width: 140px; }
.new-cat-row input:focus { outline: none; border-color: var(--vert-clair); }

.admin-toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  background: var(--vert); color: #fff; border-radius: 10px;
  padding: 0.85rem 1.3rem;
  box-shadow: var(--ombre-fort);
  font-size: 0.92rem; z-index: 200;
  transform: translateY(100px); opacity: 0;
  transition: all .25s;
}
.admin-toast.show { transform: translateY(0); opacity: 1; }
.admin-toast.err { background: var(--rouge); }

.admin-cat-actions { display: flex; gap: 0.5rem; }
.btn-del-cat { padding: 0.35rem 0.7rem; border-radius: 6px; border: 1px solid #f5a0a0; background: transparent; color: var(--rouge); cursor: pointer; font-size: 0.78rem; font-family: inherit; }
.btn-del-cat:hover { background: #fdecea; }
