
/* ── Body lock ── */
.pp-body-locked {
    overflow: hidden;
}

/* ── Product page notice bar ── */
.professional-product-notice {
    text-align: center;
    background: #1a56db;
    padding: 10px !important;
    font-weight: bold;
    border: 2px solid #1a56db;
    border-radius: 5px;
    border-top-color: #1a56db !important;
    color: #ffffff !important;
}

/* ── Overlay / backdrop ── */
.pp-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 10, 20, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pp-overlay--visible {
    opacity: 1;
}

.pp-overlay--hiding {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* ── Modal card ── */
.pp-modal {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px 40px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 4px 6px rgba(0,0,0,0.04),
        0 20px 60px rgba(0,0,0,0.18);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pp-overlay--visible .pp-modal {
    transform: translateY(0) scale(1);
}

/* ── Icon ── */
.pp-modal__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a56db 0%, #0e3a9e 100%);
    color: #ffffff;
}

.pp-modal__icon svg {
    width: 30px;
    height: 30px;
    stroke: #ffffff;
}

/* ── Title ── */
.pp-modal__title {
    margin: 0 0 20px;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
    letter-spacing: -0.02em;
}

/* ── Body text ── */
.pp-modal__body {
    margin: 0 0 36px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
}

/* ── Actions ── */
.pp-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── Buttons (base) ── */
.pp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
    line-height: 1;
}

/* Confirm (primary) */
.pp-btn--confirm {
    background: linear-gradient(135deg, #1a56db 0%, #0e3a9e 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.35);
}

.pp-btn--confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 86, 219, 0.45);
    background: linear-gradient(135deg, #1e63f5 0%, #1140b8 100%);
}

.pp-btn--confirm:active {
    transform: translateY(0);
}

/* Decline (ghost) */
.pp-btn--decline {
    background: #f1f5f9;
    color: #64748b;
    box-shadow: none;
}

.pp-btn--decline:hover {
    background: #e2e8f0;
    color: #475569;
    transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .pp-modal {
        padding: 36px 24px 28px;
    }

    .pp-modal__title {
        font-size: 1.2rem;
    }

    .pp-btn {
        font-size: 0.85rem;
        padding: 13px 18px;
    }
}
