        :root {
            --brand-yellow: #ffc926;
            --brand-red: #d32f2f;
            --bg-dark-red: #4a0d06;
            --bg-darker-red: #2a0502;
            --footer-bg: #4a0d06;
            --menu-red: #a31d1d;
            --menu-yellow: #ffca28;
            --bg-light-cream: #fbfaf8;
        }
        body {
            background-color: var(--bg-light-cream);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        /* Hero Section Background */
        .hero-section {
            background: radial-gradient(circle at right, var(--bg-dark-red), var(--bg-darker-red));
            color: white;
            padding-bottom: 4rem;
            position: relative;
            overflow: hidden;
        }

        /* Navbar Customizations */
        .navbar-brand {
            font-family: cursive; /* Placeholder for the stylized logo font */
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--brand-yellow) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .navbar-brand span {
            color: white;
            font-size: 1.5rem;
            font-family: sans-serif;
            font-weight: normal;
        }

        .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
        }

        .nav-link.active {
            color: var(--brand-yellow) !important;
            border-bottom: 2px solid var(--brand-yellow);
        }

        /* Location Box */
        .location-box {
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 12px;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.85rem;
        }

        .location-box i {
            color: var(--brand-yellow);
            font-size: 1.2rem;
        }

        /* Typography */
        .main-title {
            font-weight: 800;
            font-size: 4rem;
            line-height: 1.1;
        }

        .text-yellow {
            color: var(--brand-yellow);
        }

        /* Feature List */
        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.85rem;
        }
        
        .feature-item i {
            font-size: 1.8rem;
        }

        /* Free Delivery Badge */
        .free-badge {
            background-color: var(--brand-yellow);
            color: black;
            padding: 15px 25px;
            border-radius: 15px;
            text-align: center;
            position: absolute;
            top: 20%;
            left: 0;
            z-index: 10;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        /* Bottom Category Navigation */
        .category-nav {
            background: white;
            border-radius: 50px;
            padding: 10px 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            margin-top: -30px;
            z-index: 20;
        }

        .category-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #333;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .category-btn i {
            font-size: 1.2rem;
            color: #e65100;
        }

        .category-btn.active {
            border: 2px solid #ffcdd2;
            color: var(--brand-red);
        }

        .category-btn.active i {
            color: var(--brand-red);
        }

        .category-btn:hover {
            background-color: #f8f9fa;
        }
   
        /* Section Header Styles */
        .section-title-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--menu-red);
        }
        
        .section-title-wrapper i {
            font-size: 1.8rem;
        }

        .section-title {
            font-weight: 800;
            font-size: 1.5rem;
            margin: 0;
            letter-spacing: 0.5px;
        }

        .title-line {
            height: 2px;
            width: 40px;
            background-color: var(--menu-yellow);
        }

        .btn-view-all {
            color: white;
            border: 1px solid rgba(163, 29, 29, 0.3);
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 6px 16px;
            background: var(--menu-red);
            transition: all 0.2s;
            text-decoration: none;
        }

        .btn-view-all:hover {
            background: white;
            color: var(--menu-red);
        }

        /* Sub-category Header */
        .sub-category-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .sub-category-title::before {
            content: "-";
            color: var(--menu-yellow);
            font-weight: bold;
            margin-right: 8px;
        }

        /* Card Styles */
        .menu-card {
            background: white;
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            transition: transform 0.2s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .menu-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        }

        .burger-img {
            width: 100px;
            height: 100px;
            object-fit: contain;
            margin: 0px auto 5px;
        }

        .item-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 5px;
        }

        .item-desc {
            font-size: 0.75rem;
            color: #777;
            line-height: 1.3;
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .item-price {
            color: var(--menu-red);
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .btn-order {
            border: 1px solid rgba(163, 29, 29, 0.4);
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 4px 15px;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            /* width: 100%; */
            background: #a31d1d;
            color: #fff;
        }

        .btn-order:hover {
            background-color: white; 
            color: var(--menu-red);
        }

        /* Solo Meat Row Styles */
        .solo-card {
            background: white;
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            padding: 12px 15px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .solo-card .item-title {
            font-size: 0.85rem;
            margin-bottom: 10px;
            text-align:center;
        }

        .solo-card .item-price {
            font-size: 1.1rem;
            margin-bottom: 0;
        }

        .solo-card .btn-order {
            width: auto;
            padding: 2px 10px;
            font-size: 0.75rem;
        }
        .hero-banner{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        @media (max-width: 768px) {
            /* .hero-banner{
                height: 100%;
            } */
        }
   
    .rollo-card {
        background-color: #ffffff;
        border-radius: 24px;
        padding: 20px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    /* Typography settings matching the image */
    .rollo-title {
        color: #6a241b;
        text-align: center;
        font-weight: 900;
        font-size: 1.4rem;
        letter-spacing: 1px;
        margin-bottom: 8px;
        text-transform: uppercase;
    }

    .rollo-subtitle {
        color: #000000;
        text-align: center;
        font-weight: 900;
        font-style: italic;
        font-size: 1rem;
        line-height: 1.1;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    /* Image Container */
    .rollo-img-wrapper {
        text-align: center;
        margin-bottom: 15px;
        min-height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1; 
    }

    .rollo-img-wrapper img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Pricing List */
    .pricing-list {
        position: relative;
        margin-top: auto;
    }

    .pricing-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 8px;
        font-weight: 900;
        font-size: 0.8rem;
        color: #000;
    }

    .pricing-row .price {
        font-size: 0.95rem;
    }

    /* Floating icons in the center */
    .floating-icons {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 5px;
    }

    .icon-circle {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 10px;
    }

    .icon-orange {
        background-color: #d1823f;
    }

    .icon-dark {
        background-color: #5c1b12;
    }
    
    /* Mobile text adjustment */
    @media (max-width: 576px) {
        .rollo-title { font-size: 1.2rem; }
        .pricing-row { font-size: 0.7rem; flex-direction: column; align-items: center; text-align: center; border-bottom: 1px dashed #eee; padding-bottom: 5px;}
        .pricing-row .price { font-size: 0.9rem; color: #6a241b; }
        .floating-icons { position: static; transform: none; justify-content: center; margin-bottom: 10px; }
    }

    .site-footer {
        background-color: var(--footer-bg);
        color: #ffffff;
        padding: 40px 0 20px;
        margin-top: auto;
        border-bottom: 6px solid #b7790b;
    }
    .footer-logo {
        font-family: cursive;
        font-size: 2.2rem;
        font-weight: bold;
        color: var(--brand-yellow);
        line-height: 1;
        margin-bottom: 12px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    .footer-logo span {
        color: white;
        font-size: 1.2rem;
        font-family: sans-serif;
        font-weight: normal;
    }
    .footer-desc {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 15px;
        color: #f1f1f1;
    }
    .social-icons a {
        color: #ffffff;
        font-size: 1.3rem;
        margin-right: 12px;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .social-icons a:hover {
        color: var(--brand-yellow);
    }
    .footer-title {
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 18px;
        color: #ffffff;
    }
    .footer-links {
        padding: 0;
        list-style: none;
        margin: 0;
    }
    .footer-links li {
        margin-bottom: 8px;
    }
    .footer-links a {
        color: #f1f1f1;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }
    .footer-links a:hover {
        color: var(--brand-yellow);
    }
    .footer-info {
        padding: 0;
        list-style: none;
        margin: 0;
    }
    .footer-info li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 12px;
        font-size: 0.9rem;
        color: #f1f1f1;
    }
    .footer-info li i {
        margin-top: 4px;
        font-size: 1.1rem;
    }
    .footer-info li .fa-phone,
    .footer-info li .fa-whatsapp {
        font-size: 1.3rem;
        margin-top: 2px;
    }
    .contact-number {
        font-size: 1.2rem;
        font-weight: 500;
        display: inline-block;
        margin-top: -2px;
    }
    .schedule-text {
        font-size: 0.9rem;
        color: #f1f1f1;
        margin-bottom: 5px;
    }



@media only screen and (max-width: 767px) {
 nav.navbar.navbar-expand-lg.mb-5 {
    margin: 0px !important;
}
.main-title {
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.1;
}


.col-sm-4.feature-item > * {
    padding: 16px !important;
}
}

@media only screen and (min-device-width: 494px) and (max-device-width: 767px) {
    .feature-item {
        display: contents;
        font-size: 20px;
    }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 493px) {
    .feature-item {
        display: contents;
        font-size: 16px;
    }
}