﻿/* ==================================================
   GLOBAL RESET — CLEAN BASE
================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100%;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

main {
    background: #000;
}

/* ==================================================
   NAVBAR — EXACT FIGMA
================================================== */
/* =======================
   NAVBAR
======================= */
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px; /* ⬅ slightly tighter than 56px */
    background: linear-gradient( to bottom, rgba(0,0,0,0.98), rgba(0,0,0,0.92), rgba(0,0,0,0.88) );
    backdrop-filter: blur(14px);
}

/* =======================
   LEFT (LOGO)
======================= */
.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    font-size: 28px; /* ⬆ bigger crown */
    line-height: 1;
}

.brand-text {
    font-size: 20px; /* ⬆ bigger brand name */
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
}

/* =======================
   CENTER (NAV LINKS)
======================= */
.nav-center {
    display: flex;
    gap: 32px; /* slightly tighter */
}

    .nav-center a {
        color: #ffffff;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.25s ease;
    }

        .nav-center a:hover,
        .nav-center a.active {
            color: #f5b301;
        }

/* =======================
   RIGHT (CART)
======================= */
.nav-right {
    display: flex;
    align-items: center;
    margin-left: 16px; /* ⬅ reduce space */
}

    .nav-right i {
        font-size: 22px; /* ⬆ bigger cart */
        color: #ffffff; /* ✅ white cart */
        cursor: pointer;
        transition: color 0.2s ease, transform 0.2s ease;
    }

        .nav-right i:hover {
            color: #f5b301;
            transform: scale(1.1);
        }

/* =======================
   PUSH CONTENT BELOW NAV
======================= */
main {
    padding-top: 72px;
}


/* ==================================================
   HERO — NO SEAMS, NO WHITE
================================================== */
/* =========================
   HERO SECTION
========================= */
/* =========================
   HERO SECTION
========================= */

/* =========================
   HERO SECTION (FINAL)
========================= */

/* ==================================================
   HERO SECTION — FINAL (NO GAP, NO VOID)
================================================== */
/* ==================================================
   HERO SECTION — CLEAN & FINISHED
================================================== */
/* ==================================================
   HERO SECTION — FIGMA PERFECT
================================================== */

.hero {
    position: relative;
    min-height: 70vh;   /* 🔴 NOT 100vh */
    padding-bottom: 120px; /* 🔴 SPACE FOR SHORTCUTS */
    overflow: visible;
}


/* LEFT → RIGHT DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0,0,0,1), rgba(0,0,0,0.92), rgba(0,0,0,0.75), rgba(0,0,0,0.45), rgba(0,0,0,0.15) );
    z-index: 1;
    pointer-events: none;
}

/* BOTTOM FADE — NO BLACK VOID */
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient( to bottom, rgba(0,0,0,0), rgba(0,0,0,0.65), rgba(0,0,0,1) );
    z-index: 2;
    pointer-events: none;
}

/* HERO CONTENT */
.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 720px;
    text-align: center;
}

/* DELIVERY / CARRYOUT — ALIGNED WITH TITLE */
.order-toggle {
    display: inline-flex;
    background: #2b0707;
    border: 1px solid #7a1c1c;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 18px;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
}

    .toggle-btn.active {
        background: #d62828;
    }

/* HEADLINE */
.hero-content h1 {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

    .hero-content h1 span {
        color: #f5b700;
        font-weight: 700;
    }

/* SUBTITLE */
.hero-content p {
    font-size: 20px;
    color: #d1d1d1;
    margin-bottom: 36px;
    max-width: 620px;
    margin-inline: auto;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    background: #c4161c;
    color: #fff;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

    .btn-primary:hover {
        background: #a81216;
    }

/* VIEW MENU — FIXED BACKGROUND */
.btn-secondary {
    background: rgba(255,255,255,0.06);
    border: 1.5px solid #f5b700;
    color: #f5b700;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

    .btn-secondary:hover {
        background: #f5b700;
        color: #000;
    }
/* ==================================================
   HOME CATEGORY SHORTCUTS — FIXED (DESKTOP + MOBILE)
================================================== */

.home-categories {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: -80px auto 80px; /* pulls into hero area */

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    padding: 0 48px;
}

/* EACH SHORTCUT CARD */
.category-btn {
    height: 160px;
    border-radius: 22px;
    background: linear-gradient( 180deg, rgba(255,255,255,0.06), rgba(0,0,0,0.9) );
    border: 1px solid rgba(245,183,0,0.35);
    box-shadow: 0 18px 40px rgba(0,0,0,0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .category-btn:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 60px rgba(0,0,0,0.85);
    }

/* ICON */
.food-icon {
    width: 44px;
    height: 44px;
    fill: #f5b700;
}

/* TEXT */
.category-btn span {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .3px;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
    .home-categories {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto 64px;
        padding: 32px 16px;
    }
}
.hero {
    overflow: hidden; /* ⬅ contain fade ONLY */
}
.home-categories {
    overflow: visible; /* ⬅ allow cards to float above */
}

/* ==================================================
   CATEGORIES — FIGMA MATCH
================================================== */

/* ===============================
   CATEGORIES — FIGMA MATCH
================================ */

/* ===============================
   CATEGORIES — TIGHT & CLEAN
================================ */

.categories {
    background: #000;
    /* ❌ old was too big */
    /* padding: 72px 48px 120px; */
    /* ✅ FIGMA spacing */
    padding: 48px 48px 56px;
    margin-top: -24px; /* pulls it closer to hero fade */

    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    position: relative;
}


/* CARD */
.category-card {
    height: 168px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0.9));
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 18px 40px rgba(0,0,0,0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
}
/* GOLD DIVIDER UNDER CATEGORIES */
/* RED DIVIDER UNDER CATEGORIES */
/* TAPERED RED DIVIDER — FIGMA STYLE */
/* PERFECT FIGMA TAPERED RED LINE — NO DOUBLE EDGE */
.section-divider {
    width: 100%;
    height: 3px;
    background-color: #b11217; /* dark red */
    margin: 48px auto 0;
}


/* ICON CONTAINER */


/* ==================================================
   TOPPINGS — FIGMA MATCH
================================================== */
/* ==============================
   TOPPINGS SECTION
============================== */
/* =========================
   TOPPINGS SECTION
========================= */
.toppings-section {
    background: #000;
    padding: 96px 0;
    font-size: 17px;
}

/* =========================
   CONTAINER
========================= */
.toppings-container {
    max-width: 1280px;
    margin: auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

/* =========================
   EYEBROW (FIRE + LINE)
========================= */
/* =========================
   EYEBROW (FIGMA EXACT)
========================= */
.toppings-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* FIRE ICON (RED, FIGMA STYLE) */
.fire-icon {
    width: 14px;
    height: 14px;
    background: #e10600;
    mask: url("/icons/fire.svg") center / contain no-repeat;
    -webkit-mask: url("/icons/fire.svg") center / contain no-repeat;
}

/* SOLID RED LINE (CLEAN ENDS) */
.toppings-line {
    width: 200px;
    height: 2px;
    background-color: #e10600;
}

/* =========================
   HEADING (MATCH FIGMA)
========================= */
.toppings-content h2 {
    font-size: 4.1rem;
    font-weight: 400; /* NOT bold */
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 18px;
}

    .toppings-content h2 span {
        color: #f5b301;
        font-weight: 500;
    }

/* =========================
   DESCRIPTION
========================= */
.toppings-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 560px;
    color: #d6d6d6;
    margin-bottom: 36px;
}

/* =========================
   TOPPINGS LIST
========================= */
.toppings-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 44px;
}

    .toppings-list ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .toppings-list li {
        font-size: 1.05rem;
        margin-bottom: 12px;
        padding-left: 16px;
        position: relative;
        color: #ffffff;
        opacity: 0.9;
    }

        .toppings-list li::before {
            content: "";
            width: 6px;
            height: 6px;
            background: #f5b301;
            border-radius: 50%;
            position: absolute;
            left: 0;
            top: 9px;
        }

/* =========================
   BUTTON
========================= */
.btn-build {
    display: inline-block;
    background: #f5b301;
    color: #000;
    padding: 16px 44px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .btn-build:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(245,179,1,0.35);
    }

/* =========================
   IMAGE
========================= */


/* ==================================================
   FEATURED DEALS — FIGMA CARDS
================================================== */
/* ==============================
   FEATURED DEALS
============================== */

.deals-section {
    background: linear-gradient( to bottom, #0b0b0b, #121212 );
    padding: 96px 0 120px;
}

.deals-container {
    max-width: 1280px;
    margin: auto;
    padding: 0 48px;
    text-align: center;
}

/* TITLE */
.deals-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.deals-subtitle {
    font-size: 1rem;
    color: #bdbdbd;
    margin-bottom: 56px;
}

/* GRID */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.deal-card {
    background: #1b1b1b;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.55);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .deal-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 40px 80px rgba(0,0,0,0.7);
    }

/* IMAGE */
.deal-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .deal-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* PRICE BADGE */
.deal-price {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #b11217; /* DARK RED */
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(177,18,23,0.45);
}

/* BODY */
.deal-body {
    padding: 26px 24px 30px;
    text-align: center;
}

    .deal-body h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 6px;
    }

    .deal-body p {
        font-size: 0.9rem;
        color: #cfcfcf;
        margin-bottom: 20px;
    }

/* BUTTON */
.deal-btn {
    display: inline-block;
    background: #b11217; /* DARK RED */
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

    .deal-btn:hover {
        background: #8f0e13; /* DARKER ON HOVER */
        transform: translateY(-1px);
        box-shadow: 0 10px 30px rgba(177,18,23,0.45);
    }
.section-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient( to right, transparent, #b11217 10%, #b11217 90%, transparent );
}

/* ==============================
   MOBILE
============================== */
@media (max-width: 900px) {
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .deal-image {
        height: 200px;
    }

    .deals-title {
        font-size: 2.2rem;
    }
}

/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 1000px) {
    .categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }

    .toppings-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
  
    }



/* ==================================================
   GLOBAL RESET — CLEAN BASE
================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100%;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

main {
    background: #000;
}

/* ==================================================
   NAVBAR — EXACT FIGMA
================================================== */
/* =======================
   NAVBAR
======================= */
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px; /* ⬅ slightly tighter than 56px */
    background: linear-gradient( to bottom, rgba(0,0,0,0.98), rgba(0,0,0,0.92), rgba(0,0,0,0.88) );
    backdrop-filter: blur(14px);
}

/* =======================
   LEFT (LOGO)
======================= */
.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    font-size: 28px; /* ⬆ bigger crown */
    line-height: 1;
}

.brand-text {
    font-size: 20px; /* ⬆ bigger brand name */
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
}

/* =======================
   CENTER (NAV LINKS)
======================= */
.nav-center {
    display: flex;
    gap: 32px; /* slightly tighter */
}

    .nav-center a {
        color: #ffffff;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.25s ease;
    }

        .nav-center a:hover,
        .nav-center a.active {
            color: #f5b301;
        }

/* =======================
   RIGHT (CART)
======================= */
.nav-right {
    display: flex;
    align-items: center;
    margin-left: 16px; /* ⬅ reduce space */
}

    .nav-right i {
        font-size: 22px; /* ⬆ bigger cart */
        color: #ffffff; /* ✅ white cart */
        cursor: pointer;
        transition: color 0.2s ease, transform 0.2s ease;
    }

        .nav-right i:hover {
            color: #f5b301;
            transform: scale(1.1);
        }

/* =======================
   PUSH CONTENT BELOW NAV
======================= */
main {
    padding-top: 72px;
}


/* ==================================================
   HERO — NO SEAMS, NO WHITE
================================================== */
/* =========================
   HERO SECTION
========================= */
/* =========================
   HERO SECTION
========================= */

/* =========================
   HERO SECTION (FINAL)
========================= */

/* ==================================================
   HERO SECTION — FINAL (NO GAP, NO VOID)
================================================== */
/* ==================================================
   HERO SECTION — CLEAN & FINISHED
================================================== */
/* ==================================================
   HERO SECTION — FIGMA PERFECT
================================================== */

.hero {
    position: relative;
    height: 680px;
    margin-top: -72px;
    padding-top: 72px;
    background: #000 url('/images/hero-pizza.jpg') no-repeat;
    background-size: cover;
    background-position: 65% center;
    overflow: hidden;
    filter: saturate(1.15) contrast(1.05);
}

/* LEFT → RIGHT DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0,0,0,1), rgba(0,0,0,0.92), rgba(0,0,0,0.75), rgba(0,0,0,0.45), rgba(0,0,0,0.15) );
    z-index: 1;
    pointer-events: none;
}

/* BOTTOM FADE — NO BLACK VOID */
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient( to bottom, rgba(0,0,0,0), rgba(0,0,0,0.65), rgba(0,0,0,1) );
    z-index: 2;
    pointer-events: none;
}

/* HERO CONTENT */
.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 720px;
    text-align: center;
}

/* DELIVERY / CARRYOUT — ALIGNED WITH TITLE */
.order-toggle {
    display: inline-flex;
    background: #2b0707;
    border: 1px solid #7a1c1c;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 18px;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
}

    .toggle-btn.active {
        background: #d62828;
    }

/* HEADLINE */
.hero-content h1 {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

    .hero-content h1 span {
        color: #f5b700;
        font-weight: 700;
    }

/* SUBTITLE */
.hero-content p {
    font-size: 20px;
    color: #d1d1d1;
    margin-bottom: 36px;
    max-width: 620px;
    margin-inline: auto;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    background: #c4161c;
    color: #fff;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

    .btn-primary:hover {
        background: #a81216;
    }

/* VIEW MENU — FIXED BACKGROUND */
.btn-secondary {
    background: rgba(255,255,255,0.06);
    border: 1.5px solid #f5b700;
    color: #f5b700;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

    .btn-secondary:hover {
        background: #f5b700;
        color: #000;
    }

/* ==================================================
   CATEGORIES — FIGMA MATCH
================================================== */

/* ===============================
   CATEGORIES — FIGMA MATCH
================================ */

/* ===============================
   CATEGORIES — TIGHT & CLEAN
================================ */

.categories {
    background: #000;
    /* ❌ old was too big */
    /* padding: 72px 48px 120px; */
    /* ✅ FIGMA spacing */
    padding: 48px 48px 56px;
    margin-top: -24px; /* pulls it closer to hero fade */

    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    position: relative;
}


/* CARD */
.category-card {
    height: 168px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0.9));
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 18px 40px rgba(0,0,0,0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
}
/* GOLD DIVIDER UNDER CATEGORIES */
/* RED DIVIDER UNDER CATEGORIES */
/* TAPERED RED DIVIDER — FIGMA STYLE */
/* PERFECT FIGMA TAPERED RED LINE — NO DOUBLE EDGE */
.section-divider {
    width: 100%;
    height: 3px;
    background-color: #b11217; /* dark red */
    margin: 48px auto 0;
}


/* ICON CONTAINER */
.category-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(245,179,1,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 14px rgba(245,179,1,0.25), 0 0 24px rgba(0,0,0,0.6);
}

    /* SVG ICON */
    .category-icon svg {
        width: 26px;
        height: 26px;
        fill: none;
        stroke: #f5b700;
        stroke-width: 1.8;
    }

/* LABEL */
.category-card span {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* HOVER — FIGMA GLOW */
.category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245,179,1,0.35);
    box-shadow: 0 30px 65px rgba(0,0,0,0.85), 0 0 32px rgba(245,179,1,0.25);
}

    .category-card:hover .category-icon {
        background: rgba(245,179,1,0.22);
        box-shadow: 0 0 30px rgba(245,179,1,0.6), inset 0 0 18px rgba(245,179,1,0.45);
    }

/* ==================================================
   RESPONSIVE — TABLET
================================================== */

@media (max-width: 1024px) {
    .categories {
        grid-template-columns: repeat(3, 1fr);
        padding: 64px 32px 100px;
    }
}

/* ==================================================
   RESPONSIVE — MOBILE
================================================== */

@media (max-width: 768px) {

    .hero {
        height: 560px;
        background-position: 70% center;
    }

    .hero-container {
        padding: 0 24px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 14px 0;
    }

    .categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 56px 24px 96px;
    }

    .category-card {
        height: 150px;
        border-radius: 18px;
    }
}

/* ==================================================
   SMALL PHONES
================================================== */

@media (max-width: 768px) {
    .categories {
        grid-template-columns: repeat(3, 1fr);
        padding: 36px 24px 48px;
        gap: 20px;
    }

    .category-card {
        height: 150px;
    }
}


/* ==================================================
   TOPPINGS — FIGMA MATCH
================================================== */
/* ==============================
   TOPPINGS SECTION
============================== */
/* =========================
   TOPPINGS SECTION
========================= */
/* =========================
   TOPPINGS SECTION
========================= */

.toppings-section {
    background: radial-gradient(circle at center, #0d0d0d 0%, #000 70%);
    padding: 120px 0;
    font-size: 17px;
}

.toppings-container {
    max-width: 1280px;
    margin: auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

/* =========================
   EYEBROW
========================= */

.toppings-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.fire-icon {
    width: 14px;
    height: 14px;
    background: #e10600;
    mask: url("/icons/fire.svg") center / contain no-repeat;
    -webkit-mask: url("/icons/fire.svg") center / contain no-repeat;
}

.toppings-line {
    width: 200px;
    height: 2px;
    background-color: #e10600;
}

/* =========================
   HEADING
========================= */

.toppings-content h2 {
    font-size: 4.1rem;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 18px;
}

    .toppings-content h2 span {
        color: #f5b301;
        font-weight: 500;
    }

/* =========================
   DESCRIPTION
========================= */

.toppings-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 560px;
    color: #d6d6d6;
    margin-bottom: 36px;
}

/* =========================
   TOPPINGS LIST
========================= */

.toppings-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 44px;
}

    .toppings-list ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .toppings-list li {
        font-size: 1.05rem;
        margin-bottom: 12px;
        padding-left: 16px;
        position: relative;
        color: #fff;
        opacity: 0.9;
    }

        .toppings-list li::before {
            content: "";
            width: 6px;
            height: 6px;
            background: #f5b301;
            border-radius: 50%;
            position: absolute;
            left: 0;
            top: 9px;
        }

/* =========================
   BUTTON
========================= */

.btn-build {
    display: inline-block;
    background: #f5b301;
    color: #000;
    padding: 16px 44px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .btn-build:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(245,179,1,0.35);
    }

/* =========================
   IMAGE CARD
========================= */

.toppings-image {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 60px rgba(245,179,1,0.2);
}

    .toppings-image img {
        width: 100%;
        max-width: 520px;
        height: auto;
        display: block;
        z-index: 1;
    }

/* =========================
   IMAGE BADGE
========================= */

.image-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    color: #f5b301;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: 999px;
    z-index: 2;
}

/* =========================
   FEATURE PILLS (DESKTOP)
========================= */

.image-features {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

    .image-features span {
        background: rgba(0,0,0,0.75);
        backdrop-filter: blur(8px);
        color: #fff;
        padding: 8px 16px;
        font-size: 0.8rem;
        font-weight: 600;
        border-radius: 999px;
        border: 1px solid rgba(245,179,1,0.35);
        white-space: nowrap;
        box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }

/* =========================
   MOBILE (PILLS BELOW IMAGE)
========================= */

@media (max-width: 768px) {

    .toppings-section {
        padding: 72px 0;
    }

    .toppings-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 20px;
    }

    .toppings-content h2 {
        font-size: 2.6rem;
    }

    .toppings-desc {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .toppings-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .btn-build {
        width: 100%;
        text-align: center;
    }

    .toppings-image {
        order: -1;
        min-height: auto;
        padding-bottom: 72px; /* space for pills */
    }

    /* 🔥 MOVE PILLS BELOW IMAGE */
    .image-features {
        position: static;
        transform: none;
        margin-top: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ==================================================
   FEATURED DEALS — FIGMA CARDS
================================================== */
/* ==============================
   FEATURED DEALS
============================== */

.deals-section {
    background: linear-gradient( to bottom, #0b0b0b, #121212 );
    padding: 96px 0 120px;
}

.deals-container {
    max-width: 1280px;
    margin: auto;
    padding: 0 48px;
    text-align: center;
}

/* TITLE */
.deals-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.deals-subtitle {
    font-size: 1rem;
    color: #bdbdbd;
    margin-bottom: 56px;
}

/* GRID */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.deal-card {
    background: #1b1b1b;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.55);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .deal-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 40px 80px rgba(0,0,0,0.7);
    }

/* IMAGE */
.deal-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .deal-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* PRICE BADGE */
.deal-price {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #b11217; /* DARK RED */
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(177,18,23,0.45);
}

/* BODY */
.deal-body {
    padding: 26px 24px 30px;
    text-align: center;
}

    .deal-body h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 6px;
    }

    .deal-body p {
        font-size: 0.9rem;
        color: #cfcfcf;
        margin-bottom: 20px;
    }

/* BUTTON */
.deal-btn {
    display: inline-block;
    background: #b11217; /* DARK RED */
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

    .deal-btn:hover {
        background: #8f0e13; /* DARKER ON HOVER */
        transform: translateY(-1px);
        box-shadow: 0 10px 30px rgba(177,18,23,0.45);
    }

.section-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient( to right, transparent, #b11217 10%, #b11217 90%, transparent );
}

/* ==============================
   MOBILE
============================== */
@media (max-width: 900px) {
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .deal-image {
        height: 200px;
    }

    .deals-title {
        font-size: 2.2rem;
    }
}

/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 1000px) {
    .categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }

    .toppings-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

    /* ==================================================
   CONTACT PAGE — FIGMA LAYOUT (DESKTOP)
================================================== */

    .contact-section {
        background: #000;
        padding: 96px 0;
    }

    .contact-container {
        max-width: 1280px;
        margin: auto;
        padding: 0 48px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: flex-start;
    }

    /* LEFT COLUMN */
    .contact-left {
        color: #fff;
    }

    .contact-title {
        font-size: 3rem;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .contact-subtitle {
        color: #cfcfcf;
        margin-bottom: 32px;
    }

    .contact-location {
        background: #111;
        border-radius: 16px;
        padding: 24px;
        margin-bottom: 24px;
    }

        .contact-location h3 {
            color: #f5b301;
            margin-bottom: 8px;
        }

        .contact-location p {
            margin: 4px 0;
            font-size: 0.95rem;
        }

        .contact-location a {
            color: #f5b301;
            font-weight: 500;
            display: inline-block;
            margin-top: 10px;
        }

    /* RIGHT COLUMN (FORM) */
    .contact-right {
        background: #111;
        border-radius: 20px;
        padding: 32px;
    }

        .contact-right h2 {
            margin-bottom: 24px;
        }

    /* FORM */
    .contact-form label {
        display: block;
        margin-top: 16px;
        font-size: 0.85rem;
        color: #aaa;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        margin-top: 6px;
        background: #000;
        border: 1px solid #2a2a2a;
        border-radius: 10px;
        padding: 12px;
        color: #fff;
    }

    .contact-form textarea {
        min-height: 120px;
    }

    .contact-form button {
        margin-top: 24px;
        width: 100%;
        background: #c40000;
        border: none;
        border-radius: 12px;
        padding: 14px;
        color: #fff;
        font-weight: 600;
        cursor: pointer;
    }

    /* ==================================================
   CONTACT PAGE — MOBILE
================================================== */
    @media (max-width: 768px) {
        .contact-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }
/* ================= MENU PAGE ================= */
/* ===== MENU PAGE ===== */
/* ================= MENU HERO ================= */
. /* ==================================================
   MENU HERO (TITLE SECTION)
================================================== */
/* ==================================================
   MENU HERO (TITLE SECTION)
================================================== */
/* ==================================================
   SHARED CONTAINER WIDTH (FIGMA STYLE)
================================================== */
/* ==================================================
   GLOBAL MENU CONTAINER
================================================== */
/* ==================================================
   GLOBAL CONTAINER
================================================== */
/* ==================================================
   GLOBAL WIDTH
================================================== */
/* ==================================================
   MENU CONTAINER WRAPPER
================================================== */
. /* ==================================================
   MENU LAYOUT
================================================== */
.menu-hero,
.menu-categories,
.menu-grid {
    max-width: 1280px;
    margin: 0 auto;
}

/* ==================================================
   MENU HERO
================================================== */
.menu-hero {
    padding: 90px 60px 56px;
    background: linear-gradient(to bottom, #000 0%, #0b0b0b 100%);
    color: #fff;
}

    .menu-hero h1 {
        font-size: 44px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .menu-hero p {
        color: #b5b5b5;
        font-size: 15px;
    }

/* ==================================================
   CATEGORY BAR (SIGMA STYLE)
================================================== */
.menu-categories {
    padding: 26px 60px 32px;
    background: linear-gradient(to bottom, #1c1d20, #121316);
    border-radius: 18px;
    margin-bottom: 56px;
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

    .menu-tabs .tab {
        min-width: 128px;
        padding: 12px 22px;
        background: #232427;
        border-radius: 999px;
        color: #ddd;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: all .2s ease;
    }

        .menu-tabs .tab:hover {
            background: #2f3034;
        }

        .menu-tabs .tab.active {
            background: linear-gradient(135deg, #8f0000, #c40000);
            color: #fff;
        }

/* ==================================================
   MENU GRID
================================================== */
.menu-grid {
    padding: 0 60px 90px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
}

/* ==================================================
   MENU CARD (SIGMA STYLE)
================================================== */
.menu-card {
    background: #161616; /* was too dark */
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    transition: transform .25s ease, box-shadow .25s ease;
}


    .menu-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 70px rgba(0,0,0,0.85);
    }

/* ==================================================
   IMAGE (DOMINANT LIKE PIZZA)
================================================== */
.menu-image {
    height: 260px;
    background: #0e0e0e;
    position: relative;
    overflow: hidden;
}

    .menu-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* 🔥 THIS IS THE KEY */
        object-position: center;
        transform: none;
        pointer-events: none;
    }

.menu-card:has(h3:contains("French Fries")) img {
    transform: scale(1.3);
}


/* ==================================================
   CARD BODY (SIGMA FIX)
================================================== */
.card-body p {
    font-size: 13px;
    color: #c7c7c7; /* lighter like pizza */
    min-height: auto;
    margin-bottom: 22px;
    line-height: 1.45;
}

.card-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

    .card-header-row h3 {
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        line-height: 1.25;
        max-width: 70%;
        word-wrap: break-word;
    }

    .card-header-row .price {
        color: #ffcc33; /* Sigma yellow */
        font-weight: 800;
        font-size: 18px;
        white-space: nowrap;
    }


/* DESCRIPTION — CLAMP LIKE PIZZA */
.card-body p {
    font-size: 13px;
    color: #a9a9a9;
    line-height: 1.4;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================================================
   ADD TO CART BUTTON (LOCKED BOTTOM)
================================================== */
.add-btn {
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, #9e0000, #ff0000);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all .2s ease;
}

    .add-btn .plus {
        font-size: 18px;
        font-weight: 800;
    }
    .add-btn:hover {
        background: linear-gradient(135deg, #b80000, #ff2b2b);
        transform: translateY(-1px);
        box-shadow: 0 12px 32px rgba(255,0,0,0.5);
    }

/* ==================================================
   ADD-ONS MODAL (SIGMA POPUP)
================================================== */
/* =========================================
   ADD-ON MODAL OVERLAY
========================================= */
/* =========================================
   MODAL OVERLAY
========================================= */
.addon-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    .addon-modal.hidden {
        display: none;
    }

/* =========================================
   MODAL BOX
========================================= */
.addon-box {
    position: relative;
    background: #111;
    color: #fff;
    width: 420px;
    max-width: 92%;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.8);
    animation: addonFadeUp 0.25s ease-out;
}

    .addon-box h3 {
        font-size: 20px;
        margin-bottom: 18px;
        font-weight: 700;
    }

/* =========================================
   CLOSE BUTTON
========================================= */
.addon-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0.7;
}

    .addon-close:hover {
        opacity: 1;
    }

/* =========================================
   ADD-ON GROUPS
========================================= */
.addon-group {
    margin-bottom: 18px;
}

    .addon-group h4 {
        font-size: 14px;
        margin-bottom: 8px;
        font-weight: 700;
        color: #f5b301;
    }

    .addon-group label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        margin-bottom: 6px;
        cursor: pointer;
    }

    .addon-group input {
        cursor: pointer;
    }

/* =========================================
   FOOTER / PRICE SUMMARY
========================================= */
.addon-footer {
    margin-top: 22px;
    border-top: 1px solid #222;
    padding-top: 16px;
}

.price-summary {
    font-size: 13px;
    margin-bottom: 18px;
}

    .price-summary div {
        display: flex;
        justify-content: space-between;
        margin-bottom: 6px;
    }

    .price-summary strong {
        color: #f5b301;
    }

/* =========================================
   ACTION BUTTONS (FIXED & SPACED)
========================================= */
.addon-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 12px;
}

/* NO THANKS */
#noThanksBtn {
    background: transparent;
    border: 1px solid #333;
    color: #bbb;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

    #noThanksBtn:hover {
        background: #1a1a1a;
        color: #fff;
        border-color: #555;
    }

/* ADD TO CART */
#confirmAddons {
    background: linear-gradient(135deg, #8f0000, #c40000);
    border: none;
    color: #fff;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

    #confirmAddons:hover {
        background: linear-gradient(135deg, #b80000, #ff0000);
    }

/* =========================================
   ANIMATION
========================================= */
@keyframes addonFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   MOBILE
========================================= */
@media (max-width: 480px) {
    .addon-box {
        width: 100%;
        margin: 16px;
        padding: 20px;
    }

    .addon-buttons {
        flex-direction: column;
    }

    #noThanksBtn,
    #confirmAddons {
        width: 100%;
    }
}
.size-slices {
    font-size: 11px;
    color: #aaa;
    margin-top: 2px;
    font-weight: 500;
}


. /* ==================================================
   CART PAGE
================================================== */
/* ==================================================
   CART PAGE
================================================== */
    /* ================= CART PAGE ================= */

    /* ================= PAGE ================= */

    /* ==================================================
   CART PAGE (FIGMA MATCHED)
================================================== */

    /* ================= CART PAGE ================= */

    .cart-page {
        max-width: 1160px;
        margin: 0 auto;
        padding: 64px 32px 96px;
        color: #fff;
    }

    /* ================= HEADER ================= */

    .cart-header {
        max-width: 1160px;
        margin: 0 auto 28px;
        padding: 0 32px;
    }

    .back-link {
        color: #f5b301;
        font-size: 14px;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 10px;
    }

    .cart-header h1 {
        font-size: 34px;
        font-weight: 700;
        margin: 0 0 6px;
    }

    .cart-header .subtitle {
        font-size: 14px;
        color: #aaa;
    }

    /* ================= MAIN LAYOUT ================= */

    .cart-layout {
        display: grid;
        grid-template-columns: 760px 360px;
        gap: 56px;
        justify-content: center;
        align-items: start;
    }

    /* ================= LEFT COLUMN ================= */

    .cart-items {
        max-width: 760px;
    }

    .items-count {
        color: #aaa;
        font-size: 14px;
        margin-bottom: 18px;
    }

    .empty-cart {
        text-align: center;
        color: #aaa;
        margin: 48px 0 24px;
        font-size: 15px;
    }

    /* ================= CART ITEM (SIGMA CARD) ================= */

    .cart-item {
        display: grid;
        grid-template-columns: 72px 1fr auto;
        gap: 20px;
        background: linear-gradient(90deg, #1b1b1b, #1e1e1e);
        padding: 20px 24px;
        border-radius: 18px;
        margin-bottom: 16px;
        align-items: flex-start;
    }

        .cart-item img {
            width: 72px;
            height: 72px;
            object-fit: contain;
            background: #fff;
            border-radius: 12px;
            padding: 6px;
        }

    .cart-info h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
    }

    /* ================= ACTION ROW ================= */

    .cart-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    /* QTY CONTROLS */

    .qty-controls {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .qty-btn {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        background: #2a2a2a;
        color: #fff;
        border: none;
        font-size: 16px;
        cursor: pointer;
    }

    .qty-controls span {
        min-width: 18px;
        text-align: center;
        font-size: 14px;
    }

    /* REMOVE BUTTON (SIGMA STYLE) */

    .remove-form {
        display: flex;
        align-items: center;
    }

    .remove-btn {
        background: transparent;
        border: none;
        padding: 2px;
        cursor: pointer;
        font-size: 14px;
        line-height: 1;
        color: #6f6f6f;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.15s ease, opacity 0.15s ease;
    }

        .remove-btn:hover {
            color: #ff4d4d;
            opacity: 0.9;
        }

        .remove-btn:focus {
            outline: none;
        }

    /* PRICE (RIGHT SIDE – ALIGNED LIKE SIGMA) */

    .cart-price {
        color: #f5b301;
        font-weight: 700;
        font-size: 15px;
        white-space: nowrap;
        margin-top: 2px;
    }

    /* ================= RECOMMENDATIONS ================= */

    .recommend-title {
        margin: 36px 0 14px;
        font-size: 18px;
        font-weight: 600;
    }

    .recommend-list {
        max-width: 760px;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .recommend-item {
        display: grid;
        grid-template-columns: 64px 1fr auto;
        align-items: center;
        gap: 16px;
        background: #141414;
        padding: 16px 20px;
        border-radius: 16px;
    }

        .recommend-item img {
            width: 64px;
            height: 64px;
            object-fit: contain;
            background: #fff;
            border-radius: 10px;
            padding: 6px;
        }

    .rec-info h5 {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
    }

    .rec-info span {
        color: #f5b301;
        font-weight: 600;
        font-size: 14px;
    }

    .add-mini {
        background: #f5b301;
        border: none;
        padding: 8px 18px;
        border-radius: 10px;
        font-weight: 700;
        cursor: pointer;
    }

    /* ================= ORDER SUMMARY ================= */

    .order-summary {
        background: #1b1b1b;
        padding: 28px;
        border-radius: 22px;
        position: sticky;
        top: 96px;
    }

        .order-summary h3 {
            margin: 0 0 18px;
            font-size: 20px;
        }

    .summary-row {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        margin-bottom: 14px;
    }

    .summary-total {
        display: flex;
        justify-content: space-between;
        font-size: 18px;
        font-weight: 700;
        color: #f5b301;
        margin-top: 16px;
    }

    .checkout-btn {
        width: 100%;
        height: 50px;
        background: #8f0000;
        border: none;
        border-radius: 14px;
        color: #fff;
        font-weight: 700;
        margin-top: 22px;
        cursor: pointer;
    }

        .checkout-btn:hover {
            background: #b80000;
        }

    .secure-text {
        text-align: center;
        margin-top: 12px;
        font-size: 13px;
        color: #aaa;
    }

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-page {
        padding: 48px 20px 80px;
    }

    .order-summary {
        position: static;
        margin-top: 40px;
    }
}
/* =========================
   FIGMA PIZZA SIZE SELECTOR
========================= */

.figma-sizes {
    display: flex;
    gap: 14px;
    margin: 14px 0 18px;
}

.size-card {
    background: #1c1c1c;
    border: 2px solid #2a2a2a;
    border-radius: 14px;
    padding: 10px 18px;
    min-width: 90px;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease;
}

    .size-card .size-name {
        font-size: 14px;
        font-weight: 600;
        color: #bbb;
    }

    .size-card .size-price {
        font-size: 14px;
        font-weight: 600;
        color: #777;
        margin-top: 4px;
    }

    /* ACTIVE (Figma Gold) */
    .size-card.active {
        border-color: #f5b400;
        background: rgba(245, 180, 0, 0.08);
    }

        .size-card.active .size-name,
        .size-card.active .size-price {
            color: #f5b400;
        }

    /* HOVER */
    .size-card:hover {
        border-color: #f5b400;
    }
/* ===========================
   ZIP MODAL OVERLAY
=========================== */
.zip-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

    .zip-modal.hidden {
        display: none;
    }

/* ===========================
   ZIP BOX
=========================== */
.zip-box {
    background: #111;
    padding: 28px 24px 30px;
    border-radius: 16px;
    width: 100%;
    max-width: 360px;
    color: #fff;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    position: relative;
    animation: zipFadeUp 0.25s ease-out;
}

/* Animation */
@keyframes zipFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   CLOSE BUTTON
=========================== */
.zip-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 20px;
    cursor: pointer;
}

    .zip-close:hover {
        color: #fff;
    }

/* ===========================
   TEXT
=========================== */
.zip-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.zip-box p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 18px;
}

.zip-note {
    font-size: 12px;
    color: #888;
    margin-top: 14px;
}

/* ===========================
   INPUT
=========================== */
.zip-box input {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #1b1b1b;
    color: #fff;
    outline: none;
    text-align: center;
    letter-spacing: 1px;
}

    .zip-box input::placeholder {
        color: #777;
    }

    .zip-box input:focus {
        border-color: #f5b700;
    }

/* ===========================
   BUTTON
=========================== */
.zip-box button[type="submit"] {
    width: 100%;
    margin-top: 14px;
    padding: 14px;
    background: linear-gradient(135deg, #f5b700, #ffcc33);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    color: #000;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .zip-box button[type="submit"]:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(245,183,0,0.35);
    }

/* ===========================
   MOBILE ADJUSTMENTS
=========================== */
@media (max-width: 480px) {
    .zip-box {
        margin: 0 16px;
        padding: 24px 20px 26px;
        border-radius: 14px;
    }

        .zip-box h3 {
            font-size: 18px;
        }

        .zip-box input {
            font-size: 16px;
            padding: 14px;
        }

        .zip-box button {
            padding: 14px;
            font-size: 15px;
        }
}
/* ===============================
   LOCATION BUTTON (NAVBAR)
================================ */
.location-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .location-nav-btn i {
        font-size: 16px;
    }

    .location-nav-btn:hover {
        background: rgba(255,255,255,0.18);
        border-color: rgba(255,255,255,0.35);
    }

/* ===============================
   NAV RIGHT CONTAINER
================================ */
.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ===============================
   MOBILE & TABLET FIXES
================================ */
@media (max-width: 768px) {

    /* Hide text on mobile, keep icon */
    .location-nav-btn .location-text {
        display: none;
    }

    .location-nav-btn {
        padding: 8px 10px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
    }

        .location-nav-btn i {
            font-size: 18px;
        }
}

/* Extra small phones */
@media (max-width: 480px) {
    .nav-right {
        gap: 10px;
    }
}


/* ===========================
   TABLET ADJUSTMENTS
=========================== */
@media (min-width: 481px) and (max-width: 900px) {
    .zip-box {
        max-width: 380px;
    }
}
.size-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.size-btn {
    background: #1b1b1b;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 10px 14px;
    color: #fff;
    cursor: pointer;
    min-width: 80px;
}

    .size-btn.active {
        border-color: #f5c400;
    }

.size-price {
    color: #f5c400;
}
.category-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}
/* =========================
   CATEGORY ICON BUTTONS
========================= */
.categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.category-btn {
    width: 140px;
    height: 140px;
    background: linear-gradient(180deg, #111, #000);
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.15);
}

    .category-btn i {
        font-size: 34px;
        color: #f5c542; /* GOLD */
        margin-bottom: 10px;
    }

    .category-btn span {
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    /* Hover effect */
    .category-btn:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(245, 197, 66, 0.25), inset 0 0 0 1px rgba(245, 197, 66, 0.6);
    }

        .category-btn:hover i {
            color: #ffd966;
        }

/* Mobile */
@media (max-width: 768px) {
    .category-btn {
        width: 120px;
        height: 120px;
    }
}
/* =========================
   CATEGORY GRID
========================= */
.categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 40px 20px;
    justify-items: center;
}

/* TABLET */
@media (max-width: 992px) {
    .categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   CATEGORY BUTTON
========================= */
.category-btn {
    background: linear-gradient(180deg, #111, #000);
    border-radius: 18px;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.15);
    position: relative;
}

    /* ICON */
    .category-btn i,
    .category-btn svg {
        font-size: 34px;
        fill: gold;
        color: gold;
        margin-bottom: 10px;
    }

    /* TEXT */
    .category-btn span {
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    /* GOLD GLOW HOVER */
    .category-btn:hover {
        transform: translateY(-6px);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
        border-color: gold;
    }

/* =========================
   PIZZA SVG
========================= */
.pizza-svg {
    width: 36px;
    height: 36px;
    fill: gold;
}
.food-icon {
    width: 34px;
    height: 34px;
    fill: #f5c542;
    color: #f5c542;
    margin-bottom: 10px;
}

.category-btn {
    background: radial-gradient(circle at top, #1a1a1a, #000);
    border: 1px solid rgba(245,197,66,.4);
    border-radius: 18px;
    padding: 24px 16px;
    text-align: center;
    transition: all .3s ease;
}

    .category-btn:hover {
        box-shadow: 0 0 22px rgba(245,197,66,.6);
        transform: translateY(-4px);
    }
.food-icon {
    width: 42px;
    height: 42px;
    fill: #ffcc00;
    stroke: #ffcc00;
    stroke-width: 2;
}
/* ===============================
   HOME CATEGORIES LAYOUT
=============================== */

.categories {
    display: grid;
    grid-template-columns: repeat(5, 140px);
    justify-content: center;
    gap: 28px;
    margin: 80px auto;
}

/* MOBILE: 2 × 3 GRID */
@media (max-width: 768px) {
    .categories {
        grid-template-columns: repeat(2, 1fr);
        max-width: 360px;
    }
}

/* ===============================
   CATEGORY BUTTON
=============================== */

.category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at top, #1a1a1a, #000);
    border-radius: 22px;
    border: 1px solid rgba(255, 200, 0, 0.25);
    text-decoration: none;
    color: #fff;
    transition: all 0.35s ease;
    position: relative;
}

/* ===============================
   ICON STYLE
=============================== */

.food-icon {
    width: 42px;
    height: 42px;
    fill: #ffc400;
    stroke: #ffc400;
    stroke-width: 2;
    transition: transform 0.35s ease, filter 0.35s ease;
}

/* ===============================
   LABEL
=============================== */

.category-btn span {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ===============================
   HOVER EFFECT
=============================== */

.category-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 0 0 1px rgba(255, 200, 0, 0.4), 0 0 22px rgba(255, 200, 0, 0.55), 0 0 48px rgba(255, 200, 0, 0.35);
}

    .category-btn:hover .food-icon {
        transform: rotate(-6deg) scale(1.15);
        filter: drop-shadow(0 0 12px #ffc400);
    }

/* ===============================
   ACTIVE CATEGORY GLOW
=============================== */

.category-btn.active {
    box-shadow: 0 0 0 2px rgba(255, 200, 0, 0.7), 0 0 30px rgba(255, 200, 0, 0.75), 0 0 60px rgba(255, 200, 0, 0.45);
}

    .category-btn.active .food-icon {
        transform: scale(1.25);
        filter: drop-shadow(0 0 18px #ffc400);
    }
/* ================= ADDON MODAL ================= */
.addon-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    .addon-modal.hidden {
        display: none;
    }

.addon-card {
    width: 420px;
    background: #111;
    color: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    position: relative;
}

.addon-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 18px;
    cursor: pointer;
}

.addon-title {
    margin-bottom: 16px;
    font-size: 22px;
}

/* PRICE SUMMARY */
.addon-summary {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
}

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.summary-total {
    border-top: 1px solid #333;
    padding-top: 8px;
    font-size: 18px;
}

/* ADDONS */
.addon-groups h4 {
    margin: 12px 0 6px;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #181818;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
}

    .addon-item input {
        margin-right: 8px;
    }

.addon-price {
    color: #facc15;
    font-weight: 600;
}

/* ACTION BUTTONS */
.addon-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.btn-secondary {
    flex: 1;
    background: #2a2a2a;
    color: #ccc;
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
}

.btn-primary {
    flex: 1;
    background: #c40000;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}
/* ================= ADDON MODAL BASE ================= */
.addon-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    .addon-modal.hidden {
        display: none;
    }

.addon-card {
    background: #111;
    color: #fff;
    width: 420px;
    max-width: 92%;
    border-radius: 16px;
    padding: 20px;
    position: relative;
}

/* ================= MOBILE FULLSCREEN ================= */
@media (max-width: 768px) {

    .addon-modal {
        align-items: flex-end;
    }

    .addon-card {
        width: 100%;
        height: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 20px;
        animation: slideUp 0.25s ease-out;
        overflow-y: auto;
    }

    .addon-actions {
        position: sticky;
        bottom: 0;
        background: #111;
        padding: 12px 0;
        display: flex;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        flex: 1;
        height: 48px;
        font-size: 16px;
    }
}

/* ================= ANIMATION ================= */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}
.btn-primary {
    background: #c00000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #444;
    border-radius: 12px;
}
   CATEGORY BAR CONTAINER
================================ */
.menu-categories {
    position: sticky;
    top: 70px; /* adjust if navbar height changes */
    z-index: 20;
    background: linear-gradient(to bottom, #0f0f0f, #141414);
    padding: 18px 20px;
    border-radius: 18px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ================================
   FEATURED CATEGORIES
================================ */
.featured-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
}

    .featured-categories .tab {
        background: linear-gradient(135deg, #b30000, #ff1a1a);
        color: #fff;
        font-weight: 700;
        padding: 12px 22px;
        border-radius: 999px;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: .6px;
        box-shadow: 0 6px 16px rgba(255,0,0,.4);
        transition: transform .2s ease, box-shadow .2s ease;
    }

        .featured-categories .tab:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(255,0,0,.6);
        }

        .featured-categories .tab.active {
            outline: 2px solid #fff;
        }

/* ================================
   COLLAPSIBLE SECTION
================================ */
.all-categories {
    margin-top: 6px;
}

    .all-categories summary {
        cursor: pointer;
        color: #ccc;
        font-weight: 600;
        padding: 10px 6px;
        font-size: 14px;
        list-style: none;
    }

        .all-categories summary::-webkit-details-marker {
            display: none;
        }

        .all-categories summary::after {
            content: "▼";
            margin-left: 8px;
            font-size: 12px;
            opacity: .7;
        }

    .all-categories[open] summary::after {
        content: "▲";
    }

/* ================================
   REGULAR CATEGORY TABS
================================ */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

    .menu-tabs .tab {
        background: #1c1c1c;
        color: #eee;
        padding: 10px 18px;
        border-radius: 999px;
        font-size: 13px;
        transition: all .2s ease;
        white-space: nowrap;
    }

        .menu-tabs .tab:hover {
            background: #2a2a2a;
        }

        .menu-tabs .tab.active {
            background: #ffffff;
            color: #000;
            font-weight: 700;
        }
@media (max-width: 768px) {

    .menu-categories {
        top: 60px;
        padding: 14px;
        border-radius: 14px;
    }

    .featured-categories {
        gap: 10px;
    }

        .featured-categories .tab {
            font-size: 13px;
            padding: 10px 16px;
        }

    .menu-tabs {
        gap: 8px;
    }

        .menu-tabs .tab {
            font-size: 12px;
            padding: 8px 14px;
        }

    .all-categories summary {
        font-size: 13px;
        padding: 8px 4px;
    }
}
/* MENU NAV */
.menu-nav {
    position: sticky;
    top: 72px;
    z-index: 40;
    background: #0f0f0f;
    padding: 22px;
    border-radius: 20px;
}

/* PRIMARY */
.primary-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 18px;
}

.category-card {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    color: #fff;
    transition: all .25s ease;
    box-shadow: inset 0 0 0 1px #222;
}

    .category-card .emoji {
        font-size: 28px;
        display: block;
        margin-bottom: 6px;
    }

    .category-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(0,0,0,.6);
    }

    .category-card.active {
        background: linear-gradient(135deg, #b30000, #ff1a1a);
        box-shadow: 0 12px 30px rgba(255,0,0,.45);
    }

/* MORE */
.more-categories {
    margin-top: 18px;
}

    .more-categories summary {
        cursor: pointer;
        color: #bbb;
        font-weight: 600;
        user-select: none;
    }

.secondary-categories {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .secondary-categories a {
        background: #1b1b1b;
        padding: 8px 14px;
        border-radius: 999px;
        font-size: 13px;
        color: #ccc;
        transition: background .2s;
    }

        .secondary-categories a:hover {
            background: #292929;
        }
/* ================= CHECKOUT PAGE ================= */

.checkout-page {
    max-width: 520px;
    margin: 40px auto;
    padding: 0 16px;
}

.checkout-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 600;
}

/* Card-style form */
.checkout-form {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

    /* Fields */
    .checkout-form .form-group {
        margin-bottom: 16px;
    }

    .checkout-form label {
        font-weight: 500;
        margin-bottom: 6px;
        display: block;
    }

    .checkout-form .form-control {
        height: 42px;
        font-size: 15px;
        border-radius: 8px;
    }

    .checkout-form textarea.form-control {
        height: auto;
    }

/* Button */
.checkout-btn {
    width: 100%;
    margin-top: 20px;
    background: #c40000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

    .checkout-btn:hover {
        background: #a90000;
    }
/* ===== ORDER SUMMARY FIX ===== */
.summary-box {
    background: #f5f5f5;
    color: #111 !important;
}

    .summary-box span,
    .summary-box strong {
        color: #111 !important;
    }

    /* Make Total stand out */
    .summary-box .total strong {
        font-size: 1.2rem;
        font-weight: 700;
    }

/* ===== ERROR MESSAGE FIX ===== */
.error-box {
    background: #ffe5e5;
    color: #b00000 !important;
    border: 1px solid #ffb3b3;
    font-weight: 600;
}
.addon-row.selected {
    background: rgba(255, 215, 0, 0.15);
    border-left: 4px solid #f5c400;
}
/* ONE LINE ADDON ROW */
.addon-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    margin-bottom: 6px;
    background: #1b1b1b;
    border-radius: 10px;
}

.addon-name {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    flex: 1;
}

/* RIGHT SIDE CONTROLS */
.addon-actions-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* +/- BUTTONS */
.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: none;
    background: #2a2a2a;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

    .qty-btn:hover {
        background: #3a3a3a;
    }

/* QTY NUMBER */
.addon-qty {
    width: 20px;
    text-align: center;
    font-size: 14px;
}

/* PRICE PILL */
.addon-price {
    background: #3a2c00;
    color: #f5c400;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 999px;
    margin-left: 6px;
}
@media (max-width: 576px) {

    .custom-navbar {
        padding: 8px 12px;
    }

        .custom-navbar .navbar-brand {
            font-size: 1rem;
            line-height: 1.2;
        }

            .custom-navbar .navbar-brand span,
            .custom-navbar .navbar-brand div {
                font-size: 0.95rem;
            }

        .custom-navbar .nav-link {
            font-size: 0.9rem;
            padding: 4px 8px;
        }
}
@media (max-width: 576px) {

    .hero {
        padding-top: 90px; /* was too big */
        padding-bottom: 40px;
    }

        .hero h1 {
            font-size: 1.9rem;
            line-height: 1.2;
        }

        .hero span {
            font-size: 1.8rem;
        }

        .hero p {
            font-size: 0.95rem;
            margin-top: 10px;
        }
}
@media (max-width: 576px) {

    .order-type-toggle {
        transform: scale(0.9);
        margin-bottom: 15px;
    }
}
@media (max-width: 576px) {

    .hero-buttons .btn {
        font-size: 0.95rem;
        padding: 12px;
        border-radius: 12px;
    }
}
/* ===== MOBILE NAVBAR FIX ===== */
/* ===== MOBILE NAV MENU VISIBILITY FIX ===== */
@media (max-width: 576px) {

    /* Dark background behind menu when opened */
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.92);
        padding: 12px 0;
        border-radius: 12px;
        margin-top: 10px;
    }

    /* Menu links */
    .navbar-nav .nav-link {
        color: #ffffff !important;
        font-size: 1.05rem;
        font-weight: 600;
        padding: 12px 0;
    }

        /* Hover / active state */
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: #ffb703 !important;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 8px;
        }
}
@media (max-width: 576px) {
    .navbar-nav .nav-link {
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    }
}
/* ===== MOVE FEATURE BADGES BELOW IMAGE ON MOBILE ===== */
@media (max-width: 576px) {

    /* Parent hero layout */
    .hero-content {
        flex-direction: column;
    }

    /* Image should come first */
    .hero-image {
        order: 1;
        width: 100%;
    }

    /* Feature badges move BELOW image */
    .hero-features {
        order: 2;
        width: 100%;
        margin-top: 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

        /* Individual badge styling */
        .hero-features .feature-item {
            width: 90%;
            text-align: center;
            font-size: 0.95rem;
            padding: 10px 14px;
        }
}
@media (max-width: 576px) {
    .hero-features {
        position: static !important;
    }
}
/* ===============================
   TOPPINGS – MOBILE REORDER FIX
================================ */

/* Desktop stays same */
.toppings-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Image features default (desktop) */
.image-features {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-pill {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #f5b700;
    text-align: center;
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {

    .toppings-container {
        flex-direction: column;
        text-align: center;
    }

    .toppings-content {
        order: 1;
    }

    .toppings-image {
        order: 2;
        margin-top: 30px;
        position: relative;
    }

    /* Move features BELOW image */
    .image-features {
        position: static;
        transform: none;
        margin-top: 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .feature-pill {
        width: 85%;
        font-size: 0.95rem;
        padding: 10px;
    }
}
/* ===============================
   TOPPINGS – MOBILE REORDER FIX
================================ */
/* ===============================
   TOPPINGS IMAGE FEATURES – CLEAN FIX
================================ */

/* Container */
.toppings-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Image wrapper */
.toppings-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Features ALWAYS below image */
.image-features {
    margin-top: 18px;
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Feature pill */
.feature-pill {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid #f5b700;
    white-space: nowrap;
}

/* Mobile: stack vertically */



/* ===== MOBILE: pills BELOW image ===== */
/* =========================================================
   MOBILE CATEGORY LIST
========================================================= */
.mobile-categories {
    display: none;
}

.mobile-category {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    text-decoration: none;
    color: #111;
    border-bottom: 1px solid #eaeaea;
    font-size: 1.15rem;
    font-weight: 600;
    background: #fff;
}

    .mobile-category:last-child {
        border-bottom: none;
    }

    .mobile-category img {
        width: 44px;
        height: 44px;
        object-fit: contain;
        flex-shrink: 0;
    }

.cat-name {
    flex: 1;
}

.cat-arrow {
    font-size: 1.6rem;
    color: #888;
}

.mobile-category:active {
    background: #f5f5f5;
}

/* =========================================================
   BACK BUTTON
========================================================= */
.back-to-categories {
    display: inline-block;
    margin: 12px 16px;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    background: #fff;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* =========================================================
   MENU GRID (MOBILE)
========================================================= */
@media (max-width: 768px) {

    body {
        background: #f5f5f5;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-categories {
        display: block;
        margin-top: 16px;
        border-radius: 16px;
        overflow: hidden;
        background: #fff;
    }

    .menu-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 14px;
    }

    .menu-card {
        display: flex;
        gap: 12px;
        background: #fff;
        border-radius: 16px;
        padding: 12px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    .menu-image {
        width: 110px;
        min-height: 110px;
        flex-shrink: 0;
    }

        .menu-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

    .card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .card-header-row {
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }

    .menu-card h3 {
        font-size: 1rem;
        font-weight: 700;
        color: #111;
        margin: 0;
    }

    .price {
        font-size: 0.95rem;
        font-weight: 800;
        color: #111;
    }

    .menu-card p {
        font-size: 0.85rem;
        color: #666;
        margin: 4px 0 8px;
    }

    .size-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin-top: 6px;
    }

        .size-grid .size-card:nth-child(3):last-child {
            grid-column: span 2;
        }

    .size-card {
        background: #e3e3e3;
        border-radius: 8px;
        padding: 8px;
        font-size: 0.8rem;
        font-weight: 800;
        color: #111;
        text-align: center;
        border: none;
    }

        .size-card.active {
            background: #ffb300;
            color: #000;
        }

        .size-card span {
            display: block;
            margin-top: 2px;
            font-size: 0.9rem;
            font-weight: 900;
            color: #000;
        }
}

/* =========================================================
   ADDON MODAL OVERLAY
========================================================= */
.addon-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.65);
    z-index: 9998;
}

/* =========================================================
   ADDON MODAL BOX (ALL SCREENS)
========================================================= */
.addon-box {
    width: 100%;
    max-width: 420px;
    height: 85vh;
    display: flex;
    flex-direction: column;
    background: #0f0f0f;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    padding: 16px;
}

/* =========================================================
   SCROLLABLE ADDON LIST
========================================================= */
#addonGroups {
    flex: 1;
    overflow-y: auto;
    padding-right: 6px;
    margin: 12px 0;
}

    #addonGroups::-webkit-scrollbar {
        width: 6px;
    }

    #addonGroups::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.25);
        border-radius: 4px;
    }

/* =========================================================
   ADDON ROW
========================================================= */
.addon-row {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

/* =========================================================
   FIXED ACTION BAR (MOBILE + DESKTOP)
========================================================= */
.addon-actions {
    display: flex;
    gap: 10px;
    padding-top: 10px;
    flex-shrink: 0;
}

/* NO THANKS */
#skipAddons {
    flex: 1;
    background: #2a2a2a;
    color: #ddd;
    border-radius: 14px;
    padding: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid #333;
    text-align: center;
}

/* ADD TO CART */
#confirmAddons {
    flex: 2;
    background: linear-gradient(180deg, #c30000, #900000);
    color: #fff;
    border-radius: 16px;
    padding: 14px;
    font-size: 1.05rem;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 8px 20px rgba(195,0,0,0.45);
}

/* =========================================================
   DESKTOP TUNING
========================================================= */
@media (min-width: 769px) {
    .addon-box {
        height: 75vh;
    }
}
/* FORCE MENU ITEM PRICE TO BLACK */
.menu-card .price,
.menu-card .price span,
.menu-card .selected-price {
    color: #000 !important;
}
/* =========================
   CUSTOMER DETAILS SECTION
========================= */
/* ===============================
   CUSTOMER DETAILS — CLEAN CARD
================================ */

.customer-section {
    margin-top: 32px;
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, #161616, #0f0f0f);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

    .customer-section h2 {
        margin-bottom: 18px;
        font-size: 1.3rem;
        font-weight: 800;
        color: #fff;
    }

    /* Form field wrapper */
    .customer-section .field {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 16px;
    }

    /* Labels */
    .customer-section label {
        font-size: 0.85rem;
        font-weight: 600;
        color: #bbb;
    }

    /* Inputs & textarea */
    .customer-section input,
    .customer-section textarea {
        background: #1e1e1e;
        border: 1px solid #2a2a2a;
        border-radius: 12px;
        padding: 12px 14px;
        font-size: 0.95rem;
        color: #fff;
        outline: none;
        transition: all 0.2s ease;
    }

        /* Placeholder */
        .customer-section input::placeholder,
        .customer-section textarea::placeholder {
            color: #777;
        }

        /* Focus state */
        .customer-section input:focus,
        .customer-section textarea:focus {
            border-color: #ffb300;
            box-shadow: 0 0 0 2px rgba(255,179,0,0.25);
        }

    /* Required star */
    .customer-section label::after {
        content: "";
    }

/* ===============================
   RESPONSIVE (MOBILE)
================================ */

/* =====================================
   MOBILE CHECKOUT FIX
===================================== */
@media (max-width: 768px) {

    /* Page padding */
    .checkout {
        padding: 16px;
    }

    /* Stack layout */
    .checkout-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* Order + Summary full width */
    .order-details,
    .payment-summary {
        width: 100%;
        max-width: 100%;
    }

    /* Hide sticky behavior on mobile */
    .payment-summary {
        position: static;
        margin-top: 16px;
    }

    /* Checkout item layout */
    .checkout-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 14px;
    }

    .checkout-thumb {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    .checkout-info {
        flex: 1;
    }

    .checkout-price {
        font-size: 14px;
        white-space: nowrap;
    }

    /* Quantity buttons */
    .checkout-controls {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 8px;
    }

    .qty-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .qty {
        min-width: 20px;
        text-align: center;
        font-size: 15px;
    }

    /* Upsell section */
    .upsell-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
    }

        .upsell-item img {
            width: 60px;
            height: 60px;
            flex-shrink: 0;
        }

    .upsell-text {
        flex: 1;
        font-size: 14px;
    }

    .upsell-add-btn {
        padding: 8px 14px;
        font-size: 14px;
        white-space: nowrap;
    }

    /* Customer form */
    .customer-section {
        padding: 16px;
    }

        .customer-section input,
        .customer-section textarea {
            width: 100%;
            font-size: 15px;
        }

    /* Checkout button */
    .checkout-btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }

    /* Remove any horizontal overflow */
    body {
        overflow-x: hidden;
    }
}
/* ===============================
   NAVBAR CHECKOUT LINK — WHITE
================================ */
.navbar a[href*="Checkout"],
.navbar .checkout-link,
.navbar a.checkout {
    color: #ffffff !important;
    font-weight: 600;
}

    /* Hover state */
    .navbar a[href*="Checkout"]:hover,
    .navbar .checkout-link:hover,
    .navbar a.checkout:hover {
        color: #ffcc00 !important; /* optional hover accent */
    }
/* ===============================
   NAVBAR CHECKOUT ICON
================================ */
.nav-checkout {
    color: #ffffff;
    font-size: 18px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .nav-checkout:hover {
        color: #ffcc00;
    }
.cart-link i {
    color: #ffffff;
}

.cart-link:hover i {
    color: #ffcc00;
}
.hero {
    min-height: 100vh;
    height: auto;
    padding-bottom: 80px; /* allows content below */
}
/* FIX: compensate for fixed navbar */
body {
    padding-top: 80px;
}
/* ==================================================
   DESKTOP NAVBAR ALIGNMENT — LAPTOP ONLY
   DOES NOT AFFECT MOBILE
================================================== */
@media (min-width: 992px) {

    /* Make navbar stretch full width */
    .navbar .container {
        max-width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }

    /* LEFT: Logo */
    .navbar-brand {
        margin-right: auto;
        flex-shrink: 0;
    }

    /* CENTER: Menu */
    .navbar-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        gap: 18px;
    }

    /* RIGHT: Location + Cart */
    .navbar .d-flex {
        margin-left: auto;
        gap: 16px;
        flex-shrink: 0;
    }
}
/* =========================================
   GOLDEN FEATURE PILLS (PREMIUM LOOK)
========================================= */
/* =========================================
   FULL GOLD FEATURE PILLS (LUXURY)
========================================= */

.gold-pill,
.feature-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    /* REAL GOLD METALLIC BACKGROUND */
    background: linear-gradient( 135deg, #fff4b0 0%, #ffd24d 20%, #d4a017 45%, #ffcf40 70%, #fff4b0 100% );
    /* DARK GOLD TEXT */
    color: #3a2600;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.4px;
    /* DEPTH + SHINE */
    box-shadow: inset 0 2px 3px rgba(255,255,255,0.85), inset 0 -2px 3px rgba(0,0,0,0.25), 0 6px 18px rgba(212,160,23,0.55);
    border: 1px solid rgba(255, 215, 120, 1);
    text-shadow: 0 1px 0 rgba(255,255,255,0.5);
    transition: all 0.25s ease;
}

    /* ✨ Hover shine */
    .gold-pill:hover,
    .feature-pill:hover {
        background: linear-gradient( 135deg, #fff9cf 0%, #ffe27a 25%, #e6b422 50%, #ffe27a 75%, #fff9cf 100% );
        box-shadow: inset 0 2px 4px rgba(255,255,255,0.95), 0 8px 24px rgba(212,160,23,0.8);
        transform: translateY(-1px);
    }

    /* Vertical spacing */
    .gold-pill + .gold-pill,
    .feature-pill + .feature-pill {
        margin-top: 14px;
    }
/* =========================================
   FORCE FULL GOLD FEATURE PILLS (NO CLASS NEEDED)
========================================= */

/* Target the exact pills you showed */
.image-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap; /* wraps nicely on mobile */
    margin-top: 24px;
}
.feature-pill {
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    color: #000;
    /* GOLD GRADIENT */
    background: linear-gradient( 135deg, #ffdf70 0%, #f5c542 30%, #e6b800 50%, #ffdf70 70%, #f5c542 100% );
    border: 1px solid #ffd700;
    /* GOLD GLOW */
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6), inset 0 0 6px rgba(255, 255, 255, 0.35);
    text-shadow: 0 1px 0 rgba(255,255,255,0.4);
    white-space: nowrap;
}
.toppings-image {
    background: radial-gradient( ellipse at center, rgba(255,215,0,0.08), transparent 70% );
}
/* ===============================
   DESKTOP ONLY — MAKE PRICE WHITE
================================ */
@media (min-width: 992px) {

    /* Common price selectors */
    .menu-card .price,
    .menu-item-price,
    .item-price,
    .price-tag,
    .menu-card span.price {
        color: #ffffff !important;
        font-weight: 700;
        opacity: 1 !important;
    }
}
@media (min-width: 992px) {

    .menu-card {
        position: relative;
    }

        .menu-card > div:last-child {
            color: #ffffff !important;
            font-weight: 700;
        }
}
/* =========================================
   DESKTOP ONLY — FORCE FULL PRICE WHITE
========================================= */
@media (min-width: 992px) {

    /* Price container */
    .menu-card .price,
    .menu-card .menu-item-price,
    .menu-card .item-price {
        color: #ffffff !important;
        font-weight: 700;
        opacity: 1 !important;
    }

        /* Dollar sign */
        .menu-card .price span,
        .menu-card .price strong,
        .menu-card .price small {
            color: #ffffff !important;
            opacity: 1 !important;
        }

        /* Numeric amount (9.99) */
        .menu-card .price * {
            color: #ffffff !important;
            opacity: 1 !important;
        }
}
/* =========================================
   DESKTOP ONLY — HIDE "BACK TO CATEGORIES"
========================================= */
@media (min-width: 992px) {
    .back-to-categories,
    .back-btn,
    .back-category-btn,
    a[href*="Back"],
    a:has(svg),
    a:has(span):has(text) {
        display: none !important;
    }
}
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}
/* ===============================
   HOME CATEGORY SHORTCUTS
=============================== */
.home-categories {
    display: grid;
    gap: 20px;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* MOBILE */
@media (max-width: 767px) {
    .home-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DESKTOP */
@media (min-width: 768px) {
    .home-categories {
        grid-template-columns: repeat(5, 1fr);
    }
}
/* ==============================
   HOME SHORTCUT CATEGORIES
============================== */

.categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px;
}

/* Category Button */
.category-btn {
    background: radial-gradient(circle at top, #1a1a1a, #000);
    border-radius: 18px;
    padding: 28px 16px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 200, 0, 0.25);
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: all 0.25s ease;
}

    .category-btn:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.6);
        border-color: #ffcc00;
    }

/* Icon */
.food-icon {
    width: 42px;
    height: 42px;
    fill: #ffcc00;
    margin-bottom: 12px;
}

/* Text */
.category-btn span {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

/* ==============================
   RESPONSIVE BEHAVIOR
============================== */

/* Tablet */
@media (max-width: 1024px) {
    .categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-top: 40px;
    }
}
.order-type {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.order-option {
    font-weight: 600;
    cursor: pointer;
}
