/* =====================================================================
   FUEGO STYLESHEET - MASTER CSS
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. GLOBAL VARIABLES & ROOT
------------------------------------------------------------------------ */
:root {
    /* Brand Colors */
    --fuego-brown: #201406;
    --fuego-cream: #F4F1EA;
    --fuego-orange: #ec5f27;
    /* Updated to match new section */
    --fuego-red: #D72300;
    --fuego-white: #ffffff;
    --fuego-yellow: #FFC107;
    --fuego-black: #111111;

    --primary-red: #E85526;
    --bg-skin: #F9F4E6;

    /* Theme Matching Variables (Backward compatibility) */
    --bk-bg-cream: #F4F1EA;
    --bk-text-brown: #4B3012;
    --bk-red: #D72300;
    --bk-green: #118C4F;
    --bk-white: #ffffff;
    --bk-border-color: #DBCFBE;

    /* Typography */
    --title-font: 'Nunito', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-rowdies: 'Rowdies', sans-serif;

    /* Utilities */
    --transition: all 0.3s ease;
}

/* ---------------------------------------------------------------------
   2. GENERAL & LAYOUT
------------------------------------------------------------------------ */


@media screen and (min-width: 1400px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0;
    }
}


.ovelay_bg {
    position: absolute;
    bottom: -2px;
    width: 100%;
    z-index: 100;
}

/* ---------------------------------------------------------------------
   3. PREMIUM 2D ROTATING BRAND STAMP
------------------------------------------------------------------------ */
.fuego-rotating-badge {
    position: relative;
    width: 230px;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-skin);
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(232, 85, 38, 0.15);
    margin: 0 auto;
}

.fuego-rotating-badge .badge-border {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1.5px dashed var(--primary-red);
    opacity: 0.7;
    z-index: 1;
}

.fuego-rotating-badge .rotating-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    animation: rotateBadgeText 16s linear infinite;
}

.fuego-rotating-badge .rotating-text text {
    font-family: var(--font-rowdies);
    font-size: 15.5px;
    font-weight: 800;
    fill: var(--primary-red);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.fuego-rotating-badge .center-logo {
    position: relative;
    z-index: 3;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.fuego-rotating-badge .center-logo img {
    width: 75%;
    height: auto;
    object-fit: contain;
}

@keyframes rotateBadgeText {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ---------------------------------------------------------------------
   4. PREMIUM BENTO GRID EDITION (Fixed 600px Height)
------------------------------------------------------------------------ */
.editorial-services-section {
    background-color: var(--fuego-cream);
    padding: 100px 20px 80px;
    font-family: var(--title-font);
    overflow: hidden;
}

.editorial-grid-container {
    /* Added max-width from original block to keep it contained if outside .container */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
    height: 600px;
}

/* Côté Gauche (Image) */
.editorial-hero-side {
    grid-column: 1;
    grid-row: 1 / span 2;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.editorial-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 10s ease;
}

.editorial-hero-side:hover .editorial-hero-img {
    transform: scale(1.05);
}

.editorial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 50px;
    text-align: left;
}

.editorial-main-title {
    color: var(--fuego-white);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Badge SVG (Intégré dans le Hero Left) */
.rotating-badge-wrapper {
    position: absolute;
    left: 40px;
    top: 40px;
    width: 120px;
    height: 120px;
    z-index: 5;
}

.editorial-services-section .rotating-text2 {
    animation: rotateText 15s linear infinite;
    transform-origin: center;
    width: 100%;
    height: 100%;
}

.badge-icon-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    color: var(--fuego-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes rotateText {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Côté Droit (Cartes) */
.editorial-card {
    grid-column: 2;
    background: var(--fuego-white);
    border-radius: 20px;
    padding: 30px 40px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
}

.editorial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(75, 48, 18, 0.03);
}

.card-sticker {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--fuego-yellow);
    color: var(--fuego-brown);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: rotate(4deg);
    z-index: 15;
}

.card-sticker.sticker-red {
    background-color: var(--fuego-orange);
    color: var(--fuego-white);
    transform: rotate(-3deg);
}

.card-icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--fuego-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--fuego-brown);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.editorial-card:hover .card-icon-circle {
    background-color: var(--fuego-orange);
    color: var(--fuego-white);
    transform: scale(1.1);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--fuego-brown);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.card-text {
    color: #7A6958;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Boutons dans Editorial Bento */
.btn-editorial {
    font-weight: 900;
    font-size: 1rem;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-editorial i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.btn-solid {
    background-color: var(--fuego-brown);
    color: var(--fuego-white);
    border: 2px solid var(--fuego-brown);
}

.btn-solid:hover {
    background-color: var(--fuego-orange);
    border-color: var(--fuego-orange);
    color: var(--fuego-white);
    box-shadow: 0 10px 20px rgba(215, 35, 0, 0.3);
}

.btn-solid:hover i {
    transform: translateX(6px);
}

.btn-outline {
    background-color: transparent;
    color: var(--fuego-brown);
    border: 2px solid var(--fuego-brown);
}

.btn-outline:hover {
    background-color: var(--fuego-brown);
    color: var(--fuego-white);
}

.btn-outline:hover i {
    transform: translateX(6px);
}

/* Responsive Bento Grid */
@media (max-width: 1024px) {
    .editorial-grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 40px;
    }

    .editorial-hero-side {
        grid-column: 1;
        grid-row: auto;
        height: 400px;
    }

    .editorial-card {
        grid-column: 1;
        height: auto;
    }
}

@media (max-width: 768px) {
    .editorial-main-title {
        font-size: 2.8rem;
    }

    .rotating-badge-wrapper {
        display: none;
    }

    .editorial-card {
        padding: 40px 20px;
    }

    .card-sticker {
        right: 20px;
    }
}


/* ---------------------------------------------------------------------
   5. FUEGO HOVER GALLERY (Fixed Width, Top-to-Bottom Animation)
------------------------------------------------------------------------ */
.fg-acc-section {
    width: 100%;
    height: 520px;
    display: flex;
    background-color: #fffdf8;
    font-family: var(--font-heading);
    overflow: hidden;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #2e2e2e18;
}

.fg-acc-item {
    flex: 1;
    position: relative;
    border-right: 1px solid #2e2e2e2b;
    background-color: #f9f8f6;
    cursor: pointer;
    overflow: hidden;
    transition: background-color 0.4s ease;
}

.fg-acc-item:last-child {
    border-right: none;
}

.fg-acc-item:hover {
    background-color: #FBA026;
}

.fg-acc-watermark {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
}

.fg-acc-item:hover .fg-acc-watermark {
    opacity: 1;
}

.fg-acc-top-info {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 5;
}

.fg-acc-top-info h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 1px;
}

.fg-acc-top-info p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.fg-acc-item:hover .fg-acc-top-info {
    opacity: 1;
    transform: translateY(0);
}

.fg-acc-img-wrap {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 210px;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fg-acc-img-wrap img {
    width: 250px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15));
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 2;
}

.fg-acc-item:hover .fg-acc-img-wrap {
    top: 50%;
    transform: translate(-50%, -30%);
}

.fg-acc-item:hover .fg-acc-img-wrap img {
    transform: scale(1.2);
}

.fg-acc-splash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 220px;
    height: 220px;
    border-radius: 35% 25% 35% 25%;
    opacity: 0;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fg-acc-splash::before,
.fg-acc-splash::after {
    content: '';
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
}

.fg-acc-splash::before {
    width: 20px;
    height: 20px;
    top: 10%;
    right: -10px;
}

.fg-acc-splash::after {
    width: 30px;
    height: 30px;
    bottom: 20%;
    left: -20px;
}

.fg-acc-item:hover .fg-acc-splash {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.fg-acc-bottom-default {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #B2B2B2;
    transition: all 0.4s ease;
    z-index: 4;
}

.fg-acc-bottom-default h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}

.fg-acc-script-title {
    font-family: 'Brush Script MT', 'Pacifico', cursive;
    font-size: 3.5rem !important;
    text-transform: capitalize !important;
    font-weight: normal !important;
}

.fg-acc-bottom-default p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
    letter-spacing: 1px;
}

.fg-acc-item:hover .fg-acc-bottom-default {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
}

.fg-acc-bottom-hover {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    z-index: 5;
}

.fg-acc-bottom-hover h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fg-acc-bottom-hover p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 2px;
}

.fg-acc-item:hover .fg-acc-bottom-hover {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .fg-acc-section {
        flex-wrap: wrap;
        height: auto;
    }

    .fg-acc-item {
        flex: 1 1 50%;
        height: 400px;
        border-bottom: 1px solid #e8e6e1;
    }
}

@media (max-width: 576px) {
    .fg-acc-item {
        flex: 1 1 100%;
    }

    .fg-acc-bottom-default {
        bottom: 0 !important;
    }

}

@media (max-width: 1400px) {
    .fg-acc-img-wrap img {
        width: 220px;
    }

    .fg-acc-splash {
        width: 170px;
        height: 220px;
    }
}

/* ---------------------------------------------------------------------
   6. FUEGO ABOUT SECTION (Target Design Clone)
------------------------------------------------------------------------ */
.fuego-about-section {
    padding: 100px 0;
    background-color: var(--fuego-cream);
    font-family: var(--font-body);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.fa-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

.fa-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.fa-image-col {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fa-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.fa-main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 2;
}

.fa-floating-text {
    position: absolute;
    top: 5%;
    left: -5%;
    font-family: 'Brush Script MT', 'Pacifico', cursive;
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: #ffb000;
    transform: rotate(-15deg);
    z-index: 3;
    text-shadow: 2px 2px 0px #ffffff, -2px -2px 0px #ffffff, 2px -2px 0px #ffffff, -2px 2px 0px #ffffff;
}

.fa-price-tag {
    position: absolute;
    bottom: 5%;
    left: 0;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 4.5rem);
    font-weight: 800;
    color: #111111;
    line-height: 1;
    z-index: 3;
}

.fa-since-badge {
    position: absolute;
    bottom: 10%;
    right: -5%;
    background-color: #ffb000;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 8px;
    transform: rotate(-12deg);
    z-index: 3;
    box-shadow: 0 10px 20px rgba(255, 176, 0, 0.3);
    letter-spacing: 0.5px;
}

.fa-content-col {
    flex: 1;
}

.fa-subtitle {
    color: #e85526;
    font-weight: 800;
    font-size: 1rem;
    text-transform: capitalize;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.fa-title {
    font-family: var(--font-heading);
    font-size: 3.95rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.15;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.fa-title span {
    color: #e85526;
}

.fa-desc {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 500;
}

.fa-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.fa-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.fa-feature-icon {
    font-size: 2.2rem;
    color: #ec5f27;
    line-height: 1;
}

.fa-feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.fa-feature-text p {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.fa-action-area {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.fa-btn-green {
    background-color: #ec5f27;
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.fa-btn-green:hover {
    background-color: #ec5f27;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 138, 69, 0.2);
}

.fa-author-info {
    display: flex;
    flex-direction: column;
}

.fa-author-name {
    color: #ec5f27;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.fa-author-role {
    color: #111111;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .fa-row {
        flex-direction: column;
        gap: 80px;
    }

    .fa-image-col {
        width: 100%;
        padding: 0 20px;
    }

    .fa-floating-text {
        left: 5%;
    }

    .fa-since-badge {
        right: 5%;
    }

    .fa-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .fa-action-area {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =====================================================================
   FULL-WIDTH PROMO BENTO GRID (Target Design Clone)
   ===================================================================== */
.fuego-bento-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /* Prevents absolutely positioned images from causing horizontal scroll */
    background-color: var(--black, #151515);
    font-family: var(--font-body, 'Montserrat', sans-serif);
}

.fuego-bento-grid {
    display: grid;
    /* Left column slightly wider than middle and right columns */
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 375px 375px;
    width: 100%;
    gap: 0;
    /* Flush design exactly like the image */
}

/* Base styling for all items */
.fuego-bento-item {
    position: relative;
    overflow: hidden;
    /* padding: 40px; */
    display: flex;
    flex-direction: column;
    transition: var(--transition, all 0.3s ease);
}

.fuego-bento-item img {
    /* position: absolute; */
    /* object-fit: cover; */
    transition: transform 0.4s ease;
}

.fuego-bento-item:hover img {
    transform: scale(1.05);
    /* Subtle zoom effect on hover */
}

/* ------------------------------------
   ITEM 1: LARGE LEFT (PIZZA)
   ------------------------------------ */
.fuego-bento-item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: radial-gradient(circle at center, #2a2a2a 0%, #111111 100%);
    /* Simulates dark texture */
    align-items: center;
    text-align: center;
    /* padding-top: 60px; */
}

.fuego-bento-item-1 .fb-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.fuego-bento-item-1 .fb-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.1;
    text-transform: capitalize;
}

.fuego-bento-item-1 .fb-highlight {
    color: #ffc107;
    /* Yellow text */
}

.fuego-bento-item-1 .fb-badge {
    position: absolute;
    right: 15%;
    top: 35%;
    color: #ffffff;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    text-align: right;
    line-height: 1;
    transform: rotate(-10deg);
}

.fuego-bento-item-1 .fb-badge span {
    color: #ffc107;
    font-size: 3rem;
    font-weight: 800;
}

.fuego-bento-item-1 img {
    /* bottom: -50px; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    width: 100%;
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.5));
}

.fuego-bento-item-2:hover img {
    transform: scale(1.05);
}

/* ------------------------------------
   ITEM 2: MIDDLE TOP (BURGER)
   ------------------------------------ */
.fuego-bento-item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    background: radial-gradient(circle at top left, #d32f2f 0%, #9a0000 100%);
    /* Red background */
}

.fuego-bento-item-2 .fb-subtitle {
    color: #ffc107;
    font-weight: 600;
    font-size: 1rem;
}

.fuego-bento-item-2 .fb-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 5px 0;
}

.fuego-bento-item-2 .fb-desc {
    color: #ffffff;
    font-size: 0.85rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.fuego-bento-item-2 .fb-price {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.fuego-bento-item-2 .fb-price span {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 2rem;
    font-weight: 800;
}

.fuego-bento-item-2 img,
.fuego-bento-item-3 img,
.fuego-bento-item-4 img,
.fuego-bento-item-5 img {
    width: 100% !important;
    z-index: 100000000;
    left: initial !important;
    right: initial !important;
    transform: initial !important;
    bottom: initial !important;
    height: 100% !important;

}

.fuego-bento-item-2 img {
    bottom: -10px;
    right: -20px;
    width: 70%;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.3));

    bottom: -10px;
    right: -20px;
    width: 70%;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.3));
}

/* ------------------------------------
   ITEM 3: MIDDLE BOTTOM (FRIES)
   ------------------------------------ */
.fuego-bento-item-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background: radial-gradient(circle at top left, #ff7b00 0%, #d85c00 100%);
    /* Orange background */
}

.fuego-bento-item-3 .fb-subtitle {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.fuego-bento-item-3 .fb-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.fuego-bento-item-3 .fb-desc {
    color: #ffffff;
    font-size: 0.9rem;
    width: 60%;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 25px;
}

.fuego-bento-item-3 img {
    bottom: -10px;
    right: -20px;
    width: 55%;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.2));
}

/* ------------------------------------
   ITEM 4: RIGHT TOP (NUGGETS)
   ------------------------------------ */
.fuego-bento-item-4 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    background: #111111;
    /* Dark background */
}

.fuego-bento-item-4 .fb-subtitle {
    color: #d32f2f;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.fuego-bento-item-4 .fb-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.fuego-bento-item-4 .fb-drawn-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 80px;
    height: 80px;
    border: 2px dashed #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-weight: 700;
    line-height: 1;
    transform: rotate(-15deg);
    z-index: 2;
}

.fuego-bento-item-4 .fb-drawn-badge span {
    font-size: 1.8rem;
}

.fuego-bento-item-4 img {
    bottom: -20px;
    right: -20px;
    width: 75%;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.5));
}

/* ------------------------------------
   ITEM 5: RIGHT BOTTOM (CHICKEN)
   ------------------------------------ */
.fuego-bento-item-5 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    background: #1a1a1a;
    /* Dark background */
}

.fuego-bento-item-5 .fb-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.fuego-bento-item-5 .fb-title-large {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    color: #ffc107;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.fuego-bento-item-5 .fb-script {
    font-family: 'Brush Script MT', cursive, sans-serif;
    color: #ffffff;
    font-size: 2rem;
    transform: rotate(-5deg);
    margin-top: -10px;
    margin-left: 20px;
}

.fuego-bento-item-5 img {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.5));
}

.fuego-bento-item-5:hover img {
    transform: translateX(-50%) scale(1.05);
}

/* --- BUTTONS SPECIFIC TO THIS SECTION --- */
.fb-btn-yellow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffca28;
    color: #111111;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    width: max-content;
    transition: all 0.3s ease;
    z-index: 2;
}

.fb-btn-yellow:hover {
    background-color: #e4a800;
    color: #111111;
    transform: translateY(-2px);
}

.fb-btn-green-edge {
    position: absolute;
    right: 0;
    top: 40%;
    background-color: #8bc34a;
    color: #ffffff;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 15px 10px 20px;
    border-radius: 30px 0 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    z-index: 5;
}

.fb-btn-green-edge:hover {
    background-color: #689f38;
    padding-right: 25px;
    /* Expands slightly on hover */
    color: #ffffff;
}

/* ------------------------------------
   RESPONSIVE MOBILE BREAKPOINTS
   ------------------------------------ */
@media (max-width: 1200px) {
    .fuego-bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .fuego-bento-item-1 {
        grid-column: 1 / -1;
        grid-row: 1;
        height: 500px;
    }

    .fuego-bento-item-2 {
        grid-column: 1 / 2;
        grid-row: 2;
        height: 350px;
    }

    .fuego-bento-item-3 {
        grid-column: 2 / 3;
        grid-row: 2;
        height: 350px;
    }

    .fuego-bento-item-4 {
        grid-column: 1 / 2;
        grid-row: 3;
        height: 350px;
    }

    .fuego-bento-item-5 {
        grid-column: 2 / 3;
        grid-row: 3;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .fuego-bento-grid {
        grid-template-columns: 1fr;
    }

    .fuego-bento-item-1,
    .fuego-bento-item-2,
    .fuego-bento-item-3,
    .fuego-bento-item-4,
    .fuego-bento-item-5 {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 400px;
    }

    .fuego-bento-item-1 {
        height: 450px;
    }
}








/* ---------------------------------------------------------------------
   8. DELIVERY CTA SECTION
------------------------------------------------------------------------ */
.fd-section {
    background-color: #F5F3EB;
    position: relative;
    width: 100%;
    padding-top: 60px;
    overflow: hidden;
    font-family: var(--font-body);
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.fd-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000000' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 1;
}

.fd-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    padding: 0 2%;
}

.fd-left-img {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    margin-bottom: -10px;
}

.fd-left-img img {
    max-width: 100%;
    width: 400px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.fd-content {
    flex: 1.2;
    text-align: center;
    padding-bottom: 60px;
}

.fd-subtitle {
    font-family: 'Pacifico', cursive;
    color: #ec5f27;
    font-size: 2.2rem;
    display: block;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.fd-title {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #222222;
    margin: 0 0 15px 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.fd-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #888888;
    line-height: 1.6;
    margin: 0 auto 30px auto;
    max-width: 450px;
    font-weight: 500;
}

.fd-btn {
    display: inline-block;
    background-color: #ec5f27;
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 16px 35px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 0 0 20px 0;
}

.fd-btn:hover {
    background-color: #ec5f27;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 184, 19, 0.3);
}

.fd-right-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.fd-right-img img {
    max-width: 100%;
    width: 450px;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 1024px) {
    .fd-container {
        flex-direction: column;
        align-items: center;
    }

    .fd-content {
        padding-bottom: 40px;
        order: 1;
    }

    .fd-left-img,
    .fd-right-img {
        width: 100%;
        justify-content: center;
    }

    .fd-right-img {
        order: 2;
    }

    .fd-left-img {
        order: 3;
        margin-bottom: 0;
    }

    .fd-left-img img,
    .fd-right-img img {
        width: 300px;
    }
}

/* ---------------------------------------------------------------------
   9. FUEGO PACKAGES SECTION
------------------------------------------------------------------------ */
.fp-section {
    padding: 100px 0;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.fp-bg-text {
    position: absolute;
    bottom: 20px;
    right: 5%;
    font-family: var(--font-heading);
    font-size: 8rem;
    color: rgba(0, 0, 0, 0.03);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

.fp-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: center;
    gap: 40px;
    z-index: 2;
    position: relative;
}

.fp-card {
    width: 100%;
    max-width: 550px;
    border-radius: 16px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.fp-card::before {
    content: '';
    position: absolute;
    top: 30%;
    left: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
    transform: rotate(-25deg);
    pointer-events: none;
    z-index: 1;
}

.fp-card-left {
    background-color: #D31224;
    transform: translateY(-20px);
}

.fp-card-right {
    background-color: #FDB813;
    transform: translateY(20px);
}

.fp-card-content {
    position: relative;
    z-index: 2;
}

.fp-badge {
    display: inline-block;
    padding: 6px 18px;
    transform: skewX(-12deg);
    margin-bottom: 20px;
}

.fp-badge span {
    display: inline-block;
    transform: skewX(12deg);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.fp-card-left .fp-badge {
    background-color: #FDB813;
    color: #111111;
}

.fp-card-right .fp-badge {
    background-color: #D31224;
    color: #ffffff;
}

.fp-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.fp-card-left .fp-title {
    color: #ffffff;
}

.fp-card-right .fp-title {
    color: #111111;
}

.fp-start-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.fp-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.fp-card-left .fp-start-text {
    color: rgba(255, 255, 255, 0.8);
}

.fp-card-left .fp-price {
    color: #FDB813;
}

.fp-card-right .fp-start-text {
    color: rgba(0, 0, 0, 0.6);
}

.fp-card-right .fp-price {
    color: #D31224;
}

.fp-divider {
    width: 100%;
    height: 1px;
    margin-bottom: 25px;
}

.fp-card-left .fp-divider {
    background-color: rgba(255, 255, 255, 0.2);
}

.fp-card-right .fp-divider {
    background-color: rgba(0, 0, 0, 0.1);
}

.fp-include-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.fp-card-left .fp-include-title {
    color: #ffffff;
}

.fp-card-right .fp-include-title {
    color: #111111;
}

.fp-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.fp-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.fp-list-item i {
    font-size: 1.1rem;
}

.fp-card-left .fp-list-item {
    color: #ffffff;
}

.fp-card-left .fp-list-item i {
    color: #FDB813;
}

.fp-card-right .fp-list-item {
    color: #111111;
}

.fp-card-right .fp-list-item i {
    color: #D31224;
}

.fp-btn {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.fp-btn:hover {
    transform: translateY(-3px);
}

.fp-btn-text {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.95rem;
    color: #111111;
    margin-right: 15px;
}

.fp-btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.fp-card-left .fp-btn-icon {
    background-color: #FDB813;
    color: #ffffff;
}

.fp-card-right .fp-btn-icon {
    background-color: #D31224;
    color: #ffffff;
}

.fp-image-wrap {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-color: #eee;
    z-index: 3;
    overflow: hidden;
    border: 8px solid transparent;
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.3);
}

.fp-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-multiplier {
    position: absolute;
    top: 190px;
    right: 180px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    padding: 5px 12px;
    transform: rotate(-10deg);
    z-index: 4;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);
}

.fp-card-left .fp-multiplier {
    background-color: #FDB813;
    color: #111111;
}

.fp-card-right .fp-multiplier {
    background-color: #D31224;
    color: #ffffff;
}

@media (max-width: 992px) {
    .fp-container {
        flex-direction: column;
        align-items: center;
    }

    .fp-card-left,
    .fp-card-right {
        transform: none;
    }
}

@media (max-width: 576px) {
    .fp-list {
        grid-template-columns: 1fr;
    }

    .fp-image-wrap {
        width: 180px;
        height: 180px;
        top: -20px;
        right: -20px;
    }

    .fp-multiplier {
        top: 130px;
        right: 120px;
    }

    .fp-title {
        font-size: 2.8rem;
    }



}

/* ---------------------------------------------------------------------
   ANIMATIONS INTÉRIEURES DES CARTES (FUEGO)
------------------------------------------------------------------------ */

/* 1. Zoom and slight rotation of the image when hovering the card */
.fp-image-wrap img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fp-card:hover .fp-image-wrap img {
    transform: scale(1.15) rotate(3deg);
}

/* 2. Continuous floating animation for the Multiplier (S ➔ XL & DUO) */
@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0) rotate(-10deg);
    }

    50% {
        transform: translateY(-10px) rotate(-8deg);
    }
}

.fp-multiplier {
    animation: floatElement 4s ease-in-out infinite;
}

/* 3. Premium Shine Effect sweeping across the Badges */
.fp-badge {
    position: relative;
    overflow: hidden;
}

.fp-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: badgeShine 3s infinite;
    z-index: 1;
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }

    20%,
    100% {
        left: 200%;
    }

    /* The gap creates a pause between shines */
}

/* 4. Interactive Slide-Right Effect for Formule Boxes on hover */
.fp-formule-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-width 0.3s ease;
    cursor: default;
}

.fp-formule-box:hover {
    transform: translateX(10px);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
    border-left-width: 8px;
    /* Makes the red line slightly thicker */
}

/* 5. Enhanced Size Tags hover (Glow effect) */
.fp-size-tag {
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.fp-size-tag:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* 6. Arrow pushing right when hovering the main buttons */
.fp-btn-icon i {
    transition: transform 0.3s ease;
}

.fp-btn:hover .fp-btn-icon i {
    transform: translateX(4px);
}

/* ---------------------------------------------------------------------
   NEW CLASSES FOR GENERALIZED DATA
------------------------------------------------------------------------ */

/* Force single column for detailed lists */
.fp-list-single {
    grid-template-columns: 1fr;
    gap: 12px;
}

/* Size Tags Grid for Sharing Menus */
.fp-size-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.fp-size-tag {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px 5px;
    text-align: center;
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.2;
    transition: transform 0.2s ease;
}

.fp-size-tag:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.2);
}

.fp-size-tag strong {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    display: inline-block;
    margin-bottom: 3px;
    color: #FDB813;
    /* Highlight letter */
}

.fp-size-tag span {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Formula Box for Right Card */
.fp-formule-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.04);
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid #D31224;
    gap: 10px;
}

.fp-formule-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #D31224;
}

.fp-formule-desc {
    flex-grow: 1;
    font-size: 0.85rem;
    line-height: 1.2;
}

.fp-formule-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    background: #111111;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Responsive adjustments for the new grids */
@media (max-width: 576px) {
    .fp-size-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-formule-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .fp-formule-price {
        align-self: flex-end;
        margin-top: -25px;
    }
}

/* ---------------------------------------------------------------------
   10. BEST SELLING DISHES 
------------------------------------------------------------------------ */
.best-selling-section {
    padding: 80px 0 80px;
    background: var(--bk-bg-cream);
    position: relative;
}

.bs-header-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--fuego-black);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.bs-card {
    background: var(--fuego-white);
    border-radius: 20px;
    padding: 0 25px 25px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    cursor: pointer;
}

.bs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.bs-img {
    width: 100%;
    height: 210px;
    margin-top: 0px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bs-img img {
    max-width: 130%;
    max-height: 130%;
    object-fit: contain;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.bs-card:hover .bs-img img {
    transform: scale(1.08);
}

.bs-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--fuego-black);
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bs-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #202020;
    line-height: 1.9;
    margin-bottom: 20px;
    flex-grow: 1;
}

.bs-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.bs-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bs-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--fuego-red);
    font-weight: 800;
}

.bs-cart-btn {
    background: var(--primary-red);
    color: var(--fuego-white);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(138, 53, 0, 0.2);
}

.bs-cart-btn:hover {
    transform: scale(1.01);
}

.bs-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

.bs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4d4d4;
    cursor: pointer;
    transition: var(--transition);
}

.bs-dot.active {
    background: var(--fuego-red);
    width: 20px;
    border-radius: 10px;
}

/* ---------------------------------------------------------------------
   11. ELEMENT SECTION (Title with badge)
------------------------------------------------------------------------ */
.pf-el-section {
    padding-top: 80px;
}

.pf-el-section .sub-title {
    padding: 4px 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgb(236 95 39);
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
}

.section-title h2 {
    text-transform: uppercase;
    font: 800 40px "Barlow Condensed", sans-serif;
    margin-bottom: 15px;
    color: #0C0C1C;
}

.our-food-section .food-item .food-thumbnail img {
    width: 100%;
    border-radius: 15px;
    height: auto;
}

.iconic-info-box.style-two .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ec5f27;
    font-size: 32px;
    margin-bottom: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iconic-info-box.style-two .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.iconic-info-box.style-two .content h4.title {
    margin-bottom: 5px;
    color: #0C0C1C;
}

.iconic-info-box.style-two .content h4 {
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 25px;
    line-height: 1.2;
}

.iconic-info-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 40px;
}

.pf_cta_phone {
    margin: 20px 0;
}

.pf_cta_phone a {
    color: #ec5f27;
    font-weight: 700;
    text-decoration: underline;
}

/* ---------------------------------------------------------------------
   12. FUEGO FOOTER - PREMIUM DESIGN
------------------------------------------------------------------------ */
.fuego-footer {
    background-color: #ec5f27;
    color: #ffffff;
    font-family: var(--font-body);
    width: 100%;
    position: relative;
    margin-top: 60px;
}

.ff-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 5%;
}


/* --- Contenu Principal du Footer --- */
.ff-main-content {
    padding: 50px 0;
}

.ff-columns {
    display: grid;
    /* 4 Colonnes : La 1ère un peu plus large pour la marque */
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 40px;
}

.ff-col-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

/* Petite ligne décorative sous les titres */
.ff-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
}

/* Colonne 1 : Marque */
.ff-brand-logo {
    height: 75px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.ff-brand-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.ff-badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.ff-halal-badge {
    border: 2px solid #ffffff;
    border-radius: 8px;
    /* Design plus carré et moderne */
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Listes (Contact, Liens, Horaires) */
.ff-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ff-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.ff-list li i {
    font-size: 1.3rem;
    margin-top: 2px;
    opacity: 0.8;
}

.ff-list a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease, padding-left 0.3s ease;
    opacity: 0.9;
}

.ff-links a:hover {
    opacity: 1;
    padding-left: 5px;
    /* Effet de décalage très pro */
    color: #111111;
}

.ff-hours li {
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.ff-hours li span:last-child {
    font-weight: 700;
}

/* --- Barre du Bas --- */
.ff-bottom-bar {
    background-color: #f4f1ea;
    /* Fond clair */
    color: #111111;
    /* Texte sombre pour la lisibilité */
    padding: 20px 0;
}

.ff-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ff-social-icons {
    display: flex;
    gap: 15px;
}

.ff-payments img {
    height: 30px;
    object-fit: contain;
}

.ff-social-icons {
    display: flex;
    gap: 15px;
}

.ff-social-icons a {
    background-color: rgba(236, 95, 39, 0.15);
    /* Fond orange très léger */
    color: #ec5f27;
    /* Icône orange Fuego */
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ff-social-icons a:hover {
    background-color: #ec5f27;
    /* Devient plein au survol */
    color: #ffffff;
    /* Icône blanche au survol */
    transform: translateY(-3px);
}

/* --- Bouton Go Top --- */
.go_top {
    bottom: 30px;
}


/* --- Responsif --- */
@media (max-width: 992px) {
    .ff-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .ff-newsletter-flex {
        flex-direction: column;
        text-align: center;
    }

    .ff-newsletter-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ff-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ff-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .ff-col-title,
    .ff-brand-text {
        text-align: center;
    }

    .ff-badges {
        justify-content: center;
    }

    .ff-brand-logo {
        display: block;
        margin: 0 auto 20px;
    }

    .ff-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}






/* =====================================================================
   FULL WIDTH FEATURES BANNER CSS
   ===================================================================== */
.fb-section-full {
    position: relative;
    width: 100%;
    background-color: #1a1a1a;
    background-image: url(https://modinatheme.com/foodking/wp-content/uploads/2024/02/food-shape-2.png);

    /* Dark sleek background takes full width */
    margin-top: 115px;
    /* Pushes the section down to make room for the top half of the overlapping badge */
    padding: 150px 0 110px;
    /* Generous top padding so the grid sits nicely below the badge */
    font-family: var(--font-body, 'Montserrat', sans-serif);
    /* overflow: hidden; */
    /* Contains the SVG background pattern */
}

/* Faint background pattern to mimic the food texture */
.fb-section-full::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    background-image: url(https://modinatheme.com/foodking/wp-content/uploads/2024/02/food-shape-2.png);

    pointer-events: none;
    z-index: 1;
}

.fb-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.fb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.fb-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.fb-item:hover {
    transform: translateY(-5px);
    /* Slight lift on hover */
}

/* Orange/Yellow Icons */
.fb-icon {
    font-size: 42px;
    color: #ec5f27;
    /* Exact brand orange/yellow */
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.fb-item:hover .fb-icon {
    transform: scale(1.1);
}

.fb-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.fb-desc {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* --- ROTATING BADGE CSS --- */
.fuego-rotating-badge {
    position: absolute;
    top: 0;
    /* Aligns to the very top edge of the dark section */
    left: 50%;
    transform: translate(-50%, -50%);
    /* Pulls it exactly halfway out of the section to overlap */
    width: 230px;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-skin, #F9F4E6);
    /* Cream Background */
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    /* Stronger shadow since it's on a dark background */
    z-index: 10;
}

.fuego-rotating-badge .badge-border {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1.5px dashed var(--primary-red, #E85526);
    opacity: 0.7;
    z-index: 1;
}

.fuego-rotating-badge .rotating-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    animation: rotateBadgeText 16s linear infinite;
}

.fuego-rotating-badge .rotating-text text {
    font-family: var(--font-rowdies, 'Rowdies', sans-serif);
    font-size: 15.5px;
    font-weight: 800;
    fill: var(--primary-red, #E85526);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.fuego-rotating-badge .center-logo {
    position: relative;
    z-index: 3;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.fuego-rotating-badge .center-logo img {
    width: 75%;
    height: auto;
    object-fit: contain;
}

@keyframes rotateBadgeText {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 1024px) {
    .fb-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
    }
}

@media (max-width: 576px) {
    .fb-section-full {
        padding: 150px 0 60px;
        /* Slightly more top padding on mobile */
    }

    .fb-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .fb-item {
        align-items: center;
        text-align: center;
    }

    .fuego-rotating-badge {
        width: 200px;
        /* Scale badge down slightly on very small screens */
        height: 200px;
    }

    .fuego-rotating-badge .center-logo {
        width: 90px;
        height: 90px;
    }
}






















/* ---------------------------------------------------------------------
   13. FUEGO ABOUT SECTION (STATS & YELLOW BADGE VARIANT)
------------------------------------------------------------------------ */
.fuego-about-stats-section {
    padding: 100px 0;
    /* Fond blanc */
    font-family: 'Nunito', sans-serif;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.fas-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
}

.fas-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* --- LEFT COLUMN: IMAGE --- */
.fas-image-col {
    flex: 1;
    position: relative;
}

.fas-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    border-radius: 12px;
    background-color: #111;
    padding: 20px;
}

/* Texte géant en arrière-plan */
.fas-bg-huge-text {
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 180px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    z-index: 1;
    letter-spacing: -2px;
}

.fas-main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border-radius: 8px;
    display: block;
}

/* Badge Jaune */
.fas-yellow-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #F8B62D;
    padding: 30px 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
    z-index: 3;
    text-align: left;
}

.fas-text-red {
    color: #ec5f27;
}

/* --- RIGHT COLUMN: CONTENT --- */
.fas-content-col {
    flex: 1.1;
    padding-left: 20px;
}

.fas-subtitle {
    color: #2E7D32;
    font-weight: 800;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 15px;
}

.fas-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.fas-desc {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 95%;
}

/* --- STATS SECTION --- */
.fas-stats-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
    gap: 30px;
}

.fas-stat-divider {
    width: 1px;
    height: 50px;
    background-color: #e0e0e0;
}

.fas-stat-box {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.fas-stat-bg-number {
    position: absolute;
    left: -15px;
    top: -10px;
    font-family: 'Oswald', sans-serif;
    font-size: 80px;
    font-weight: 800;
    color: #f5f5f5;
    line-height: 1;
    z-index: 1;
}

.fas-stat-label {
    font-size: 0.9rem;
    color: #111;
    font-weight: 800;
    position: relative;
    z-index: 2;
    margin-bottom: 5px;
}

.fas-stat-value {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ec5f27;
    line-height: 1;
    position: relative;
    z-index: 2;
}

/* --- AUTHOR & FOUNDATION ROW --- */
.fas-author-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.fas-foundation-badge {
    background-color: #111111;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .fas-row {
        flex-direction: column;
        gap: 60px;
    }

    .fas-image-col {
        width: 100%;
    }

    .fas-content-col {
        padding-left: 0;
    }

    .fas-bg-huge-text {
        font-size: 120px;
    }
}

@media (max-width: 768px) {
    .fas-title {
        font-size: 2.5rem;
    }

    .fas-yellow-badge {
        font-size: 1.2rem;
        padding: 20px;
        bottom: -10px;
        right: 0;
    }

    .fas-stats-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .fas-stat-divider {
        display: none;
    }

    .fas-author-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}









/* =====================================================================
       HOW WE SERVE YOU - SECTION DESIGN
    ===================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700;800&family=Nunito:wght@500;600;700&display=swap');

.hws-section {
    background-color: #F4F1EA;
    /* Couleur crème de fond */
    padding: 100px 0;
    font-family: 'Nunito', sans-serif;
}

/* HEADER */
.hws-header {
    margin-bottom: 60px;
}

.hws-subtitle {
    color: #118C4F;
    /* Vert de l'image */
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.hws-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #222222;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

/* GRID & LINE */
.hws-grid-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Ligne horizontale en pointillés */
.hws-dashed-line {
    position: absolute;
    top: 32%;
    /* Ajusté pour passer derrière le centre des cercles */
    left: 15%;
    right: 15%;
    border-top: 1px dashed #b8b8b8;
    z-index: 1;
}

.hws-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Aligne les cartes verticalement */
    position: relative;
    z-index: 2;
}

/* INDIVIDUAL STEPS */
.hws-step {
    flex: 1;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* MIDDLE CARD (ACTIVE) */
.hws-active-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 20px;
    border: 1px dashed #cccccc;
    /* Bordure pointillée comme sur l'image */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    /* Ombre très douce */
}

/* ICON CONTAINER */
.hws-icon-container {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    /* Le background de même couleur que la section permet de masquer la ligne pointillée derrière l'image */
    background-color: #F4F1EA;
}

.hws-active-card .hws-icon-container {
    background-color: #ffffff;
    /* Masque la ligne avec la couleur de la carte */
}

/* YELLOW CIRCLE */
.hws-yellow-circle {
    position: absolute;
    width: 85px;
    height: 85px;
    background-color: #FDB813;
    border-radius: 50%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* IMAGES */
.hws-img {
    position: relative;
    z-index: 2;
    max-width: 150px;
    max-height: 125px;
    object-fit: contain;
}

/* BADGE 02 */
.hws-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #118C4F;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(17, 140, 79, 0.3);
}

/* TYPOGRAPHY FOR STEPS */
.hws-step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #222222;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.hws-step-desc {
    font-size: 14px;
    color: #777777;
    line-height: 1.6;
    margin: 0;
    max-width: 240px;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hws-grid {
        flex-direction: column;
        gap: 40px;
    }

    .hws-dashed-line {
        display: none;
        /* Cache la ligne sur mobile */
    }

    .hws-active-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hws-title {
        font-size: 36px;
    }
}

























/* =====================================================================
   14. FUEGO MENU PAGE (Main layout & Header)
   ===================================================================== */
:root {
    --fm-bg-cream: #F4F1EA;
    --fm-text-brown: #4B3012;
    --fm-orange: #ec5f27;
    --fm-white: #ffffff;
    --fm-border-color: #DBCFBE;
    --fm-grey-bg: #EBE0D3;
    --fm-font: 'Nunito', sans-serif;
}

header {
    position: relative;
    width: 100%;
    z-index: 999;
    transition: 0.4s all;
    background: #F4F1EA;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.fix_style {
    background-size: cover;
    transition: 0.4s all;
}

header.fixed {
    position: fixed;
    top: 0;
    z-index: 9;
}

header.fixed::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Navigation bar */
.navbar {
    padding: 0 15px;
    transition: 0.4s all;
}

@media (min-width: 992px) {
    .navbar {
        padding: 0 85px !important;
    }
}

/* @media (max-width: 992px) {
    .fuego-sidebar {
        top: 58px !important;
    }
} */

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-item {
    margin: 0 16px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 32px 0 26px 0;
    font-weight: 800 !important;
    font-size: 16px !important;
    color: #111111 !important;
    transition: 0.4s all;
    text-transform: capitalize;
    font-family: Roboto, sans-serif;
    letter-spacing: 1px;
    position: relative;
    white-space: nowrap;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #D32F2F !important;
}

/* Menu Wrapper */
.fuego-menu-wrapper {
    background-color: var(--fm-bg-cream);
    min-height: 100vh;
    padding: 0px 0 80px;
    font-family: var(--fm-font);
    color: var(--fm-text-brown);
}

.fuego-menu-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Actions */
.fuego-header-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--fm-text-brown) !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.fuego-header-link i {
    font-size: 18px;
    color: var(--fm-orange);
}

.fuego-header-link:hover {
    color: var(--fm-orange) !important;
}

.fuego-header-btn {
    background-color: var(--fm-orange);
    color: var(--fm-white) !important;
    font-size: 15px;
    font-weight: 800;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.fuego-header-btn:hover {
    background-color: var(--fm-orange);
    transform: translateY(-1px);
}

.fuego-header-cart {
    background: transparent;
    border: none;
    color: var(--fm-text-brown);
    font-size: 22px;
    padding: 0;
    margin: 0;
    position: relative;
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.fuego-header-cart:hover {
    color: var(--fm-orange);
}

.fuego-header-cart .fuego-cart-badge {
    position: absolute;
    top: -4px;
    right: -8px;
    background-color: var(--fm-orange);
    color: var(--fm-white);
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--fm-font);
}

.fuego-header-hamburger {
    background: transparent;
    border: none;
    color: var(--fm-text-brown);
    font-size: 24px;
    padding: 0;
    margin-left: 8px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.fuego-header-hamburger:hover {
    color: var(--fm-orange);
}

/* --- Menu Nav & Swiper --- */
.fuego-nav-header {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
    padding: 15px 0px 5px;
    background-color: var(--fm-bg-cream);
    border-top: 1px solid #00000012;
}

.fuego-category-swiper {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding-bottom: 5px;
    overflow: hidden;
}

.fuego-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--fm-text-brown);
    font-weight: 900;
    font-size: 1.15rem;
    white-space: nowrap;
    padding: 10px 20px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.fuego-category-item:hover,
.fuego-category-item.active {
    opacity: 1;
    border-bottom: 3px solid var(--fm-orange);
}

.fuego-category-item.active {
    color: var(--fm-orange);
}

.fuego-category-img {
    width: 95px !important;
    height: 95px !important;
    object-fit: contain;
    margin-bottom: 8px;
    transition: transform 0.2s ease;
}

.fuego-category-item:hover .fuego-category-img {
    transform: scale(1.1);
}

.fuego-nav-arrow-next,
.fuego-nav-arrow-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fm-text-brown);
    font-size: 1.2rem;
    cursor: pointer;
    background: var(--fm-bg-cream);
    padding: 10px;
    z-index: 10;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.fuego-nav-arrow-next {
    right: 100px;
}

.fuego-nav-arrow-prev {
    left: 100px;
}

/* --- Promo Banner & Filters --- */
.fuego-promo-banner {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(75, 48, 18, 0.05);
}

.fuego-promo-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    height: 250px !important;
}

.fuego-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.fuego-filters-left {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fuego-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: var(--fm-font);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--fm-text-brown);
    background-color: transparent;
    border: 1.5px solid var(--fm-border-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.fuego-filter-btn:hover {
    background-color: var(--fm-white);
    border-color: var(--fm-text-brown);
}

.fuego-filter-btn.active {
    background-color: var(--fm-orange);
    color: var(--fm-white);
    border-color: var(--fm-orange);
}

.fuego-filters-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fuego-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--fm-text-brown);
    cursor: pointer;
}

.fuego-checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--fm-text-brown);
    cursor: pointer;
}

.fuego-allergen-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: var(--fm-font);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--fm-text-brown);
    background-color: var(--fm-grey-bg);
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.fuego-allergen-btn:hover {
    opacity: 0.8;
}

.fuego-allergen-btn i {
    color: var(--fm-orange);
    font-size: 1.1rem;
}

/* --- Menu Grid & Cards --- */
.fuego-section-title-menu {
    font-size: 2rem;
    font-weight: 900;
    color: var(--fm-text-brown);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.fuego-menu-card {
    background: var(--fm-white);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    min-height: 280px;
    cursor: pointer;
}

.fuego-menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(75, 48, 18, 0.08);
}

.fuego-cat-card-img {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 15px;
}

.fuego-cat-card-img img {
    max-height: 140px;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.fuego-cat-card-title {
    font-size: 1.15rem;
    font-weight: 900;
    text-align: center;
    color: var(--fm-text-brown);
    margin: 0;
}

.fuego-prod-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--fm-text-brown);
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-align: left;
}

.fuego-prod-img {
    height: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.fuego-prod-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.fuego-prod-desc {
    font-size: 0.85rem;
    color: #7A6958;
    line-height: 1.4;
    margin: 0 0 15px 0;
    flex-grow: 1;
    text-align: left;
}

.fuego-prod-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.fuego-prod-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--fm-text-brown);
}

.fuego-prod-btn {
    background-color: var(--fm-bg-cream);
    color: var(--fm-orange);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fuego-prod-btn:hover {
    background-color: var(--fm-orange);
    color: var(--fm-white);
}

.fuego-custom-order-btn {
    background-color: var(--fm-orange);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: rgba(211, 47, 47, 0.25) 0px 4px 10px;
    color: var(--fm-white) !important;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.fuego-loader-container {
    display: none;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    grid-column: 1 / -1;
    width: 100%;
}

.fuego-custom-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(75, 48, 18, 0.1);
    border-radius: 50%;
    border-top-color: var(--fm-text-brown);
    animation: spin 1s ease-in-out infinite;
}


/* =========================================
   MEDIA QUERIES (RESPONSIVE)
========================================= */

/* --- Tablettes (Max 992px) --- */
@media (max-width: 992px) {
    .fuego-promo-banner img {
        height: 200px !important;
        /* Réduit un peu la hauteur de la bannière */
    }

    .fuego-section-title-menu {
        font-size: 1.75rem;
    }
}

/* --- Mobiles (Max 768px) --- */
@media (max-width: 768px) {

    /* La barre de filtres passe en colonne sur petit écran */
    .fuego-filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .fuego-filters-right {
        width: 100%;
        justify-content: flex-start;
    }

    .fuego-promo-banner img {
        height: 150px !important;
        /* Bannière beaucoup plus fine sur mobile */
    }

    .fuego-section-title-menu {
        font-size: 1.5rem;
    }
}

/* --- Petits Mobiles (Max 576px) --- */
@media (max-width: 576px) {

    /* Boutons de filtre un peu plus petits */
    .fuego-filter-btn {
        padding: 6px 14px;
        font-size: 0.85rem;
    }

    .fuego-allergen-btn {
        padding: 6px 14px;
        font-size: 0.85rem;
    }

    /* Ajustement de la carte produit pour gagner de la place */
    .fuego-menu-card {
        padding: 15px;
        min-height: auto;
    }

    .fuego-prod-img {
        height: 120px;
    }

    .fuego-cat-card-img img {
        max-height: 110px;
    }

    .fuego-prod-title {
        font-size: 1.05rem;
    }

    .fuego-prod-price {
        font-size: 1.1rem;
    }
}

/* =====================================================================
   15. FUEGO SIDEBAR & CART
   ===================================================================== */
.fuego-sidebar {
    position: fixed;
    top: 0px;
    bottom: 0;
    right: -100%;
    width: 440px;
    max-width: 100%;
    background-color: #f4efe9;
    z-index: 100000;
    transition: right 0.4s ease-in-out;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.fuego-sidebar.active {
    right: 0;
}

.fuego-sidebar .sidebar-header {
    padding: 25px 30px 10px;
}

.fuego-sidebar .close-btn {
    font-size: 26px;
    color: #3a220f;
    cursor: pointer;
    transition: 0.3s;
}

.fuego-sidebar .close-btn:hover {
    color: var(--fm-orange);
}

.fuego-static-card {
    background: linear-gradient(135deg, var(--fm-orange), var(--fm-orange));
    border-radius: 12px;
    padding: 20px;
    margin: 15px 25px 30px;
    color: var(--fm-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 20px rgba(215, 35, 0, 0.2);
}

.fuego-static-card .promo-icon {
    font-size: 32px;
    margin-right: 15px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fuego-static-card .promo-badge {
    background-color: var(--fm-white);
    color: var(--fm-text-brown);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    text-transform: uppercase;
}

.fuego-static-card .promo-badge i {
    color: #118C4F;
}

.fuego-mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fuego-mobile-list li {
    width: 100%;
}

.fuego-mobile-list li a {
    display: flex;
    align-items: center;
    padding: 18px 30px;
    border-bottom: 1px solid #eaddce;
    color: #3a220f;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s;
}

.fuego-mobile-list li a:hover {
    background-color: rgba(0, 0, 0, 0.03);
    color: var(--fm-orange);
}

.fuego-mobile-list li a .left-icon {
    font-size: 20px;
    margin-right: 18px;
    color: #4a2c11;
    width: 25px;
    text-align: center;
}

.fuego-mobile-list li a .right-icon {
    margin-left: auto;
    font-size: 14px;
    color: #4a2c11;
}

.fuego-sidebar-footer {
    padding: 40px 30px 60px;
    text-align: center;
    margin-top: auto;
}

.fuego-action-btn {
    display: block;
    width: 100%;
    border: 1px solid var(--fm-orange);
    color: var(--fm-orange);
    border-radius: 8px;
    padding: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    background: transparent;
}

.fuego-action-btn:hover {
    background-color: rgba(211, 47, 47, 0.05);
}

/* Attention Grabber */
.highlight-carte {
    color: var(--fm-orange) !important;
    font-weight: 800 !important;
}

.animated-fire {
    color: var(--fm-orange);
    margin-right: 5px;
    display: inline-block;
    font-size: 18px;
    will-change: transform, filter, color;
    transform: translateZ(0);
    animation: firePulse 1.2s infinite alternate ease-in-out;
}

@keyframes firePulse {
    0% {
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 0 2px rgba(211, 47, 47, 0.4));
        color: var(--fm-orange);
    }

    100% {
        transform: scale(1.2) translateY(-2px);
        filter: drop-shadow(0 0 8px rgba(236, 95, 39, 0.8));
        color: var(--fm-orange);
    }
}

/* Cart Items inside Sidebar */
.fuego-cart-items-container {
    padding: 0 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.fuego-cart-item {
    display: flex;
    align-items: center;
    background: var(--fm-white);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: transform 0.3s;
}

.fuego-cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
}

.fuego-cart-img-box {
    width: 65px;
    height: 65px;
    background-color: #f4efe9;
    border-radius: 8px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fuego-cart-item-details {
    flex-grow: 1;
}

.fuego-item-title {
    font-size: 15px;
    font-weight: 700;
    color: #3a220f;
    margin-bottom: 4px;
    padding-right: 25px;
}

.fuego-item-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--fm-orange);
    margin-bottom: 8px;
}

.fuego-quantity-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f4efe9;
    width: fit-content;
    border-radius: 20px;
    padding: 3px 10px;
}

.fuego-quantity-control button {
    background: none;
    border: none;
    color: var(--fm-orange);
    font-size: 12px;
    padding: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.fuego-quantity-control button:hover {
    color: var(--fm-orange);
}

.fuego-quantity-control span {
    font-size: 14px;
    font-weight: 800;
    color: #3a220f;
}

.fuego-remove-item {
    color: #ccc;
    cursor: pointer;
    transition: 0.3s;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 14px;
}

.fuego-remove-item:hover {
    color: var(--fm-orange);
}

.fuego-cart-footer {
    padding: 30px;
    background: var(--fm-white);
    border-top: 1px solid #eaddce;
    margin-top: auto;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.03);
}

/* Modern Sidebar Cart Items */
.fuego-sidebar-cart-item {
    display: flex;
    gap: 15px;
    padding: 18px 15px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f3f3;
    position: relative;
}

.fuego-sidebar-cart-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8f9fc;
    padding: 5px;
    flex-shrink: 0;
}

.fuego-sidebar-cart-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fuego-sidebar-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.fuego-sidebar-item-title {
    font-weight: 900;
    font-size: 1.05rem;
    color: #000;
    margin: 0;
    line-height: 1.2;
    padding-right: 10px;
}

.fuego-sidebar-remove-btn {
    color: #aab2bd;
    cursor: pointer;
    transition: color 0.2s;
    font-size: 1.1rem;
    background: none;
    border: none;
    padding: 0;
}

.fuego-sidebar-remove-btn:hover {
    color: var(--fm-orange);
}

.fuego-sidebar-item-details {
    font-size: 0.85rem;
    color: #6b6b6b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.fuego-sidebar-detail-row {
    margin-bottom: 2px;
}

.fuego-sidebar-detail-price {
    color: #000;
    font-weight: 700;
}

.fuego-sidebar-cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.fuego-sidebar-item-price {
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--fm-orange);
    margin: 0;
}

.fuego-sidebar-qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f4f1ea;
    padding: 6px 12px;
    border-radius: 50px;
}

.fuego-sidebar-qty-btn {
    background: none;
    border: none;
    color: var(--fm-orange);
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fuego-sidebar-qty-btn:hover {
    opacity: 0.7;
}

.fuego-sidebar-qty-val {
    font-weight: 900;
    font-size: 1rem;
    color: #000;
    min-width: 15px;
    text-align: center;
}


/* =====================================================================
   16. FUEGO ITEM MODAL (Detailed Product View)
   ===================================================================== */
.fuego-modal-content {
    border-radius: 12px;
    border: none;
    font-family: var(--fm-font);
    overflow: hidden;
}

.fuego-hidden {
    display: none;
}

@media (min-width: 992px) {
    .modal-dialog.modal-fuego-xl {
        max-width: 1000px;
    }

    .fuego-modal-body-wrapper {
        display: flex;
        min-height: 500px;
    }

    .fuego-modal-image-pane {
        flex: 0 0 50%;
        background-color: #f3a847;
        position: relative;
    }

    .fuego-modal-content-pane {
        flex: 0 0 50%;
        display: flex;
        flex-direction: column;
        max-height: 80vh;
        overflow-y: auto;
        position: relative;
        background: white;
    }

    .fuego-modal-footer-container {
        position: sticky;
        bottom: 0;
        background: white;
        padding: 20px 24px;
        border-top: 1px solid #f0f0f0;
        z-index: 100;
    }
}

@media (max-width: 991px) {
    .fuego-modal-body-wrapper {
        display: block;
    }

    .fuego-modal-image-pane {
        width: 100%;
        height: 250px;
        background-color: #f3a847;
        position: relative;
    }

    .fuego-modal-content-pane {
        display: block;
    }

    .fuego-modal-footer-container {
        position: sticky;
        bottom: 0;
        background: white;
        padding: 20px 24px;
        border-top: 1px solid #f0f0f0;
        z-index: 100;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    }
}

.fuego-modal-top-actions {
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
}

.fuego-modal-action-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 1.2rem;
    cursor: pointer;
    color: #000;
    transition: background 0.2s;
}

.fuego-modal-action-btn:hover {
    background: #f0f0f0;
}

.fuego-modal-header-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.fuego-modal-product-info {
    padding: 24px 24px 10px;
}

.fuego-modal-product-title {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin: 0 0 5px 0;
    line-height: 1.1;
}

.fuego-modal-product-price {
    font-size: 1.1rem;
    color: #6b6b6b;
    margin: 0;
    font-weight: 600;
}

.fuego-modal-section-divider {
    width: 100%;
    height: 8px;
    background-color: #f3f3f3;
}

.fuego-modal-section {
    padding: 20px 24px;
}

.fuego-modal-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.fuego-modal-section-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: #000;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fuego-modal-badge-req {
    background: #eeeeee;
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
}

.fuego-modal-badge-req.required-miss {
    background: #000;
    color: #fff;
}

.fuego-modal-subtitle {
    color: #6b6b6b;
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.fuego-modal-option {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

label.fuego-modal-option {
    cursor: pointer;
}

.fuego-modal-option:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fuego-modal-option-text {
    display: flex;
    flex-direction: column;
}

.fuego-modal-option-name {
    font-weight: 700;
    color: #000;
    font-size: 1rem;
}

.fuego-modal-option-price {
    color: #6b6b6b;
    font-size: 0.9rem;
    margin-top: 2px;
}

.fuego-option-input {
    display: none;
}

.fuego-modal-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #dfdfdf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.fuego-option-input:checked~.fuego-modal-radio {
    border-color: #000;
}

.fuego-option-input:checked~.fuego-modal-radio::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
}

.fuego-modal-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #dfdfdf;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.fuego-option-input:checked~.fuego-modal-checkbox {
    background: #000;
    border-color: #000;
}

.fuego-option-input:checked~.fuego-modal-checkbox::after {
    content: '';
    display: block;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}

/* Quantity Selector for Multiple Items */
.fuego-item-qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fuego-item-qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4f4f4;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #000;
    cursor: pointer;
    transition: background 0.2s;
}

.fuego-item-qty-btn:hover {
    background: #e0e0e0;
}

.fuego-item-qty-val {
    font-weight: 800;
    font-size: 1.05rem;
    min-width: 14px;
    text-align: center;
    color: #000;
}

.fuego-modal-textarea {
    width: 100%;
    background: #f7f7f7;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: none;
    color: #000;
    margin-top: 10px;
}

.fuego-modal-textarea::placeholder {
    color: #8e8e8e;
}

.fuego-modal-textarea:focus {
    outline: 1px solid #000;
}

.fuego-modal-textarea-note {
    font-size: 0.8rem;
    color: #6b6b6b;
    margin-top: 8px;
    display: block;
}

.fuego-modal-qty-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 5px 15px;
    width: fit-content;
}

.fuego-modal-qty-btn {
    border: none;
    background: transparent;
    color: #000;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.fuego-modal-qty-val {
    font-size: 1.1rem;
    font-weight: 900;
    color: #000;
    min-width: 20px;
    text-align: center;
}

.fuego-modal-add-btn {
    background: #000;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    transition: background 0.2s;
    cursor: pointer;
    margin-left: 15px;
}

.fuego-modal-add-btn:hover {
    background: #222;
}

.fuego-modal-add-btn:disabled {
    background: #e0e0e0;
    color: #a0a0a0;
    cursor: not-allowed;
}

.fuego-included-check {
    color: #1ee0ac;
    font-size: 1.2rem;
    margin-right: 12px;
}


























/* =====================================================================
   14. FUEGO MENU PAGE (Main layout & Header)
   ===================================================================== */
:root {
    --fuego-bg-cream: #F4F1EA;
    --fuego-text-brown: #4B3012;
    --fuego-red: #ec5f27;
    --fuego-orange: #ec5f27;

    --fuego-white: #ffffff;
    --fuego-border-color: #DBCFBE;
    --fuego-grey-bg: #EBE0D3;
    --fuego-font: 'Nunito', sans-serif;
}

header.fixed {
    position: relative;
}

.fuego-clone-wrapper {
    background-color: var(--fuego-bg-cream);
    min-height: 100vh;
    padding: 0px 0 80px;
    font-family: var(--fuego-font);
    color: var(--fuego-text-brown);
}

.fuego-clone-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 1. TOP NAVIGATION --- */
.fuego-nav-header {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
    padding: 15px 0px 5px;
    background-color: #F4F1EA;
    border-top: 1px solid #00000012;
}

.fuego-category-swiper {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding-bottom: 5px;
    overflow: hidden;
}

.swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
}

.fuego-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--fuego-text-brown);
    font-weight: 900;
    font-size: 1.15rem;
    white-space: nowrap;
    padding: 10px 20px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.fuego-category-item:hover,
.fuego-category-item.active {
    opacity: 1;
    border-bottom: 3px solid var(--fuego-red);
}

.fuego-category-item.active {
    color: var(--fuego-red);
}

/* --- TAILLE D'IMAGE PAR DÉFAUT (PC) --- */
.fuego-category-img {
    width: 95px !important;
    height: 95px !important;
    object-fit: contain;
    margin-bottom: 8px;
    transition: transform 0.2s ease;
}

.fuego-category-item:hover .fuego-category-img {
    transform: scale(1.1);
}

/* --- FLÈCHES PAR DÉFAUT (PC) --- */
.fuego-nav-arrow-next,
.fuego-nav-arrow-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fuego-text-brown);
    font-size: 1.2rem;
    cursor: pointer;
    background: var(--fuego-bg-cream);
    padding: 10px;
    z-index: 10;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.fuego-nav-arrow-next {
    right: 100px;
}

.fuego-nav-arrow-prev {
    left: 100px;
}

.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}


/* =========================================
   MEDIA QUERIES (RESPONSIVE)
========================================= */

/* --- ECRANS MOYENS (Tablettes, max 1100px) --- */
@media (max-width: 1100px) {

    /* On rapproche les flèches des bords */
    .fuego-nav-arrow-next {
        right: 20px;
    }

    .fuego-nav-arrow-prev {
        left: 20px;
    }

    /* On réduit légèrement l'image */
    .fuego-category-img {
        width: 75px !important;
        height: 75px !important;
    }
}

/* --- PETITS ECRANS (Mobiles, max 768px) --- */
@media (max-width: 768px) {

    /* On masque complètement les flèches */
    .fuego-nav-arrow-next,
    .fuego-nav-arrow-prev {
        display: none !important;
    }

    /* On réduit encore l'image pour gagner de la place */
    .fuego-category-img {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 4px;
    }

    .fuego-category-item {
        font-size: 1rem;
        padding: 8px 15px;
    }
}





/* --- Promo Banner & Filters --- */
.fuego-promo-banner {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(75, 48, 18, 0.05);
}

.fuego-promo-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.fuego-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.fuego-filters-left {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fuego-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: var(--fuego-font);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--fuego-text-brown);
    background-color: transparent;
    border: 1.5px solid var(--fuego-border-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.fuego-filter-btn:hover {
    background-color: var(--fuego-white);
    border-color: var(--fuego-text-brown);
}

.fuego-filter-btn.active {
    background-color: var(--fuego-red);
    color: var(--fuego-white);
    border-color: var(--fuego-red);
}

.fuego-filters-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fuego-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--fuego-text-brown);
    cursor: pointer;
}

.fuego-checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--fuego-text-brown);
    cursor: pointer;
}

.fuego-allergen-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: var(--fuego-font);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--fuego-text-brown);
    background-color: var(--fuego-grey-bg);
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.fuego-allergen-btn:hover {
    opacity: 0.8;
}

.fuego-allergen-btn i {
    color: var(--fuego-red);
    font-size: 1.1rem;
}

/* --- Menu Grid & Cards --- */
.fuego-section-title-menu {
    font-size: 2rem;
    font-weight: 900;
    color: var(--fuego-text-brown);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.fuego-best-selling-section {
    padding: 10px 0 80px;
    position: relative;
}

.fuego-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    width: 100%;
}

.fuego-clean-card {
    background: var(--fuego-white);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    min-height: 280px;
    cursor: pointer;
}

.fuego-clean-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(75, 48, 18, 0.08);
}

.fuego-prod-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--fuego-text-brown);
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-align: left;
}

.fuego-prod-img {
    height: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.fuego-prod-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.fuego-clean-card:hover .fuego-prod-img img {
    transform: scale(1.05);
}

.fuego-prod-desc {
    font-size: 0.85rem;
    color: #7A6958;
    line-height: 1.4;
    margin: 0 0 15px 0;
    flex-grow: 1;
    text-align: left;
}

.fuego-prod-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.fuego-prod-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--fuego-text-brown);
}

.fuego-prod-btn {
    background-color: var(--fuego-bg-cream);
    color: var(--fuego-red);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fuego-prod-btn:hover {
    background-color: var(--fuego-red);
    color: var(--fuego-white);
}

.fuego-loader-container {
    display: none;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    grid-column: 1 / -1;
    width: 100%;
}

.fuego-custom-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(75, 48, 18, 0.1);
    border-radius: 50%;
    border-top-color: var(--fuego-text-brown);
    animation: spin 1s ease-in-out infinite;
}

/* =====================================================================
   16. FUEGO ITEM MODAL (Detailed Product View)
   ===================================================================== */
.fuego-modal-content {
    border-radius: 12px;
    border: none;
    font-family: var(--fuego-font);
    overflow: hidden;
}

@media (min-width: 992px) {
    .modal-dialog.modal-fuego-xl {
        max-width: 1000px;
    }

    .fuego-modal-body-wrapper {
        display: flex;
        min-height: 500px;
    }

    .fuego-modal-image-pane {
        flex: 0 0 50%;
        background-color: #f3a847;
        position: relative;
    }

    .fuego-modal-content-pane {
        flex: 0 0 50%;
        display: flex;
        flex-direction: column;
        max-height: 80vh;
        overflow-y: auto;
        position: relative;
        background: white;
    }

    .fuego-modal-footer-container {
        position: sticky;
        bottom: 0;
        background: white;
        padding: 20px 24px;
        border-top: 1px solid #f0f0f0;
        z-index: 100;
    }
}

@media (max-width: 991px) {
    .fuego-modal-body-wrapper {
        display: block;
    }

    .fuego-modal-image-pane {
        width: 100%;
        height: 250px;
        background-color: #f3a847;
        position: relative;
    }

    .fuego-modal-content-pane {
        display: block;
    }

    .fuego-modal-footer-container {
        position: sticky;
        bottom: 0;
        background: white;
        padding: 20px 24px;
        border-top: 1px solid #f0f0f0;
        z-index: 100;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    }
}

.fuego-modal-top-actions {
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
}

.fuego-modal-action-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 1.2rem;
    cursor: pointer;
    color: #000;
    transition: background 0.2s;
}

.fuego-modal-action-btn:hover {
    background: #f0f0f0;
}

.fuego-modal-header-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.fuego-modal-product-info {
    padding: 24px 24px 10px;
}

.fuego-modal-product-title {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin: 0 0 5px 0;
    line-height: 1.1;
}

.fuego-modal-product-price {
    font-size: 1.1rem;
    color: #6b6b6b;
    margin: 0;
    font-weight: 600;
}

.fuego-modal-section-divider {
    width: 100%;
    height: 8px;
    background-color: #f3f3f3;
}

.fuego-modal-section {
    padding: 20px 24px;
}

.fuego-modal-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.fuego-modal-section-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: #000;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fuego-modal-badge-req {
    background: #eeeeee;
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
}

.fuego-modal-badge-req.required-miss {
    background: #000;
    color: #fff;
}

.fuego-modal-subtitle {
    color: #6b6b6b;
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.fuego-modal-option {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    cursor: pointer;
}

.fuego-modal-option:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fuego-modal-option-text {
    display: flex;
    flex-direction: column;
}

.fuego-modal-option-name {
    font-weight: 700;
    color: #000;
    font-size: 1rem;
}

.fuego-modal-option-price {
    color: #6b6b6b;
    font-size: 0.9rem;
    margin-top: 2px;
}

.fuego-option-input {
    display: none;
}

.fuego-modal-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #dfdfdf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.fuego-option-input:checked~.fuego-modal-radio {
    border-color: #000;
}

.fuego-option-input:checked~.fuego-modal-radio::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
}

.fuego-modal-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #dfdfdf;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.fuego-option-input:checked~.fuego-modal-checkbox {
    background: #000;
    border-color: #000;
}

.fuego-option-input:checked~.fuego-modal-checkbox::after {
    content: '';
    display: block;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}

.fuego-item-qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fuego-item-qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4f4f4;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #000;
    cursor: pointer;
    transition: background 0.2s;
}

.fuego-item-qty-btn:hover {
    background: #e0e0e0;
}

.fuego-item-qty-val {
    font-weight: 800;
    font-size: 1.05rem;
    min-width: 14px;
    text-align: center;
    color: #000;
}

.fuego-modal-textarea {
    width: 100%;
    background: #f7f7f7;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: none;
    color: #000;
    margin-top: 10px;
}

.fuego-modal-textarea::placeholder {
    color: #8e8e8e;
}

.fuego-modal-textarea:focus {
    outline: 1px solid #000;
}

.fuego-modal-textarea-note {
    font-size: 0.8rem;
    color: #6b6b6b;
    margin-top: 8px;
    display: block;
}

.fuego-modal-qty-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 5px 15px;
    width: fit-content;
}

.fuego-modal-qty-btn {
    border: none;
    background: transparent;
    color: #000;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.fuego-modal-qty-val {
    font-size: 1.1rem;
    font-weight: 900;
    color: #000;
    min-width: 20px;
    text-align: center;
}

.fuego-modal-add-btn {
    background: #000;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    transition: background 0.2s;
    cursor: pointer;
    margin-left: 15px;
}

.fuego-modal-add-btn:hover {
    background: #222;
}

.fuego-modal-add-btn:disabled {
    background: #e0e0e0;
    color: #a0a0a0;
    cursor: not-allowed;
}

.fuego-included-check {
    color: #1ee0ac;
    font-size: 1.2rem;
    margin-right: 12px;
}

.fuego-hidden {
    display: none;
}















/* =====================================================================
   19. FUEGO CART PAGE
   ===================================================================== */
:root {
    --fuego-bg-cream: #F4F1EA;
    --fuego-text-brown: #4B3012;
    --fuego-red: #ec5f27;
    --fuego-green: #118C4F;
    --fuego-blue: #0078C8;
    --fuego-white: #ffffff;
    --fuego-border-color: #DBCFBE;
    --fuego-font: 'Nunito', sans-serif;
}

.fuego-cart-page-wrapper {
    margin: 40px auto 80px;
    padding: 0 20px;
    font-family: var(--fuego-font);
    color: var(--fuego-text-brown);
    background-color: var(--fuego-bg-cream);
    /* Remplace le background sur le body */
    min-height: 80vh;
}

.fuego-cart-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.fuego-cart-header-title {
    font-weight: 900;
    font-size: 2.5rem;
    margin: 0;
}

.fuego-btn-continue-shopping {
    background: #eaddce;
    color: var(--fuego-text-brown);
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.fuego-btn-continue-shopping:hover {
    background: var(--fuego-text-brown);
    color: var(--fuego-white);
}

.fuego-cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.fuego-section-title {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--fuego-text-brown);
}

.fuego-box {
    background: var(--fuego-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 25px;
}

/* --- Mode de Retrait --- */
.fuego-mode-selector {
    display: flex;
    gap: 15px;
}

.fuego-mode-btn {
    flex: 1;
    border: 2px solid var(--fuego-border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--fuego-text-brown);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--fuego-white);
}

.fuego-mode-btn i {
    font-size: 1.8rem;
    color: #aab2bd;
    transition: all 0.2s ease;
}

.fuego-mode-btn.active {
    border-color: var(--fuego-text-brown);
    box-shadow: inset 0 0 0 1px var(--fuego-text-brown);
}

.fuego-mode-btn.active i {
    color: var(--fuego-text-brown);
}

/* --- Address Search --- */
.fuego-input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--fuego-border-color);
    border-radius: 8px;
    font-family: var(--fuego-font);
    font-size: 1rem;
    color: var(--fuego-text-brown);
    background-color: var(--fuego-white);
}

.fuego-input:focus {
    outline: none;
    border-color: var(--fuego-text-brown);
}

.fuego-address-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--fuego-white);
    border: 1px solid var(--fuego-border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.fuego-address-dropdown li {
    padding: 12px 15px;
    border-bottom: 1px solid var(--fuego-bg-cream);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fuego-address-dropdown li:hover {
    background: #fff9f8;
    color: var(--fuego-red);
}

.fuego-selected-address-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 2px solid var(--fuego-green);
    border-radius: 8px;
    background: #f4fbf7;
    margin-top: 15px;
}

/* --- Cart Items (Enhanced) --- */
.fuego-cart-item-card {
    background: var(--fuego-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.fuego-item-image {
    width: 85px;
    height: 85px;
    object-fit: contain;
    background: #f8f9fc;
    border-radius: 8px;
    padding: 5px;
    flex-shrink: 0;
}

.fuego-item-content-wrapper {
    flex-grow: 1;
}

.fuego-item-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.fuego-item-title {
    font-size: 1.25rem;
    font-weight: 900;
    margin: 0;
    color: var(--fuego-text-brown);
    line-height: 1.2;
}

.fuego-item-meta-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    background: #eaddce;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
    margin-bottom: 5px;
    display: inline-block;
}

.fuego-item-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--fuego-red);
    margin: 0;
    white-space: nowrap;
}

/* Enhanced Options List */
.fuego-detailed-options-list {
    font-size: 0.85rem;
    color: #7A6958;
    background: #faf8f5;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

.fuego-option-group-title {
    font-weight: 800;
    color: var(--fuego-text-brown);
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 4px;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.fuego-option-group-title:first-child {
    margin-top: 0;
}

.fuego-option-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3px;
    padding-left: 5px;
    border-left: 2px solid var(--fuego-border-color);
}

/* Qty & Actions Row */
.fuego-item-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f1f1;
    padding-top: 15px;
}

.fuego-qty-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--fuego-bg-cream);
    padding: 5px 12px;
    border-radius: 50px;
}

.fuego-qty-btn {
    background: none;
    border: none;
    color: var(--fuego-red);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fuego-qty-btn:hover {
    opacity: 0.7;
}

.fuego-qty-number {
    font-weight: 900;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.fuego-btn-personnaliser {
    background: transparent;
    border: 1px solid #aab2bd;
    color: #7A6958;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.fuego-btn-personnaliser:hover {
    border-color: var(--fuego-text-brown);
    color: var(--fuego-text-brown);
}

/* --- Right Sidebar (Summary) --- */
.fuego-summary-box {
    position: sticky;
    top: 20px;
}

.fuego-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #7A6958;
}

.fuego-summary-row.total {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--fuego-text-brown);
    border-top: 2px solid var(--fuego-border-color);
    padding-top: 20px;
    margin-top: 5px;
}

.fuego-checkout-btn {
    width: 100%;
    background-color: var(--fuego-green);
    color: white !important;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-size: 1.3rem;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.2s;
    display: block;
    text-decoration: none;
    text-align: center;
}

.fuego-checkout-btn:hover {
    background-color: #0e7542;
}

@media (max-width: 991px) {
    .fuego-cart-grid {
        grid-template-columns: 1fr;
    }

    .fuego-summary-box {
        position: relative;
        top: 0;
    }

    .fuego-cart-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}




















/* =====================================================================
   20. FUEGO CHECKOUT PAGE
   ===================================================================== */
:root {
    --fuego-bg-cream: #F4F1EA;
    --fuego-text-brown: #4B3012;
    --fuego-red: #ec5f27;
    --fuego-green: #118C4F;
    --fuego-blue: #0078C8;
    --fuego-white: #ffffff;
    --fuego-border-color: #DBCFBE;
    --fuego-font: 'Nunito', sans-serif;
}

.fuego-checkout-theme-wrapper {
    background-color: var(--fuego-bg-cream);
    font-family: var(--fuego-font);
    color: var(--fuego-text-brown);
    padding: 40px 20px 80px;
    min-height: 100vh;
}

.fuego-checkout-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fuego-checkout-title {
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--fuego-text-brown);
}

.fuego-checkout-subtitle {
    font-weight: 600;
    font-size: 1.1rem;
    color: #7A6958;
    margin-bottom: 30px;
}

.fuego-checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: start;
}

.fuego-box {
    background: var(--fuego-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f9f9f9;
    margin-bottom: 25px;
}

.fuego-box-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--fuego-text-brown);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--fuego-bg-cream);
    padding-bottom: 10px;
}

/* Form Inputs */
.fuego-form-group {
    margin-bottom: 20px;
    position: relative;
}

.fuego-form-label {
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: block;
    color: var(--fuego-text-brown);
}

.fuego-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--fuego-border-color);
    border-radius: 10px;
    font-family: var(--fuego-font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--fuego-text-brown);
    background-color: var(--fuego-white);
    transition: all 0.2s ease;
}

.fuego-input:focus {
    outline: none;
    border-color: var(--fuego-text-brown);
    box-shadow: 0 0 0 3px rgba(75, 48, 18, 0.1);
}

.fuego-input.is-invalid {
    border-color: var(--fuego-red);
    box-shadow: 0 0 0 3px rgba(215, 35, 0, 0.1);
}

textarea.fuego-input {
    resize: vertical;
    min-height: 100px;
}

.fuego-invalid-feedback {
    color: var(--fuego-red);
    font-size: 0.85rem;
    font-weight: 800;
    margin-top: 5px;
    display: block;
}

/* Delivery Info Card */
.fuego-delivery-info-card {
    background: #f4fbf7;
    border: 2px solid var(--fuego-green);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.fuego-delivery-info-card i {
    font-size: 1.8rem;
    color: var(--fuego-green);
    margin-top: 5px;
}

.fuego-delivery-info-card h4 {
    margin: 0 0 5px 0;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--fuego-text-brown);
}

.fuego-delivery-info-card p {
    margin: 0;
    font-size: 1rem;
    color: #7A6958;
    font-weight: 600;
}

.fuego-delivery-info-card .fuego-edit-link {
    font-size: 0.85rem;
    color: var(--fuego-green);
    text-decoration: underline;
    font-weight: 800;
    display: inline-block;
    margin-top: 10px;
}

/* Summary UI */
.fuego-order-summary-list {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 20px;
}

.fuego-order-summary-list::-webkit-scrollbar {
    width: 6px;
}

.fuego-order-summary-list::-webkit-scrollbar-track {
    background: var(--fuego-bg-cream);
    border-radius: 4px;
}

.fuego-order-summary-list::-webkit-scrollbar-thumb {
    background: #d0c5b5;
    border-radius: 4px;
}

.fuego-summary-item-card {
    background: var(--fuego-white);
    border: 1px solid var(--fuego-border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.fuego-summary-item-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fdfbf7;
    cursor: pointer;
    transition: background 0.2s;
}

.fuego-summary-item-header:hover {
    background: #f6f4ed;
}

.fuego-item-qty-badge {
    background: var(--fuego-text-brown);
    color: var(--fuego-white);
    font-weight: 900;
    border-radius: 50px;
    padding: 2px 8px;
    font-size: 0.85rem;
    margin-right: 10px;
    white-space: nowrap;
}

.fuego-item-type-badge {
    background: #eaddce;
    color: var(--fuego-text-brown);
    font-weight: 800;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-right: 8px;
}

.fuego-accordion-indicator {
    transition: transform 0.3s ease;
    color: var(--fuego-text-brown);
}

.fuego-summary-item-header[aria-expanded="true"] .fuego-accordion-indicator {
    transform: rotate(180deg);
}

/* Promo & Totals */
.fuego-promo-wrapper {
    background: var(--fuego-bg-cream);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
}

.fuego-promo-input-group {
    display: flex;
    gap: 10px;
}

.fuego-promo-input-group .fuego-input {
    text-transform: uppercase;
}

.fuego-btn-dark {
    background: var(--fuego-text-brown);
    color: var(--fuego-white);
    border: none;
    border-radius: 8px;
    padding: 0 20px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.fuego-btn-dark:hover {
    background: #33200b;
}

.fuego-totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #7A6958;
}

.fuego-totals-row.grand-total {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--fuego-text-brown);
    border-top: 2px solid var(--fuego-border-color);
    padding-top: 15px;
    margin-top: 15px;
}

.fuego-checkout-submit-btn {
    width: 100%;
    background-color: var(--fuego-green);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-size: 1.3rem;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.fuego-checkout-submit-btn:hover {
    background-color: #0e7542;
}

.fuego-checkout-submit-btn:disabled {
    background-color: #aab2bd;
    cursor: not-allowed;
}

/* Global Alerts */
.fuego-alert-box {
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fuego-alert-error {
    background-color: #ffeaea;
    color: var(--fuego-red);
    border: 1px solid var(--fuego-red);
}

@media (max-width: 991px) {
    .fuego-checkout-grid {
        grid-template-columns: 1fr;
    }

    .fuego-summary-box {
        position: relative;
        top: 0;
    }
}