.slider-wrapper {
    background: var(--bg);
    position: relative;
    padding: 30px 0;
}


.slider {
    display: flex;
    overflow-x: scroll;
    /*scroll-behavior: smooth;*/
    scroll-snap-type: x mandatory;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
}

.slider::-webkit-scrollbar {
    display: none;
}

.card {
    width: 100%;
    scroll-snap-align: start;
    min-width: 100%;
    height: 500px;

}
.card_img {
    width: 70px;
    height: 70px;
    display: block;
    vector-effect: non-scaling-stroke;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.slider-btn {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-2);
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.2s ease;

}

.slider-btn:hover {
    opacity: 1;
}

.btn_prev {
    left: 10px;
}

.btn_next {
    right: 10px;
}
.banner_text_block {
    position: absolute;
    bottom: clamp(10%, 15vw, 10%);
    left: clamp(10px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: min(90%, 400px);
    padding: clamp(12px, 2vw, 20px);
    box-sizing: border-box;
    z-index: 5;
    transform: none;

}

.banner_btn {
    width: 100%;
    max-width: 200px;
    display: flex;
}

.btn-icon {
    display: none;
    width: 30px;
    height: 30px;

}

.btn-text {
    display: block;
}

.banner_text_block__text {
    font-size: clamp(18px, 5vw, 34px);
    color: white;
    text-align: justify;
    line-height: 1.5;
    font-weight: 700;
    text-transform: capitalize;
}


.promo {
    width: 100%;
}
.coffee-offers {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.card_offers:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    border-radius: 50%;

}

.card_img {
    width: 70px;
    height: auto;
    display: block;

}
