.exclusive-offers-wrapper {
            position: relative;
            width: 100%;
            background: white;
            padding: 20px 0 60px 0;
            overflow: hidden;
        }

        .exclusive-offers-container {
            width: 100%;
            overflow: hidden;
        }

        .exclusive-offers-track {
            display: flex;
            width: 100%;
            transition: transform 0.5s ease-out;
            scroll-behavior: smooth;
            gap: 20px;
            padding: 0;
        }

        .exclusive-offer-slide {
            display: flex;
            flex-shrink: 0;
            width: 300px;
            height: auto;
            padding: 0;
            background: transparent;
            gap: 0;
            align-items: stretch;
            justify-content: flex-start;
            position: relative;
            overflow: visible;
        }

        .exclusive-offer-slide::before {
            display: none;
        }

        .exclusive-offer-slide::after {
            display: none;
        }

        .exclusive-offer-card {
            width: 100%;
            background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-primary-200) 100%);
            border-radius: 20px;
            padding: 25px 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: flex-start;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            min-height: 220px;
        }

        /* Wave shape on bottom left */
        .exclusive-offer-card::before {
            content: '';
            position: absolute;
            bottom: -1px;
            left: -20px;
            width: 120px;
            height: 100px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 50% 0 0 100%;
            z-index: 0;
        }

        /* Decorative curve on top right */
        .exclusive-offer-card::after {
            content: '';
            position: absolute;
            top: -30px;
            right: -40px;
            width: 150px;
            height: 120px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 0 0 50% 50%;
            z-index: 0;
        }

        .offer-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .offer-content {
            flex: 1;
            position: relative;
            z-index: 2;
            min-width: 0;
        }

        .offer-label {
            font-size: 12px;
            color: #666;
            margin-bottom: 5px;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .offer-title {
            font-size: 24px;
            color: #1a1a1a;
            margin-bottom: 0;
            font-weight: 700;
            line-height: 1.2;
        }

        .offer-icon {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .offer-icon svg {
            width: 42px;
            height: 42px;
            color: #f69e0a;
           
        }

        .offer-promo {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.8);
            padding: 10px 12px;
            border-radius: 8px;
            border: 2px dashed #959595;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .offer-promo-code {
            /* font-family: 'Courier New', monospace; */
            font-weight: 700;
            color: #000;
            font-size: 16px;
            flex: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .copy-offer-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 15px;
            padding: 0;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
            opacity: 0.8;
        }

        .copy-offer-btn:hover {
            transform: scale(1.15);
            opacity: 1;
        }

        /* Navigation Buttons */
        .offers-nav {
            display: flex;
            gap: 12px;
            padding: 20px 0;
            justify-content: flex-start;
            /* position: absolute;
            bottom: 0;
            left: 20px; */
        }

        .offers-nav-btn {
            background: #fff;
            border: none;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
            color: #ff67a6;
            font-size: 2.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            /* margin: 0 12px; */
            transition: background 0.2s;
        }

        .offers-nav-btn:hover:not(:disabled) {
            border-color: #D97BA8;
            background: #FFF5F9;
            color: #D97BA8;
        }

        .offers-nav-btn:active:not(:disabled) {
            transform: scale(0.92);
        }

        .offers-nav-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        /* Dots Indicator */
        .offers-dots {
            display: flex;
            gap: 8px;
            padding: 20px;
            justify-content: flex-start;
            position: absolute;
            bottom: 0;
            left: 110px;
            display: none;
        }

        .offers-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #E0E0E0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .offers-dot.active {
            background: #E8A8C1;
            width: 22px;
            border-radius: 4px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .exclusive-offer-slide {
                width: 280px;
            }

            .exclusive-offer-card {
                padding: 20px 15px;
                min-height: 200px;
            }

            .offer-title {
                font-size: 20px;
            }

            .offer-icon {
                width: 70px;
                height: 70px;
            }

            .offer-icon svg {
                width: 45px;
                height: 45px;
            }

            .exclusive-offers-track {
                padding: 0 15px;
                gap: 15px;
            }

            .offers-nav {
                bottom: -50px;
                left: 15px;
            }

            .offers-dots {
                bottom: -50px;
                left: 105px;
            }
        }

        @media (max-width: 480px) {
            .exclusive-offer-slide {
                width: 260px;
            }

            .exclusive-offer-card {
                padding: 18px 12px;
                min-height: 180px;
                border-radius: 15px;
                gap: 15px;
            }

            .offer-title {
                font-size: 18px;
            }

            .offer-label {
                font-size: 11px;
            }

            .offer-promo-code {
                font-size: 12px;
            }

            .offer-promo {
                padding: 8px 10px;
                gap: 10px;
                border-radius: 6px;
            }

            .offer-icon {
                width: 60px;
                height: 60px;
            }

            .offer-icon svg {
                width: 40px;
                height: 40px;
            }

            .exclusive-offers-track {
                padding: 0 10px;
                gap: 12px;
            }

            .offers-nav {
                bottom: -45px;
                left: 10px;
            }

            .offers-dots {
                bottom: -45px;
                left: 95px;
            }

            .offers-nav-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .offers-dot {
                width: 6px;
                height: 6px;
            }

            .offers-dot.active {
                width: 18px;
            }
        }