 /* Offers Grid */
.offers-grid {
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
    gap: 10px;
    margin-bottom: 2rem;
}

        /* Offer Card */
.offer-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 0;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    border: 1px solid #e4e7eb;
    transition: all 0.4s 
cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    /* overflow: hidden; */
    cursor: pointer;
    padding: 15px;
    border: 1px solid #a72f85;
    margin-top: 24px;
}

    .offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: linear-gradient(135deg, #09a4da, #1b5c9c); */
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #09a4da;
}

        /* Offer Badge */
.offer-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    padding: 4px 5px;
    border-radius: 25px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 9999;
    transform: translateX(-50%);
    background: #fff !important;
    width: 60%;
    text-align: center;
}

        .badge-popular {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
            color: #059669;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .badge-upi {
            background: linear-gradient(135deg, rgba(9, 164, 218, 0.15), rgba(9, 164, 218, 0.05));
            color: #09a4da;
            border: 1px solid rgba(9, 164, 218, 0.3);
        }

        .badge-emi {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
            color: #d97706;
            border: 1px solid rgba(245, 158, 11, 0.3);
        }

        .badge-snapmint {
            background: linear-gradient(135deg, rgba(167, 47, 133, 0.15), rgba(167, 47, 133, 0.05));
            color: #a72f85;
            border: 1px solid rgba(167, 47, 133, 0.3);
        }

        /* Offer Content */
     .offer-title {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

       .offer-price {
    font-size: 13px;
    font-weight: 800;
    color: #a72f85;
    margin-bottom: 0.75rem;
}

        .offer-description {
            font-size: 1rem;
            color: #6b7280;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        /* Bank Icons */
      .bank-icons {
    display: flex
;
    gap: 0.75rem;
    margin-bottom: 11px;
    align-items: center;
}

   .bank-icon {
    width: 20px;
    height: 20px;
    border-radius: 8px;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
}

        .bank-hdfc { background: #004c8f; }
        .bank-au { background: #ff6600; }
        .bank-paytm { background: #00baf2; }
        .bank-upi { background: #002970; }
        .bank-dollar { background: #059669; }

        .bank-text {
            font-size: 0.9rem;
            color: #6b7280;
            font-weight: 500;
        }

        /* View Offer Button */
.view-offer-btn {
    width: 100%;
    background: #f4e5f0;
    color: #000000;
    border: navajowhite;
    border-radius: 0px 0px;
    padding: 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s 
ease;
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 100px;
}



        .view-offer-btn:hover {
            background: #09a4da;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .view-offer-btn i {
            transition: transform 0.3s ease;
        }

        .view-offer-btn:hover i {
            transform: translateX(4px);
        }

        /* Slide Drawer Overlay */
        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .drawer-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Slide Drawer */
        .slide-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 500px;
            height: 100vh;
            background: #ffffff;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
            z-index: 9999999999;
            transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
        }

        .slide-drawer.active {
            right: 0;
        }

        /* Drawer Header */
        .drawer-header {
            padding: 2rem;
            background: linear-gradient(135deg, #1b5c9c, #09a4da);
            color: #ffffff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .drawer-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        }

        .drawer-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
        }

        .close-drawer {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #ffffff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.25rem;
        }

        .close-drawer:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg) scale(1.1);
        }

        /* Drawer Content */
        .drawer-content {
            padding: 2rem;
        }

        .offer-detail {
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #e4e7eb;
        }

        .offer-detail:last-of-type {
            border-bottom: none;
            margin-bottom: 1rem;
        }

        .detail-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1f2937;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .detail-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #09a4da, #1b5c9c);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 0.875rem;
        }

        .detail-text {
            font-size: 1rem;
            color: #4b5563;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .highlight-box {
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            border: 1px solid #bae6fd;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1rem 0;
        }

        .highlight-price {
            font-size: 2rem;
            font-weight: 800;
            color: #a72f85;
            margin-bottom: 0.5rem;
        }

        .highlight-savings {
            font-size: 1.125rem;
            color: #059669;
            font-weight: 600;
        }

        /* Terms List */
        .terms-list {
            list-style: none;
            padding: 0;
        }

        .terms-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #f3f4f6;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.95rem;
            color: #4b5563;
            line-height: 1.6;
        }

        .terms-list li:last-child {
            border-bottom: none;
        }

        .terms-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #09a4da;
            border-radius: 50%;
            margin-top: 0.6rem;
            flex-shrink: 0;
        }

        /* Action Buttons */
       .slide-drawer   .action-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #e4e7eb;
        }

        .slide-drawer  .btn-primary {
            flex: 1;
            background: linear-gradient(135deg, #09a4da, #1b5c9c);
            color: #ffffff;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

       .slide-drawer   .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s;
        }

       .slide-drawer   .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(9, 164, 218, 0.3);
        }

        .slide-drawer  .btn-secondary {
            flex: 1;
            background: #f3f4f6;
            color: #4b5563;
            border: 2px solid #e4e7eb;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

      .slide-drawer    .btn-secondary:hover {
            background: #e4e7eb;
            border-color: #09a4da;
            color: #09a4da;
            transform: translateY(-2px);
        }

        /* Loading State */
   .btn-loading {
            position: relative;
            color: transparent;
        }

       .btn-loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            margin: -10px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: #ffffff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
           .offers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
        }

        @media (max-width: 768px) {
         

         
            .offers-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .offer-card {
                padding: 1.5rem;
            }

            .slide-drawer {
                max-width: 100%;
            }

            .drawer-content {
                padding: 1.5rem;
            }

            .action-buttons {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .offer-title {
                font-size: 1.25rem;
            }

            .offer-price {
                font-size: 1.75rem;
            }

            .bank-icons {
                flex-wrap: wrap;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

       .slide-drawer   .view-offer-btn:focus,
      .slide-drawer  .btn-primary:focus,
        .slide-drawer  .btn-secondary:focus,
       .slide-drawer   .close-drawer:focus {
            outline: 2px solid #09a4da;
            outline-offset: 2px;
        }