/* wpshippingpopup - webPÉCS | almalombcoffee.com stílus */

.wp-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30, 20, 10, 0.52);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: wpFadeIn 0.3s ease;
}

.wp-popup-overlay.wp-popup-visible {
    display: flex !important;
}

@keyframes wpFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.wp-popup-box {
    background: #faf7f2;
    border: 1px solid #d9cfc2;
    border-radius: 4px;
    padding: 40px 36px 32px;
    max-width: 420px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 32px rgba(30, 20, 10, 0.14);
    animation: wpSlideUp 0.3s ease;
}

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

.wp-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: #a0917e;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.15s;
}

.wp-popup-close:hover {
    color: #3b2e1e;
}

.wp-popup-message {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 15px;
    line-height: 1.75;
    color: #3b2e1e;
    margin: 0 0 26px;
}

.wp-popup-btn {
    display: inline-block;
    background: transparent;
    color: #3b2e1e;
    border: 1px solid #3b2e1e;
    border-radius: 2px;
    padding: 10px 32px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.wp-popup-btn:hover {
    background: #3b2e1e;
    color: #faf7f2;
}

@media (max-width: 480px) {
    .wp-popup-box {
        padding: 32px 20px 24px;
    }
}
