/* ============================================================
   WhatsApp busy popup – matches PartyKoning brand (orange #f57e20 / blue #3681b5)
   ============================================================ */

/* Hidden by default – JS shows it if no cookie */
.pk-wa-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 22, 40, 0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Card */
.pk-wa-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    animation: pkWaIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Orange top bar (matches site buttons / highlights) */
.pk-wa-topbar {
    background: linear-gradient(135deg, #f57e20, #e86b10);
    padding: 22px 0 18px;
    text-align: center;
}

.pk-wa-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.pk-wa-icon-wrap i,
.pk-wa-icon-wrap .fab {
    color: #ffffff !important;
    font-size: 28px !important;
}

/* Close button */
.pk-wa-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.15s ease;
    z-index: 1;
}

.pk-wa-close:hover {
    background: rgba(255, 255, 255, 0.38);
}

/* Body */
.pk-wa-body {
    padding: 24px 28px 28px;
    text-align: center;
}

/* Pill badge */
.pk-wa-pill {
    display: inline-block;
    background: #fff3e8;
    color: #c96210;
    border: 1px solid #f5c28a;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 4px 13px;
    margin-bottom: 14px;
}

/* Title – specific enough to beat h2 { color: #343434 !important } in csscombined.css */
.pk-wa-card .pk-wa-title {
    margin: 0 0 14px !important;
    color: #1a2638 !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
}

/* Body text */
.pk-wa-text {
    margin: 0 auto 20px;
    max-width: 44ch;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.65;
}

.pk-wa-text strong {
    color: #1a2638;
}

/* CTA button – orange like the site's .btn-fullcolor */
.pk-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: 4px;
    background: #f57e20;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 14px rgba(245, 126, 32, 0.35);
    border: 2px solid #f57e20;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.pk-wa-btn i,
.pk-wa-btn .fab {
    color: #ffffff !important;
    font-size: 18px !important;
}

.pk-wa-btn:hover,
.pk-wa-btn:focus {
    background: #e06a0a;
    border-color: #e06a0a;
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(245, 126, 32, 0.4);
}

/* Number line below button */
.pk-wa-number {
    margin: 14px 0 0;
    color: #718096;
    font-size: 13px;
}

.pk-wa-number i,
.pk-wa-number .fab {
    color: #3681b5 !important;
    font-size: 14px !important;
    margin-right: 4px;
}

.pk-wa-number strong {
    color: #3681b5;
    font-weight: 700;
}

/* Entry animation */
@keyframes pkWaIn {
    from { opacity: 0; transform: translateY(14px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

/* Mobile */
@media (max-width: 600px) {
    .pk-wa-overlay {
        padding: 12px;
        align-items: flex-end;
    }

    .pk-wa-card {
        border-radius: 10px 10px 6px 6px;
        max-width: 100%;
    }

    .pk-wa-card .pk-wa-title {
        font-size: 20px !important;
    }

    .pk-wa-btn {
        width: 100%;
    }
}
