/* Limited-Time Offer Pop-up Styles */

/* Pop-up Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 42, 54, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

/* Pop-up Modal */
.popup-modal {
    background: white;
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #1F2A36;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: #1F2A36;
    transform: rotate(90deg);
}

.popup-close:hover svg {
    stroke: white;
}

/* Top Accent Bar */
.popup-accent {
    height: 6px;
    background: linear-gradient(90deg, #CC6B5C 0%, #B87B6B 100%);
}

/* Content Area */
.popup-content {
    padding: 40px 32px 32px;
    text-align: center;
}

/* Icon */
.popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #CC6B5C 0%, #B87B6B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Badge */
.popup-badge {
    display: inline-block;
    background: #F3F1EE;
    color: #CC6B5C;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

/* Headline */
.popup-headline {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1F2A36;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

/* Description */
.popup-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 28px 0;
}

/* CTA Button */
.popup-cta {
    display: inline-block;
    background: linear-gradient(135deg, #CC6B5C 0%, #B87B6B 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 107, 92, 0.3);
}

.popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 107, 92, 0.4);
}

/* Footer Note */
.popup-footer {
    padding: 20px 32px;
    background: #F3F1EE;
    text-align: center;
}

.popup-footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.popup-footer strong {
    color: #1F2A36;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-modal {
        max-width: 95%;
    }
    
    .popup-content {
        padding: 32px 24px 24px;
    }
    
    .popup-headline {
        font-size: 1.6rem;
    }
    
    .popup-description {
        font-size: 1rem;
    }
    
    .popup-cta {
        padding: 14px 32px;
        font-size: 1rem;
        width: 100%;
    }
    
    .popup-footer {
        padding: 16px 24px;
    }
}
