.header-container {
    padding: 16px 0; /* 16px сверху и снизу */
    background-color: #00ADEE;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}
.logo-container {

}
.logo-placeholder {
    width: 120px;
    height: 23px;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    border-radius: 2px;
}
.search-form {
    display: flex;
}
.search-input {
    /*border-radius: 4px 0 0 4px;*/
    border: 1px solid #D9D9D9;
    flex: 1;
}
.search-input::placeholder {
    color: #A09D92;
    font-size: 16px;
}

.search-btn {
    background-color: white;
    border: 1px solid #D9D9D9;
    /*border-radius: 0 4px 4px 0;*/
    color: #00ADEE;
    padding: 0 15px;
    flex-shrink: 0;
}
.search-btn:hover {
    background-color: #f8f9fa;
}
.location-link, .phone-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 16px;

}
.icon-wrapper {
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}
.location-link span, .phone-link span {
    font-family: Cruinn-Black,serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
}

.slogan-wrapper {
    background-color: #EC1C24;
    text-align: center;
    padding: 10px 0;
}
@media (max-width: 767px) {
    .header-wrapper-mobile {
        display: block;
        padding: 17px 20px;
        background-color: #00ADEE;
    }
    .header-container {
        display: none;
    }
    .custom-menu {
        display: none;
    }
    .header-logo {
        width: 112px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .btn-mobile,
    .btn-mobile a {
        color: #FFFFFF;
        font-size: 13px;
        border: none;
        text-decoration: none;
        background-color: #00ADEE;
        font-family: Cruinn-Bold, serif;
        text-transform: uppercase;
        font-weight: 700;
    }

    .dropdown-max-menu {
        width: 75%;
        padding: 28px;
        transform: translate(0, 0px) !important;
    }

    .form-control::placeholder {
        font-size: 14px;
    }

    .search-container {
        width: 75%;
        margin-bottom: 36px;
    }

    .form-control,
    .search-icon-wrap {
        border: 0;
        border-bottom: 1px solid black;
        border-radius: unset;
    }

    .search-icon {
        width: 14px;
        height: 14px;
    }

    .close-menu-btn {
        position: absolute;
        top: 28px;
        right: 18px;
        cursor: pointer;
        height: 22px;
        width: 22px;
        background-color: initial;
        padding: 0;
        border: none;
    }

    .nav-link {
        font-size: 22px !important;
    }

    .catalog__wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__contacts,
    .footer__contacts-descr-yt {
        display: none;
    }

    .footer__contacts-center {
        justify-content: center !important;
    }

    /*.swiper-slide img {*/
    /*    max-width: 450px;*/
    /*}*/

    .swiper-pagination {
        position: static;
        margin-top: 5px;
        text-align: center;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .swiper-slide {
        width: 340px;
        height: 340px;
    }

    .catalog__swiper-slide {
        height: 100%;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        display: none;
    }

    .subcategories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-page__blocks-wrapper {
        gap: 16px;
    }

    .about-page__title {
        font-size: 30px;
    }

    .partners-page__polaroid-1 {
        left: 18px;
    }

    .partners-page__polaroid-2 {
        transform: rotate(8deg);
        top: 8px;
        left: 30px;
    }

    .partners-page__polaroid-3 {
        top: 146px;
        left: -238px;
    }

    .partners-page__polaroid-4 {
        display: none;
    }

    .partners-page__description-top {
        width: 100%;
    }

    .about-page__swiper-btn {
        display: flex;
        justify-content: flex-end;
    }

    .about-page__card {
        width: 295px;
        height: 362px;
    }

    .brands__wrapper {
        flex-direction: column;
        gap: 12px;
    }
}

@media (min-width: 768px) {
    .header-wrapper-mobile {
        display: none;
    }
    .header-container {
        display: flex;
    }
    .custom-menu {
        display: block;
    }
    .search-form {
        width: 202px; /* Ширина поля и кнопки поиска 302px */
    }
}

@media (min-width: 992px) {
    .search-form {
        width: 302px; /* Ширина поля и кнопки поиска 302px */
    }
}