.promos-slider {
    padding: 52px 26px;
    display: flex;
    gap: 4rem;
}

.promos-slider ul {
    display: flex;
    gap: 2rem;
    max-width: 100%;
    overflow: hidden;
    padding-left: 0;
}

.promos-slider ul li {
    list-style: none;
}

.promos-slider .menu-item:hover {
    cursor: pointer;
}

.promos-slider .menu-item .item-price {
    position: absolute;
    bottom: 0;
    color: white;
    padding: 18px 24px;
    border-radius: 0px 32px 0px 0px;
    background: #CD2028;
    font-size: 24px;
    font-family: 'font-noto-bold';
}

.promos-slider .menu-item .img-wrapper {
    position: relative;
    width: 280px;
    height: 235px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 12px;
    border-radius: 16px;
    box-shadow: 1px 5px 7.7px 0px rgba(0, 0, 0, 0.15);
}

.promos-slider .menu-item .item-title {
    font-weight: bold;
    font-size: 16px;
    margin-top: 18px;
}


@media (max-width: 480px) {
    .promos-slider {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 26px 6px;
        gap: 1rem;
        text-align: center;
    }

    .promos-slider .menu-item .img-wrapper {
        width: 165px;
        height: 150px;
    }

    .promos-slider .menu-item .item-price {
        font-size: 16px;
        padding: 12px 16px;
    }
}