.offer-wrapper-pop {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none;
    padding-top: 50px;
    background-color: #00000010;
    backdrop-filter: blur(40px);
    transform: translateY(100%); /* Start hidden */
    animation: slideUp 0.6s ease-out 1s forwards; /* 3s delay added */
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

.offer-card-pop {
    pointer-events: auto;
    background: white;
    border-radius: 20px 20px 0 0; /* Curved top corners only */
    padding: 40px 20px 30px 20px;
    max-width: 500px;
    margin: 0 auto;
    max-height: 90vh;
    overflow-y: auto;
}

/* Close button styling */
.close-popup {
    width: 100%;
    padding: 12px;
    background: #e2e8f0;
    color: #2d3748;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
}

        .price-container-pop {
            background: linear-gradient(135deg, #ffd93d 0%, #ffaa00 100%);
            padding: 10px;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(255, 170, 0, 0.3);
                        text-align: center;

        }

        .current-price-pop {
            color: #2d3748;
            font-size: 52px;
            font-weight: 900;
            line-height: 1;
            margin: 10px 0;
            position: relative;
            background: linear-gradient(90deg, #1a202c 0%, #282b31 25%, #858480 50%, #282b31 75%, #1a202c 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s linear infinite;
        }

                .timer-pop {
            background: #2d3748;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: center;
        }

                .countdown-pop {
            font-size: 38px;
            font-weight: bold;
            font-family: 'Courier New', monospace;
            letter-spacing: 3px;
            animation: pulse 2s infinite;
            text-align: center;
        }
.close-popup:hover {
    background: #cbd5e0;
}

/* Optional: Add overlay behind popup */
.offer-wrapper-pop::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: auto;
    opacity: 0; /* Start transparent */
    animation: fadeIn 0.6s ease-out 3s forwards; /* 3s delay added */
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Hidden state */
.offer-wrapper-pop.hidden {
    animation: slideDown 0.4s ease-in forwards;
}

@keyframes slideDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}