body.modal-open {
    overflow: hidden;
}

.slider-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.banner {
    position: relative;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    /* box-shadow: 0 0 20px rgba(0,0,0,0.3); */
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background: #FFD003;
    color: #333;
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50px;
    line-height: 25px;
}

.slider-container {
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.3s ease;
    touch-action: pan-y;
}

.slide {
    width: 100%;
    flex-shrink: 0;
}

.slide img {
    display: block;
    width: 100%;
    height: auto;
}

.dots {
    text-align: center;
    padding: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s;
    cursor: pointer;
}

.dot.active {
    background-color: #FFD003;
}