   

    /* ============================================
        LAYOUT UTILITIES
        ============================================ */
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .text-center {
        text-align: center;
            display: flex;
    justify-content: center;
    }
    .section-title {
        border-bottom: 1px solid var(--accent-yellow);
        padding: 0.1rem;
    }

    /* Responsive Padding adjustment */
    @media (max-width: 768px) {
        .section-padding {
            padding: 40px 0;
        }
    }

    .btn {
        display: inline-block;
        background-color: var(--action-red);
        color: var(--white);
        padding: 12px 24px;
        text-transform: uppercase;
        font-weight: 700;
        border-radius: 4px;
        border: none;
        cursor: pointer;
        font-size: var(--fs-sm);
        transition: all 0.3s ease;
    }

    .btn:hover {
        background-color: #a00001;
        transform: translateY(-2px);
        /* UI: Slight lift on hover */
        box-shadow: 0 4px 12px rgba(208, 0, 1, 0.3);
    }

    /* SVG Icon Helper */
    .icon {
        width: 24px;
        height: 24px;
        display: inline-block;
        vertical-align: middle;
    }


    /* ============================================
        CATEGORY HERO
        ============================================ */
    .breadcrumbs {
        color: rgba(255, 255, 255, 0.7);
        font-size: var(--fs-sm);
        margin-bottom: 15px;
    }

    .category-hero h1 {
        font-size: var(--fs-4xl);
        font-weight: 700;
        margin-bottom: 15px;
    }

    .category-hero p {
        max-width: 600px;
        margin: 0 auto;
        font-size: var(--fs-lg);
        opacity: 0.9;
    }

    @media (max-width: 768px) {
        .category-hero h1 {
            font-size: var(--fs-3xl);
        }
    }

    /* ============================================
    CATEGORY HERO
    ============================================ */

/* [MODIFIED] added position: relative عشان الـ img تتحط جوا */
.category-hero {
    background-color: var(--primary-blue);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
/* [END MODIFIED] */

/* [ADDED] Hero background image styles */
.category-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.25;
}
/* [END ADDED] */

/* [ADDED] عشان المحتوى يبقى فوق الصورة */
.category-hero .container {
    position: relative;
    z-index: 1;
}
/* [END ADDED] */
    /* ============================================
        PRODUCT GRID
        ============================================ */
    .products-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    @media (min-width: 600px) {
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 900px) {
        .products-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (min-width: 1200px) {
        .products-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .product-card {
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
        background: var(--white);
        display: flex;
        flex-direction: column;
        text-decoration: none;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .product-card img {
        width: 100%;
        height: 250px;
        object-fit: contain;
    }
    .product-info {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .product-title {
        font-weight: 700;
        color: var(--primary-blue);
        font-size: var(--fs-lg);
        margin-bottom: 5px;
    }

    .product-desc {
        font-size: var(--fs-sm);
        color: #666;
        margin-bottom: 15px;
        flex-grow: 1;
    }

    .card-btn {
        align-self: flex-start;
        color: var(--action-red);
        font-weight: 700;
        font-size: var(--fs-sm);
        text-transform: uppercase;
        border-bottom: 2px solid transparent;
        transition: 0.3s;
    }

    .product-card:hover .card-btn {
        border-bottom-color: var(--accent-yellow);
    }

    /* ============================================
        FAB
        ============================================ */
    .fab {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background-color: var(--action-red);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        z-index: 2000;
        cursor: pointer;
        transition: transform 0.2s, opacity 0.3s, visibility 0.3s;
        opacity: 1;
        visibility: visible;
    }

    .fab:hover {
        transform: scale(1.1);
    }

    .fab svg {
        width: 24px;
        height: 24px;
        fill: white;
    }

    /* Start Seo Section */


    /* SEO Content Block – section background */
        .seo-section {
            background-color: #fcfcfc;
            border-top: 1px solid #eee;
        }

        /* SEO Content Block – inner wrapper */
        .seo-inner {
            max-width: 900px;
            margin: 0 auto;
        }

        /* SEO Content Block – heading */
        .seo-heading {
            font-size: var(--fs-2xl);
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        /* SEO Content Block – body text */
        .seo-body {
            color: #444;
            font-size: var(--fs-lg);
            line-height: 1.8;
        }

        /* SEO Content Block – first paragraph spacing */
        .seo-body .seo-p-first {
            margin-bottom: 25px;
        }

           .consumer-products-section {
            background-color: #fcfcfc;
        }

        .seo-content-section {
            border-top: 1px solid #eee;
        }

        .seo-content-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        .seo-content-title {
            font-size: var(--fs-2xl);
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .seo-content-body {
            color: #444;
            font-size: var(--fs-lg);
            line-height: 1.8;
        }

        .seo-content-body p {
            margin-bottom: 25px;
        }

        .seo-content-subtitle {
            font-size: var(--fs-xl);
            color: var(--secondary-blue);
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .seo-content-list {
            list-style: disc;
            padding-left: 20px;
            margin-bottom: 25px;
        }

        .seo-content-list li {
            margin-bottom: 10px;
        }



        /* End Seo Section */


        .industrial-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }
        
/* Start  Section */
   .beans-pulses-section {
            background-color: #fcfcfc;
        }

        /* was: style="border-top: 1px solid #eee;" on <section> (SEO section) */
        .seo-content-section {
            border-top: 1px solid #eee;
        }

        /* was: style="max-width: 900px; margin: 0 auto;" on <div> */
        .seo-content-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        /* was: style="font-size: var(--fs-2xl); color: var(--primary-blue); margin-bottom: 1.5rem; text-align: center;" on <h2> */
        .seo-content-title {
            font-size: var(--fs-2xl);
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        /* was: style="color: #444; font-size: var(--fs-lg); line-height: 1.8;" on <div> */
        .seo-content-body {
            color: #444;
            font-size: var(--fs-lg);
            line-height: 1.8;
        }

        /* was: style="margin-bottom: 25px;" on <p> */
        .seo-content-body p {
            margin-bottom: 25px;
        }

        /* was: style="font-size: var(--fs-xl); color: var(--secondary-blue); margin-top: 25px; margin-bottom: 15px;" on <h3> */
        .seo-content-subtitle {
            font-size: var(--fs-xl);
            color: var(--secondary-blue);
            margin-top: 25px;
            margin-bottom: 15px;
        }

        /* was: style="list-style: disc; padding-left: 20px; margin-bottom: 25px;" on <ul> */
        .seo-content-list {
            list-style: disc;
            padding-left: 20px;
            margin-bottom: 25px;
        }

        /* was: (implicit spacing) on <li> inside the ul */
        .seo-content-list li {
            margin-bottom: 8px;
        }

         .seo-content-section {
            background-color: #fcfcfc;
            border-top: 1px solid #eee;
        }

        .seo-content-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        .seo-content-title {
            font-size: var(--fs-2xl);
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .seo-content-body {
            color: #444;
            font-size: var(--fs-lg);
            line-height: 1.8;
        }

        .seo-content-body p {
            margin-bottom: 25px;
        }


/* End section */