/* ===== COMPONENTE SUPLIMENTARE (peste designul taste din style.css) =====
   style.css contine TOATE clasele taste. Aici doar ce NU exista in taste:
   pagini text (termeni, valori), oferte full-page, plac​i de overview (meniu/comanda). */

/* ── Plac​i categorii overview (pagini /meniu/ si /comanda-online/) ───────── */
.cat-tiles-section { padding: 88px 0; background: var(--cream-pale); }
.cat-tiles-section .menu-header { margin-bottom: 48px; }
/* Placi categorii — stil rand (text stanga + poza dreapta), 2 desktop / 1 mobil */
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 760px) { .cat-tiles { grid-template-columns: 1fr; gap: 12px; } }
.ctile {
  position: relative;
  display: flex; align-items: center; gap: 18px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: #fff; padding: 14px 16px 14px 22px; min-height: 118px;
  transition: transform .2s cubic-bezier(.4, 0, .2, 1), box-shadow .2s, border-color .2s;
}
.ctile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(201,161,74,.5); }
.ctile img {
  order: 3; flex-shrink: 0; width: 150px; height: 100px; border-radius: 12px; object-fit: cover;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.ctile:hover img { transform: scale(1.04); }
.ctile .cat-card-placeholder { order: 3; position: static; flex-shrink: 0; width: 150px; height: 100px; border-radius: 12px; inset: auto; }
.ct-name {
  order: 1; flex: 1; min-width: 0; position: static;
  font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700;
  color: var(--charcoal); line-height: 1.1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ct-cnt { display: none; }
@media (max-width: 420px) {
  .ctile img, .ctile .cat-card-placeholder { width: 120px; height: 88px; }
  .ct-name { font-size: 26px; }
}

/* ── Oferte full-page (/oferte/) ────────────────────────────────────────── */
.offers-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .offers-full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .offers-full { grid-template-columns: 1fr; } }
.ocard {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.ocard .day {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
}
.ocard h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600;
  color: var(--charcoal); margin: 10px 0 8px;
}
.ocard p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

/* ── Pagini text (termeni, valori nutritionale, sosuri) ─────────────────── */
.text-page { padding: 64px 0 88px; background: var(--cream-pale); min-height: 60vh; }
.text-page h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 48px);
  font-weight: 600; color: var(--charcoal); margin: 16px 0 24px;
}
.text-page .page-content { max-width: 820px; line-height: 1.7; color: var(--text-main); }
.text-page .page-content p { margin-bottom: 16px; color: var(--text-muted); }
.text-page .page-content a { color: var(--gold); }
.text-page table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.text-page th { padding: 10px; border-bottom: 2px solid var(--gold); text-align: left; color: var(--charcoal); }
.text-page td { padding: 9px 10px; border-bottom: 1px solid var(--border); color: var(--text-muted); }

/* ── Note pret orientativ ───────────────────────────────────────────────── */
.provizoriu {
  display: block; margin: 24px 0 0;
  color: var(--text-muted); font-size: 13px; font-style: italic;
}

/* ── Toast adaugare in cos ──────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 96px; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--green-deep); color: var(--cream);
  padding: 12px 22px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500; z-index: 950;
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s;
  box-shadow: var(--shadow-md);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Placeholder colorat pentru categorii fara poza (Bauturi) ────────────── */
.cat-card-placeholder {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--green-deep, #2e4a35), var(--green-darker, #21372a));
}
.cat-card-placeholder.ph-bauturi {
  background: linear-gradient(135deg, #2e4a35, #3f6b4a);
  display: flex; align-items: center; justify-content: center;
}
.ctile .cat-card-placeholder { border-radius: inherit; }

/* ── Card Oferte: auriu plin, scris verde inchis mare — cel mai vizibil rand ─ */
.cat-card-oferte {
  background: linear-gradient(135deg, #f0d98a 0%, #d9ad4f 55%, #c9952f 100%);
  border: 2px solid #b8842a;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(201,161,74,.45), inset 0 1px 2px rgba(255,255,255,.4);
}
.cat-card-oferte .cat-card-body { flex: 1; text-align: center; }
.cat-card-oferte .cat-card-name {
  color: #1f3326;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: .02em;
  text-shadow: 0 1px 1px rgba(255,255,255,.45);
  white-space: nowrap;
}
.cat-card-oferte .cat-card-count { display: none; }
.ctile-oferte {
  background: linear-gradient(135deg, #f0d98a 0%, #d9ad4f 55%, #c9952f 100%);
  border: 2px solid #b8842a;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(201,161,74,.45), inset 0 1px 2px rgba(255,255,255,.4);
}
.ctile-oferte::after { display: none; }
.ctile-oferte .ct-name {
  color: #1f3326; position: static; text-shadow: 0 1px 1px rgba(255,255,255,.45);
  font-family: 'Cormorant Garamond', serif; text-align: center;
  font-size: clamp(2rem, 3.2vw, 2.6rem); font-weight: 700; letter-spacing: .02em;
  flex: 1;
}

/* ── Footer redesign (contrast bun, text deschis) ───────────────────────── */
footer { background: #14110e; color: #d8cfbe; padding: 56px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.1fr; gap: 36px;
  padding-bottom: 40px;
}
.footer-brand img { margin-bottom: 14px; }
.footer-about { color: #b8ad99; font-size: .9rem; line-height: 1.6; margin-bottom: 14px; max-width: 32ch; }
.footer-addr { color: #d8cfbe; font-size: .9rem; margin-bottom: 6px; }
.footer-addr a { color: var(--gold-light, #e3c578); text-decoration: none; }
.footer-addr a:hover { text-decoration: underline; }
.footer-h { color: var(--gold-light, #e3c578); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { color: #cfc5b2; font-size: .9rem; margin-bottom: 9px; display: flex; justify-content: space-between; gap: 1rem; }
.footer-list li span { color: #a89c87; }
.footer-links li { display: block; }
.footer-links a { color: #d8cfbe; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light, #e3c578); }
.footer-bottom { border-top: 1px solid rgba(201,161,74,.18); padding: 20px 0; margin-top: 8px; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: #a89c87; font-size: .82rem; margin: 0; }
.footer-legal a { color: var(--gold-light, #e3c578); text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } .footer-bottom-inner { flex-direction: column; text-align: center; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── Pagina Contact ─────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 24px 0; }
.contact-card { background: rgba(201,161,74,.06); border: 1px solid rgba(201,161,74,.18); border-radius: 12px; padding: 20px 24px; }
.contact-card h3 { color: var(--gold, #c9a14a); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.contact-card p { color: var(--text-main, #ece3d0); line-height: 1.6; }
.contact-card a { color: var(--gold-light, #e3c578); text-decoration: none; }
.text-page .page-content h3 { color: var(--cream, #ece3d0); margin: 24px 0 8px; font-size: 1.15rem; }
.text-page .page-content a { color: var(--gold-light, #e3c578); }
@media (max-width: 600px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── Contact: tabel program + blocuri ───────────────────────────────────── */
.contact-intro { font-size: 1.05rem; color: var(--text-main, #ece3d0); margin-bottom: 28px; max-width: 60ch; }
.contact-block { margin-bottom: 24px; }
.contact-label { color: var(--gold, #c9a14a); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.contact-value { color: var(--text-main, #ece3d0); font-size: 1.05rem; margin-bottom: 4px; }
.contact-value a { color: var(--gold-light, #e3c578); text-decoration: none; }
.contact-note { color: var(--text-light, #a89c87); font-size: .88rem; margin-top: 4px; }
.contact-program-table { width: 100%; max-width: 360px; border-collapse: collapse; margin-top: 8px; }
.contact-program-table th { text-align: left; color: var(--text-main, #ece3d0); padding: 7px 0; font-weight: 500; }
.contact-program-table td { text-align: right; color: var(--gold-light, #e3c578); padding: 7px 0; }
.contact-program-table tr { border-bottom: 1px solid rgba(201,161,74,.12); }
.local-address { color: var(--gold-light, #e3c578); margin: 10px 0; font-size: .95rem; }

/* ── Buton Șterge în coș (sub −/+, cu spațiu de separare) ────────────────── */
.qty-ctrl { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.qty-row { display: flex; align-items: center; gap: 8px; }
.cart-item-remove {
  background: none; border: none; padding: 4px 8px;
  color: var(--text-light, #a89c87); font-size: .78rem; cursor: pointer;
  text-decoration: underline;
}
.cart-item-remove:hover, .cart-item-remove:active { color: #c0392b; }

/* ── Modal produs ───────────────────────────────────────────────────────── */
.product-modal {
  position: fixed; inset: 0; z-index: 250; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(0,0,0,.7); backdrop-filter: blur(2px);
}
.product-modal.open { display: flex; }
.pm-dialog {
  background: var(--bg-2, #1f1a16); border-radius: 16px; overflow: hidden;
  max-width: 460px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.6); position: relative;
}
.pm-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(0,0,0,.5); color: #fff; font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.pm-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; background: var(--wood, #3a2c20); }
.pm-img img { width: 100%; height: 100%; object-fit: cover; }
.pm-body { padding: 24px; }
.pm-name { font-family: var(--display, serif); font-size: 1.7rem; color: var(--cream, #ece3d0); margin-bottom: 2px; }
.pm-grams { color: var(--gold, #c9a14a); font-size: .85rem; margin-bottom: 12px; }
.pm-desc { color: var(--text-dim, #b8ad99); line-height: 1.6; margin-bottom: 16px; }
.pm-sizes { display: flex; gap: 8px; margin-bottom: 12px; }
.pm-sizes:empty { display: none; }
.pm-size {
  flex: 1; border: 1px solid rgba(201,161,74,.3); background: none;
  color: var(--text-dim, #ccc); border-radius: 8px; padding: 10px; cursor: pointer; font-size: .9rem;
}
.pm-size.active { background: rgba(201,161,74,.18); border-color: var(--gold, #c9a14a); color: var(--gold, #c9a14a); }
.pm-price { font-family: var(--display, serif); font-size: 1.6rem; color: var(--gold, #c9a14a); margin-bottom: 16px; }
.pm-nutrition { border-top: 1px solid rgba(201,161,74,.15); padding-top: 14px; margin-bottom: 16px; }
.pm-nutrition h3 { color: var(--gold, #c9a14a); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.pm-nutrition p { color: var(--text-dim, #b8ad99); font-size: .88rem; margin-bottom: 4px; }
.pm-allergens { color: #d89b5a; }
.pm-add {
  width: 100%; background: var(--green-bright, #3f6b4a); color: #fff; border: none;
  border-radius: 10px; padding: 14px; font-weight: 700; font-size: 1.02rem; cursor: pointer;
}
.pm-add:hover { background: var(--green, #2e4a35); }
.product-card { cursor: pointer; }

/* ===== SEO ON-PAGE: breadcrumb, intro, descriere categorie, zone, pagini-zona ===== */

/* Breadcrumb */
.breadcrumb {
  font-size: 13px; color: var(--text-muted); margin-bottom: 18px;
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}
.breadcrumb a { color: #7a5c1a; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-current] { color: var(--charcoal); font-weight: 600; }

/* Intro sub H1 categorie */
.cat-intro {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.6;
  max-width: 70ch; margin: 0 0 28px;
}

/* Descriere SEO sub lista de produse */
.cat-seo {
  max-width: 800px; margin: 48px auto 0; padding-top: 36px;
  border-top: 1px solid var(--border);
}
.cat-seo h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 16px;
}
.cat-seo p { color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }

/* Adresa in sectiunea Local (fundal inchis --wood) -> text deschis */
.local-address { margin-top: 18px; color: rgba(236,227,208,.85); font-size: .95rem; }
.local-address strong { color: var(--gold-light, #e3c578); }

/* Tabel zone de livrare */
.livrare-lead, .livrare-note {
  max-width: 70ch; margin: 16px auto; text-align: center; color: var(--text-muted); line-height: 1.65;
}
.livrare-note { font-size: .92rem; font-style: italic; }
.zones-table-wrap { max-width: 680px; margin: 32px auto 0; overflow-x: auto; }
.zones-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,.08)); }
.zones-table th {
  background: var(--charcoal, #1a1410); color: var(--cream, #f7f2e8);
  text-align: left; padding: 14px 18px; font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: .04em;
}
.zones-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); color: var(--text-main); }
.zones-table tr:last-child td { border-bottom: none; }
.zones-table tr.zone-free td { background: rgba(63,107,74,.08); }
.zones-table tr.zone-free td strong { color: #2e6b3a; }
.zones-table td:last-child { text-align: right; font-weight: 600; white-space: nowrap; }

/* Grid comanda in pagina-zona (sub H1) — foloseste acelasi stil rand ca /meniu/ */
.zone-order { margin: 24px 0 40px; }
.zone-order .section-label { color: #7a5c1a; margin-bottom: 14px; }

/* Pagina-zona */
.zone-page .page-content h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600;
  color: var(--charcoal); margin: 28px 0 12px;
}
.zone-page .page-content h3 {
  font-size: 1.15rem; font-weight: 600; color: var(--charcoal); margin: 20px 0 8px;
}
.zone-page .page-content ul { margin: 12px 0 16px 20px; }
.zone-page .page-content li { margin-bottom: 8px; color: var(--text-muted); }
.zone-cta { margin-top: 32px; }

/* ===== ACCESIBILITATE ===== */
/* Contrast: aur folosit ca text pe fundal deschis -> nuanta inchisa conforma WCAG (4.5:1) */
.cta-phone, .footer-addr a, .text-page .page-content a,
.zone-page .page-content a, .cat-seo a { color: #7a5c1a; }
/* .section-label si labels mici pe fundal CREM -> aur inchis lizibil.
   Pe fundal INCHIS (hero, oferte) raman deschise prin selectori mai specifici de mai jos. */
.section-menu .section-label, .section-local .section-label,
.cat-tiles-section .section-label, .section-livrare .section-label,
.menu-header .section-label, .offer-label { color: #7a5c1a; }
/* Exceptii: pe fundal inchis ramane aur deschis */
.hero .section-label, .hero-eyebrow-text, .section-oferte .section-label,
.section-cta .section-label { color: var(--gold-light, #e3c578); }

/* Focus vizibil pentru navigare la tastatura */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid #7a5c1a; outline-offset: 2px; border-radius: 2px;
}

/* Tap targets mai mari pe mobil */
@media (max-width: 768px) {
  .nav-link, .mobile-menu-link, .topbar-phone, .footer-links a {
    min-height: 44px; display: flex; align-items: center;
  }
  .topbar-phone { padding: 10px 8px; }
}

/* ════════ BUTON FLOATING COMANDA TELEFONICA ════════
   Bara lata jos pe mobil (thumb zone), pill cu numar dreapta-jos pe desktop.
   Verde "call" — icon + "Comandă telefonic" + numarul, aliniate pe un rand. */
.tel-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 800;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 14px 20px; min-height: 56px; line-height: 1;
  text-decoration: none; border-radius: 16px;
  font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 700;
  background: linear-gradient(135deg, #25b35e, #1faa54); color: #ffffff;
  box-shadow: 0 8px 28px rgba(31,170,84,.42), 0 2px 10px rgba(22,19,17,.22);
  animation: tel-slide-up .4s cubic-bezier(.4,0,.2,1) both;
}
.tel-bar svg { display: block; width: 22px; height: 22px; }
.tel-bar .tel-bar-label { display: inline-flex; align-items: center; gap: 8px; }
.tel-bar .tel-bar-num { font-weight: 800; }
.tel-bar:hover { filter: brightness(1.06); }
@keyframes tel-slide-up { from { transform: translateY(120%); } to { transform: translateY(0); } }
/* Desktop: pill dreapta-jos cu eticheta mica + numarul mare */
@media (min-width: 768px) {
  .tel-bar {
    left: auto; right: 28px; bottom: 28px;
    flex-direction: column; gap: 4px; align-items: flex-start;
    padding: 14px 26px; border-radius: 16px; min-height: 0;
    box-shadow: 0 8px 28px rgba(31,170,84,.4), 0 2px 8px rgba(22,19,17,.18);
  }
  .tel-bar .tel-bar-label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
  .tel-bar .tel-bar-num { font-size: 22px; font-weight: 800; letter-spacing: .01em; }
  .tel-bar svg { width: 15px; height: 15px; }
}
@media (prefers-reduced-motion: reduce) { .tel-bar { animation: none; } }

/* ════════ PAGINA VALORI NUTRITIONALE & ALERGENI ════════ */
.nut-page { max-width: 1000px; }
.nut-intro { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.nut-intro a { color: #7a5c1a; font-weight: 600; }
/* Cuprins */
.nut-toc { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.nut-toc a { display: inline-flex; align-items: center; gap: 5px; padding: 8px 14px; background: rgba(201,161,74,.1); border: 1px solid rgba(201,161,74,.25); border-radius: 50px; font-size: 13px; font-weight: 600; color: var(--charcoal); text-decoration: none; transition: var(--transition); }
.nut-toc a:hover { background: var(--gold); color: var(--charcoal); }
.nut-toc a span { color: var(--text-muted); font-weight: 400; }
.nut-toc a:hover span { color: rgba(22,19,17,.65); }
/* Sectiuni */
.nut-section { margin-bottom: 48px; scroll-margin-top: 90px; }
.nut-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px,3vw,34px); font-weight: 700; color: var(--charcoal); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.nut-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 720px) { .nut-cards { grid-template-columns: 1fr; } }
/* Card produs */
.nut-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 24px; }
.nut-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.nut-head h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--charcoal); line-height: 1.15; }
.nut-grams { flex-shrink: 0; font-size: 13px; font-weight: 700; color: #7a5c1a; background: rgba(201,161,74,.12); padding: 3px 10px; border-radius: 20px; }
.nut-ing { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
.nut-values { background: var(--cream-pale); border-radius: 10px; padding: 12px 14px; margin-bottom: 12px; }
.nut-vlabel { display: block; font-family: 'Cinzel', serif; font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: #7a5c1a; margin-bottom: 8px; }
.nut-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 16px; font-size: 12.5px; color: var(--text-muted); }
.nut-grid span:first-child { grid-column: 1 / -1; font-size: 15px; color: var(--green-deep); margin-bottom: 2px; }
.nut-grid b { color: var(--charcoal); font-weight: 600; }
.nut-allerg { font-size: 12.5px; color: var(--text-muted); display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.nut-allerg strong { color: var(--charcoal); }
.nut-tag { display: inline-block; background: rgba(163,80,47,.1); color: var(--brick); border: 1px solid rgba(163,80,47,.2); font-size: 11px; font-weight: 600; padding: 2px 9px; border-radius: 20px; }
.nut-allerg-none { color: var(--green-deep); font-style: italic; }
