﻿.cs-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,var(--cs-overlay,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    z-index: 2000;
}

.cs-popup {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    max-width: 92vw;
}

.cs-popup__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.cs-popup__title {
    font-size: 16px;
    font-weight: 700;
}

.cs-popup__close {
    border: 0;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    padding: 4px 8px;
    opacity: 0.75;
}

    .cs-popup__close:hover {
        opacity: 1;
    }

.cs-popup__img {
    width: 100%;
    height: auto;
    display: block;
}

.cs-popup__body {
    padding: 14px 16px;
}

.cs-popup__footer {
    padding: 0 16px 16px 16px;
}
