.holiday-popup {
    position: fixed;
    z-index: 999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.holiday-popup-content {
    background-color: #fff;
    background-image: url('https://retargeting-userupload.s3.eu-west-1.amazonaws.com/templates/gooejr6xk/bg_1694418848382.jpg');
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: center;
    animation: fadeIn 0.5s ease-out;
    color: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.holiday-popup-title {
    font-size: 24px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 15px;
    font-family: 'Times New Roman', serif;
}

.holiday-popup-message {
    font-size: 16px;
    line-height: 1.8;
    margin: 15px 0;
    color: #2C2C2C;
    font-weight: 500;
    padding: 0 20px;
}

.holiday-popup-message .delivery-info {
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.holiday-popup-message .wishes {
    font-size: 16px;
    color: #2C2C2C;
    font-style: italic;
    font-weight: bold;
    background-color: #f0ffff42;
}

.close-popup {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    font-weight: 300;
    color: #666;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-popup:hover {
    color: #333;
    background: #fff;
    transform: rotate(90deg);
}