 .unifi-products-section {
        padding: 80px 0;
        font-family: "Poppins", sans-serif;
        background: #f5f7fc; 
        overflow-x: hidden; /* protect from overflow */
    }

    /* Background inside container */
    .inner-bg {
        position: relative;
        background-image: url("https://images.pexels.com/photos/2881220/pexels-photo-2881220.jpeg");
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        padding: 60px;
        overflow: hidden;
        max-width: 100%;
    }

    .inner-bg .bg-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(4px);
        z-index: 1;
    }

    .inner-bg > * {
        position: relative;
        z-index: 2;
    }

    .section-title {
        text-align: center;
        font-size: 36px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .section-subtitle {
        text-align: center;
        color: #ddd;
        margin-bottom: 40px;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }

    /* Glass UI Box */
    .product-box {
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        padding: 25px;
        border-radius: 14px;
        transition: 0.3s ease;
    }

    .product-box:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-6px);
    }

    .parent-title {
        font-size: 22px;
        font-weight: 700;
        color: #00caff;
        margin-bottom: 8px;
    }

    .parent-description {
        color: #eaeaea;
        font-size: 15px;
        margin-bottom: 20px;
    }

    /* Category item */
    .category-item {
        background: rgba(255, 255, 255, 0.15);
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 10px;
        transition: 0.3s;
    }

    .category-item:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateX(5px);
    }

    .category-item h4 {
        color: #fff;
        margin: 0;
        font-size: 16px;
    }

    .category-item p {
        color: #ddd;
        font-size: 15px;
        margin-top: 6px;
    }

    /* ---------- MOBILE FIX ---------- */
    @media (max-width: 768px) {
        .inner-bg {
            padding: 25px;
            border-radius: 12px;
            width: 100%;
            margin: 0;
            box-sizing: border-box;
        }

        .product-box {
            padding: 18px;
        }

        .product-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .inner-bg {
            padding: 18px;
            border-radius: 8px;
        }
    }