
/* Styles for the promotion popup */

.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.promo-popup-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.promo-popup-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 450px;
    text-align: center;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.promo-popup-overlay.visible .promo-popup-content {
    transform: scale(1);
}

.promo-popup-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promo-popup-text {
    padding: 25px;
}

.promo-popup-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
}

.promo-popup-text p {
    font-size: 16px;
    color: #666;
    margin: 0 0 20px;
}

.promo-popup-cta {
    display: inline-block;
    background-color: #4F46E5; /* Indigo 600 */
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.promo-popup-cta:hover {
    background-color: #4338CA; /* Indigo 700 */
}

.promo-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.promo-popup-close:hover {
    background: rgba(0, 0, 0, 0.8);
}
