    /* Clean CSS with simple container system */
    :root {
        /* SECTION-SPECIFIC VARIABLES */
        --product-listing-primary: #fbc430;
        --product-listing-secondary: #fd9706;

        /* Backgrounds */
        --product-listing-body-bg: #ffffff;
        --product-listing-white-bg: #ffffff;
        --product-listing-overlay: rgba(0, 0, 0, 0.6);

        /* Typography */
        --product-listing-body-font: "Inter", sans-serif;
        --product-listing-heading-font: "Montserrat", sans-serif;
        --product-listing-heading-color: #fbc430;
        --product-listing-text-white: #ffffff;
        --product-listing-text-black: #000000;

        /* Container variables */
        --container-max-width: 1200px;
        --container-padding-left: 15px;
        --container-padding-right: 15px;
    }

    /* Reset & Base Styles */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: var(--product-listing-body-font);
        background-color: var(--product-listing-body-bg);
        color: var(--product-listing-text-black);
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    p {
        margin: 0;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Container System */
    .container {
        max-width: 1200px;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    /* --- Hero Section --- */
    .products-hero {
        position: relative;
        width: 100%;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url("../images/product-hero.png");
        /* Adjusted path */
        background-size: cover;
        background-position: center;
        text-align: center;
    }

    /* Overlay */
    .products-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--product-listing-overlay);
        z-index: 1;
    }

    .products-hero .container {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .products-hero h1 {
        font-family: var(--product-listing-heading-font);
        font-weight: 600;
        font-size: 50px;
        line-height: 1.22;
        color: var(--product-listing-heading-color);
        margin-bottom: 10px;
    }

    .products-hero p {
        font-family: var(--product-listing-body-font);
        font-weight: 400;
        font-size: 16px;
        line-height: 1.6;
        color: var(--product-listing-text-white);
        max-width: 970px;
    }

    /* --- Product Grid Section --- */
    .product-section {
        padding: 80px 0;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        width: 100%;
    }

    /* Product Card */
    .product-card {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        height: auto !important;
        overflow: visible !important;
    }

    .product-image-wrapper {
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }

    .product-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .product-card:hover .product-image-wrapper img {
        transform: scale(1.05);
    }

    .product-card-title {
        display: block !important;
        font-family: var(--product-listing-body-font);
        font-weight: 500;
        font-size: 22px;
        line-height: 1.2;
        color: #000000 !important;
        text-align: center;
        margin-top: 15px;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Specific Heights based on Design Data */
    /* Row 1 items (First 3) have taller images: 460px */
    .product-card:nth-child(-n + 3) .product-image-wrapper {
        height: 460px;
    }

    /* Subsequent items have square images: 368px */
    .product-card:nth-child(n + 4) .product-image-wrapper {
        height: 368px;
    }

    /* Responsive Design */
    @media (max-width: 991px) {
        .products-hero {
            min-height: 300px;
            padding: 50px 0;
        }

        .products-hero h1 {
            font-size: 36px;
        }

        .products-hero p {
            font-size: 15px;
        }

        .product-section {
            padding: 60px 0;
        }

        .product-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        /* Reset specific heights for tablet to maintain aspect ratio */
        .product-card:nth-child(-n + 3) .product-image-wrapper,
        .product-card:nth-child(n + 4) .product-image-wrapper {
            height: auto;
            aspect-ratio: 1 / 1;
        }

        .product-card-title {
            font-size: 18px;
            margin-top: 12px;
        }
    }

    @media (max-width: 767px) {
        .products-hero {
            min-height: auto;
            padding: 45px 0;
        }

        .products-hero h1 {
            font-size: 28px;
        }

        .products-hero p {
            font-size: 14px;
        }

        .product-section {
            padding: 40px 0;
        }

        .product-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .product-card:nth-child(-n + 3) .product-image-wrapper,
        .product-card:nth-child(n + 4) .product-image-wrapper {
            aspect-ratio: 4/5;
        }

        .product-card-title {
            font-size: 16px;
            margin-top: 10px;
        }
    }

    /* --- CTA SECTION --- */
    .cta-section {
        background-color: var(--product-listing-primary);
        padding: 50px 0;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        margin-bottom: 80px;
    }

    .cta-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
    }

    .cta-section h2 {
        font-family: var(--product-listing-heading-font);
        font-weight: 600;
        font-size: 30px;
        color: #101010;
        margin-bottom: 18px;
    }

    .cta-section p {
        font-family: var(--product-listing-body-font);
        font-size: 16px;
        color: #323232;
        margin-bottom: 34px;
        max-width: 800px;
    }

    .cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--product-listing-white-bg);
        color: #101010;
        font-family: "Inter", sans-serif;
        font-weight: 500;
        font-size: 18px;
        padding: 12px 26px;
        border-radius: 10px;
        text-decoration: none;
        transition: transform 0.2s ease;
    }

    .cta-btn:hover {
        transform: translateY(-2px);
    }

    /* Decorative blurred circles for CTA */
    .cta-section::before,
    .cta-section::after {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        background-color: #ef8407;
        border-radius: 50%;
        filter: blur(80px);
        z-index: 1;
    }

    .cta-section::before {
        right: -50px;
        top: -50px;
        left: auto;
        transform: none;
    }

    .cta-section::after {
        left: -50px;
        bottom: -50px;
        top: auto;
        right: auto;
        transform: none;
    }