﻿#popupModal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 500px;
    max-width: 95%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    z-index: 9999;
    display: none;
}

.popupSliderWrapper {
    position: relative;
    overflow: hidden;
}

.popupSlides {
    display: flex;
    transition: transform 0.5s ease;
}

.popupSlide {
    min-width: 100%;
    box-sizing: border-box;
}

    .popupSlide img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.popupText {
    padding: 20px;
}

.popupPrev,
.popupNext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
}

.popupPrev {
    left: 10px;
}

.popupNext {
    right: 10px;
}

#popupClose {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 24px;
    border: none;
    background: none;
    cursor: pointer;
}

#popupOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0;
    left: 0;
    display: none;
    z-index: 9998;
}
.popupBtn
{
    display:inline-block;
    padding:10px 22px;
    margin-top:12px;
    background:rgba(43,125,233,0.9);
    color:#fff;
    font-size:14px;
    font-weight:600;
    border-radius:8px;
    text-decoration:none;
    backdrop-filter:blur(4px);
    transition:all .25s ease;
    box-shadow:0 4px 15px rgba(0,0,0,0.2);
    bottom:0px;
}

.popupBtn:hover
{
    background:#1a5dc9;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
}
