.vitacare-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
}

.vitacare-popup-modal {
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 700px;
    width: calc(100% - 24px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.vitacare-popup-close {
    position: absolute;
    right: 10px;
    top: 6px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.vitacare-popup-content img,
.vitacare-popup-content iframe,
.vitacare-popup-content video {
    display: block;
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.vitacare-popup-hidden {
    display: none !important;
}

.vitacare-popup-modal .vitacare-popup-close {
    max-width: 25px;
    display: block;
    border: 0;
    color: #03283E;
    background: none;
}