/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }

@font-face {
  font-family: 'Dancing Script';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/DancingScript-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/Quicksand-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/Quicksand-SemiBold.ttf') format('truetype');
  font-display: swap;
}

body {
  font-family: 'Quicksand', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fefae0;
  color: #222;
  line-height: 1.6;
  background-image: url("/static/img/Tonishintergrundbild.png");
  background-repeat: repeat;
  background-size: 300px;
  background-attachment: fixed;
}

/* Kategorie-Navigation */
.kategorie-filter {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 1rem;
  background-color: #fff4d0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.filter-button {
  flex: 0 0 auto;
  background: #fae3b0;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #4a2f1b;
}

.filter-button.active,
.filter-button:hover {
  background: #b22222;
  color: white;
}

/* Produkt-Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

/* Produktkarte */
.menu-item {
  background: linear-gradient(to bottom right, #fff7e0, #fae3b0);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.menu-item:hover { transform: translateY(-3px); }
.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}
.menu-item .produkt-info { padding: 1rem; }
.menu-item h4 { font-size: 1.2rem; margin-bottom: 0.4rem; color: #4a2f1b; }
.menu-item p { color: #555; font-size: 0.95rem; margin-bottom: 0.8rem; }

.menu-item button {
  background-color: #b22222;
  color: white;
  border: none;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.menu-item button:hover { background-color: #911919; }

/* Call to Action unten */
.cta {
  background-color: #fff4d0;
  text-align: center;
  padding: 2rem;
}
.cta button {
  background: linear-gradient(90deg, #b22222 60%, #fae3b0 120%);
  color: white;
  border: none;
  padding: 1.1rem 2.3rem;
  border-radius: 48px;
  font-weight: bold;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(178,34,34,0.14), 0 1.5px 8px rgba(250,227,176,0.18);
  transition: transform 0.1s, box-shadow 0.2s, background 0.3s;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.cta button::before {
  content: '🛒';
  font-size: 1.4rem;
  margin-right: 0.6rem;
  display: inline-block;
}
.cta button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(178,34,34,0.18), 0 4px 12px rgba(250,227,176,0.18);
  background: linear-gradient(90deg, #d7372a 80%, #fae3b0 160%);
}

/* Dropdown Größenauswahl */
.groessen-dropdown { position: relative; display: inline-block; width: 100%; margin-bottom: 1rem; }
.groesse-auswahl-button {
  width: 100%; background-color: #fff7dc; border: 1px solid #e6cf9f;
  padding: 0.6rem 1rem; border-radius: 25px; cursor: pointer; font-weight: bold;
  text-align: left; font-size: 1rem; color: #4a2f1b; position: relative;
}
.groesse-auswahl-button::after {
  content: "▼";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.groesse-auswahl-button.open::after {
  transform: translateY(-50%) rotate(180deg);
}
.groesse-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  list-style: none;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-top: 0.3rem;
  padding: 0;
  z-index: 1100;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.groesse-options li {
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: normal;
  color: #333;
}
.groesse-options li:hover {
  background-color: #fcebbb;
}

/* Warenkorb */
.warenkorb-container {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100%;
  background-color: #fff6e0;
  box-shadow: -2px 0 12px rgba(0,0,0,0.1);
  padding: 1.5rem;
  overflow-y: auto;
  transition: right 0.3s ease;
  z-index: 1003;
}
.warenkorb-container.sichtbar { right: 0; }

.overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1002;
}
.overlay.sichtbar { display: block; }

.warenkorb-item {
  border-bottom: 1px solid #eee;
  padding: 0.7rem 0;
}

.warenkorb-item strong {
  display: block;
  margin-bottom: 0.3rem;
}
.warenkorb-item small {
  font-size: 0.85rem;
  color: #555;
}
.warenkorb-item button {
  background: none;
  border: none;
  color: #b22222;
  font-size: 1rem;
  margin: 0 5px;
  cursor: pointer;
}

/* Floating Cart Button */
#warenkorb-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #bf7e04;
  color: white;
  border: none;
  border-radius: 100px;
  padding: 1rem 1.3rem;
  font-size: 1.1rem;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Mengensteuerung */
.menge-controls button {
  padding: 0.3rem 0.6rem;
  font-size: 0.9rem;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  background-color: #f8f0dc;
  color: #3b2f2f;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.menge-controls button:hover {
  background-color: #f2e5c8;
  transform: scale(1.05);
}
.menge-controls .entfernen-btn {
  background-color: #fbeee0;
  color: #7b3e3e;
  font-weight: normal;
  font-size: 0.85rem;
  padding: 0.3rem 0.8rem;
  margin-left: auto;
  border: 1px solid #e3d1b8;
  border-radius: 6px;
}
.menge-controls .entfernen-btn:hover {
  background-color: #f3e0cb;
  color: #5a2e2e;
}

/* Responsive */
@media (max-width: 768px) {
  .warenkorb-container {
    width: 90%;
  }
  #warenkorb-button {
    bottom: 1rem;
    right: 1rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .kategorie-filter {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 1rem 1rem 0.5rem;
  }
}

/* Extras */
.extras label {
  display: block;
  background-color: #fff7dc;
  border: 1px solid #e6cf9f;
  padding: 0.6rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.extras label:hover {
  background-color: #fcebbb;
}
.extra-kachel {
  display: flex;
  align-items: center;
  background-color: #fdf8f0;
  border: 1px solid #e3d7c5;
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  gap: 0.6rem;
  color: #4a3522;
  white-space: nowrap;
}
.extra-kachel:hover {
  background-color: #f5eee2;
}
.extra-kachel input[type="checkbox"] {
  transform: scale(0.9);
  accent-color: #c7372f;
  margin: 0;
}
.extra-kachel label {
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.extras-warenkorb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0;
}
.extras-toggle {
  background: none;
  color: #444;
  border: none;
  padding: 0.3rem;
  font-size: 0.85rem;
  cursor: pointer;
  margin-bottom: 0.4rem;
  text-decoration: underline;
}
.extras-button {
  background-color: #fae3b0;
  color: #b22222;
  border: 2px solid #b22222;
  border-radius: 12px;
  padding: 5px 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 8px;
}

.extras-button:hover {
  background-color: #fff6e0;
}

.suchfeld-container {
  padding: 10px;
  text-align: center;
  background-color: #fff6e0;
}
.suchfeld {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #ccc;
  width: 60%;
  max-width: 300px;
  font-size: 16px;
}

/* Hero */
.hero-textblock {
  background-color: #fff;
  padding: 80px 20px 60px;
  text-align: center;
}

.hero-text-inner {
  max-width: 600px;
  margin: 0 auto;
}

.brandname {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: #b22222;
  margin-bottom: 0.5rem;
}

.brandsubtitle {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  color: #b51616;
  margin-bottom: 1.2rem;
}

.cta-button {
  background-color: #b22222;
  color: white;
  padding: 10px 22px;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background-color: #9c1c1c;
}

#floating-cart-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #b22222;
  color: white;
  padding: 1rem 1.3rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
}

#floating-cart-button:hover {
  background-color: #9c1c1c;
}

.warenkorb-container.sichtbar {
  right: 0;
}

.extra-tag {
  display: inline-flex;
  align-items: center;
  background-color: #ffe6cc;
  color: #663300;
  font-size: 0.9rem;
  padding: 4px 8px;
  margin: 4px 4px 4px 0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  font-weight: 500;
  transition: background-color 0.2s;
}

.extra-tag:hover {
  background-color: #ffcc99;
}

.extra-tag button {
  background: none;
  border: none;
  color: #cc3300;
  font-weight: bold;
  margin-left: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  padding: 0;
}

.extra-tag button:hover {
  color: #990000;
}

.extra-chip {
  display: inline-block;
  background-color: #ffe0b2;
  color: #5c3900;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin: 4px 4px 0 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
}

.extra-chip button {
  background: none;
  border: none;
  color: #b71c1c;
  font-weight: bold;
  margin-left: 8px;
  cursor: pointer;
  font-size: 1rem;
}

.extra-chip button:hover {
  color: #ff0000;
}

/* Adresse & Lieferkosten */
#adresse_suche {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 20px;
  border: 1px solid #d5c1a1;
  margin-top: 0.8rem;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  background-color: #fffdf5;
}

#adresse_vorschlaege {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #fffdf6;
  border-radius: 10px;
  border: 1px solid #e3d7c5;
  max-height: 180px;
  overflow-y: auto;
  margin-bottom: 0.5rem;
}

#adresse_vorschlaege li {
  padding: 0.45rem 0.7rem;
  font-size: 0.9rem;
  cursor: pointer;
}

#adresse_vorschlaege li:hover {
  background-color: #fcebbb;
}

#adresse_vorschlaege .adresse-hinweis {
  cursor: default;
  color: #7a6a55;
}

#adresse_bestätigen_btn {
  margin-top: 0.3rem;
  background-color: #b22222;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  cursor: pointer;
}

#adresse_bestätigen_btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#lieferinfo {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #5a3b1c;
}

#lieferkosten-anzeige,
#gesamtbetrag-anzeige {
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

.cart-form { display: grid; gap: 12px; }

.field { display: grid; gap: 6px; }
.field label {
  font-size: .95rem; 
  color: #2f2b2b; 
  letter-spacing: .2px;
}
.field .req { color: #b22; margin-left: 4px; }

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: .98rem;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease, transform .05s ease;
  outline: none;
}

/* dezente Glanzkante oben für mehr Tiefe */
.field input, .field select, .field textarea {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.field input::placeholder,
.field textarea::placeholder { color: #9a9a9a; }

.field:focus-within input,
.field:focus-within select,
.field:focus-within textarea {
  border-color: #d9a6a0; /* warmes Rot-Beige passend zu deinem Theme */
  box-shadow: 0 0 0 3px rgba(217,166,160,.22);
}

/* kleiner „Press“-Effekt bei Tipp */
.field input:active,
.field select:active,
.field textarea:active {
  transform: translateY(0.5px);
}

/* Mobile-Verbesserung für Select */
.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #b22 50%),
    linear-gradient(135deg, #b22 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* Primärer Bestell-Button – subtil, ohne Emoji */
.btn-primary-solid {
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(180deg, #b72b2b 0%, #a32323 100%);
  box-shadow: 0 8px 20px rgba(183, 43, 43, .18);
  cursor: pointer;
  transition: transform .06s ease, filter .15s ease, box-shadow .15s ease, opacity .2s ease;
}
.btn-primary-solid:hover { filter: brightness(.98); }
.btn-primary-solid:active {
  transform: translateY(1px);
  box-shadow: 0 6px 16px rgba(183, 43, 43, .22);
}

/* Disabled-Zustand bei Mindestbestellwert unterschritten */
#bestellen-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  filter: grayscale(.15);
}

/* Lieferart sauber in dein Layout integriert (dezent) */
.lieferart-box {
  display: flex; gap: 12px; align-items: center;
  margin: .5rem 0 .25rem;
  color: #2f2b2b;
  font-size: .95rem;
}
.lieferart-box input[type="radio"] { accent-color: #b72b2b; }

/* Hinweise unter dem Formular */
#lieferkosten-anzeige,
#gesamtbetrag-anzeige,
#warenkorb-summe {
  user-select: none;
}

/* Adresse-Vorschläge etwas ruhiger */
#adresse_vorschlaege {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
}
#adresse_vorschlaege li {
  padding: 9px 12px;
  transition: background-color .12s ease;
}
#adresse_vorschlaege li:hover { background: #fff7f5; }

/* Mindestbestellwert-Hinweis harmonisch */
#mindestwert-hinweis {
  background: #fff5e0;
  color: #5a4300;
  border: 1px solid #ffe3a6;
  border-radius: 12px;
  padding: 8px 10px;
}

/* Dropdown der Größen soll nicht abgeschnitten werden */
.menu-item {
  overflow: visible;
}

/* Öffnungszeiten-Banner */
.oeffnungszeiten-banner {
  max-width: 1100px;
  margin: 0.5rem auto 0;
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
}

.oeffnungszeiten-banner--open {
  background: #e6f6e9;
  border-color: #b7e0bd;
  color: #205529;
}

.oeffnungszeiten-banner--closed {
  background: #ffe4dd;
  border-color: #f0b9aa;
  color: #7b2616;
}

/* Öffnungszeiten-Pop-up */
.oeffnungszeiten-modal {
  position: fixed;
  inset: 0;
  display: none;              /* wird per JS auf flex gesetzt */
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.oeffnungszeiten-modal.sichtbar {
  display: flex;
}

.oeffnungszeiten-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.oeffnungszeiten-modal-content {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 1rem;
  background: #fffdfa;
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
  color: #3b2f2f;
}

.oeffnungszeiten-modal-content h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.oeffnungszeiten-modal-content p {
  margin: 0 0 1rem;
  line-height: 1.5;
  white-space: pre-line; /* damit \n als Zeilenumbruch angezeigt werden */
}

.oeffnungszeiten-modal-close-btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  cursor: pointer;
  background: #b72b2b;
  color: #fff;
  font-weight: 600;
}
.oeffnungszeiten-modal-close-btn:hover {
  filter: brightness(0.95);
}

/* Falls der alte Banner irgendwo noch übrig ist, einfach ausblenden */
.oeffnungszeiten-banner {
  display: none;
}

/* Wunschzeit – Zeile im Formular */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

/* Dropdown für Wunschzeit */
#wunsch_zeit_select {
  width: 100%;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  border: 1px solid #c7b8a3;
  background: #fffdfa;
  font-size: 0.9rem;
  outline: none;
  box-sizing: border-box;
}

#wunsch_zeit_select:focus {
  border-color: #b72b2b;
  box-shadow: 0 0 0 2px rgba(183, 43, 43, 0.15);
}

/* Kleiner Hinweistext unter der Wunschzeit */
.field-hint {
  font-size: 0.78rem;
  color: #6b5a4a;
  line-height: 1.4;
}

/* Optional: etwas kompakter auf sehr kleinen Screens */
@media (max-width: 480px) {
  .form-row {
    gap: 0.25rem;
  }

  #wunsch_zeit_select {
    font-size: 0.85rem;
    padding: 0.35rem 0.5rem;
  }

  .field-hint {
    font-size: 0.75rem;
  }
}

/* --- Bestell-Erfolg / Info-Box --- */

.order-message {
  position: fixed;
  inset: auto 0 20px 0;               /* unten, zentriert */
  display: none;                      /* standardmäßig versteckt */
  justify-content: center;
  z-index: 9999;
  pointer-events: none;               /* klicks nur auf inneres Element */
}

.order-message-inner {
  pointer-events: auto;
  max-width: 420px;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  animation: orderMessageFadeIn 0.2s ease-out;
}

.order-message-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.order-message-text h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #2f3a2f;
}

.order-message-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
}

.order-message-close {
  margin-left: auto;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: #777;
}

.order-message-close:hover {
  color: #333;
}

@keyframes orderMessageFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.site-footer {
  margin: 1.5rem auto 2rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 253, 245, 0.9);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-size: 0.86rem;
  color: #7a6a5a;
}

.site-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem 1rem;
}

.site-footer-copy {
  opacity: 0.9;
}

.site-footer-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.site-footer-links .dot {
  opacity: 0.5;
}

.site-footer a {
  color: #b72b2b;
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Insta-Badge */
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #fff5f5;
  border: 1px solid #f5c1c1;
  font-size: 0.84rem;
}

/* Screenreader-Text (optional, für Barrierefreiheit) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* Floating-Button für Tagesangebote */
.floating-deals-btn {
  position: fixed;
  left: 1.1rem;
  bottom: 4.2rem;
  border-radius: 999px;
  border: 1px solid rgba(183, 43, 43, 0.18);
  padding: 0.45rem 0.7rem;
  font-size: 1.05rem;
  cursor: pointer;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;

  background: radial-gradient(circle at 30% 0, #ffe8d2 0, #fffdf8 50%, #fbe0d2 100%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  color: #b72b2b;

  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  opacity: 0.9;
}

.floating-deals-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  opacity: 1;
}

.floating-deals-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* Panel mit den Tagesangeboten */
.deals-panel {
  position: fixed;
  left: 1.1rem;
  bottom: 8rem;
  max-width: 260px;
  padding: 0.8rem 0.9rem 0.7rem;
  border-radius: 1rem;
  background: #fffdf8;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  font-size: 0.85rem;
  color: #3b2f2f;
  z-index: 50;
  display: none; /* wird per JS ein-/ausgeblendet */
}

.deals-panel.open {
  display: block;
}

.deals-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.deals-panel-header h3 {
  margin: 0;
  font-size: 0.96rem;
  color: #b22222;
}

.deals-close-btn {
  border: none;
  background: none;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}

.deals-hinweis {
  margin: 0 0 0.35rem;
  font-size: 0.83rem;
  color: #5a4a3a;
}

.deals-liste {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.4rem;
}

.deals-liste li {
  margin-bottom: 0.25rem;
}

.deals-preis {
  font-weight: 700;
  color: #b22222;
}

.deals-fussnote {
  margin: 0;
  font-size: 0.75rem;
  color: #7a6a5a;
}


/* Warenkorb: Buttons "Extras" & "Soßen / Optionen" */
.extras-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;

  margin-top: 0.3rem;
  margin-right: 0.3rem;
  padding: 0.25rem 0.7rem;

  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff8eb;

  font-size: 0.78rem;
  font-weight: 500;
  color: #7a4c2a;

  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.extras-toggle:hover {
  background: #ffe9c9;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.extras-toggle:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Block mit den aufklappbaren Inhalten darunter etwas absetzen */
.extras-warenkorb {
  margin-top: 0.3rem;
  padding: 0.4rem 0.55rem;
  border-radius: 10px;
  background: #fffdf8;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Warenkorb: Menge-Steuerung & Entfernen-Button */
.menge-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.menge-controls .qty {
  min-width: 1.6rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #3b2f2f;
}

.menge-controls button {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  padding: 0.2rem 0.55rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.menge-controls button:hover {
  background: #f7f1ea;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  transform: translateY(-0.5px);
}

.menge-controls button:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Spezieller Style für Entfernen-Button */
.menge-controls .entfernen-btn {
  border-color: rgba(183, 43, 43, 0.25);
  color: #b72b2b;
  background: #fff6f4;
  font-size: 0.8rem;
  padding: 0.2rem 0.8rem;
}

.menge-controls .entfernen-btn:hover {
  background: #fde0dc;
  box-shadow: 0 1px 4px rgba(183, 43, 43, 0.35);
}

/* Kleine Badges für Extras & Soßen im Warenkorb */
.extra-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.5rem;
  margin: 0.1rem 0.2rem 0 0;
  border-radius: 999px;
  background: #fff2e1;
  font-size: 0.78rem;
  color: #5a3b23;
}

.extra-chip button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1;
}

/* Admin Dashboard – Schnellnavigation */
.admin-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.admin-quick-nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff8eb;
  font-size: 0.85rem;
  font-weight: 500;
  color: #5a3b23;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.admin-quick-nav-item:hover {
  background: #ffe9c9;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

/* ✅ Karten kompakter, wenn Bilder ausgeschaltet sind */
.menu-item.no-image {
  padding-top: 0.2rem;
}

.menu-item.no-image .produkt-info {
  padding-top: 0.9rem;
}

/* Optional: Grid etwas dichter, wenn ohne Bilder */
@media (min-width: 700px) {
  .menu-grid {
    gap: 1.2rem;
  }
}

.admin-stealth-link{
  display:inline-block;
  width:10px;
  height:10px;
  margin-left:6px;

  border-radius:999px;
  background: currentColor; /* nutzt die Footer-Textfarbe */
  opacity:0.12;

  text-decoration:none;
  vertical-align:middle;
}

.admin-stealth-link:hover{
  opacity:0.35;
}

@font-face {
  font-family: "Quicksand";
  src: url("/static/fonts/Quicksand-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}