 /* =========================================
           WIDGET STYLES
           ========================================= */
        
        .offer-widget-container {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 9999;
            font-family: 'Poppins', sans-serif;
        }

        /* Icon Button */
        .offer-icon-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff416c, #ff4b2b);
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 75, 43, 0.4);
            transition: transform 0.5s ease, opacity 0.5s ease;
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 10001;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .offer-icon-btn.hidden-icon {
            transform: scale(0);
            opacity: 0;
            pointer-events: none;
        }

        .offer-icon-btn:hover:not(.hidden-icon) { transform: scale(1.1); }

        .offer-icon-btn:not(.hidden-icon)::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            border-radius: 50%;
            border: 2px solid #ff4b2b;
            animation: glow-pulse 2s infinite;
        }

        @keyframes glow-pulse {
            0% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.7); }
            70% { transform: scale(1.5); opacity: 0; box-shadow: 0 0 0 10px rgba(255, 75, 43, 0); }
            100% { transform: scale(1); opacity: 0; }
        }

        /* Card - Abhi bhi same position par khulega */
        .offer-card {
            background: white;
            width: 320px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            overflow: hidden;
            
            opacity: 0;
            visibility: hidden;
            transform: scale(0.5) translateX(-20px);
            transform-origin: bottom left;
            
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            
            position: absolute;
            bottom: 0; /* Icon ki jagah */
            left: 0;
        }

        .offer-card.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateX(0);
        }

        /* Slider Viewport */
        .slider-viewport {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .slider-track {
            display: flex;
            width: 400%; /* 4 slides */
            transition: transform 0.4s ease-in-out;
        }

        .slide {
            width: 25%; /* 100% / 4 */
            flex-shrink: 0;
        }

        .slide-body { padding: 20px; }
        .slide-body h3 { font-size: 18px; color: #333; margin-bottom: 8px; }
        .slide-body p { font-size: 13px; color: #666; margin-bottom: 15px; }

        /* --- IMAGE FIX START --- */
        .slide-img-container {
            width: 100%;
            /* 1080x1080 hai toh 1:1 ratio set kiya hai */
            aspect-ratio: 1/1; 
            background-color: #f0f0f0; /* Image load hone tak background */
            overflow: hidden;
            position: relative;
        }

        .slide-img {
            width: 100%;
            height: 100%;
            /* Object-fit contain se image cut nahi hogi, poora dikhagi */
            /* Agar aapko fit bharna hai aur cut karna hai toh 'cover' use karein */
            object-fit: cover; /* Since box is square and image is square, it fits perfectly */
            display: block;
        }
        /* --- IMAGE FIX END --- */

        .discount-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #ffeb3b;
            color: #d32f2f;
            padding: 5px 10px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 12px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            z-index: 5;
        }

        /* Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.8);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            color: #333;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            z-index: 10;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .slider-arrow:hover { background: #fff; }
        
        .arrow-left { left: 10px; }
        .arrow-right { right: 10px; }

        /* Close Button */
        .close-card-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255, 255, 255, 0.9);
            color: #ff4b2b;
            border: 1px solid #ff4b2b;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: all 0.3s;
            z-index: 11;
        }
        .close-card-btn:hover { background: #ff4b2b; color: white; }

        .btn-offer {
            display: block;
            width: 100%;
            padding: 10px;
            text-align: center;
            background: linear-gradient(to right, #ff416c, #ff4b2b);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
        }

        /* Mobile Responsive */
        @media (max-width: 480px) {
            .offer-widget-container { left: 15px; bottom: 15px; }
            /* Mobile ke liye width thoda kam */
            .offer-card { width: 290px; }
        }