/* NEW DESIGN */

/* START GLOBAL CSS*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --white: #fff;
    --brown: #613E29;
    --brown-midel: #643E28;
    --brown-lite: #A67B5B;
    --black: #000;
}

a {
    cursor: pointer !important;
}

a:hover, a:focus, a:active {
    color: var(--brown);
    background-color: transparent !important;
}

@font-face {
    font-family: 'Noto Sans Arabic';
    src: url('../fonts/NotoSansArabic-VariableFont_wdth.ttf');
    font-style: normal;
}


ul, li {
    list-style: none;
}

button, a {
    all: unset;
}

p {
    margin: 0;
}

.main-container {
    font-family: Noto Sans Arabic, sans-serif;
    /*color: var(--white);*/
    width: 100%;
    margin: 0px auto 0;
    max-width: 1920px;
}

.yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy {
    color: var(--brown-lite);
}

.discounts--content-text {
    color: var(--white);
}

.products {
    width: 100%;
}

input, textarea {
    outline: none;
}

input[type="submit"] {
    -moz-appearance: none;
    appearance: none;
}

.hidden {
    display: none !important;
}

.show {
    display: block !important;
}

.no-phone {
    display: none;
}

.minicart-wrapper .action.showcart:before {
    display: none !important;
}

strong.logo {
    width: auto !important;
    max-width: 358px;
    height: auto !important;
}

.off-phone {
    display: block;
}

@media (max-width: 1023px) and (min-width: 320px) {
    .no-phone {
        display: block;
    }

    .off-phone {
        display: none;
    }
}

/* END GLOBAL CSS*/

@media (min-width: 1024px) {
    .switcher-toggle.dropdown-toggle img {
        width: 34px;
        height: 34px;
    }

    .fa-angle-down:before {
        font-size: 20px;
    }
}


.header .dropdown-switcher .dropdown-menu li a img {
    width: 20px;
}

header {
    background-color: var(--white);
    padding: 10px 25px 12px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.header--menu {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
    padding-top: 12px;
}

.header--menu-item {
    position: relative;
    cursor: pointer;
}

.header--topblock-right_icon img {
    width: 34px;
    height: 34px;
}

.middle-header-content {
    width: 100%;
}

.header-phone-icon {
    max-width: 50px;
}

body [data-content-type='row'][data-appearance='contained'] {
    overflow: hidden;
}

body .discounts--content-input_container input[type="text"], .discounts--content-input_container input[type="email"] {
    max-width: 350px !important;
}

body .discounts--content-input_container input {
    height: 76px;
}

.header--menu-item_text {
    color: var(--brown);
    font-size: 24px;
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 100%;
    position: relative;
}

#mainMenu .icon-next {
    display: none;
}

.header--menu-item_text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brown);
    transition: width 0.3s ease;
}

.header--menu-item:hover .header--menu-item_text::after {
    width: 100%;
}

.dropdown-submenu > .header--menu-popup, .dropdown > .header--menu-popup {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 15px;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    /*padding: 25px 0;*/
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu>li>a{
    color: var(--brown);
}


/*.dropdown-submenu.active .subMenu-plus{*/
/*    transform: rotate(45deg);*/
/*}*/

body .dropdown-submenu.header--menu-popup_item {
    width: 125%;
}

body .dropdown-submenu > .header--menu-popup {
    top: -15px;
    left: 100%;
}

.dropdown > .header--menu-popup {
    margin: 5px 0 0;
}

.header--menu-item.dropdown:hover > .header--menu-popup, .dropdown-submenu:hover > .header--menu-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.header--menu-popup_item {
    padding: 12px 20px;
    color: var(--brown);
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-transform: uppercase;
}

.header--menu-popup_item:hover {
    /*background-color: #f5f5f5;*/
    color: var(--brown);
}

/* Mobile Menu Button */
.header--menu-mobile {
    display: none;
    position: relative;
    cursor: pointer;
}

.header--menu-mobile_img {
    width: 28px;
    height: 28px;
    display: block;
}

/* Mobile Menu Popup */
.mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 216px;
    /*max-height: 243px;*/
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    /*border-radius: 8px;*/
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 2000;
    /*overflow-y: auto;*/
    padding-bottom: 20px;
}

/*.header--menu-mobile:hover .mobile-menu, .mobile-menu:hover,*/
.header--menu-mobile.active .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-top {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #e0e0e0;
    /*background-color: #fafafa;*/
}

.mobile-menu-icon {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.mobile-menu-icon:hover {
    transform: scale(1.1);
}

.mobile-menu-icon img {
    max-width: 22px;
    min-width: 22px;
    max-height: 22px;
    min-height: 22px;
    display: block;
}

.mobile-menu-icon svg {
    width: 20px;
    height: 20px;
}

.mobile-menu-list {
    margin-top: 15px;
}

strong.logo img {
    width: 75%;
    margin-top: 10px;
}

strong.logo {
    text-align: center;
    vertical-align: middle;
    display: flex;
    justify-content: center;
}

button.action.btn-cart {
    padding: 0px 40px;
    border-radius: 30px;
    color: #000;
    background-color: #fff;
    border-color: #000;
    margin-bottom: 5px;
    margin-right: 10px;
    border: 1px solid;
}

button.action.btn-cart:hover {
    background-color: #000;
    color: #fff;
}

i.pe-7s-like:hover {
    color: #fff;
}
footer.footer .copyright{
    gap: 20px;
    flex-wrap: wrap;
}

footer.footer .payment-methods-footer {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    position: relative;
    padding: 11px 25px 11px 24px;
}

.mobile-menu-header:hover {
    background-color: #f9f9f9;
}

.mobile-menu-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: var(--brown);
}

.dropdown.mobile-menu-item.active > .header--menu-popup {
    opacity: 1;
    visibility: visible;
}

.header--menu-popup_item.active .header--menu-popup {
    opacity: 1;
    visibility: visible;
}

.menu-plus {
    width: 18px;
    height: 18px;
    position: relative;
    transition: transform 0.3s ease;
}

.subMenu-plus {
    position: absolute;
    right: 5%;
    top: 10%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.menu-plus::before,
.menu-plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background-color: #5d4037;
    transition: transform 0.3s ease;
}

.header--menu-popup_item {
    position: relative;
}


.menu-plus::before, subMenu-plus:before {
    transform: translate(-50%, -50%) rotate(0deg);
}

.menu-plus::after, .subMenu-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.mobile-menu-item.active .menu-plus::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-item.active .menu-plus::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    background-color: #f9f9f9;
    transition: max-height 0.3s ease;
}

.mobile-menu-item--active .mobile-menu-submenu {
    max-height: 500px;
}

.mobile-menu-submenu-item {
    padding: 10px 15px 10px 30px;
    border-top: 1px solid #e0e0e0;
}

.mobile-menu-submenu-link {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    display: block;
    transition: color 0.2s ease;
}

.mobile-menu-submenu-link:hover {
    color: #5d4037;
}

html.use-header2, html body {
    overflow-x: unset !important;
}

strong.logo-container {
    height: auto;
    margin-bottom: -15px;
}

strong.logo {
    height: 83px;
}

.header--topblock-right {
    display: flex;
    gap: 40px;
    align-items: center;
}

.header--topblock-right_icon {
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header--topblock-right_icon:hover {
    transform: scale(1.1);
}

.Wholesale {
    display: none !important;
}

.catalog-product-view .product.media .owl-nav {
    width: 90%;
}

.mobile-menu-top-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}


body .footer .copyright {
    height: 60px;
}

@media (max-width: 1919px) and (min-width: 1440px) {
    header {
        /*padding: 33px 40px 28px 40px;*/
    }

    strong.logo-container {
        height: 47px;
    }

    .header--menu {
        gap: 17px;
        padding-top: 10px;
    }

    .header--topblock-right {
        padding-top: 10px;
    }

    .header--menu-item_text {
        font-weight: 600;
        font-size: 20px;
    }

    strong.logo {
        max-height: 70px;
        max-width: 300px;
    }

    .header--topblock-right {
        gap: 40px;
    }

    .header--topblock-right_icon img {
        max-width: 30px;
        min-width: 30px;
        max-height: 40px;
        min-height: 40px;
    }
}

@media (max-width: 1439px) and (min-width: 1024px) {
    header {
        padding: 11px 20px 18px 20px;
    }

    .header--menu {
        gap: 15px;
        padding-top: 5px;
    }

    .header--menu-item_text {
        font-weight: 600;
        font-size: 16px;
    }

    strong.logo {
        height: 65px;
    }

    .header--topblock-right {
        gap: 15px;
    }

    .header--topblock-right_icon img {
        width: 25px;
        height: 25px;
    }

    strong.logo-container {
        height: 47px;
    }

    strong.logo {
        height: 70px;
    }
}

@media (max-width: 1023px) and (min-width: 320px) {
    .header--topblock-right_icon img {
        width: 18px;
        height: 18px;
    }

    .header--logo-container{
        display: flex;
        justify-content: center;
    }

    /*!*TODO boyum urish dzeva arac*/
    .header--logo  {
        max-width: 200px;
    }

    .middle-footer h6 {
        position: relative !important;
    }

    .header--menu {
        display: none;
    }

    .header--menu-item_text{
        font-size: 14px;
    }

    .dropdown-menu.header--menu-popup {
        width: 100%;
    }

    body .dropdown-submenu.header--menu-popup_item {
        width: 100%;
        font-size: 13px;
    }

    body .dropdown-submenu > .header--menu-popup {
        top: 30px;
        left: -8%;
    }

    strong.logo-container {
        height: 25px;
        margin-bottom: 10px;
    }

    body .main-banner--content .main-banner--content_title {
        font-size: 52px;
    }

    .main-banner--content_btn {
        font-size: 24px;
    }

    .btn-border-white {
        padding: 15px 35px;
    }

    #main-Settingcontent {
        display: flex;
        align-items: center;
    }

    .header--topblock-right {
        display: inline;
    }

    strong.logo {
        height: 35px;
    }

    .header--topblock-right {
        gap: 15px;
    }


    header {
        padding: 15px 20px;
    }

    .header--menu {
        display: none;
    }

    .header--menu-mobile {
        display: block;
    }


    .header--topblock-right {
        gap: 12px;
    }

    .header--topblock-right > div {
        display: none;
        max-height: 22px;
    }

    .header--search,
    .header--favorite:last-child {
        display: flex !important;
    }
}

@media (max-width: 390px) {
    header {
        padding: 12px 15px;
    }


    .header--topblock-right {
        gap: 10px;
    }

    .mobile-menu {
        width: 260px;
    }
}

@media (max-width: 768px) {
    .header--menu-mobile_img {
        width: 23px;
        height: 23px;
    }

    strong.logo-container {
        height: 30px;
    }

    strong.logo {
        height: 35px;
    }

    .header--topblock-right_icon img {
        width: 18px;
        height: 18px;
    }

    body div.main-banner--content .main-banner--content_title {
        font-size: 34px;
    }

}

/*-----main-banner------*/

.main-banner--inner {
    max-height: 990px;
    min-height: 990px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: end;
    background-position: center top;
    background-repeat: no-repeat;
}

.main-banner--content {
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body .main-banner--content .main-banner--content_title {
    font-weight: 700;
    font-size: 76px;
    line-height: 100%;
    color: var(--white);
    text-align: center;
}

body a.btn-border-white:hover {
    color: var(--brown);
    background-color: var(--white) !important;
}

.btn-border-white {
    color: var(--white);
    padding: 20px 65px;
    border: 4px solid var(--white);
    border-radius: 10px;
}

.main-banner--content_btn {
    font-weight: 900;
    font-size: 32px;
    line-height: 100%;
    text-align: center;
    width: max-content;
    margin-top: 40px;
}

/*------advantages------*/

.content-container {
    margin: 0 auto;
    width: 1300px;
}

.advantages--list {
    margin: 45px 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 75px;
    justify-content: center;
}

.advantages--list-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.advantages--list-item_img {
    max-width: 58px;
    min-width: 58px;
    max-height: 58px;
    min-height: 58px;
}

.advantages--list-item_text {
    font-weight: 800;
    font-size: 24px;
    line-height: 100%;
    color: var(--brown);
}

/*------discounts-----*/

.discounts {
    background-color: var(--brown-midel);
}

.discounts--container {
    width: 1190px;
    margin: 0 auto;
}

.discounts--content {
    padding: 76px 0;
}

.discounts--content-title {
    font-weight: 300;
    font-size: 38px;
    line-height: 100%;
}

.discounts--content-text {
    font-weight: 100;
    font-size: 20px;
    line-height: 200%;
    vertical-align: middle;
    width: 51%;
    margin-top: 30px;
}

.discounts--content-input_container {
    display: flex;
    margin-top: 50px;
    position: relative;
}

.discounts--content-input::placeholder {
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    color: #8F8F8F;
}

.discounts--content-input {
    background: white;
    color: #8F8F8F;
    height: 76px;
    border: none;
    width: 360px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
}

.discounts--content-submit_block {
    min-width: 84px;
    max-width: 84px;
    min-height: 76px;
    max-height: 76px;
    background: var(--brown-lite);
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 28%;
    cursor: pointer;
}

.discounts--content-submit_img {
    width: 40px;
    height: 46px;
    margin: calc(18%) auto;
    display: block;
}

/*-----product-sections-----*/
.product-sections--list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 120px;
    gap: 60px;
}

.product-sections--container {
    width: 1240px;
    margin: 0 auto;
}

.product-sections--list-item {
    width: calc(33.3% - 40px);
}

.product-sections--list-item_img {
    min-width: 370px;
    max-width: 370px;
    min-height: 446px;
    max-height: 446px;
    border-radius: 10px;
}

.product-sections--list-item_name {
    font-weight: 300;
    font-size: 30px;
    line-height: 100%;
    text-align: center;
    color: var(--black);
    margin-top: 20px;
}

/*------featured--------*/

.featured--inner {
    width: 1640px;
    margin: 139px auto 0 auto;
    box-shadow: 0px 50px 24px 30px #0000001A;
    padding: 60px 0 132px 0;
    border-radius: 10px;
}

body h4.discounts--content-title {
    color: var(--white);
}

.featured--container {
    width: 1330px;
    margin: 0 auto;
}

.featured--title-and-btn {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.featured--title {
    font-weight: 300;
    font-size: 46px;
    line-height: 100%;
    text-align: center;
    color: var(--black);
}

body .mgs-ajax-layer-item, body .product-item-link, .item {
    color: var(--brown-lite) !important;
}

.featured--btn, .featured--btn_bottom {
    background: var(--brown-lite);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 27px 56px 27px 70px;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    text-align: center;
}

.featured--btn_bottom {
    font-size: 24px;
    position: relative;
    height: 83px;
    padding: 0;
    margin: 0 auto 0 auto;
}

.featured--btn_bottom p {
    position: absolute;
    left: 32%;
}

.featured--btn_bottom img {
    position: absolute;
    left: 80%;
}

.featured--btn img {
    min-width: 28px;
    max-width: 28px;
    min-height: 28px;
    max-height: 28px;
}

.featured--product-list {
    margin-top: 75px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    gap: 40px;
}

.featured--product-item {
    width: calc(33.33% - 27px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 580px;
    max-height: 580px;
    display: flex;
    justify-content: center;
    align-items: end;
    border-radius: 20px;

}

footer.footer .payment-methods-footer li{
    margin-right: 0;
}


.featured--product-content {
    background: #fff;
    color: var(--black);
    text-align: left;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 5px;
}

.featured--product-content_title {
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
}

.featured--product-content_subtitle {
    font-weight: 300;
    font-size: 20px;
    line-height: 100%;
    margin-top: 20px;
}

.featured--product-content_price {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    vertical-align: middle;
    margin-top: 25px;
}


@media (max-width: 1919px)  and (min-width: 1440px) {

    .main-banner--inner {
        max-height: 806px;
        min-height: 806px;
        background-size: cover;
    }

    .main-banner--content {
        padding-bottom: 146px;
    }

    body .main-banner--content .main-banner--content_title {
        font-size: 54px;
    }

    .main-banner--content_btn {
        font-size: 20px;
    }

    /*------advantages--list--------*/
    .content-container {
        width: 990px;
    }

    .advantages--list {
        gap: 30px;
        justify-content: normal;
        /*margin: 78px 0;*/
    }

    .advantages--list-item {
        gap: 12px;
    }

    .advantages--list-item_img {
        max-width: 50px;
        min-width: 50px;
        max-height: 50px;
        min-height: 50px;
    }

    .advantages--list-item_text {
        font-weight: 800;
        font-size: 20px;
    }

    /*--------discounts---------*/
    .discounts--container {
        width: 990px;
    }

    .discounts--content {
        padding: 54px 0 45px 0;
    }

    .discounts--content-title {
        font-size: 34px;
    }

    .discounts--content-text {
        width: 57%;
        margin-top: 20px;
    }

    .discounts--content-input_container {
        margin-top: 30px;
    }

    .discounts--content-submit_block {
        left: 34%;
    }

    /*-------product-sections-------*/
    .product-sections--list {
        justify-content: center;
    }

    .product-sections--list-item {
        width: calc(33.3% - 70px);
    }

    .product-sections--list-item_img {
        max-width: 338px;
        min-width: 338px;
        max-height: 407px;
        min-height: 407px;
    }

    /*------featured-------*/
    .featured--inner {
        width: 1330px;
        margin-top: 53px;
        padding-top: 83px;
        padding-bottom: 53px;
    }

    .featured--container {
        width: 1150px;
    }

    .featured--product-item {
        max-height: 480px;
        min-height: 480px;
    }

    .featured--title-and-btn {
        align-items: start;
    }

    .featured--title {
        font-size: 32px;
    }

    .featured--btn {
        font-size: 18px;
        padding: 22px 35px 22px 53px;
    }

    .featured--product-content {
        max-width: 330px;
        min-width: 330px;
    }

    .featured--product-content_title {
        font-size: 24px;
    }

    .featured--product-content_subtitle {
        font-size: 13px;
    }

    .featured--product-content_price {;
        font-size: 20px;
    }

}

@media (max-width: 1439px)  and (min-width: 1024px) {

    /*-----------main-banner---------*/
    footer.footer .footer--info-title{
        text-align: center;
    }
    .header--logo-container{
        text-align: center;
        vertical-align: middle;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    .header--logo{
        max-width: 270px;
        margin-bottom: -7px;
    }
    .main-banner--inner {
        max-height: 573px;
        min-height: 573px;
        background-size: cover;
    }

    .main-banner--content_title {
        font-size: 64px;
    }

    /*------advantages--list--------*/
    .content-container {
        max-width: 812px;
    }

    .advantages--list {
        gap: 40px;
        margin: 36px 0;
    }

    .advantages--list-item {
        gap: 10px;
    }

    .advantages--list-item_img {
        max-width: 40px;
        min-width: 40px;
        max-height: 40px;
        min-height: 40px;
    }

    .advantages--list-item_text {
        font-size: 16px;
    }

    /*-----------discounts----------*/
    .discounts--container {
        width: 780px;
    }

    .discounts--content {
        padding: 48px 0 57px 0;
    }

    .discounts--content-submit_block {
        left: 44%;
    }

    .discounts--content-title {
        font-size: 40px;
    }

    .discounts--content-text {
        font-size: 20px;
        width: 72%;
        margin-top: 23px;
    }

    .discounts--content-input_container {
        margin-top: 38px;
    }

    /*-------product-sections-------*/
    .product-sections--container {
        width: 840px;
        margin: 0 auto;
    }


    .product-sections--list-item_img {
        max-width: 240px;
        min-width: 240px;
        max-height: 294px;
        min-height: 294px;
    }

    /*------featured-------*/
    .featured--inner {
        width: 924px;
        padding-bottom: 58px;
    }

    .featured--container {
        width: 842px;
    }

    .featured--product-item {
        max-height: 338px;
        min-height: 338px;
    }

    .featured--title {
        font-size: 36px;
    }

    .featured--btn {
        font-size: 20px;
    }

    .featured--product-content {
        max-width: 232px;
        min-width: 232px;
    }

    .featured--product-content_title {
        font-size: 20px;
    }

    .featured--product-content_subtitle {
        font-size: 11px;
    }

    .featured--product-content_price {;
        font-size: 16px;
    }

}

@media (max-width: 1023px)  and (min-width: 768px) {

    /*-----------main-banner---------*/
    .main-banner--inner {
        max-height: 573px;
        min-height: 573px;
        background-size: cover;
    }

    body #main-Accountcontent {
        display: none;
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-banner--content_title {
        font-size: 64px;
    }

    /*------advantages--list--------*/
    .content-container {
        max-width: 750px;
    }

    .advantages--list {
        gap: 10px;
        margin: 36px 0;
    }

    .advantages--list-item {
        gap: 10px;
    }

    .advantages--list-item_img {
        max-width: 40px;
        min-width: 40px;
        max-height: 40px;
        min-height: 40px;
    }

    .advantages--list-item_text {
        font-size: 16px;
    }

    /*-----------discounts----------*/
    .discounts--container {
        width: 600px;
    }

    .discounts--content-submit_block {
        left: 57%;
    }

    .discounts--content-title {
        font-size: 40px;
    }

    .discounts--content-text {
        font-size: 20px;
        width: 70%;
    }

    /*-------product-sections-------*/
    .product-sections--container {
        width: 750px;
        margin: 0 auto;
    }

    .product-sections--list {
        gap: 54px;
        margin-top: 70px;
    }


    .product-sections--list-item_img {
        max-width: 210px;
        min-width: 210px;
        max-height: 294px;
        min-height: 294px;
    }

    /*------featured-------*/
    .featured--inner {
        width: 700px;
        margin-top: 50px;
        padding-bottom: 36px;
    }

    .featured--container {
        width: 555px;
    }

    .featured--product-list {
        flex-direction: row;
        margin-top: 30px;
    }

    .featured--title-and-btn {
        justify-content: center;
    }

    .featured--product-item {
        min-height: 336px;
        width: 250px;
        margin: 0 auto;
    }

    .featured--product-item:last-child {
        display: none;
    }

    .featured--title {
        font-size: 28px;
    }

    .featured--btn {
        display: none;
    }

    .featured--btn_bottom {
        margin-top: 50px;
        width: 230px;
    }

    .featured--product-content {
        max-width: 232px;
        min-width: 232px;
    }

    .featured--product-content_title {
        font-size: 20px;
    }

    .featured--product-content_subtitle {
        font-size: 11px;
    }

    .featured--product-content_price {;
        font-size: 16px;
    }

    div.copyright {
        margin-top: 33px;
    }

}

@media (max-width: 767px) and (min-width: 320px) {

    /*-----------main-banner---------*/
    .main-banner--inner {
        max-height: 669px;
        min-height: 560px;
    }

    .main-banner--content_title {
        font-size: 32px;
    }

    .main-banner--content_btn {
        font-weight: 900;
        font-size: 16px;
        line-height: 100%;
        text-align: center;
        padding: 12px 36px;
        max-width: 286px;
        border-radius: 20px;
        margin-top: 24px;
    }

    /*------advantages--list--------*/
    .content-container {
        max-width: 450px;
        width: 100%;
    }

    .advantages--list {
        gap: 10px;
        margin: 25px 0 20px 0;
    }

    .advantages--list-item {
        gap: 5px;
        width: calc(25% - 10px);
    }

    .advantages--list-item_img {
        max-width: 26px;
        min-width: 26px;
        max-height: 26px;
        min-height: 26px;
    }

    .advantages--list-item_text {
        font-size: 10px;
    }

    /*-----------discounts----------*/
    .discounts--container {
        width: 350px;
    }

    .discounts--content {
        padding: 40px 0;
    }

    .discounts--content-input {
        height: 43px;
    }

    .discounts--content-title {
        font-size: 16px;
        text-align: center;
    }

    .discounts--content-text {
        font-size: 12px;
        margin-top: 50px;
        text-align: center;
        width: 100%;
    }

    .discounts--content-input_container {
        margin-top: 20px;
        justify-content: center;
    }

    .discounts--content-input {
        max-width: 260px;
        font-weight: 500;
        font-size: 14px;
    }

    .discounts--content-input::placeholder {
        line-height: 100%;
        text-align: center;
        color: rgba(143, 143, 143, 1);
        color: #8F8F8F;
        font-weight: 500;
        font-size: 14px;
        vertical-align: middle;
    }

    .discounts--content-submit_block {
        right: 0;
        left: auto;
    }

    /*-------product-sections-------*/
    .product-sections--container {
        width: 326px;
        margin: 0 auto;
    }

    .product-sections--list {
        gap: 30px;
        margin-top: 70px;
    }

    .product-sections--list-item {
        width: max-content;
    }

    .product-sections--list-item:last-child {
        width: 100%;
    }

    .product-sections--list-item_img {
        max-width: 148px;
        min-width: 148px;
        max-height: 180px;
        min-height: 180px;
    }

    .product-sections--list-item:last-child .product-sections--list-item_img {
        max-width: 326px;
        min-width: 326px;
        max-height: 202px;
        min-height: 202px;
    }

    .product-sections--list-item_name {
        font-size: 20px;
    }

    /*------featured-------*/
    .featured--inner {
        width: 356px;
        margin-top: 50px;
        padding-bottom: 36px;
    }

    .featured--container {
        width: 283px;
    }

    .featured--product-list {
        margin-top: 30px;
    }

    .featured--product-item {
        min-height: 336px;
        width: 250px;
        margin: 0 auto;
    }

    .featured--product-item:last-child {
        display: none;
    }

    .featured--title {
        font-size: 28px;
    }

    .featured--btn {
        display: none;
    }

    .featured--btn_bottom {
        margin-top: 50px;
        width: 230px;
        justify-content: center;
    }

    .featured--product-content {
        max-width: 232px;
        min-width: 232px;
    }

    .featured--product-content_title {
        font-size: 20px;
    }

    .featured--product-content_subtitle {
        font-size: 11px;
    }

    .featured--product-content_price {;
        font-size: 16px;
    }

    div.copyright {
        margin-top: 33px;
    }
}

@media (max-width: 389px) and (max-width: 320px) {

    .content-container {
        width: 100%;
    }

    .advantages--list-item {
        width: calc(50% - 10px);
        justify-content: center;
    }

    .product-sections--list {
        justify-content: center;
    }

    .product-sections--container {
        width: 100%;
    }

    .product-sections--list-item:last-child {
        width: max-content;
    }

    .product-sections--list-item:last-child .product-sections--list-item_img {
        max-width: 148px;
        min-width: 148px;
        max-height: 180px;
        min-height: 180px;
    }

    .discounts--container {
        width: 100%;
    }

    .featured--inner {
        width: 100%;
        margin-top: 50px;
    }

    .featured--container {
        margin: auto;
    }

    .featured--product-list {
        margin-top: 30px;
    }


}

/*------footer--logo------*/
.footer--logo {
    display: flex;
    justify-content: center;
    margin-top: 190px;
}

.footer--logo--inner {
    width: max-content;
}

.footer--logo-img {
    height: 96px;
    width: 151px;
    display: block;
    margin: 0 auto;
}

.footer--logo-text {
    color: var(--brown);
    font-weight: 300;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    margin-top: 15px;
}

/*-----footer--contacts-----*/

.footer--contacts {
    border: 4px solid #000000;
    color: var(--black);
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    padding: 50px 140px;
}

.footer--social-network-item, .footer--contacts-item {
    display: flex;
    align-items: center;
    gap: 34px;
}

.footer--social-network-item a {
    width: max-content;
    height: max-content;
}

.footer--contacts-item_img {
    max-width: 38px;
    min-width: 38px;
    max-height: 42px;
    min-height: 42px;
}

.footer--social-network-item_img {
    max-width: 60px;
    min-width: 60px;
    max-height: 69px;
    min-height: 69px;
}

/*-----footer--info-----*/
.footer--info h6, .footer--info li a {
    color: var(--brown-midel) !important;
}

.footer--info {
    margin-top: 100px;
    color: var(--brown-midel);
    display: flex;
    justify-content: space-between;
    padding: 0 140px;
}

.footer--info-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 30px;
}

.footer--info-menu {
    display: flex;
    /*padding:15px 0;*/
    flex-direction: column;
    position: relative;
    gap: 5px;
}

.footer-arrow {
    position: absolute;
    right: -15px;
}

.footer--info-menu_item {
    font-weight: 300;
    font-size: 18px;
    line-height: 100%;
}


/*-----footer--payment-systems------*/

.footer--payment-systems-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 300px;
    margin-top: 50px;
}

.footer--payment-systems-list_item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer--payment-systems-list_item-img {
    max-width: 110px;
    max-height: 65px;
    object-fit: contain;
}

/*---------footer--contacts--------*/
.footer--contacts-item_text {
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
}


/*------copyright------*/
.copyright {
    background: #623D29;
    /*margin-top: 100px;*/
}

.copyright-text {
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    padding: 21.5px 0;
}


@media (max-width: 1919px) and (min-width: 1440px) {
    /*-------footer--logo-------*/
    .footer--logo {
        margin-top: 161px;
    }

    .footer--logo-img {
        height: 80px;
        width: 151px;
        display: block;
        margin: 0 auto;
    }

    .footer--logo-text {
        margin-top: 30px;
        font-size: 13px;
    }

    /*---------footer--contacts--------*/
    .footer--contacts {
        margin-top: 20px;
    }

    .footer--contacts-item_text {
        font-size: 20px;
    }

    .footer--contacts-item_img {
        max-width: 25px;
        min-width: 25px;
        max-height: 28px;
        min-height: 28px;
    }

    .footer--social-network-item {
        gap: 20px;
    }

    .footer--social-network-item_img {
        max-width: 45px;
        min-width: 45px;
        max-height: 47px;
        min-height: 47px;
    }


    /*---------footer--info--------*/
    .footer--info-title {
        font-size: 20px;
    }

    .footer--info-menu {
        gap: 5px;
    }

    .footer--info-menu_item {
        font-weight: 300;
        font-size: 14px;
    }

    .footer--payment-systems-list_item-img {
        max-width: 100px;
        min-width: 100px;
        max-height: 65px;
        min-height: 65px;
    }

}

@media (max-width: 1439px) and (min-width: 1024px) {
    /*-------footer--logo-------*/
    .footer--logo-text {
        font-size: 20px;
    }

    /*---------footer--contacts--------*/
    .footer--contacts {
        gap: 41px;
        margin-top: 31px;
        padding: 42px 92px;
    }

    .footer--contacts-item {
        gap: 10px;
    }

    .footer--social-network-item {
        gap: 29px;
    }

    .footer--social-network-item_img {
        max-width: 34px;
        min-width: 34px;
        max-height: 33px;
        min-height: 33px;
    }

    .footer--contacts-item_img {
        max-width: 21px;
        min-width: 21px;
        max-height: 24px;
        min-height: 24px;
    }

    .footer--contacts-item_text {
        font-size: 20px;
    }

    /*---------footer--info--------*/
    .footer--info-title {
        font-size: 24px;
    }

    .footer--info-menu_item {
        font-weight: 300;
        font-size: 16px;
    }

    .footer--contacts-item:last-child img {
        max-width: 36px;
        min-width: 36px;
        max-height: 33px;
        min-height: 33px;
    }

    /*-----------.copyright----------*/
    .copyright-text {
        font-size: 16px;
    }
}

@media (max-width: 1023px) and (min-width: 320px) {
    /*-------footer--logo-------*/
    .footer--logo {
        margin-top: 55px;
    }

    .footer .middle-footer ul.menu li {
        line-height: normal;
    }

    .footer--logo-img {
        height: 68px;
        width: 87px;
        display: block;
        margin: 0 auto;
    }

    .footer--logo-text {
        line-height: 200%;
        font-size: 16px;
        width: 79%;
        text-align: center;
        margin: 23px auto 0 auto;
    }

    /*---------footer--contacts--------*/
    .footer--contacts {
        flex-direction: column;
        padding: 20px 25px;
        align-items: center;
        gap: 30px;
    }

    .footer--contacts-item {
        gap: 11px;
    }

    .footer--contacts-item_text {
        font-size: 16px;
    }

    .footer--contacts-item_img {
        max-width: 21px;
        min-width: 21px;
        max-height: 24px;
        min-height: 24px;
    }

    .footer--contacts-item_text {
        font-size: 16px;
    }

    .footer--social-network-item {
        gap: 30px;
        order: 3;
    }

    .footer--social-network-item_img {
        max-width: 50px;
        min-width: 50px;
        max-height: 50px;
        min-height: 50px;
    }

    .footer--contacts-phone {
        order: 2;
    }

    .footer--contacts-phone {
        order: 1;
    }

    /*---------footer--info--------*/
    .footer--info .pagebuilder-column-line {
        justify-content: space-between;
    }

    #html-body footer div.footer--info {
        flex-direction: column;
        padding: 0;
        text-align: left;
        padding-left: 30px;
        padding-right: 30px;
        gap: 30px;
        margin-top: 41px;
    }

    .footer--info-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer--info-menu_item {
        font-weight: 300;
        font-size: 14px;
    }

    .footer--contacts-item:last-child img {
        max-width: 36px;
        min-width: 36px;
        max-height: 33px;
        min-height: 33px;
    }

    .footer--payment-systems-list {
        margin: 30px auto 0 auto;
        max-width: 300px;
    }

    img.footer--payment-systems-list_item-img {
        max-width: 75px;
        max-height: 58px;
    }

    /*-----------.copyright----------*/
    .copyright-text {
        font-size: 12px;
    }

    .footer--info-menu_item a {
        font-size: 14px;
    }

    body .header .dropdown-switcher {
        margin-left: 0;

    }
}

@media (max-width: 389px) and (min-width: 320px) {
    .footer--contacts {
        flex-direction: column;
        padding: 20px 25px;
        align-items: center;
        gap: 20px;
    }

    astrong.logo-container {
        margin-bottom: 0;
    }

    body .header .dropdown-switcher {
        margin-left: 0;
    }

    imgstrong.logo {
        max-width: 200px;
    }

    .footer--contacts-item_text {
        font-size: 13px;
    }

    .footer--social-network-item_img {
        max-width: 37px;
        min-width: 37px;
        max-height: 33px;
        min-height: 33px;
    }
}

@media (min-width: 370px) and (max-width: 425px) {
    .footer--contacts-item_text {
        font-size: 16px;
    }
}


/*  END NEW DESIGN*/
