
        .section-container {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
            margin-bottom: 30px;
        }
        .section-header {
            background: linear-gradient(to right, #ff7043, #ff8a65);
            color: white;
            padding: 20px 20px;
            position: relative;
            z-index: 100;
        }
        .section-header h1 {
            font-weight: 700;
            font-size: 25px;
            margin: 0;
        }
        .view-all-btn {
            background: white;
            color: #ff7043;
            font-weight: bold;
            border-radius: 50px;
            padding: 10px 25px;
            transition: all 0.3s;
        }
        .view-all-btn:hover {
            background: #ff7043;
            color: white;
            transform: scale(1.05);
        }
        
        /* Swiper Container */
        .product-slider-container {
            padding: 25px 20px;
            position: relative;
        }

        .swiper {
            /*padding-bottom: 50px;*/
        }

        .swiper-slide {
            height: auto;
            display: flex;
        }

        .offer-card {
            border: none;
            border-radius: 20px;
            overflow: visible;
            background: white;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            width: 100%;
            height: 100%;
        }
        
        .offer-card:hover {
            /*transform: translateY(-8px);*/
            /*box-shadow: 0 15px 40px rgba(0,0,0,0.2);*/
        }
        
        .card-body {
            background: white;
            text-align: center;
            padding: 15px;
            display: flex;
            flex-direction: column;
            flex: 1;
            border-radius: 0 0 20px 20px;
            position: relative;
        }
        
        /* Discount Ribbon - Professional & Compact */
        .discount-ribbon {
            position: absolute;
            top: 8px;
            left: 8px;
            background: #d32f2f;
            color: white;
            padding: 6px 10px;
            font-weight: 700;
            font-size: 0.75rem;
            z-index: 10;
            text-align: center;
            min-width: 48px;
            border-radius: 3px 3px 0 0;
            line-height: 1.1;
        }

        /* Zigzag bottom - sharp triangles */
        .discount-ribbon::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            right: 0;
            height: 6px;
            background-image: 
                linear-gradient(135deg, #d32f2f 50%, transparent 50%),
                linear-gradient(225deg, #d32f2f 50%, transparent 50%);
            background-size: 8px 6px;
            background-repeat: repeat-x;
            background-position: 0 0, 4px 0;
        }

        .discount-amount {
            font-size: 0.85rem;
            font-weight: 700;
            display: block;
            line-height: 1;
        }

        .discount-label {
            font-size: 0.6rem;
            font-weight: 700;
            display: block;
            margin-top: 2px;
        }

        .card-img-wrapper {
            width: 100%;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            padding-top: 25px;
            background: white;
            border-radius: 20px 20px 0 0;
            position: relative;
        }

        .card-img-top {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .offer-card:hover .card-img-top {
            transform: scale(1.08);
        }
        
        .delivery-text {
            color: #2e7d32;
            font-weight: 600;
            font-size: 0.75rem;
            margin-bottom: 8px;
            min-height: 20px;
        }
        
        .product-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #333;
            margin: 8px 0;
            min-height: 45px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
        }
        
        .price {
            margin: 10px 0 15px;
            min-height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .price-original {
            text-decoration: line-through;
            color: #999;
            font-size: 1rem;
        }
        
        .price-discounted {
            color: #d32f2f;
            font-weight: bold;
            font-size: 1.4rem;
        }
        
        .add-to-bag-btn {
            background: linear-gradient(to right, #43a047, #66bb6a);
            border: none;
            border-radius: 50px;
            padding: 12px 20px;
            font-weight: bold;
            color: white;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(67,160,71,0.3);
            width: 100%;
            margin-top: auto;
            font-size: 0.9rem;
        }
        
        .add-to-bag-btn:hover {
            background: linear-gradient(to right, #388e3c, #4caf50);
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(67,160,71,0.4);
        }
        
        .add-to-bag-btn.added {
            background: #2e7d32;
        }

        /* Cart Icon Button on Image */
        .cart-icon-btn {
            display: none;
        }

        .cart-icon-btn.added {
            background: #43a047 !important;
            color: white !important;
            border-color: #43a047 !important;
        }

        /* Swiper Navigation - Unique per section */
        .swiper-button-next,
        .swiper-button-prev {
            color: #ff7043;
            background: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            transition: all 0.3s;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: #ff7043;
            color: white;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 18px;
            font-weight: bold;
        }

        .swiper-pagination {
            bottom: 15px !important;
        }

        .swiper-pagination-bullet {
            background: #ff7043;
            opacity: 0.4;
            width: 8px;
            height: 8px;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            width: 24px;
            border-radius: 4px;
        }

        /* Responsive */
        @media screen and (max-width: 900px) {
            .section-header h1 {
                font-size: 20px !important;
            }

            .swiper-button-next,
            .swiper-button-prev {
                width: 35px;
                height: 35px;
            }

            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 14px;
            }
        }

        @media screen and (max-width: 576px) {
            .section-header .view-all-btn {
                padding: 8px 15px;
                font-size: 13px;
            }
            
            .section-header h1 {
                font-size: 18px !important;
            }
            
            .product-slider-container {
                padding: 20px 10px;
            }

            .swiper {
                /*padding-bottom: 45px;*/
            }

            .offer-card {
                border-radius: 16px;
            }

            .card-img-wrapper {
                height: 140px;
                padding: 10px;
                padding-top: 18px;
                border-radius: 16px 16px 0 0;
            }
            
            .card-body {
                padding: 10px;
                border-radius: 0 0 16px 16px;
            }

            .product-title {
                font-size: 0.85rem;
                min-height: 40px;
                margin: 6px 0;
            }
            
            .price {
                margin: 6px 0 10px;
                min-height: 28px;
            }

            .price-discounted {
                font-size: 1.2rem;
            }
            
            .price-original {
                font-size: 0.9rem;
            }
            
            /* Compact discount ribbon for mobile */
            .discount-ribbon {
                padding: 4px 8px;
                font-size: 0.65rem;
                min-width: 42px;
                top: 6px;
                left: 6px;
            }

            .discount-ribbon::after {
                height: 5px;
                background-size: 6px 5px;
                background-position: 0 0, 3px 0;
                bottom: -5px;
            }

            .discount-amount {
                font-size: 0.7rem;
            }

            .discount-label {
                font-size: 0.55rem;
                margin-top: 1px;
            }
            
            .delivery-text {
                font-size: 0.7rem;
                margin-bottom: 6px;
            }
            
            /* Hide normal button on mobile */
            .add-to-bag-btn {
                display: none;
            }

            /* Cart Icon Button - On top of image - SHOW ON MOBILE */
            .cart-icon-btn {
                display: flex !important;
                align-items: center;
                justify-content: center;
                position: absolute;
                bottom: 10px;
                right: 10px;
                background: white;
                border: 2px solid #e0e0e0;
                border-radius: 50%;
                width: 38px;
                height: 38px;
                color: #d32f2f;
                font-size: 1rem;
                box-shadow: 0 2px 8px rgba(0,0,0,0.15);
                transition: all 0.3s;
                z-index: 5;
                cursor: pointer;
            }

            .cart-icon-btn:hover {
                background: #d32f2f;
                color: white;
                border-color: #d32f2f;
                transform: scale(1.05);
                box-shadow: 0 4px 12px rgba(211,47,47,0.3);
            }


            .swiper-button-next,
            .swiper-button-prev {
                /*display: none !important;*/
            }
            
        }
        .swiper-pagination {
          display: none !important;
        }

