/* =============================================
   PIZZA SHAWARMA CITY — Main Stylesheet
   Theme: Dark black with fire accents
   Hinweis: Schriften werden nicht mehr per @import geladen
   (render-blockierend), sondern nicht-blockierend im <head>.
   ============================================= */

/* =============================================
   GLOBALE ANIMATIONEN
   ============================================= */

/* Ausgangszustand vor dem Einblenden */
.pop-ready {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Eingeblendet */
.pop-in {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Bounce für "Hinzufügen" Button */
@keyframes btnBounce {
    0%   { transform: scale(1); }
    30%  { transform: scale(0.88); }
    60%  { transform: scale(1.15); }
    80%  { transform: scale(0.96); }
    100% { transform: scale(1); }
}
.btn-bounce { animation: btnBounce 0.4s ease forwards; }

/* Bounce für Kategorie-Tabs */
@keyframes tabBounce {
    0%   { transform: scale(1); }
    40%  { transform: scale(0.9); }
    70%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}
.tab-bounce { animation: tabBounce 0.3s ease forwards; }

/* Aktiver Nav-Link */
.nav-active {
    color: var(--fire-orange) !important;
    border-bottom: 2px solid var(--fire-orange);
}

/* ---- CSS Variables ---- */
:root {
    --fire-red:    #d8211d;   /* an Logo-Rot angeglichen */
    --fire-orange: #ff6600;
    --fire-yellow: #ffcc00;
    --gold:        #f0b429;   /* an Logo-Gold angeglichen */
    --black:       #0a0a0a;
    --dark:        #111111;
    --dark2:       #1a1a1a;
    --dark3:       #222222;
    --white:       #ffffff;
    --grey:        #aaaaaa;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    position: relative;
}

/* Fire edges — ganzer Bildschirm links und rechts */
.fire-edge {
    position: fixed;
    top: 0;
    width: 220px;
    height: 100vh;
    background-image: url('/static/img/fire_background.jpg?v=2');
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(0.55) saturate(1.5);
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
}

.fire-edge--left {
    left: 0;
    background-position: left center;
    -webkit-mask-image: linear-gradient(to right, black 0%, black 25%, transparent 100%);
    mask-image: linear-gradient(to right, black 0%, black 25%, transparent 100%);
}

.fire-edge--right {
    right: 0;
    background-position: right center;
    -webkit-mask-image: linear-gradient(to left, black 0%, black 25%, transparent 100%);
    mask-image: linear-gradient(to left, black 0%, black 25%, transparent 100%);
}

/* Feuer-Emojis auf den Rändern */
.fire-emojis {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 1rem 0;
    filter: none;
}

.fire-emojis span {
    font-size: 1.5rem;
    animation: flicker 2s ease-in-out infinite alternate;
    opacity: 0.85;
}

.fire-emojis span:nth-child(odd)  { animation-delay: 0s;    animation-duration: 1.8s; }
.fire-emojis span:nth-child(even) { animation-delay: 0.6s;  animation-duration: 2.4s; }
.fire-emojis span:nth-child(3n)   { animation-delay: 1.1s;  animation-duration: 2.0s; }

/* Arabische Schrift auf den Feuer-Rändern */
.fire-arabic {
    font-size: 0.85rem !important;
    font-family: 'Arial', sans-serif;
    color: var(--fire-yellow);
    text-shadow: 0 0 8px var(--fire-orange), 0 0 16px var(--fire-red);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.15em;
    font-weight: bold;
    opacity: 0.9 !important;
    animation: arabic-glow 3s ease-in-out infinite alternate !important;
}

@keyframes flicker {
    0%   { opacity: 0.5;  transform: scale(0.9) translateY(1px);  }
    50%  { opacity: 0.9;  transform: scale(1.05) translateY(-2px); }
    100% { opacity: 0.7;  transform: scale(1.0)  translateY(0px);  }
}

@keyframes arabic-glow {
    0%   { text-shadow: 0 0 6px var(--fire-orange), 0 0 12px var(--fire-red); opacity: 0.7; }
    100% { text-shadow: 0 0 12px var(--fire-yellow), 0 0 24px var(--fire-orange); opacity: 1; }
}

/* ====================================================
   HERO SECTION (Home page only)
   ==================================================== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 3rem 1.5rem;
}

/* Fire background — nur unten, wie Flammen die hochsteigen */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('/static/img/fire_background.jpg?v=2') center bottom / cover no-repeat;
    filter: brightness(0.6) saturate(1.3);
    -webkit-mask-image: linear-gradient(to top, black 0%, black 30%, transparent 75%);
    mask-image: linear-gradient(to top, black 0%, black 30%, transparent 75%);
}

/* Overlay: oben dunkel, unten transparent damit Feuer sichtbar */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.7)  50%,
        rgba(0,0,0,0.0)  100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

/* Logo on hero */
.hero-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(255, 102, 0, 0.6), 0 0 120px rgba(204, 34, 0, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 60px rgba(255,102,0,0.6), 0 0 120px rgba(204,34,0,0.3); }
    50%       { box-shadow: 0 0 90px rgba(255,102,0,0.9), 0 0 160px rgba(204,34,0,0.5); }
}

.hero-title {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--fire-orange), var(--fire-yellow), var(--fire-orange));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    line-height: 1.1;
}

@keyframes shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-arabic {
    font-size: 1.5rem;
    color: var(--fire-yellow);
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll span { font-size: 1.5rem; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---- Featured section on home ---- */
.section-label {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--fire-orange);
    margin-bottom: 0.4rem;
}

.section-title {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2rem;
}

/* Info strip below hero */
.info-strip {
    background: linear-gradient(90deg, #1a0500, #0a0a0a, #1a0500);
    border-top: 1px solid rgba(255,102,0,0.3);
    border-bottom: 1px solid rgba(255,102,0,0.3);
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 1.2rem 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.info-icon { font-size: 1.5rem; }

.info-label {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--grey);
}

.info-value {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--fire-yellow);
    font-weight: 600;
}

/* ---- Top bar ---- */
.topbar {
    background: #000;
    border-bottom: 1px solid rgba(255,102,0,0.2);
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 0.4rem 2rem;
    font-size: 0.82rem;
    color: var(--grey);
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.topbar a {
    color: var(--fire-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.topbar a:hover { color: var(--fire-orange); }

/* ---- Navbar ---- */
nav {
    background: linear-gradient(180deg, #1a0d05 0%, #2d0f08 100%);
    border-bottom: 2px solid var(--fire-orange);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(255, 102, 0, 0.4);
}

.nav-brand {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffe066;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(255, 204, 0, 0.4), 0 1px 2px rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover {
    color: var(--fire-yellow);
    border-bottom-color: var(--fire-orange);
}

.nav-link-dashboard {
    background: rgba(255,102,0,0.15);
    border: 1px solid rgba(255,102,0,0.4) !important;
    border-radius: 6px;
    padding: 0.3rem 0.8rem !important;
    color: var(--fire-orange) !important;
}

.nav-link-dashboard:hover {
    background: var(--fire-orange) !important;
    color: var(--black) !important;
}

.cart-badge {
    background: var(--fire-red);
    color: white;
    border-radius: 999px;
    padding: 0.15rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 0.4rem;
    box-shadow: 0 0 8px rgba(216, 33, 29, 0.5);
    border: 1.5px solid #ffaa00;
}

/* ---- Main content wrapper ---- */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

/* ---- Flash messages ---- */
.message {
    padding: 0.75rem 1.2rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.message.success { background: rgba(255,102,0,0.15); border: 1px solid var(--fire-orange); }
.message.error   { background: rgba(204,0,0,0.15);   border: 1px solid var(--fire-red); }
.message.warning { background: rgba(255,204,0,0.1);  border: 1px solid var(--fire-yellow); }

/* ---- Page headings ---- */
h1 {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, var(--fire-orange), var(--fire-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Rot -> Gold Verlauf, passend zum Logo */
    color: var(--fire-red);
    background: linear-gradient(90deg, var(--fire-red), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 2.5rem 0 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(240,180,41,0.35);
}

/* ====================================================
   MENU PAGE
   ==================================================== */

/* Category tab buttons */
.category-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-tab {
    background: var(--dark3);
    border: 1px solid rgba(255,102,0,0.3);
    color: var(--grey);
    padding: 0.5rem 1.4rem;
    border-radius: 999px;
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.category-tab:hover,
.category-tab.active {
    background: var(--fire-red);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 0 12px rgba(216,33,29,0.5);
}

/* Menu item grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

/* Menu card */
.menu-card {
    background: var(--dark2);
    border: 1px solid rgba(255,102,0,0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(255, 102, 0, 0.35);
    border-color: var(--fire-orange);
}

.menu-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.menu-card:hover .menu-card-img {
    transform: scale(1.05);
}

/* Repräsentatives Kategorie-Bild oben in der Sektion */
.cat-hero {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    margin: 0.5rem 0 0.25rem;
    border: 1px solid rgba(240, 180, 41, 0.35);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

/* Text-Karte: Artikel ohne Foto — sauber mit Name/Preis, kein Platzhalter */
.menu-card--text {
    border-left: 4px solid var(--fire-red);
}
.menu-card--text .menu-card-body {
    padding: 1.1rem 1rem;
}
.menu-card--text .menu-card-name {
    font-size: 1.2rem;
}

.menu-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.4rem;
}

.menu-card-name {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-card-desc {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.4;
    flex: 1;
}

.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.add-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

/* 40-cm-Pizza-Button: Gold-Outline zur Unterscheidung */
.btn-add--40 {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}
.btn-add--40:hover {
    background: var(--fire-red);
    border-color: var(--gold);
    color: #fff;
}

/* Pizza: Größe & Extras Auswahl */
.pizza-opts { margin: 0.6rem 0 0.2rem; }
.pizza-opts summary {
    cursor: pointer; list-style: none;
    color: var(--gold); font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.pizza-opts summary::-webkit-details-marker { display: none; }
.pizza-opts summary::before { content: '＋ '; }
.pizza-opts[open] summary::before { content: '− '; }
.opt-group { margin: 0.5rem 0; display: flex; flex-wrap: wrap; gap: 0.35rem 0.9rem; }
.opt-title {
    width: 100%; font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 0.5px; color: var(--fire-orange); font-weight: 700;
    margin-top: 0.3rem;
}
.opt { font-size: 0.82rem; color: #ddd; display: flex; align-items: center; gap: 0.3rem; cursor: pointer; }
.opt input { accent-color: var(--fire-red); }

/* Promo-Banner auf der Startseite */
.promo-strip {
    display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
    padding: 1.25rem 1.5rem; max-width: 1100px; margin: 0 auto;
}
.promo-badge {
    flex: 1 1 280px; text-align: center;
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    font-size: 1.15rem; padding: 1rem 1.25rem; border-radius: 12px;
    border: 2px solid var(--gold);
    box-shadow: 0 6px 24px rgba(0,0,0,0.45);
}
.promo-badge--delivery { background: linear-gradient(135deg, #e8261f, #a51210); color: #fff; }
.promo-badge--discount { background: linear-gradient(135deg, #1c1c1c, #0d0d0d); color: var(--gold); }
.promo-badge small { display: block; font-size: 0.72rem; font-weight: 600; opacity: 0.9; letter-spacing: 0.5px; }

/* Rabatt-Zeile im Warenkorb */
.cart-discount { color: var(--gold); }
.cart-hint { color: var(--fire-orange); font-size: 0.9rem; margin-bottom: 1rem; }

/* Liefer-/Abholungs-Auswahl im Warenkorb */
.delivery-box {
    margin: 1.5rem 0;
    padding: 1.2rem 1.25rem;
    background: var(--dark2);
    border: 1px solid rgba(240,180,41,0.35);
    border-radius: 12px;
}
.delivery-title {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.15rem; font-weight: 700; text-transform: uppercase;
    color: var(--gold); letter-spacing: 1px; margin-bottom: 0.75rem;
}
.delivery-form .opt { display: flex; align-items: center; gap: 0.5rem;
    padding: 0.3rem 0; color: #eee; font-size: 0.95rem; cursor: pointer; }
/* PLZ-Block nur sichtbar wenn Lieferung gewählt ist */
.plz-block {
    display: none;
    animation: fadeInPlz 0.25s ease-out;
}
.delivery-form:has(input[value="delivery"]:checked) .plz-block {
    display: block;
}
@keyframes fadeInPlz {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.plz-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; margin: 0.6rem 0; }
.plz-row label { color: var(--grey); font-size: 0.9rem; }
.plz-row input[type="text"] {
    background: var(--dark3); border: 1px solid rgba(255,102,0,0.25);
    color: #fff; border-radius: 6px; padding: 0.4rem 0.6rem; width: 7rem;
}
.plz-row input:focus { outline: none; border-color: var(--fire-orange); }
.delivery-zones-hint { color: #aaa; font-size: 0.8rem; margin-top: 0.4rem; }
.delivery-zones-hint b { color: var(--gold); }
.del-status { margin: 0.35rem 0; font-size: 0.95rem; }
.del-ok { color: #6cd16c; font-weight: 600; }
.del-bad { color: #ff6a6a; font-weight: 600; }

/* Deaktivierter Zur-Kasse-Button */
button.btn-primary[disabled] {
    opacity: 0.45; cursor: not-allowed; filter: grayscale(0.4);
}

/* Google-Bewertungs-Link im Footer */
.review-cta {
    display: inline-block;
    padding: 0.55rem 1.2rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #1c1c1c, #0d0d0d);
    border: 1.5px solid var(--gold);
    border-radius: 999px;
    color: var(--gold);
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s;
}
.review-cta:hover {
    background: linear-gradient(135deg, #e8261f, #a51210);
    color: #fff;
    box-shadow: 0 0 18px rgba(240, 180, 41, 0.45);
}

.menu-card-price {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fire-yellow);
}

/* Add to cart button */
.btn-add {
    background: linear-gradient(135deg, #e8261f, #a51210);
    color: white;
    border: 1px solid rgba(240,180,41,0.55);
    border-radius: 8px;
    padding: 0.45rem 1rem;
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-add:hover {
    background: linear-gradient(135deg, #ff3a30, #c4140f);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 16px rgba(216, 33, 29, 0.65);
    transform: scale(1.05);
}

.btn-add:active {
    transform: scale(0.97);
}

/* Click ripple effect */
.btn-add::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.2);
    opacity: 0;
    border-radius: inherit;
    transition: opacity 0.15s;
}
.btn-add:active::after { opacity: 1; }

/* ====================================================
   CART PAGE
   ==================================================== */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cart-table th {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--fire-orange);
    border-bottom: 1px solid rgba(255,102,0,0.3);
    padding: 0.75rem 0.5rem;
    text-align: left;
}

.cart-table td {
    padding: 0.9rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    vertical-align: middle;
}

.cart-total {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4rem;
    color: var(--fire-yellow);
    text-align: right;
    margin-bottom: 1.5rem;
}

/* ====================================================
   CHECKOUT & FORMS
   ==================================================== */
.form-control {
    background: var(--dark3);
    border: 1px solid rgba(255,102,0,0.2);
    border-radius: 8px;
    color: var(--white);
    padding: 0.6rem 0.9rem;
    font-size: 0.95rem;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-control:focus {
    border-color: var(--fire-orange);
    box-shadow: 0 0 0 3px rgba(255,102,0,0.15);
}

label {
    display: block;
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 0.3rem;
    margin-top: 1rem;
}

/* ====================================================
   GENERIC BUTTONS
   ==================================================== */
.btn {
    display: inline-block;
    padding: 0.65rem 1.8rem;
    border-radius: 8px;
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, #e8261f, #a51210);
    color: white;
    border: 1px solid rgba(240,180,41,0.55);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff3a30, #c4140f);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(216,33,29,0.55);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--fire-red);
    border-color: var(--gold);
    color: #fff;
}

/* ====================================================
   FOOTER
   ==================================================== */
footer {
    text-align: center;
    padding: 2rem;
    color: var(--grey);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,102,0,0.15);
    margin-top: 4rem;
}

/* ====================================================
   OWNER DASHBOARD
   ==================================================== */

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.dash-stat {
    background: var(--dark2);
    border: 1px solid rgba(255,102,0,0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.dash-stat-value {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--fire-yellow);
}

.dash-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey);
}

/* Order card */
.dash-order {
    background: var(--dark2);
    border-radius: 12px;
    border-left: 4px solid var(--grey);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
}

.dash-order--pending   { border-left-color: var(--fire-red); }
.dash-order--confirmed { border-left-color: var(--fire-orange); }
.dash-order--ready     { border-left-color: #00cc66; }

.dash-order-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
}

.dash-order-id {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.2rem;
    color: var(--fire-yellow);
    font-weight: 700;
}

.dash-order-name {
    font-weight: 600;
    font-size: 1rem;
}

.dash-order-phone { color: var(--grey); font-size: 0.9rem; }
.dash-order-type  { color: var(--fire-orange); font-size: 0.9rem; }

.dash-order-total {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    color: var(--fire-yellow);
    margin-left: auto;
}

.dash-order-time { color: var(--grey); font-size: 0.85rem; }

.dash-order-items {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
}

.dash-order-items span {
    background: rgba(255,102,0,0.1);
    border: 1px solid rgba(255,102,0,0.2);
    border-radius: 999px;
    padding: 0.2rem 0.8rem;
    font-size: 0.85rem;
    color: var(--white);
}

.dash-order-notes {
    font-size: 0.85rem;
    color: var(--fire-yellow);
    margin-bottom: 0.6rem;
    font-style: italic;
}

.dash-order-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.dash-btn {
    border: none;
    border-radius: 8px;
    padding: 0.45rem 1.1rem;
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
}

.dash-btn--confirm { background: #00cc66; color: #000; }
.dash-btn--confirm:hover { background: #00ff80; }

.dash-btn--ready { background: var(--fire-orange); color: #000; }
.dash-btn--ready:hover { background: var(--fire-yellow); }

.dash-btn--cancel { background: rgba(204,0,0,0.3); color: #fff; border: 1px solid var(--fire-red); }
.dash-btn--cancel:hover { background: var(--fire-red); }
.dash-btn--delete { background: rgba(80,0,0,0.4); color: #ff6666; border: 1px solid #660000; }
.dash-btn--delete:hover { background: #660000; color: #fff; }

/* Druck-Buttons */
.dash-btn--print {
    background: #2a2a2a;
    color: var(--gold);
    border: 1px solid var(--gold);
    text-decoration: none;
}
.dash-btn--print:hover {
    background: var(--gold);
    color: #000;
}
.dash-btn--print-alt {
    background: transparent;
    color: #eee;
    border: 1px solid #555;
    text-decoration: none;
}
.dash-btn--print-alt:hover {
    background: #555;
    color: #fff;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.dash-print-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

/* Auto-Refresh-Indikator */
.dash-refresh {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 1.5rem 0;
    padding: 0.45rem 0.9rem;
    background: rgba(0, 204, 102, 0.08);
    border: 1px solid rgba(0, 204, 102, 0.3);
    border-radius: 999px;
    font-size: 0.85rem;
    color: #ccc;
}
.dash-refresh__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff80;
    box-shadow: 0 0 8px #00ff80;
    animation: dashPulse 2s infinite;
}
@keyframes dashPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}
.dash-refresh__text { color: #ccc; }
.dash-refresh__text #refresh-countdown {
    color: var(--gold);
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-weight: 700;
    min-width: 3ch;
    display: inline-block;
    text-align: right;
}
.dash-refresh__toggle {
    background: transparent;
    border: 1px solid #555;
    color: #ccc;
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.15s;
}
.dash-refresh__toggle:hover {
    background: #555;
    color: #fff;
}
.dash-refresh.is-paused {
    background: rgba(180, 130, 30, 0.08);
    border-color: rgba(180, 130, 30, 0.3);
}
.dash-refresh.is-paused .dash-refresh__dot {
    background: #b88314;
    box-shadow: none;
    animation: none;
}

/* Status badges */
.dash-status {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dash-status--pending   { background: rgba(204,34,0,0.2);  color: #ff6644; border: 1px solid rgba(204,34,0,0.4); }
.dash-status--confirmed { background: rgba(255,102,0,0.2); color: #ffaa44; border: 1px solid rgba(255,102,0,0.4); }
.dash-status--ready     { background: rgba(0,204,102,0.2); color: #00ff80; border: 1px solid rgba(0,204,102,0.4); }
.dash-status--delivered { background: rgba(100,100,100,0.2); color: #aaa; border: 1px solid rgba(100,100,100,0.3); }
.dash-status--cancelled { background: rgba(80,0,0,0.3); color: #ff4444; border: 1px solid rgba(180,0,0,0.3); }

@media (max-width: 600px) {
    .dash-stats { grid-template-columns: 1fr; }
    .dash-order-total { margin-left: 0; }
}

/* ====================================================
   HAMBURGER BUTTON (hidden on desktop)
   ==================================================== */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    z-index: 200;
}

.nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--fire-yellow);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Animate to X when active */
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====================================================
   RESPONSIVE — TABLET (max 900px)
   ==================================================== */
@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-strip {
        gap: 2rem;
    }

    h1 { font-size: 2rem; }

    /* Fire edges — schmaler auf Tablet */
    .fire-edge {
        width: 120px;
    }
}

/* ====================================================
   RESPONSIVE — MOBILE (max 600px)
   ==================================================== */
@media (max-width: 600px) {

    /* Topbar — nur Telefon anzeigen */
    .topbar {
        gap: 1rem;
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        justify-content: space-between;
    }

    /* Navbar */
    nav {
        padding: 0 1rem;
        position: relative;
        flex-wrap: wrap;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0a0a0a;
        border-top: 1px solid rgba(255,102,0,0.2);
        padding: 0.5rem 0 1rem;
        gap: 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li { width: 100%; }

    .nav-links a {
        display: block;
        padding: 0.75rem 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 1.1rem;
    }

    .nav-brand {
        font-size: 1rem;
    }

    .nav-logo {
        height: 36px;
        width: 36px;
    }

    /* Hero */
    .hero {
        min-height: 85vh;
        padding: 2rem 1rem;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle { font-size: 1rem; }
    .hero-arabic   { font-size: 1.2rem; }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    /* Info strip */
    .info-strip {
        gap: 1.2rem;
        padding: 1rem;
    }

    .info-value { font-size: 0.85rem; }
    .info-label { font-size: 0.65rem; }
    .info-icon  { font-size: 1.2rem; }

    /* Menu grid — single column */
    .menu-grid {
        grid-template-columns: 1fr;
    }

    /* Menu card — horizontal layout on mobile */
    .menu-card {
        flex-direction: row;
        height: 110px;
    }

    .menu-card-img,
    .menu-card-no-img {
        width: 110px;
        min-width: 110px;
        height: 110px;
    }

    .menu-card-body {
        padding: 0.6rem 0.8rem;
    }

    .menu-card-name { font-size: 1rem; }
    .menu-card-desc { display: none; } /* hide description on mobile to save space */

    /* Fire edges — auf Handy ausblenden, würden den Inhalt verdecken */
    .fire-edge {
        display: none;
    }

    /* Main padding */
    main { padding: 1.5rem 1rem 3rem; }

    h1 { font-size: 1.8rem; letter-spacing: 1px; }
    h2 { font-size: 1.3rem; }

    /* Cart table — stack on mobile */
    .cart-table thead { display: none; }
    .cart-table tr {
        display: flex;
        flex-wrap: wrap;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        gap: 0.5rem;
        align-items: center;
    }
    .cart-table td {
        border: none;
        padding: 0;
    }

    /* Category tabs */
    .category-tabs { gap: 0.4rem; }
    .category-tab  { padding: 0.4rem 1rem; font-size: 0.85rem; }

    /* Buttons */
    .btn { width: 100%; text-align: center; }
}

/* ============================================================
   ZAHLUNGSART-AUSWAHL (Checkout-Form)
   ============================================================ */
.payment-fieldset {
    border: 1px solid rgba(240,180,41,0.3);
    border-radius: 10px;
    padding: 1rem 1.2rem 1.2rem;
    margin: 1.5rem 0;
    background: linear-gradient(160deg, #181818 0%, #0d0d0d 100%);
}
.payment-fieldset legend {
    padding: 0 0.6rem;
    color: var(--gold);
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.95rem;
}
.payment-option {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.9rem;
    margin: 0.4rem 0;
    border: 1.5px solid #2a2a2a;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    font-size: 1rem;
}
.payment-option:hover {
    border-color: var(--gold);
    background: rgba(240, 180, 41, 0.05);
}
.payment-option input[type="radio"] { accent-color: var(--fire-red); transform: scale(1.2); }
.payment-option:has(input:checked) {
    border-color: var(--gold);
    background: rgba(240, 180, 41, 0.08);
}
.payment-hint {
    margin: 0.7rem 0 0;
    font-size: 0.85rem;
    color: #aaa;
}

/* Hinweis zur Zahlungs-Policy oberhalb der Radio-Buttons */
.payment-policy {
    margin: 0 0 0.8rem 0;
    padding: 0.6rem 0.9rem;
    background: rgba(216, 33, 29, 0.08);
    border-left: 3px solid var(--fire-red);
    border-radius: 4px;
    color: #ddd;
    font-size: 0.92rem;
}
.payment-policy strong { color: var(--fire-yellow); }

/* "Als bezahlt markieren"-Button im Dashboard */
.dash-btn--paid {
    background: rgba(46, 139, 63, 0.25);
    color: #b8efc6;
    border: 1px solid #2e8b3f;
}
.dash-btn--paid:hover {
    background: #2e8b3f;
    color: #fff;
}

.dash-btn--unpaid {
    background: rgba(180, 130, 30, 0.25);
    color: #f5d68f;
    border: 1px solid #b88314;
}
.dash-btn--unpaid:hover {
    background: #b88314;
    color: #fff;
}

.dash-btn--stripe {
    background: #2a2a2a;
    color: #b3a4ff;
    border: 1px solid #6259ca;
    text-decoration: none;
}
.dash-btn--stripe:hover {
    background: #6259ca;
    color: #fff;
}

/* Reiner Bar/TWINT-Hinweis-Block (kein Auswahl-Radio) */
.payment-cash-note {
    margin: 1.5rem 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(160deg, #181818 0%, #0d0d0d 100%);
    border: 1px solid rgba(240,180,41,0.3);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    color: #ddd;
    font-size: 1rem;
}
.payment-cash-note strong { color: var(--gold); }

/* Status-Badges auf Bestätigungs-/Erfolgsseite */
.paid-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    border-radius: 999px;
    background: #1c5b2a;
    color: #b8efc6;
    border: 1px solid #2e8b3f;
    font-weight: 600;
}
.paid-badge--pending { background: #5b4a1c; color: #f0d68f; border-color: #8b7c2e; }
.paid-badge--cash    { background: #2a2a2a; color: #ddd;    border-color: #555; }

/* Dashboard-Bezahlungs-Spalte */
.dash-order-pay {
    background: rgba(255,255,255,0.06);
    padding: 0.15rem 0.55rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #ccc;
}

/* Field error inline */
.field-error {
    display: block;
    color: #ff6a6a;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* ============================================================
   WUNSCH PIZZA — hervorgehobene Karte mit Zutatenwahl
   ============================================================ */
.menu-card--wunsch {
    border: 2px solid var(--gold) !important;
    background: linear-gradient(160deg, #1a1208 0%, #0a0a0a 70%) !important;
    box-shadow: 0 4px 20px rgba(240, 180, 41, 0.18);
    position: relative;
}
.menu-card--wunsch::before {
    /* den roten Standard-Akzentstreifen ausblenden, da wir gold haben */
    display: none !important;
}
.wunsch-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #c98b14);
    color: #1a0500;
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    margin-bottom: 0.7rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.wunsch-deal {
    margin: 0 0 0.7rem 0;
    padding: 0.5rem 0.7rem;
    background: rgba(240,180,41,0.08);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    color: #ddd;
    font-size: 0.85rem;
    line-height: 1.45;
}
.wunsch-deal strong { color: var(--gold); }
.menu-card--wunsch .menu-card-name {
    color: var(--gold);
}
.menu-card--wunsch .pizza-opts summary {
    color: var(--gold);
    font-weight: 700;
    animation: wunschPulse 2.5s ease-in-out infinite;
}
@keyframes wunschPulse {
    0%, 100% { text-shadow: 0 0 0 transparent; }
    50%      { text-shadow: 0 0 10px rgba(240,180,41,0.6); }
}

/* ============================================================
   RECHTLICHE SEITEN (Impressum + Datenschutz)
   ============================================================ */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
    line-height: 1.65;
    color: #e0e0e0;
}
.legal-page h1 {
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-size: 2.4rem;
    color: var(--gold);
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.legal-page h2 {
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.4rem;
    color: var(--fire-yellow);
    margin: 2.2rem 0 0.7rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(240, 180, 41, 0.25);
    padding-bottom: 0.3rem;
}
.legal-page h3 {
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.1rem;
    color: var(--fire-yellow);
    margin: 1.5rem 0 0.5rem 0;
}
.legal-page p { margin: 0 0 1rem 0; }
.legal-page ul { margin: 0.4rem 0 1.2rem 1.5rem; padding: 0; }
.legal-page li { margin-bottom: 0.3rem; }
.legal-page a { color: var(--gold); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }
.legal-page strong { color: #fff; }
.legal-updated {
    margin-top: 3rem !important;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
}

/* Footer-Kontakt-Block (Adresse / Telefon / Öffnungszeiten) */
.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(240, 180, 41, 0.15);
    text-align: left;
}
.footer-info__col { padding: 0 0.5rem; }
.footer-info__title {
    margin: 0 0 0.6rem 0;
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
}
.footer-info__line {
    margin: 0.15rem 0;
    color: #cccccc;
    font-size: 0.92rem;
    line-height: 1.45;
}
.footer-info__line a {
    color: var(--fire-yellow);
    text-decoration: none;
}
.footer-info__line a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Footer-Links zu Impressum + Datenschutz */
.footer-legal {
    margin-top: 0.7rem !important;
    font-size: 0.85rem;
    color: #888;
}
.footer-legal a {
    color: #999;
    text-decoration: none;
}
.footer-legal a:hover {
    color: var(--gold);
    text-decoration: underline;
}
.footer-legal span { margin: 0 0.5rem; color: #555; }

/* ============================================================
   GESCHLOSSEN-BANNER (außerhalb Öffnungszeiten)
   ============================================================ */
.closed-banner {
    background: linear-gradient(90deg, #3a0a0a 0%, #5a0e0a 50%, #3a0a0a 100%);
    color: #fff;
    text-align: center;
    padding: 1rem 1.5rem;
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border-top: 2px solid #ff4444;
    border-bottom: 2px solid #ff4444;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    box-shadow: 0 4px 14px rgba(255, 68, 68, 0.3);
}
.closed-banner__icon { font-size: 1.6rem; }
.closed-banner__text strong {
    color: #ffd040;
    font-weight: 700;
}
@media (max-width: 640px) {
    .closed-banner {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
        gap: 0.4rem;
    }
    .closed-banner__icon { font-size: 1.3rem; }
}

/* ============================================================
   LIEFERZEIT-BANNER (groß und prominent unter der Navigation)
   ============================================================ */
.delivery-banner {
    background: linear-gradient(90deg, #d8211d 0%, #e8261f 50%, #d8211d 100%);
    color: #fff;
    text-align: center;
    padding: 0.9rem 1.5rem;
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 4px 14px rgba(216, 33, 29, 0.35);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    animation: deliveryGlow 3s ease-in-out infinite;
}

@keyframes deliveryGlow {
    0%, 100% { box-shadow: 0 4px 14px rgba(216, 33, 29, 0.35); }
    50%      { box-shadow: 0 4px 22px rgba(240, 180, 41, 0.55); }
}

.delivery-banner__icon {
    font-size: 1.8rem;
    display: inline-block;
    animation: scooterRide 2.5s ease-in-out infinite;
}

@keyframes scooterRide {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(8px); }
}

.delivery-banner__text strong {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.55rem;
    text-shadow: 0 0 8px rgba(240, 180, 41, 0.5);
    letter-spacing: 1.5px;
}

.delivery-banner__dot {
    color: var(--gold);
    font-weight: 700;
    opacity: 0.85;
}

.delivery-banner__sub {
    color: #ffd9a0;
    font-size: 1.05rem;
    font-weight: 600;
}

@media (max-width: 640px) {
    .delivery-banner {
        padding: 0.7rem 1rem;
        font-size: 1.05rem;
        gap: 0.4rem;
        letter-spacing: 0.5px;
    }
    .delivery-banner__icon { font-size: 1.4rem; }
    .delivery-banner__text strong { font-size: 1.2rem; }
    .delivery-banner__sub { font-size: 0.85rem; }
    .delivery-banner__dot { display: none; }
}

/* ============================================================
   GOOGLE BEWERTUNGEN (Testimonials auf der Startseite)
   ============================================================ */
.testimonials {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0500 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(255,102,0,0.25);
    border-bottom: 1px solid rgba(255,102,0,0.25);
    padding: 4rem 1.5rem;
}
.testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.testimonials-title {
    display: inline-flex;
    align-items: baseline;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
}
.google-logo {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}
.testimonial-card {
    background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(240,180,41,0.25);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    position: relative;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(216, 33, 29, 0.25);
}
.testimonial-stars {
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    line-height: 1;
}
.star-on  { color: var(--gold); text-shadow: 0 0 6px rgba(240,180,41,0.45); }
.star-off { color: #3a3a3a; }
.testimonial-text {
    color: #e8e8e8;
    font-size: 0.98rem;
    line-height: 1.55;
    font-style: italic;
    margin: 0 0 1rem 0;
}
.testimonial-meta {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: #aaa;
    text-transform: uppercase;
}
.testimonial-name {
    color: var(--fire-yellow);
    font-weight: 600;
}
.testimonial-date {
    color: #888;
}
.testimonials-cta {
    margin-top: 1.5rem;
}

@media (max-width: 600px) {
    .testimonials { padding: 3rem 1rem; }
    .testimonial-grid { gap: 1rem; }
    .testimonial-card { padding: 1.25rem 1rem; }
}

/* ============================================================
   RESPONSIVE — Mobile/Tablet-Anpassungen für neuere Sektionen
   ============================================================ */

@media (max-width: 768px) {
    /* Checkout-Form: alle Inputs voll breit, mehr Platz */
    .checkout-form input,
    .checkout-form textarea,
    .form-control {
        width: 100%;
        box-sizing: border-box;
        font-size: 16px; /* verhindert Auto-Zoom bei iOS */
        padding: 0.7rem;
        background: #1a1a1a;
        color: #fff;
        border: 1px solid #444;
        border-radius: 6px;
    }
    .checkout-form input:focus,
    .checkout-form textarea:focus {
        outline: none;
        border-color: var(--gold);
    }
    .checkout-form label {
        display: block;
        margin-bottom: 0.3rem;
        color: var(--gold);
        font-family: 'Oswald', Arial, sans-serif;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .checkout-form p { margin: 0 0 1rem 0; }

    /* Payment-Auswahl: Optionen voll breit */
    .payment-fieldset { padding: 0.9rem; }
    .payment-fieldset legend { font-size: 0.85rem; }
    .payment-option {
        font-size: 0.9rem;
        padding: 0.65rem 0.7rem;
        gap: 0.45rem;
    }
    .payment-policy { font-size: 0.85rem; padding: 0.5rem 0.7rem; }
}

@media (max-width: 700px) {
    /* Dashboard: Header stapelt sich */
    .dash-header { flex-direction: column; align-items: flex-start; }
    .dash-print-actions { width: 100%; }
    .dash-print-actions .dash-btn { flex: 1; text-align: center; }

    /* Dashboard-Bestellungs-Header: bessere Wraps */
    .dash-order-header {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem 0.7rem;
        font-size: 0.92rem;
    }
    .dash-order-header > span { white-space: nowrap; }
    .dash-order-id { font-size: 1.1rem; font-weight: 700; }
    .dash-order-total { font-weight: 700; color: var(--gold); }

    /* Action-Buttons: jeder Button voll breit auf engen Bildschirmen */
    .dash-order-actions { gap: 0.5rem; }
    .dash-order-actions form,
    .dash-order-actions > a { flex: 1 1 calc(50% - 0.5rem); }
    .dash-order-actions .dash-btn {
        width: 100%;
        padding: 0.6rem 0.5rem;
        font-size: 0.85rem;
    }

    /* Stat-Karten: 2-spaltig statt 3 */
    .dash-stats { gap: 0.7rem; }
    .dash-stat { flex: 1 1 calc(50% - 0.4rem); }

    /* Tagesübersicht-Tabelle: horizontales Scrollen statt Squeeze */
    .cart-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 500px) {
    /* Wirklich kleine Screens: 1-spaltig */
    .dash-order-actions form,
    .dash-order-actions > a { flex: 1 1 100%; }
    .dash-stat { flex: 1 1 100%; }

    /* Payment Pill kleiner */
    .dash-order-pay { font-size: 0.78rem; }
}
