    /* Clean CSS with simple container system */
    :root {
        /* SECTION-SPECIFIC VARIABLES */
        --products-primary: #fbc430;
        --products-heading-color: #383455;
        /* Not used in this specific view but good to have from design system */
        --products-text-white: #ffffff;
        --products-text-black: #000000;
        --products-overlay: rgba(0, 0, 0, 0.6);

        /* Fonts */
        --products-body-font: "Inter", sans-serif;
        --products-heading-font: "Montserrat", sans-serif;

        /* 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(--products-body-font);
        color: var(--products-text-black);
        background-color: #ffffff;
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
    }

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

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

    a {
        text-decoration: none;
        color: inherit;
    }

    /* 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(--products-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(--products-heading-font);
        font-weight: 600;
        font-size: 50px;
        line-height: 1.22;
        color: var(--products-primary);
        margin-bottom: 10px;
    }

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

    /* --- Product Listing Section --- */
    .product-listing {
        padding: 80px 0;
        background-color: #ffffff;
    }

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

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

    .product-image-wrapper {
        width: 100%;
        /* Aspect ratio based on 368x460 */
        aspect-ratio: 368 / 460;
        border-radius: 10px;
        overflow: hidden;
        background-color: #f0f0f0;
        /* Placeholder color */
    }

    .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(--products-body-font);
        font-weight: 500;
        font-size: 22px;
        line-height: 1.2;
        color: #000000 !important;
        text-transform: capitalize;
        text-align: center;
        margin-top: 15px;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* --- Responsive Design --- */
    @media (max-width: 991px) {
        .products-hero h1 {
            font-size: 36px;
        }

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

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

        .product-grid {
            grid-template-columns: repeat(2, 1fr);
            column-gap: 20px;
            row-gap: 30px;
        }

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

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

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

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

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

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

        .product-image-wrapper {
            aspect-ratio: 4 / 5;
        }

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

    /* --- CTA SECTION --- */
    .cta-section {
        background-color: var(--products-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(--products-heading-font);
        font-weight: 600;
        font-size: 30px;
        color: #101010;
        margin-bottom: 18px;
    }

    .cta-section p {
        font-family: var(--products-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(--products-text-white);
        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;
    }