  /* =========================================
           LEFT SIDE STICKY WIDGET STYLES
           ========================================= */
        
        .offer-widget-container {
            position: fixed;
            bottom: 68px;
            left: 18px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            font-family: 'Poppins', sans-serif;
        }

        /* 1. The Glowing 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: relative;
            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; }
        }

        /* 2. The Offer Content Card */
        .offer-card {
            background: white;
            width: 320px;
            border-radius: 12px;
            padding: 0;
            margin-bottom: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            overflow: hidden;
            
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50px) scale(0.9); 
            transform-origin: bottom left; 
            
            /* Animation Speed: Slow (1 second) */
            transition: all 1.0s cubic-bezier(0.25, 0.8, 0.25, 1);
            
            position: absolute;
            bottom: 70px;
            left: 0;
            right: auto;
        }

        .offer-card.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(0) scale(1);
        }

        /* Card Image Header */
        .card-header-img {
            width: 100%;
            height: 120px;
            background-image: url('https://picsum.photos/seed/offer/320/120');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .discount-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #ffeb3b;
            color: #333;
            padding: 5px 10px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 12px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .close-card-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255, 255, 255, 0.9);
            color: #ff4b2b;
            border: 1px solid #ff4b2b;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.3s;
            z-index: 10;
        }
        .close-card-btn:hover { 
            background: #ff4b2b; 
            color: white; 
        }

        .card-body { padding: 20px; }
        .card-body h3 { font-size: 18px; color: #333; margin-bottom: 8px; }
        .card-body p { font-size: 14px; color: #666; margin-bottom: 15px; line-height: 1.4; }

        .btn-offer {
            display: block;
            width: 100%;
            padding: 12px;
            text-align: center;
            background: linear-gradient(to right, #ff416c, #ff4b2b);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            transition: opacity 0.3s;
        }
        .btn-offer:hover { opacity: 0.9; }

        /* Mobile Responsive */
        @media (max-width: 480px) {
            .offer-widget-container { left: 20px; bottom: 20px; }
            .offer-card { width: 280px; }
        }