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

:root {
    /* Fonts */
    --font-body: 'Poppins', system-ui, sans-serif;
    --font-heading: 'Caveat', 'Poppins', cursive;

    /* Creme Basis */
    --cream-50: #fdfcf9;
    --cream-100: #f8f5ed;
    --cream-200: #f0e9d7;
    --cream-300: #e8ddc1;

    /* Restoran Akzente */
    --chili-red: #e42627;
    --chili-deep: #730f11;
    --leaf-green: #498537;
    --leaf-bright: #40916c;
    --yellow: #fcd03a;
    --orange: #f45e34;

    /* Neutrals */
    --dark-bean: #2b2118;
    --warm-gray: #5a4a3a;

    /* Effects */
    --glass-bg: rgba(253, 252, 249, 0.9);
    --glass-border: rgba(232, 221, 193, 0.4);
    --shadow-float: 0 20px 60px rgba(0, 0, 0, 0.12);

    --radius-lg: 24px;
    --max-width: 1280px;

    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    background-image: url(../img/background_desktop.webp);
    background-size: cover;
    background-position: center top;
    background-repeat: repeat-y;
    background-attachment: fixed;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    padding-top: 96px;
    background: transparent; /* Body transparent machen */
    color: var(--dark-bean);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

@keyframes bgFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, -20px) scale(1.05); }
}

h1, h2, h3, h4 {
    margin: 0 0 1rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    font-family: var(--font-heading);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--dark-bean);
    font-weight: 700;
}

h1 span {
    color: var(--chili-red);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

p {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    color: var(--warm-gray);
}

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

/* =========================
   NAVIGATION
========================== */
.nav-glass {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px) saturate(180%);
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s var(--ease-smooth);
}

.nav-glass.scrolled {
    backdrop-filter: blur(30px) saturate(200%);
    background: rgba(253, 252, 249, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 125px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-modern:hover .logo-icon {
    transform: rotate(0deg) scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--chili-red);
    font-family: var(--font-heading);
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--warm-gray);
    font-family: var(--font-body);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--warm-gray);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease-smooth);
}

.nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--chili-red);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 12px;
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--chili-red);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* =========================
   CONTAINER & SECTIONS
========================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--warm-gray);
}

.card-modern {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-float);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--chili-red);
    opacity: 0;
    transition: opacity 0.3s;
}

.card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.15);
}

.card-modern:hover::before {
    opacity: 1;
}

/* =========================
   BUTTONS
========================== */
.btn-primary,
.btn-secondary,
.btn-add {
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--chili-red);
    color: white;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--chili-red);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--chili-red);
    border: 2px solid var(--chili-red);
}

.btn-secondary:hover {
    background: var(--chili-red);
    color: white;
    transform: translateY(-2px);
}

.btn-add {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background: var(--leaf-green);
    color: white;
    box-shadow: 0 2px 8px rgba(45, 106, 79, 0.3);
}

.btn-add:hover {
    background: var(--leaf-bright);
    transform: scale(1.05);
}

/* =========================
   BADGES
========================== */
.badge-spicy {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--chili-red), var(--yellow));
    color: white;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
    font-family: var(--font-heading);
}

.spice-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
}

.visual-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* =========================
   HERO SECTION
========================== */
.hero-section {
    padding: 8rem 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.hero-features li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-float);
    transform: rotate(2deg);
    transition: all 0.4s var(--ease-smooth);
}

.hero-image-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.hero-image-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.7) 0%,
            transparent 50%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.spice-indicator {
    color: white;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spice-indicator span {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* =========================
   ABOUT SECTION
========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-grid h3 {
    color: var(--chili-red);
    margin-bottom: 1.5rem;
}

.about-grid .card-modern {
    height: 100%;
}

.about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-float);
    transform: rotate(-2deg);
    transition: all 0.4s var(--ease-smooth);
}

.about-visual:hover {
    transform: rotate(0deg) scale(1.05);
}

.about-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* =========================
   MENU SECTION
========================== */

.menu-image-wrapper {
    display: block;
    margin-top: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: solid 6px black;
    transition: all 0.4s var(--ease-smooth);
    cursor: zoom-in;
}

.menu-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.menu-full-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.menu-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease-smooth);
}

.menu-lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.menu-lightbox img {
    max-width: 95vw;
    max-height: 90svh;
    width: auto;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: zoom-out;
}

.menu-lightbox-close {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 22px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    z-index: 2001;
}

.menu-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.menu-full-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Menu Filter Animation */
.menu-card[data-category] {
    transition: all 0.4s var(--ease-smooth);
}

.menu-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
}

/* =========================
   GALLERY SECTION
========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-float);
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-smooth);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.8) 0%,
            transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-smooth);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* =========================
   CONTACT SECTION
========================== */
.contact-info-wrapper {
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    grid-auto-rows: 1fr;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--chili-red), var(--yellow));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}

.info-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark-bean);
}

.info-content p {
    font-size: 1rem;
    color: var(--warm-gray);
    margin: 0;
    line-height: 1.8;
}

.info-content a {
    color: var(--chili-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--chili-deep);
}

/* Opening Hours Table */
.hours-table {
    margin-top: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
    gap: 2rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--dark-bean);
    flex-shrink: 0;
}

.hours-time {
    color: var(--warm-gray);
    text-align: right;
    flex-shrink: 0;
}

.hours-row.closed .hours-time {
    color: var(--chili-red);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    html {
        background-image: url(../img/background_mobile.webp);
    }
}

/* =========================
   FOOTER
========================== */
.footer {
    background: var(--chili-deep);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.footer-description {
    color: white;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--cream-100);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(4px);
    color: var(--yellow);
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    transition: all 0.3s var(--ease-smooth);
    text-decoration: none;
}

.social-link:hover {
    background: var(--chili-red);
    transform: translateY(-4px);
}

.social-link i {
    font-size: 1.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom p {
    color: white;
}

/* =========================
    Plugins
========================== */

.glightbox {
    cursor: zoom-in;
}

/* =========================
   RESPONSIVE DESIGN
========================== */
@media (max-width: 1024px) {
    .heat-meter {
        right: 1rem;
        padding: 1rem 0.75rem;
        min-width: 70px;
    }

    .heat-gauge {
        width: 35px;
        height: 120px;
    }

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image-card img,
    .about-visual img {
        height: 400px;
    }

    .about-visual img {
        object-position: center 75%;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .nav-inner {
        padding: 1rem 1.5rem;
    }

    .nav-toggle {
        display: block;
        position: relative;   /* wichtig, damit z-index greift */
        z-index: 9999;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        transform: translate3d(110%, 0, 0);
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        width: min(85vw, 320px);
        height: 100vh;

        background: var(--glass-bg);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-left: 1px solid var(--glass-border);

        display: flex;                /* zur Sicherheit */
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 0.5rem;

        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s var(--ease-smooth);

        z-index: 9998;                /* über allem Content */
    }

    .nav-links.active {
        transform: translateX(0);     /* sichtbar */
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-section {
        padding: 4rem 0;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .heat-meter {
        display: none;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 100px;
        height: 100px;
        font-size: 24px;
    }

    .logo-title {
        font-size: 1.25rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

    .menu-tabs {
        gap: 0.5rem;
    }

    .menu-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* =========================
   SCROLL ANIMATIONS
========================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s var(--ease-smooth);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s var(--ease-smooth);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =========================
   UTILITY ANIMATIONS
========================== */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.rotating {
    animation: rotate 20s linear infinite;
}

.pulsing {
    animation: pulse 2s ease-in-out infinite;
}

/* =========================
   LOADING STATE
========================== */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--chili-red);
    border-top-color: transparent;
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
}

/* =========================
   Delivery Badges
========================== */
.delivery-section{
    margin-top: 1.5rem;
    text-align: center;
}

.delivery-text{
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    color: var(--warm-gray);
}

.delivery-badges{
    display:flex;
    justify-content:center;
    gap: 1rem;
    flex-wrap:wrap;
}

.delivery-badge{
    width: 200px;
    height: 60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius: 16px;
    transition: transform 0.25s var(--ease-smooth),
    box-shadow 0.25s var(--ease-smooth);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

.delivery-badge.gofood{
    background:#EE2737;
}

.delivery-badge.grab{
    background:#00B14F;
}

.delivery-badge img{
    max-height: 30px;
    width: auto;
}

.delivery-badge.grab img{
    max-height: 40px;
}

.delivery-badge:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.14);
}

@media (max-width: 480px){
    .delivery-badge img{
        height: 38px;
    }
}

/* =========================
   CUSTOM SCROLLBAR
========================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--cream-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--chili-red), var(--yellow));
    border-radius: 6px;
    border: 2px solid var(--cream-100);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--chili-deep), var(--orange));
}

/* =========================
   SELECTION STYLES
========================== */
::selection {
    background: var(--chili-red);
    color: white;
}

::-moz-selection {
    background: var(--chili-red);
    color: white;
}

/* =========================
   PRINT STYLES
========================== */
@media print {
    .nav-glass,
    .heat-meter,
    .nav-toggle,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }

    body {
        background: white;
    }

    .section {
        page-break-inside: avoid;
    }
}