/* Promo popup styles */
.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.promo-content {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

.close-promo {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1;
}

.close-promo:hover {
    background: var(--light-bg);
    transform: rotate(90deg);
}

.promo-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-height: 70vh;
    object-fit: contain;
}

@media (max-width: 768px) {
    .promo-content {
        width: 90%;
        margin: 0 20px;
    }
}

