    /* =========================================
       1. VARIABLES & GLOBAL SETTINGS
       ========================================= */
    :root {
        /* Colors */
        --primary: #0f5132;
        /* Deep Green */
        --accent: #fd7e14;
        /* Festive Orange */
        --bg-light: #f4f6f8;
        --text-dark: #212529;

        /* Dimensions & Spacing */
        --nav-height: 60px;
        --scroll-offset-mobile: 130px;
        --scroll-offset-desktop: 160px;
    }

    body {
        font-family: 'Inter', sans-serif;
        background-color: var(--bg-light);
        color: var(--text-dark);
        padding-top: var(--nav-height);
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    a {
        text-decoration: none;
    }

    /* Scroll Fix for Anchor Links (Product Grid) */
    #product-grid-start {
        scroll-margin-top: var(--scroll-offset-desktop);
    }

    /* =========================================
       2. NAVBAR & MENU
       ========================================= */
    .navbar {
        height: var(--nav-height);
        background-color: white !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 1030;
    }

    .logo {
        width: 45px;
    }

    .main-menu ul {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-menu ul li a {
        text-decoration: none;
        margin-right: 5px;
        padding: 8px 16px;
        border-radius: 50px;
        color: var(--text-dark);
        transition: all 0.2s ease;
    }

    .main-menu ul li a:hover,
    .active-menu {
        color: #212529 !important;
        background-color: #ffc107;
    }

    .view-cart {
        font-size: 11px;
        width: 23px;
        display: inline-block;
        height: 23px;
        margin-left: 5px;
    }

    /* =========================================
       3. HERO SECTION
       ========================================= */
    .hero-section {
        /* Merged: Used the 0.85 opacity for best balance */
        background: linear-gradient(135deg, rgba(15, 81, 50, 0.85) 0%, rgba(25, 135, 84, 0.85) 100%), url('../images/crackers-skyline.jpg') center/cover no-repeat;
        color: white;
        padding: 60px 0;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    /* Decorative Sparkle Pattern */
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
        background-size: 30px 30px;
        opacity: 0.3;
    }

    .hero-subtitle {
        color: #ffc107;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 10px;
        display: inline-block;
        border-bottom: 2px solid #ffc107;
        padding-bottom: 5px;
    }

    .hero-title {
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-slogan {
        font-size: 1.25rem;
        opacity: 0.9;
        font-weight: 300;
        margin-bottom: 30px;
    }

    /* =========================================
       4. CONTENT BOXES
       ========================================= */

    /* DEFAULT: Glass Effect (Used in Hero usually) */
    .content-box {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 15px;
        padding: 30px;
        font-size: 1rem;
        line-height: 1.7;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        text-align: left;
    }

    /* VARIANT: Solid White (Used for About Us / Contact text) */
    .content-box-solid {
        background: white;
        color: var(--text-dark);
        border: 1px solid #e9ecef;
        backdrop-filter: none;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .content-box h4,
    .content-box-solid h4 {
        color: var(--primary);
        font-weight: 700;
        margin-top: 20px;
        margin-bottom: 15px;
        border-bottom: 2px solid #ffc107;
        display: inline-block;
        padding-bottom: 5px;
    }

    /* White text title override for Glass box */
    .content-box h4 {
        color: #ffc107;
        border-color: white;
    }

    .content-box p,
    .content-box-solid p {
        margin-bottom: 20px;
    }

    .content-box p:last-child,
    .content-box-solid p:last-child {
        margin-bottom: 0;
    }

    /* Custom Checkmark Lists */
    .content-box ul li,
    .content-box-solid ul li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .content-box ul li::before,
    .content-box-solid ul li::before {
        content: "\f058";
        /* FontAwesome Check Circle */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: #ffc107;
        position: absolute;
        left: 0;
    }

    .highlight-gold {
        color: #ffc107;
        font-weight: 700;
    }

    /* =========================================
       5. COMPONENTS (Buttons, Titles, Chips)
       ========================================= */
    .btn-gold {
        background-color: #ffc107;
        color: #212529;
        font-weight: 700;
        padding: 12px 35px;
        border-radius: 50px;
        border: none;
        transition: all 0.3s ease;
        text-transform: uppercase;
        font-size: 0.9rem;
        display: inline-block;
        cursor: pointer;
    }

    .btn-gold:hover {
        background-color: white !important;
        color: #198754 !important;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .section-title {
        color: #198754;
        font-weight: 800;
        margin-bottom: 20px;
        text-transform: uppercase;
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background-color: #ffc107;
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .section-intro {
        max-width: 700px;
        margin: 0 auto 50px auto;
        color: #555;
        font-size: 1.1rem;
        text-align: center;
    }

    /* =========================================
       6. FEATURE & CONTACT CARDS
       ========================================= */
    .feature-section {
        background-color: #eceef0;
        padding: 60px 0;
    }

    /* Standard Feature Card */
    .feature-card {
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: 4px solid #198754;
        border-radius: 12px;
        padding: 30px 20px;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        text-align: center;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    /* Contact Card (Similar to Feature, but tailored for contact page) */
    .contact-card {
        background: white;
        border-radius: 12px;
        padding: 40px 20px;
        text-align: center;
        height: 100%;
        border-bottom: 4px solid var(--primary);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .icon-wrapper,
    .icon-box {
        width: 70px;
        height: 70px;
        background-color: #ffc107;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px auto;
        font-size: 1.8rem;
        color: var(--primary);
        /* Icon Color */
        box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
    }

    .feature-title {
        font-weight: 700;
        margin-bottom: 15px;
    }

    .feature-text {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .feature-text strong {
        color: #000;
        font-weight: 600;
    }

    /* Contact Specific Text */
    .contact-label {
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
        color: #6c757d;
        font-size: 0.9rem;
    }

    .contact-text {
        font-size: 1.05rem;
        color: #212529;
        margin-bottom: 0;
        line-height: 1.6;
    }

    .contact-text a {
        color: var(--primary);
        font-weight: 600;
        transition: color 0.2s;
    }

    .contact-text a:hover {
        color: var(--accent);
    }

    .map-container {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 5px solid white;
        height: 400px;
        position: relative;
        background: #e9ecef;
    }

    .cta-box {
        background: #198754;
        color: white;
        padding: 40px;
        border-radius: 15px;
        margin-top: 50px;
        box-shadow: 0 10px 20px rgba(25, 135, 84, 0.3);
        position: relative;
        overflow: hidden;
    }

    .cta-box h3 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    /* =========================================
       7. PRODUCT GRID & SHOPPING UI
       ========================================= */
    .product-card {
        border: none;
        border-radius: 12px;
        background: white;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
        transition: transform 0.2s;
        height: 100%;
        overflow: hidden;
    }

    .product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .stepper {
        display: flex;
        align-items: center;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 6px;
        padding: 2px;
    }

    .stepper-btn {
        width: 30px;
        height: 30px;
        border: none;
        background: white;
        border-radius: 4px;
        color: var(--primary);
        cursor: pointer;
    }

    .stepper-input {
        border: none;
        background: transparent;
        text-align: center;
        width: 100%;
        font-weight: 600;
    }

    /* Sticky Bars */
    .sticky-estimate-bar {
        position: sticky;
        top: var(--nav-height);
        z-index: 900;
        background: white;
        border-bottom: 1px solid #e9ecef;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        padding: 15px 0;
    }

    .est-value {
        font-weight: 700;
        color: var(--primary);
        font-size: 1.1rem;
    }

    .est-label {
        font-size: 0.85rem;
        color: #6c757d;
        text-transform: uppercase;
    }

    /* Sidebar Navigation */
    .sidebar-wrapper {
        position: sticky;
        top: 160px;
        height: calc(100vh - 180px);
        overflow-y: auto;
        padding-right: 10px;
    }

    .sidebar-wrapper::-webkit-scrollbar {
        width: 4px;
    }

    .sidebar-wrapper::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }

    .category-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        color: #495057;
        border-radius: 8px;
        transition: all 0.2s;
        font-weight: 500;
        margin-bottom: 2px;
    }

    .category-link:hover,
    .category-link.active {
        background-color: white;
        color: var(--primary);
    }

    .category-link.active {
        background-color: var(--primary);
        color: white;
    }

    /* Mobile Horizontal Scroll */
    .mobile-cat-scroll {
        overflow-x: auto;
        white-space: nowrap;
        padding: 12px 15px;
        background: white;
        position: sticky;
        top: var(--nav-height);
        z-index: 1020;
        border-bottom: 1px solid #eee;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
        -webkit-overflow-scrolling: touch;
    }

    .mobile-cat-scroll::-webkit-scrollbar {
        display: none;
    }

    .cat-chip {
        display: inline-block;
        padding: 8px 18px;
        margin-right: 10px;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 50px;
        color: #555;
        font-weight: 500;
        font-size: 0.9rem;
        text-decoration: none;
        transition: all 0.2s;
    }

    .cat-chip.active {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

    /* =========================================
       8. FOOTER
       ========================================= */
    .footer-section {
        background-color: rgb(33, 37, 41);
        color: white;
        padding-top: 60px;
        font-size: 0.95rem;
        margin-top: auto;
    }

    .footer-title {
        color: #ffc107;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
        font-size: 1.1rem;
        position: relative;
        display: inline-block;
    }

    .footer-title::after {
        content: '';
        display: block;
        width: 40px;
        height: 3px;
        background-color: #ffc107;
        margin-top: 8px;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: white;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }

    .footer-links a:hover {
        color: #ffc107;
        padding-left: 5px;
    }

    .footer-links a i {
        font-size: 0.8rem;
        margin-right: 8px;
        color: #ffc107;
    }

    .contact-info li {
        display: flex;
        margin-bottom: 15px;
        align-items: flex-start;
    }

    .contact-info i {
        color: #ffc107;
        font-size: 1.2rem;
        margin-right: 15px;
        margin-top: 3px;
    }

    .social-btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 35px;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 50%;
        margin-right: 2px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .social-btn:hover {
        background-color: #ffc107;
        color: #198754;
        transform: translateY(-3px);
        border-color: #ffc107;
    }

    .footer-bottom {
        background-color: rgba(0, 0, 0, 0.2);
        padding: 20px 0;
        margin-top: 50px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-bottom p {
        margin: 0;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }

    /* =========================================
       9. UTILITIES & OVERLAYS
       ========================================= */
    #loadingOverlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.8);
        z-index: 2000;
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .mobile-float-bar {
        display: none;
        background: #212529;
        color: white;
        border-radius: 8px;
        padding: 6px 10px;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        z-index: 1040;
    }

    /* =========================================
       10. RESPONSIVE DESIGN
       ========================================= */
    @media (max-width: 991px) {

        /* Layout */
        #product-grid-start {
            scroll-margin-top: var(--scroll-offset-mobile);
        }

        .sticky-estimate-bar,
        .sidebar-wrapper {
            display: none;
        }

        .hero-section {
            text-align: center;
            padding: 15px 0;
        }

        .hero-slogan {
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 1.1rem;
        }

        .feature-title,
        .footer-title {
            font-size: 0.9rem;
        }

        .btn-gold {
            font-size: 0.8rem;
            padding: 10px 25px;
        }

        /* Components */
        .content-box {
            text-align: left;
            font-size: 0.9rem;
            padding: 15px;
        }

        .contact-card {
            padding: 15px;
        }

        .cta-box {
            margin-top: 20px;
            padding: 20px;
        }

        .cat-chip {
            padding: 5px 8px;
            margin-right: 0;
            font-weight: bold;
        }

        /* Footer/Misc Spacing */
        .feature-section,
        .footer-section,
        .footer-bottom {
            margin-top: 0;
        }

        .content-box p {
            margin-bottom: 15px;
        }

        /* Mobile Menu Logic */
        .main-menu {
            display: none;
        }

        .menu-open .main-menu {
            display: block;
            position: absolute;
            right: 10px;
            top: 59px;
            background: #fff;
            padding: 15px;
            border-top: 1px solid #ddd;
            width: 200px;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .menu-open .main-menu ul {
            flex-direction: column;
            align-items: flex-start;
        }

        .menu-open .main-menu ul li {
            margin-bottom: 10px;
            width: 100%;
        }

        .menu-open .main-menu ul li a {
            display: block;
            width: 100%;
        }

        .navbar-brand {
            margin: 0 !important;
            padding: 0 !important;
        }

        .mobile-cat-scroll {
            padding: 8px 10px;
        }

        .py-5 {
            padding-top: 1rem !important;
            padding-bottom: 1rem !important;
        }

        .mt-5, .res-padd {
            margin-top: 1rem !important;
        }

        .mb-5, .section-intro {
            margin-bottom: 1rem !important;
        }

        h1 {
            font-size: 1.3rem;
            margin-bottom: 10px !important;
        }

        h2 {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        h3 {
            font-size: 1rem;
            margin-bottom: 10px !important;
        }

        h4 {
            font-size: 0.99rem;
            margin-bottom: 10px !important;
        }

        h5 {
            font-size: 0.9rem;
            margin-bottom: 10px !important;
        }

        .lead {
            font-size: 1rem;
            font-weight: 300;
            margin-bottom: 1rem !important;
        }

        .cta {
            margin-top: 1rem !important;
        }

        .info-box {
            padding: 10px !important;
        }

        .feature-card {
            padding: 15px;
        }

        .content-box h4, .content-box-solid h4 {
            margin-top: 10px;
        }

    }

    @media (max-width: 550px) {

        .hero-section-text {
            text-align: center !important;
            margin-bottom: 0 !important;
        }

        .logo-text {
            display: none;
        }

        .hero-subtitle {
            font-size: 0.8rem;
        }

        .hero-section .content-box {
            padding: 10px;
            font-size: 0.9rem;
            margin-top: 15px;
        }
    }