@media (min-width: 1201px) {
    .navbar-mobile {
        display: none;
    }
}

@media (max-width: 1200px) {
    .navbar-desktop {
        display: none;
    }

    .navbar-mobile {
        position: sticky;
        bottom: 0;
        z-index: 10;
        background-color: white;
        border: 1px solid rgb(244, 194, 194);
    }

    .navbar-mobile__list {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .navbar-mobile__item-logo {
        max-width: 16px;
    }

    .navbar-mobile__item .item__link,
    .navbar-mobile__item .item__link svg {
        color: black;
    }

    .mobile-cart-dropdown {
        position: fixed;
        bottom: 70px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 10px 10px 0 0;
        padding: 15px;
        z-index: 1000;
        display: none;
        max-height: 70vh;
        overflow-y: auto;
    }

    .mobile-cart-dropdown.active {
        display: block;
    }

    .navbar-mobile__item {
        position: relative;
    }

    .mobile-cart-count {
        position: absolute;
        top: -5px;
        right: -5px;
        background: rgb(244, 194, 194);
        color: black;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
    }

    /* video */
    .video {
        padding-top: 0;
    }

    .video__container {
        flex-direction: column;
        border: 2px solid rgb(244, 194, 194);
    }

    .video__logo-block {
        height: 80px;
        display: flex;
        align-items: center;
    }

    .video__logo-block img {
        width: 180px;
        height: 60px;
    }

    .video__block-left {
        width: 100%;
    }

    .video__block-left {
        border-radius: unset;
        border: unset;
        box-shadow: unset;
    }

    .video__block-left video {
        border-radius: unset;
    }

    .video__block-right {
        display: none;
    }

    /* catalog */
    .btn-order-now,
    .btn-add-to-cart {
        padding: 6px 8px;
        font-size: 8px;
        border-radius: 5px;
    }

    .product-action-buttons .btn-add-to-cart svg {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 992px) {

    /* catalog */
    .product-action-buttons {
        justify-content: space-between;
    }

    .btn-order-now,
    .btn-add-to-cart {
        font-size: 5px;
    }

    .product-action-buttons .btn-add-to-cart svg {
        height: 7px;
    }
}

@media (max-width: 991px) {

    /* delivery */
    .delivery__block-left .block-left__title,
    .delivery__block-right .block-right__title {
        font-size: 25px;
    }

    /* footer */
    .footer__link-decr {
        font-size: 12px;
    }

    .footer__copyright {
        font-size: 10px;
    }

    .footer__address {
        font-size: 12px;
    }
}

@media (max-width: 768px) {

    /* header */
    .header__nav .nav__list {
        justify-content: space-between;
    }

    /* catalog */
    .catalog {
        padding-top: 50px;
    }

    .catalog__wraper-products {
        flex-direction: column;
        gap: unset;
    }

    .mobile-filter-btn {
        display: block;
        margin-bottom: 20px;
        padding: 10px 15px;
        background-color: rgb(244, 194, 194);
        border-radius: 10px;
        font-weight: 400;
        font-size: 14px;
        color: white;
    }

    .catalog__block-filter {
        position: unset;
        display: none;
        margin-bottom: 50px;
    }

    .catalog__block-filter.active {
        display: block;
    }

    .catalog__block-products {
        width: 100%;
    }

    .product-action-buttons {
        flex-direction: column;
        row-gap: 10px;
    }

    .btn-order-now,
    .btn-add-to-cart {
        width: 100%;
        padding: 8px 10px;
        font-size: 12px;
    }

    .product-action-buttons .btn-add-to-cart svg {
        width: 15px;
        height: 15px;
    }

    /* delivery */
    .delivery__row {
        row-gap: 20px;
    }

    /* reviews */
    .reviews-slider .swiper-slide {
        height: 170px;
    }

    /* footer */
    .footer__item {
        width: 27%;
    }

    /* product-info */
    .product-info__container {
        padding: 18px;
    }

    .swiper {
        margin-bottom: 15px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 575px) {

    /* header */
    .header__nav .nav__list {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        display: flex;
    }

    .header__nav .nav__list::-webkit-scrollbar {
        display: none;
    }

    .nav__item-link .item__img-wraper {
        animation: none;
    }

    .nav__item-link:hover .item__img-wraper,
    .nav__item-link:hover .item__img-wraper-sale {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav__item-link:hover .nav__item-descr {
        color: var(--black);
    }

    /* reviews */
    .reviews__title {
        font-size: 20px;
    }

    /* product-info */
    .product-info__container {
        box-shadow: none;
    }
}