﻿/* ==================================================
   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 {
    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
========================= */
.toppings-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(245,179,1,0.18);
}

    .toppings-image img {
        width: 100%;
        display: block;
    }

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .toppings-section {
        padding: 72px 0;
    }

    .toppings-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 20px;
    }

    .toppings-eyebrow {
        margin-bottom: 16px;
    }

    .toppings-line {
        width: 140px;
    }

    .toppings-content h2,
    .toppings-content h2 span {
        font-size: 2.8rem;
    }

    .toppings-desc {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .toppings-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

        .toppings-list li {
            font-size: 1rem;
        }

    .btn-build {
        width: 100%;
        text-align: center;
        padding: 16px;
    }

    .toppings-image {
        order: -1;
    }
}


/* ==================================================
   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;
}
@media (max-width: 768px) {
    .addon-modal {
        align-items: flex-end;
    }

    .addon-card {
        width: 100%;
        height: 100%;
        border-radius: 18px 18px 0 0;
        overflow-y: auto;
        animation: slideUp .25s ease;
    }

    .addon-actions {
        position: sticky;
        bottom: 0;
        background: #111;
        padding: 12px;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}

.hidden {
    display: none;
}
.cart-link {
    position: relative;
    font-size: 22px;
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #e50914;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    line-height: 1;
}

.hidden {
    display: none;
}
/* Add-on container */
.addon-box {
    max-height: 420px;
    overflow-y: auto;
    padding: 10px;
    background: #0f0f0f;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* Each add-on row */
.addon-item {
    margin-bottom: 8px;
}

/* Label = clickable row */
.addon-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    background: linear-gradient(145deg, #1a1a1a, #121212);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #222;
}

    .addon-label:hover {
        transform: scale(1.01);
        background: #1f1f1f;
    }

/* Checkbox (custom toggle look) */
.addon-check {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #555;
    background: transparent;
    position: relative;
    cursor: pointer;
}

    .addon-check:checked {
        background: #ff3b3b;
        border-color: #ff3b3b;
    }

        .addon-check:checked::after {
            content: "✓";
            color: white;
            font-size: 12px;
            position: absolute;
            top: -1px;
            left: 3px;
        }

/* Name */
.addon-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #eee;
}

/* Price badge */
.addon-price {
    font-size: 13px;
    font-weight: 600;
    color: #ffb703;
    background: rgba(255,183,3,0.15);
    padding: 4px 10px;
    border-radius: 999px;
}
.addon-disabled {
    opacity: 0.4;
    pointer-events: none; /* disable only the option */
}

.addon-option {
    pointer-events: auto;
}

/* 🚨 VERY IMPORTANT */
.addon-box,
.addon-modal,
#confirmAddons {
    pointer-events: auto !important;
}
/* ===== MOBILE ADDON MODAL ===== */
@media (max-width: 768px) {

    .addon-modal {
        align-items: flex-end;
    }

    .addon-box {
        width: 100%;
        max-height: 90vh;
        border-radius: 16px 16px 0 0;
        padding-bottom: 90px; /* space for button */
        overflow: hidden;
    }

    #addonGroups {
        max-height: calc(90vh - 160px);
        overflow-y: auto;
        padding-bottom: 20px;
    }

    #confirmAddons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        font-size: 18px;
        padding: 16px;
        z-index: 10;
    }
}
/* Bigger tap areas */
.addon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 8px;
    font-size: 16px;
}

.addon-checkbox {
    width: 20px;
    height: 20px;
}

.size-card {
    min-height: 56px;
    font-size: 16px;
}
    .add-btn:active,
    .size-card:active {
        transform: scale(0.97);
    }
@media (max-width: 768px) {
    .price-summary {
        position: sticky;
        top: 0;
        background: #111;
        padding: 12px;
        z-index: 5;
        border-bottom: 1px solid #333;
    }
}
/* Modal shell */
.addon-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.addon-box {
    background: #111;
    width: 420px;
    max-height: 90vh;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Close */
.addon-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* Title */
.addon-title {
    color: #fff;
    margin-bottom: 12px;
}

/* Price box */
.addon-price-box {
    background: #1c1c1c;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    color: #ddd;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

    .price-row.total {
        color: #fff;
        font-size: 16px;
    }

/* Groups scroll */
.addon-groups {
    overflow-y: auto;
    flex: 1;
    margin-bottom: 12px;
}

/* Addon rows */
.addon-group h4 {
    color: #ffb703;
    font-size: 14px;
    margin: 10px 0 6px;
}

.addon-item,
.addon-option {
    display: flex;
    align-items: center;
    background: #1c1c1c;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 8px;
}

    .addon-option input {
        margin-right: 10px;
        transform: scale(1.2);
    }

.addon-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Actions */
.addon-actions {
    display: flex;
    gap: 10px;
}

.addon-skip {
    flex: 1;
    background: #333;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
}

.addon-confirm {
    flex: 1;
    background: #c40000;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
}
/* ================================
   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;
}
