/* ── Aliquindoi Popup – Frontend Styles ── */

.asp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: asp-fade-in .25s ease;
}
@keyframes asp-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.asp-modal {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 520px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.18);
    animation: asp-slide-up .3s ease;
}
@keyframes asp-slide-up {
    from { transform: translateY(28px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.asp-image img {
    display: block;
    width: 100%;
    max-height: 240px;
    object-fit: cover;
}

.asp-content { padding: 28px 32px 32px; }

.asp-heading {
    margin: 0 0 12px;
    font-size: 1.5rem;
    line-height: 1.3;
    color: #1a1a1a;
}
.asp-body {
    font-size: 1rem;
    line-height: 1.65;
    color: #444;
    margin-bottom: 20px;
}
.asp-body p { margin: 0 0 .75em; }
.asp-body p:last-child { margin-bottom: 0; }

.asp-cta {
    display: inline-block;
    padding: 12px 28px;
    background: #2563eb;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .3px;
    transition: background .2s, transform .15s;
}
.asp-cta:hover { background: #1d4ed8; transform: translateY(-1px); }

.asp-close {
    position: absolute;
    top: 12px; right: 14px;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #888;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 4px;
    transition: color .15s, background .15s;
}
.asp-close:hover { color: #222; background: #f0f0f0; }

@media (prefers-reduced-motion: reduce) {
    .asp-overlay, .asp-modal { animation: none; }
    .asp-cta { transition: none; }
}
@media (max-width: 540px) {
    .asp-content { padding: 20px; }
    .asp-heading  { font-size: 1.25rem; }
}
