 .featured-products {
            /* padding: 40px 0; */
            background: #fff;
        }

        /* Product Box */
        .featured-box {
            position: relative;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
             
            width: 100%;
        }

        .featured-box:hover {
            transform: translateY(-5px);
        }

        .fp-product-info {
            padding: 10px;
        }

        .fp-product-info .fp-product-title {
            font-size: 14px;
            margin: 0 0 5px 0;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            line-height: 1.5;
            height: 3em;
            color: #333;
            font-family: 'Poppins', sans-serif;
        }

        .fp-price-row {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            white-space: nowrap;
        }

        .fp-current-price {
            font-weight: 500;
            color: #000;
        }

        .original-product-price {
            color: #999;
            text-decoration: line-through;
            font-size: 0.9em;
            margin-left: 5px;
        }

        /* Image Styles */
        .featured-image {
            position: relative;
            margin-bottom: 10px;
            height: 0;
            padding-bottom: 100%;
            overflow: hidden;
        }

        .featured-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .7s ease;
        }

        .featured-image:hover img {
            transform: scale(1.1);
        }

        /* Badge and Button Styles */
        .featured-wishlist-btn {
            position: absolute;
            top: 20px;
            right: 1px;
            border: none;
            width: 20px;
            height: 20px;
            background-color: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .featured-wishlist-btn i {
            font-size: 16px;
            color: #333;
            background-color: transparent;
        }

        /* Plus Button */
        .featured-box .plus-btn {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background-color: #f5f5f5;
            color: #000;
            border: none;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s ease, background-color 0.3s ease;
            z-index: 2;
        }

        .featured-box:hover .plus-btn {
            opacity: 1;
        }

        .featured-box .plus-btn:hover {
            background-color: #333;
        }

        /* Desktop Layout */
        @media (min-width: 767px) {
            .featured-products .col-md-2-4 {
                flex: 0 0 20%;
                max-width: 20%;
            }
        }

        /* FIXED MOBILE LAYOUT */
        @media (min-width: 320px) and (max-width: 766px) {
            /* Remove the margin from featured-box and add padding to columns */
            .featured-box {
                margin: 0 !important; /* Remove all margins */
            }
            
            .featured-products .col-lg-2-4,
            .featured-products .col-md-2-4 {
                flex: 0 0 50% !important;
                max-width: 50% !important;
                width: 50% !important; /* Exact 50% width */
                padding: 8px !important; /* Add padding instead of margin */
                box-sizing: border-box; /* Ensure padding is included in width calculation */
            }

            .featured-box .fp-product-title {
                font-size: 12px;
                line-height: 18px;
            }

            .featured-box .plus-btn {
                opacity: 1;
                width: 25px;
                height: 25px;
                bottom: 5px;
                right: 5px;
            }

            .featured-box .original-product-price {
                font-size: 10px;
                margin-left: 2px;
            }

            .featured-box .featured-wishlist-btn {
                top: 10px;
                right: 10px;
            }

            .fp-product-info .fp-product-title {
                font-size: 12px;
                line-height: 1.4;
                height: 2.8em;
            }

            .original-product-price {
                font-size: 10px;
            }

            .section-title {
            font-size:15px;
            /* margin-bottom: 30px; */
            color: #333;
        }
        }

        /* Demo styles for visualization */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .col-lg-12 {
            width: 100%;
            padding: 0 15px;
        }

        .col-md-2-4, .col-lg-2-4 {
            padding: 0 15px;
        }

        .section-title {
            /* font-size: 24px; */
            /* margin-bottom: 30px; */
            color: #333;
        }