/**
 * Newsletter Popup Styles
 */

.slide-popup {
    position: fixed;
    top: 200px;
    right: 0;
    transform: translateY(-50%);
    width: 302px;
    z-index: 9999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.popup-content {
    background-color: var(--koaWhite);
    padding: 25px;
    border-radius: 5px 0 0 5px;
    position: relative;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}
.popup-close:hover { color: #333;}

.popup-content h3 {
    margin-top: 0;
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.popup-content p {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.newsletter-button {
    display: inline-block;
    background-color: transparent;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: background-color 0.3s;
    color: var(--koaBlue) !important;
    border-color: var(--koaBlue);
    border-radius: 10em;
    border: 2px solid;
}

.newsletter-button:hover {
    background-color: var(--koaBlue);
    color: var(--koaWhite) !important;
    text-decoration: none;
}

@media (max-width: 768px) {
    .slide-popup { width: 250px;}
    .popup-content { padding: 15px;}
    .popup-content h3 { font-size: 18px;}
    .popup-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .newsletter-button {
        padding: 8px 15px;
        font-size: 13px;
    }
}