/* главаная с 212 строки */
/* каталог с 1552 строки */
/* категории с 1678 строки */
/* карточка товара с 1978 строки */
/* новости с 2434 строки */
/* о нас с 2568 строки */
/* контакты с 2711 строки */
:root {
    --black: #000000;
    --secondary-blue: #C9E8F7;
    --white: #ffffff;
    --secondary-gray: #A6A7B3;
    --bg: #F8FAFB;
    --primary-gray: #333333;
    --outline-gray: #E0E0E0;
    --accent-color: #0DAEE4;
    --accent-hover: #0090C6;
    --primary-text: #2B2B2B;
    --secondary-text: #B3B3B3;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "onest";
    src: url("/fonts/Onest-VariableFont_wght.ttf") format('truetype');
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "onest";
    font-size: 16px;
    font-weight: 400;
    background-color: var(--bg);
}

header {
    width: 100%;
    padding: 24px 24px 8px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.header-mobile-close, .header-mobile-open {
    display: none;
}

.subheader {
    width: 100%;
    max-width: 1128px;
    display: flex;
    gap: 8px;
    color: var(--secondary-gray);
    justify-content: space-between;
}

.upper {
    width: 100%;
    max-width: 1128px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.logo {
    text-align: center;
}

.search-input {
    width: 100%;
    /* max-width: 385px; */
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-input input {
    width: 81%;
    height: 100%;
    padding: 16px;
    background-color: var(--white);
    border-top: 1px solid #E6E6E6;
    border-left: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    border-right: 0px;
    outline: none;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    font-family: "onest";
    font-size: 0.875rem;
}

::placeholder {
    color: var(--secondary-gray);
}

.search-input button {
    width: 19%;
    height: 100%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 1px solid var(--secondary-blue);
    background-color: var(--secondary-blue);
    cursor: pointer;
}

.work-time {
    color: var(--primary-gray);
    font-size: 0.875rem;
    white-space: nowrap;
}

.sbh-left{
    display: flex;
    gap: 8px;
}
.sbh-right{}


.call {
    font-size: 1.125rem;
    text-align: center;
    font-weight: 500;
}

.call p {
    color: #1A1A1A;
    white-space: nowrap;
}

.call a {
    color: var(--accent-color);
}

.call p a{
    color: #1A1A1A;
}

.nav-user {
    width: 100%;
    max-width: 1128px;
    display: flex;
    justify-content: space-between;
}

.categories-links {
    display: flex;
    gap: 30px;
}

.butt-catalog {
    width: 264px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: "onest";
    font-weight: 500;
    color: var(--white);
}

.links {
    width: 412px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.links a {
    font-size: 0.875rem;
    color: var(--secondary-gray);
    text-decoration: none;
}

.user-actions {
    width: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}

span.cart-count:hover,a.cart-link:hover{
    color: white;
}

main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 70px;
}

.main-content {
    width: 100%;
    max-width: 1128px;
    display: flex;
    gap: 24px;
}

.left-panel {
    width: 264px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex-shrink: 0;
}

.category-list {
    display: flex;
    width: 100%;
    border: 1px solid #E6E6E6;
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    background-color: #FFFFFF;
}

.menu {
    width: 100%;
    max-width: 264px;
    height: 75px;
    padding: 8px 0 10px 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    gap: 10px;
}

.menu:hover{
    background-color: #F0FAFF;
}

.menu:hover .text-menu{
    color:#0090C6;
}

.category-list .menu a{
    text-decoration: none;
}

.submenu .text-submenu a{
    text-decoration: none;
    font-size: 0.875rem;
    color: #333333;
    font-family: "onest";
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;
}

.mobile-search{
    display: none;
    left: 0;
    right: 0;
    z-index: 10000;
    overflow-y: scroll;
    width: 100%;
    max-width: 100%;
    display: block;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    position: absolute;    
    bottom: 200px; 
    transition: bottom 0.3s cubic-bezier(0.65, 0.05, 0.36, 1),opacity 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
    height: 50px;
    opacity: 0;
}

.overlay-bg{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #00000052;
    z-index: 9990;
    opacity: 0;
    transition:opacity 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.overlay-bg.open{
   opacity: 1;
   display: block;
}

.mobile-search .search-input{
    width: 100%;
    max-width:100%;
}

.mobile-search.open {
    bottom: -50px;
    opacity: 1;
}

.mobile-menu {
    display: none;
    background-color: white;
    transition:left 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.mobile-menu .menu,.mobile-menu .submenu {
    max-width: 100%;
    width: 100%;
}

.mobile-menu .category-list{
    max-width: 100%;
}

.mobile-menu-close-wrap{
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px;
   
    z-index: 10001;
}

.mobile-menu.open{
    left: 0%;
}

.text-menu {
    font-family: "onest";
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: #333333;
}

.text-menu:hover {
    color: var(--accent-hover);
}

.submenu {
    width: 100%;
    padding: 0 20px;
    /* display: none; */
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    height: 0;
    transition: height 0.5s ease-in-out;
    overflow: hidden;
}

.text-submenu+.text-submenu {
    margin-top: 10px;
}

.text-submenu {
    font-size: 0.875rem;
    color: var(--primary-gray);
    margin-top: 21px;
}

.text-submenu:last-child{
    margin-bottom: 21px;
}

/*
.menu-hover:hover ~ .submenu {
    display: flex;
}

.submenu:hover {
    display: flex;
}*/

.promotion-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    height: 214px;
}

.promotion-item {
   
    padding: 10px 18px;
    border-radius: 6px;
    width: 100%;
   
}

.promotion-item a{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    height: 100%;
}

.promotion-item img {
    width: 32px;
    height: 32px;
    
}

.promotion-item p {
    color: var(--primary-gray);
}

.promotion {
    background: #F6CCCB;
}

.special-offers {
    background: #F6EFCB;
}

.new {
    background: #DEF2FC;
}

.popular {
    background: #E2FCDE;
}

.news-list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--outline-gray);
    border-radius: 8px;
    width: 100%;
    padding: 25px 16px 25px 20px;
    gap: 25px;
}

.news-about-headling {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-about-headling h2 {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-item {
    display: flex;
    flex-direction: column;
}

.news-date {
    color: var(--secondary-gray);
    font-size: 1rem;
}

.news-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-text);
    line-height: 140%;
}

.news-text {
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--primary-text);
    line-height: 150%;
}

.read-more {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--primary-gray);
    border: 1px solid var(--accent-color);
    border-radius: 6px;
    height: 56px;
    width: 211px;
}

.products-panel {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 840px;
}

.products-nav {
    width: 100%;
    max-width: 840px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.products-nav-up {
    width: 100%;
    max-width: 840px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    position: relative;
}

.banner-slider {
    width: 100%;
    max-width: 674px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid #C9E8F7;
    border-radius: 10px;
    overflow: hidden;
}

.banner-slider-left-arrow {
    width: 48px;
    height: 48px;
    position: absolute;
    left: 5px;
    cursor: pointer;
    z-index: 90;
}

.banner-slider-right-arrow {
    width: 48px;
    height: 48px;
    position: absolute;
    right: 5px;
    cursor: pointer;
    z-index: 90;
}

.banner-slider-item {
    width: 100%;
    max-width: 624px;
    height: 100%;  
}

.product-day {
    width: 100%;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.promo-sticker{   
   position: absolute;
    border-radius: 4px;
    padding-top: 4px;
    padding-right: 8px;
    padding-bottom: 4px;
    padding-left: 8px;
    background-color: white;
    color: #333333;
    font-family: 'onest';
    font-weight: 400;
    font-style: Regular;
    font-size: 10px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;
    width: auto;
    left: 0;
    bottom: 0px;
}

.promo-sticker img, .product-img .promo-sticker img, .img-wrapper .promo-sticker img{
    height: 18px;
    width: auto;
    vertical-align: middle;
}

.promo-sticker span{
    vertical-align: middle;
}

.promo-sticker.promo{
    background-color: #FFDDD7;    
}
.promo-sticker.new{
    background-color: #DEF2FC;  
}
.promo-sticker.spec{
    background-color: #FAFCDE;  
}
.promo-sticker.popular{
    background-color: #DEFCE3;  
}


.product-day-title {
    width: 100%;
    height: 28px;
    background-color: var(--white);
    border: 1px dashed var(--accent-color);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: var(--primary-gray);
    font-weight: 500;
}

.product-day-cart {
    width: 100%;
    height: 330px;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px dashed var(--accent-color);
    display: flex;  
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    gap: 10px;
    position: relative;
}

.product-day-cart-img {
    width: 100%;
    max-width: 178px;
    height: 100%;
    max-height: 112px;
}

.product-day-cart-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-day-cart-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-colvo {
    display: flex;
    gap: 10px;
}

.product-day-cart-price, .product-day-cart-colvo {
    font-size: 0.875rem;
    color: var(--primary-gray);
}

.product-day-cart-colvo {
    color: var(--secondary-gray);
}

.product-day-cart-available {
    position: absolute;
    top: 100px;
    right: 10px;
    width: 100px;
    height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #DEFCE3;
    border: 1px solid #108E28;
    border-radius: 4px;
    font-size: 0.625rem;
    color: #108E28;
}

.product-day-cart-available.popular{
    color:#14902c;
    background-color: #e2fcde;
    border: 1px solid #14902c;
}

.product-day-cart-available.new{
    color:#009ee0;
    background-color: #def2fc;
    border: 1px solid #009ee0;
}

.product-day-cart-available.promo{
    color:#ee332d;
    background-color: #f6cccb;
    border: 1px solid #ee332d;
}

.product-day-cart-available.spec{
    color:#c27d15;
    background-color: #f6efcb;
    border: 1px solid #c27d15;
}



.products-nav-down {
    width: 100%;
    max-width: 840px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    position: relative;
}

.for-whom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.for-whom-cart {
    width: 100%;
    height: 80px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.for-whom-cart.swiper-slide{
    flex-shrink: 1;
}

.for-whom-cart p {
    font-size: 0.875rem;
    color: var(--black);
}

.pn-item{
    border: 1px solid #C9E8F7;
    border-radius: 10px;
    padding: 9px;
    background-image: url(/img/bt-item-bg.png);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    height: 100px;
    background-size: contain;
}

.pn-item-title{
    font-family: "onest";
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 1;
    margin-bottom: 4px;
    margin-top: 4px;
}
.pn-item-text{
    font-family: "onest";
    font-weight: 400;
    font-style: Regular;
    font-size: 13px;
    leading-trim: NONE;
    line-height: 1;
    letter-spacing: 0%;
}

.for-whom-arrow img{
    width: 32px;
    height: 32px;
    cursor: pointer;
    position: absolute;
    top: 15px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 0px;
}

.section-title h2, .product-card-like h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.section-title-more {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.section-title-more p {
    background: linear-gradient(to right, var(--accent-hover), #006197);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popular-products, .new-products, .popular-categories {
    width: 100%;
    max-width: 840px;
}

.popular-products .section-title, .new-products .section-title, .popular-categories .section-title {
    padding-bottom: 22px;
}

.products-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 840px;
}

.product-item {
    width: 200px;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--outline-gray);
    gap: 5px;
    padding: 10px;
    position: relative;
}

.product-img {
    width: 177px;
    height: 177px;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    display: flex;
    flex-direction: column;
    height: 150px;
    gap: 3px;
}

.product-name, .product-day-cart-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-gray);
    line-clamp: 3;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    overflow-wrap: break-word
}

.product-sklad-colvo { 
    font-size: 0.875rem;
    margin-top: auto;
    color: var(--primary-gray);
}

.product-sklad-colvo.many, .product-card-info p.product-amount.many{
    color:#18A999!important;
}
.product-sklad-colvo.middle, .product-card-info p.product-amount.middle{
    color:#c27d15!important;
}
.product-sklad-colvo.few, .product-card-info p.product-amount.few{
    color:#ee332d!important;
}

.product-card-order-package-label img{
    vertical-align: middle;
    margin-right: 3px;
}

.product-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-gray);
}

.product-colvo {    
    font-size: 0.875rem;
    color: var(--secondary-gray);
}

.product-colvo img{
    vertical-align: middle;
    margin-right: 3px;
}

.product-button, .product-day-cart-button {
    height: 46px;
    border-radius: 3px;
    background-color: var(--accent-color);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--white);
    font-family: "onest";
}

.product-button.backet-label-in-basket{
    background-color: #18A999;
}

.product-day-cart-button{
    padding-left: 10px;
    padding-right: 10px;
}

.product-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.popular-categories-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.popular-category-item {
    width: 156px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.popular-category-item img {
    width: 156px;
    height: 145px;
    object-fit: cover;
    border-radius: 8px;
}

.popular-category-name {
    font-size: 0.875rem;
    color: #1A1A1A;
    text-decoration: none;
}

.about-us {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    max-width: 1128px;
    padding-inline: 20px;
}

.about-us-advantages {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}

.about-us-advantages-item {
    flex: 1;
    display: flex;
    gap: 16px;
    min-width: 200px;
}

.about-us-advantages-item img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.about-us-advantages-item h3 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 150%;
}

.about-us-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
}

.about-us-left {
    display: flex;
    flex-direction: column;
}

.about-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    row-gap: 42px;
    column-gap: 22px;
}

.about-us-grid p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 150%;
}

.about-us-read-more {
    margin-top: 34px !important;
    width: 262px !important;
    height: 56px !important;
}

.about-us-right {
    width: 262px;
    height: 225px;
}

.about-us-right img {
    max-width: 262px;
    height: 100%;
    max-height: 225px;
    border-radius: 10px;
    object-fit: cover;
}

footer {
    width: 100%;
    background: var(--secondary-blue);
    margin-top: 80px;
}

.footer-content {
    width: 100%;
    max-width: 1128px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding: 40px 20px 50px 20px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-top-logo {
    width: 97px;
    height: 70px;
}

.footer-top-logo img {
    width: 100%;
    height: 100%;
}

.footer-top-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-top-links h2 {
    font-size: 1rem;
    font-weight: 500;
}

.footer-top-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-column a {
    font-size: 0.875rem;
    color: var(--primary-gray);
    text-decoration: none;
    font-weight: 400;
}

.footer-top-contacts {
    display: flex;
    flex-direction: column;
}

.footer-top-contacts p {
    color: var(--primary-gray);
    opacity: 0.6;
    font-size: 1rem;
    line-height: 150%;
    font-weight: 400;
}

.footer-top-contacts a {
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 500;
}

.footer-top-contacts a:last-child {
    margin-top: 13px;
    font-size: 0.813rem;
    color: var(--primary-gray);
    font-weight: 400;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    column-gap: 64px;
    row-gap: 8px;
}

.footer-bottom-links > * {
    color: var(--primary-gray);
}

.footer-bottom-links a {
    text-decoration: none;
}

.footer-bottom-text {
    color: var(--primary-gray);
    font-weight: 400;
}

.footer-bottom-copy {
    color: var(--primary-gray);
}

@media (max-width: 1210px) {

    body {
        font-size: 14px;
    }

    .subheader {
        max-width: 1000px;
    }

    .upper {
        max-width: 1000px;
        gap: 25px;
    }

    .nav-user {
        max-width: 1000px;
    }

    .categories-links {
        gap: 24px;
    }

    .links {
        gap: 24px;
    }

    .main-content {
        max-width: 1000px;
    }

    .products-nav {
        max-width: 676px;
    }

    .products-nav-up {
        max-width: 676px;
    }

    .banner-slider {
        max-width: 478px;
    }

    .banner-slider-item {
        max-width: 478px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .banner-slider-right-arrow, .banner-slider-left-arrow {
        display: none;
    }

    .product-day {
        max-width: 176px;
    }

    .product-day-cart {
        padding: 10px;
        border: 1.5px dashed var(--accent-color);
    }

    .product-day-title {
        display: none;
    }

    .product-day-cart-img {
        max-width: 144px;
        max-height: 127px;
    }

    .product-day-cart-name {
        font-size: 0.875rem;
        font-weight: 700;
    }

    .price-colvo {
        flex-direction: column;
    }

    .product-day-cart-button {
        max-width: 142px;
        max-height: 42px;
    }

    .products-panel {
        gap: 60px;
        max-width: 676px;
    }

    .products-list {
        max-width: 676px;
        gap: 10px;
    }

    .product-item {
    width: 220px;
    }

    .products-list .product-item:nth-child(4) {
        display: none;
    }

    .popular-categories-list .popular-category-item:nth-child(5) {
        display: none;
    }

    .about-us {
        max-width: 1000px;
    }

    .footer-content {
        max-width: 1000px;
    } 
    
    .footer-top {
        position: relative;
    }

    .footer-top-contacts {
        position: absolute;
        top: 100px;
    }
    
    .pn-item{
        height: auto;
        display: flex;
        align-items: flex-start;
        background-size: contain;
        flex-direction: column;
        justify-content: flex-start;
        padding-bottom: 16px;
    }
    
    .products-nav-down {
        justify-content: space-around;
        align-items: stretch;
    }
    
    .contacts-content-address-item .address-item-address {
        width: 50%;
    }
    
    .contacts-content-address-item .address-item-address .address-item-email{
        flex-direction: column;
    }
}

@media (max-width: 1070px) {
    .subheader {
        max-width: 840px;
    }

    .upper {
        max-width: 840px;
        gap: 20px;
    }

    .search-input {
        max-width: 300px;
    }

    .nav-user {
        max-width: 840px;
    }

    .categories-links {
        gap: 16px;
    }

    .links {
        gap: 16px;
        width: 360px;
    }

    .main-content {
        max-width: 840px;
        gap: 10px;
    }

    .products-nav {
        max-width: 540px;
    }

    .products-nav-up {
        max-width: 540px;
    }

    .banner-slider {
        max-width: 400px;
    }

    .banner-slider-item {
        max-width: 400px;
    }

    .product-day {
        max-width: 160px;
    }

    .product-day-cart {
        padding: 8px;
    }

    .product-day-cart-img {
        max-width: 120px;
        max-height: 100px;
    }

    .products-list {
        max-width: 540px;
    }

    .product-item {
        width: 180px;
    }

    .product-img {
        width: 160px;
        height: 160px;
    }

    .product-button, .product-day-cart-button {
        height: 40px;
    }

    .products-list .product-item:nth-child(4) {
        display: none;
    }

    .popular-categories-list .popular-category-item:nth-child(5) {
        display: none;
    }

    .popular-category-item {
        width: 140px;
    }

    .popular-category-item img {
        width: 140px;
        height: 130px;
    }

    .about-us {
        max-width: 840px;
    }

    .about-us-advantages {
        gap: 16px;
    }

    .about-us-advantages-item img {
        width: 60px;
        height: 60px;
    }

    .about-us-text {
        gap: 40px;
    }

    .about-us-right {
        width: 100%;
        height: 190px;
    }

    .footer-content {
        padding: 30px 20px 40px 20px;
    }

    .footer-top-links-list {
        gap: 20px;
    }
}


@media (max-width: 950px) {
    
    .mobile-menu-info .work-time{
        text-align: center;
    }
    
    .subheader {
        display: none;
    }

    .upper {
        display: none;
    }

    .nav-user {
        display: none;
    }
    
    .header-mobile-close {
        width: 100%;
        max-width: 950px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .search-mobile {
        width: 100%;
        max-width: 50px;
        height: 100%;
        max-height: 50px;
        text-align: center;
    }

    .search-mobile img {
        width: 60%;
        height: 60%;
    }

    .call-mobile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .call-mobile p {
        font-size: 1rem;
        color: var(--secondary-gray);
    }

    .call-mobile a {
        font-size: 1rem;
        font-weight: 600;
        color: #1A1A1A;
        text-decoration: none;
    }

    .burger-menu-close, .burger-menu-open {
        width: 50px;
        height: 50px;
        background-image: url("/img/menu-open.svg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .mobile-city {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-city img {
        width: 20px;
        height: 20px;
    }

    .mobile-city p {
        font-size: 0.75rem;
        color: var(--secondary-gray);
    }

    .header-mobile-open {
        width: 100%;
        max-width: 950px;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .mobile-menu {
        
        left: -100%;
        z-index: 10000;
        overflow-y: scroll;
        width: 100%;
        max-width: 100%;
        
        display: block;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px;
        position: fixed;
        top: 0;
        bottom: 0;
    }

    .search-input {
        width: 100%;
        max-width: 500px;
        height: 50px;
    }

    .mobile-menu-content {
        width: 100%;
        max-width: 500px;
    }

    .category-list {
        max-width: 500px;
        align-items: center;
        border: none;
        margin-top: 20px;
    }

    .menu {
        max-width: 500px;
    }

    .main-content {
        justify-content: center;
        padding-inline: 20px;
    }

    .mobile-menu-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-bottom: 20px;
    }

    .products-nav, .products-nav-up {
        max-width: 676px;
    }

    .banner-slider {
        max-width: unset;
    }

    .banner-slider-item {        
        max-width: unset;
    }

    .for-whom-arrow img {
        right: 10px;
    }

    .products-list {
        justify-content: space-between;
        max-width: 676px;
    }

    .left-panel {
        display: none;
    }

    .about-us-advantages {
        gap: 10px;
    }
}

@media (max-width: 850px) {
    .logo-mobile img {
        width: 80px;
        height: 60px;
    }

    .burger-menu-close, .burger-menu-open {
        width: 36px;
        height: 36px;
    }
    
    .search-mobile {
        max-width: 24px;
    }

    .search-mobile img {
        width: 100%;
        height: 100%;
    }

    .call-mobile {
        gap: 0;
    }
    
    .call-mobile p {
        font-size: 0.786rem;
    }

    .call-mobile a {
        font-size: 0.857rem;
    }

    .mobile-menu {
        padding-inline: 20px;
    }

    .about-us-text {
        gap: 20px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-links-column {
        flex: 0 0 calc(50% - 20px);
    }

    .footer-top-contacts {
        right: 10px;
        top: 0;
    }
}

@media (max-width: 768px) {
    .header-mobile-close {
        padding: 15px 10px;
    }

    .mobile-menu {
        padding-inline: 10px;
    }

    .banner-slider-item {
        min-width: 320px;
        background-size: contain;
    }

    .product-day {
        display: none;
    }

    .main-content {
        padding-inline: 10px;
    }

    .section-title h2 {
        font-size: 1.143rem;
    }

    .section-title-more p {
        font-size: 0.857rem;
    }

    .popular-category-item {
        width: 156px;
        flex: 0 0 calc(50% - 5px);
    }
    
    .popular-categories-list {
        flex-wrap: wrap;
    }

    .about-us {
        padding: 0 10px;
    }

    .about-us-text {
        flex-direction: column-reverse;
    }

    .about-us-right {
        width: 320px;
    }

    .about-us-right img {
        width: 100%;
        max-width: unset;
    }

    .about-us-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(4, 1fr);
        row-gap: 20px;
        column-gap: 0;
    }

    .about-us-read-more {
        width: 100% !important;
        margin-top: 30px !important;
    }
}

@media (max-width: 600px) {
    .products-list .product-item:nth-child(3) {
        display: none;
    }

    .search-input {
        max-width: 320px;
    }

    .category-list {
        max-width: 320px;
    }

    .menu {
        max-width: 320px;
    }

    .main-content, .about-us {
        max-width: 450px;
    }
}

@media (max-width: 400px) {
    .header-mobile-close {
        padding: 15px 5px;
    }

    .logo-mobile img {
        width: 60px;
        height: 40px;
    }

    .product-item {
        width: 156px;
        height: 400px;
    }

    .product-img {
        width: 136px;
        height: 136px;
    }

    .product-name {
        font-size: 0.875rem;
    }

    .product-price {
        font-size: 0.875rem;
    }

    .product-sklad-colvo {
        font-size: 0.75rem;
    }

    .product-colvo {
        font-size: 0.75rem;
    }

    .product-button {
        width: 100%;
        height: 40px;
    }


    .product-heart img {
        width: 30px;
        height: 30px;
    }
    
    .pi-footer-wrap {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-direction: column;
    }
    
    .pi-footer-wrap .product-button{    
       height: 40px!important;
    }
    
    .pi-footer-wrap .product-button img{
        vertical-align: middle;
    }
    
    .product-card-order-amount{
        width: 100%!important;
    }
}

/* Каталог */

.catalog, .catalog-category {
    width: 100%;
    max-width: 1138px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-inline: 10px;
}

.content-wrapper {
    width: 100%;
    max-width: 1138px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-inline: 10px;
}

.content-wrapper-otstup {
    margin-top: 10px;
}

.page-path {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-path-gray {
    color: var(--secondary-gray);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
}

.page-path p {
    color: var(--primary-gray);
    font-size: 0.75rem;
    font-weight: 500;
}

.catalog-content, .catalog-category-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.catalog-category-content {
    gap: 30px;
}

.catalog-category-content+.pagination,.catalog-category-content+.pagination-wrap{
    margin-top: 28px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.catalog-item {
    display: flex;
    text-decoration: none;
    justify-content: start;
    padding: 10px;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    height: 140px;
}

.catalog-item:hover {
    box-shadow: 4px 4px 20px 4px rgba(96, 96, 96, 0.1);
}

.catalog-item img {
    width: 86px;
    height: 86px;
}

.catalog-item p {
    color: var(--primary-text);
    font-size: 0.875rem;
}

@media (max-width: 1210px) {
    .catalog-content {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 600px) {
    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .catalog-item {
        height: 130px;
    }

    .catalog-item img {
        width: 60px;
        height: 60px;
    }

    .catalog-item p {
        font-size: 0.75rem;
    }
}

@media (max-width: 410px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 160px);
        justify-content: center;
    }

    .catalog-item {
        height: 130px;
        padding: 5px;
        gap: 5px;
    }

    .catalog-item img {
        width: 60px;
        height: 60px;
    }

    .catalog-item p {
        font-size: 0.75rem;
    }
}

/* Категория */

.sort-container {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.sort-container p {
    color: var(--primary-text);
    font-size: 0.875rem;
}

.sort-button {
    width: 220px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    background-color: var(--white);
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--primary-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    white-space: nowrap;
}

.sort-dropdown {
    width: 220px;
    position: absolute;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 0 0 8px 8px;
    border: 1px solid #E5E5E5;
    border-top: none;
    background-color: var(--white);
    top: 40px;
    left: 121px;
}

.pagination-wrap{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.pagination-size{
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-option {
    width: 90%;
    height: 40px;
    border: none;
    background-color: var(--white);
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--secondary-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.pagination-size select{
    background-color: var(--accent-color);
    color: var(--white);
    justify-content: center;
    font-size: 0.875rem;
    border-radius: 4px;
    padding: 7px 15px;
    border: none;
    padding-right: 5px;
}

.sort-button:hover{
    border-radius: 8px 8px 0 0;
}

.sort-button:hover ~ .sort-dropdown,.sort-dropdown:hover {
    display: flex;
}

.menu-category {
    width: 100%;
    height: 56px;
    padding: 0px 0px 0px 20px;
    background-color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.text-menu-category {
    font-size: 0.875rem;
    color: var(--primary-gray);
}

.menu-category:hover {
    background-color: var(--secondary-blue);
}

.menu-category:hover .text-menu-category {
    color: var(--accent-color);
}

.filters {
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid var(--outline-gray);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 15px 20px;
    gap: 20px;
}

.filter-section {
    display:flex;
    flex-direction: column;
    gap: 10px;
    width:100%
}

.filter-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-gray);
}

.filter-counts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.filter-count {
    width: 110px;
    height: 40px;
    padding: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-text);
    background-color: var(--white);
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    outline: none;
}

.filter-count::placeholder {
    color: var(--primary-text);
}

.slider-container {
    width: 100%;
}

.slider-container input {
    width: 100%;
    height: 100%;
}

.filter-count-value {
    font-size: 0.875rem;
    color: var(--secondary-gray);
}

.filter-option {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-option-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-option-item input {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

.filter-option-item p,.filter-option-item label {
    font-size: 0.875rem;
    color: var(--primary-text);
    cursor:pointer;
}

.filter-section-buttons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.filter-button {
    width: 100%;
    height: 50px;
    border-radius: 3px;
    background-color: var(--accent-color);
    cursor: pointer;
    font-size: 1rem;
    color: var(--white);
    outline: none;
    border: none;
}

.filter-sbros {
    width: 50%;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    cursor: pointer;
    background-color: var(--white);
}

.catalog-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.pagination-button {
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pagination-button img {
    width: 70%;
    height: 70%;
}

.pagination-number {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--primary-gray);
    text-decoration: none;
}

.pagination-number-dots{
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--primary-gray);
    text-decoration: none;
}

.pagination-number:hover,.pagination-number-selected {
    background-color: var(--accent-color);
    color: var(--white);
}

.mobile-bottom-filter-wrap, .mobile-bottom-sort-wrap-panel {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0);
    z-index: 100000000;
    display: none;
}

.mobile-bottom-filter-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}


.filter-cancel {
    font-size: 14px;
    font-weight: 600px;
    color: #959595;
    text-decoration: none;
    cursor: pointer;
    float: right;
    padding-bottom: 12px;
    padding-top: 12px;
    padding-left: 18px;
    padding-right: 18px;
}

.blue-button.mobile-filter-button{
    display: none;
}

@media (max-width: 1000px) {
    
    .blue-button.mobile-filter-button{
        display: block;
    }
    
    .mobile-bottom-filter, .mobile-bottom-sort {
        padding-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
        background-color: white;
        position: absolute;
        left: 0px;
        right: 0px;
        top: 100%;
        bottom: 0px;
        border-radius: 20px 20px 0px 0px;
    }
    .mobile-bottom-filter-close-button {
        position: absolute;
        left: 0px;
        right: 0px;
        top: 30px;
        width: 50%;
        height: 4px;
        background-color: rgb(235, 235, 235);
        border-radius: 0%;
        margin: auto;
    }
    .fa.fa-times.mobile-bottom-filter-icon {
        cursor: pointer;
    }
    .mobile-bottom-filter-icon, .mobile-bottom-sort-icon {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 21px;
        color: rgb(238, 51, 45);
    }
    .mobile-bottom-filter-close-button {
        position: absolute;
        left: 0px;
        right: 0px;
        top: 30px;
        width: 50%;
        height: 4px;
        background-color: rgb(235, 235, 235);
        border-radius: 0%;
        margin: auto;
    }
}

@media (max-width: 1210px) {
    .catalog-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1070px) {
    .catalog-category-grid {
       /* grid-template-columns: repeat(3, 200px);*/
        justify-content: center;
        gap: 5px;
    }
}

@media (max-width:950px) {
    .catalog-category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .pagination {
        justify-content: center;
    }
    .catalog-category-content {
        gap: 10px;
    }
    
    .pagination-wrap {
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 800px) {
    .catalog-category-grid {
        grid-template-columns: repeat(3, 180px);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .catalog-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Карточка товара */

.product-card-wrapper {
    width: 100%;
    max-width: 1138px;
    padding-inline: 10px;
    margin-top: 25px;
}

.product-card-wrapper .page-path{
    width: 100%;
}

.product-card-wrapper .page-path p{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*
header .upper .logo img{
    width: 304px;
    vertical-align: middle;
}*/

.product-card-title, .product-card-price-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 150%;
    padding-block: 20px;
}

.product-card-title {
    width: 828px;
}

.product-card {
    width: 100%;
    height: 471px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 64px;
    padding-bottom: 24px;
    position: relative;
}

.product-card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-inline: 20px;
}

.product-card-heart {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    cursor: pointer;
}

.product-card-heart img {
    width: 25px;
    height: 25px;
}

.img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 525px;
    height: 350px;
    background: var(--white);
    position: relative;
}

.img-wrapper img {
    width: 250px;
    height: 300px;
}

.product-slider {
    display: flex;
    gap: 17px;
    align-items: center;
}

.product-slider-nav {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px 0 rgba(139, 139, 139, 0.1);
    cursor: pointer;
    background: var(--white);
}

.right-slider-arrow {
    transform: rotate(180deg);
}

.product-slider-items {
    display: flex;
    gap: 10px;
    background: var(--white);
}

.product-slider-item {
    width: 84px;
    height: 87px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    cursor: pointer;
}

.slider-active {
    border: 1px solid var(--primary-text);
}

.product-slider-item img {
    width: 56px;
    height: 65px;
}

.product-card-right {
    width: 100%;
    max-width: 288px;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.product-card-price {
    width: 100%;
    display: flex;
    gap: 22px;
    align-items: center;
}

.product-card-price h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gray);
    padding-block: 0;
}

.product-card-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--secondary-gray);
    text-decoration: line-through;
}

.product-card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card-info p, .product-card-order p:first-child {
    color: var(--secondary-gray);
    font-size: 0.875rem;
    font-weight: 400;
}

.product-amount {
    color: var(--primary-gray) !important;
}

.product-card-order {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
}

.product-card-order-amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 120px;
    height: 40px;
    border: 0.5px solid #B3B3B3;
    border-radius: 8px;
    padding-inline: 12px;
}

.product-card-order-amount-minus, .product-card-order-amount-plus {
    display: grid;
    place-items: center;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    color: #8E9192;
}




.product-precout-product{
    line-height: 1.4;
    font-family: "onest";
    font-size: 16px;
    font-weight: 400;
    border: none;
    width: 50px;
    text-align: center;
}

.pi-footer-wrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
}

.pi-footer-wrap .product-button{
    padding: 0 10px;
    height: auto;
    width: 42px;
}

.pi-footer-wrap .product-card-order-amount{   
    flex: auto;
}

.product-card-heart-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.card-button {
    width: 100% !important;
}

.product-card-heart {
    position: absolute;
    top: 30px;
    left: 30px;
}

.product-card-description {
    width: 845px;
    padding: 60px 0 35px 0;
}

.card-description-categories {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-description-category {
    width: 160px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--secondary-blue);
    cursor: pointer;
    color: var(--secondary-gray);
}

.active-description-category {
    color: var(--primary-gray);
    border-bottom: 1px solid var(--accent-color);
}

.card-description-text {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--black);
    line-height: 150%;
    margin-top: 24px;
    display: none;
}

.card-description-text.active-card-description-text{
    display:block;
}

.product-card-like-list {
    width: 100%;
    max-width: 1138px;
    padding-inline: 10px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card-like-list > div {
    width: 210px;
}

.blue-button{
    background-color: var(--accent-color);
    color: var(--white);
    justify-content: center;
    font-size: 0.875rem;
    border-radius: 4px;
    padding: 7px 15px;
}

a.blue-button:hover{
    color: white;
    text-decoration: none;
}

@media (max-width: 1210px) {
    .product-card-like-list .product-item:nth-child(5) {
        display: none;
    }
}

@media (max-width: 1150px) {
    .main-content-product-card {
        max-width: unset !important;
    }

    .product-card-wrapper {
        padding-inline: 20px;
    }

    .product-card {
        background: none;
        align-items: flex-start;
        padding-inline: 0;
    }

    .img-wrapper {
        border-radius: 8px;
        border: 1px solid #E5E5E5;
    }

    .product-card-right {
        border-radius: 8px;
        border: 1px solid #E5E5E5;
        padding: 30px 20px 20px 20px;
        height: 350px;
        max-width: 312px;
    }

    .product-card-heart-wrapper {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-top: 24px;
    }
    
    .card-button {
        width: 100% !important;
        max-width: 228px;
    }

    .product-card-heart {
        flex-shrink: 0;
        position: static;
        top: 0;
        left: 0;
    }
}

@media (max-width: 950px) {
    .product-card {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 20px;
    }

    .product-card-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .img-wrapper img {
        width: 220px;
        height: 255px;
    }

    .product-card-title {
        font-size: 1.2rem;
        font-weight: 600;
        padding-top: 38px;
        width: 525px;
    }

    .product-card-left {
        gap: 15px;
    }

    .product-card-right {
        max-width: 425px;
    }

    .product-card-description {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: auto;
    }

    .card-description-text {
        align-self: flex-start;
    }

    .product-card-like-list {
        padding-inline: 0;
        width: 670px;
    }

    .product-card-like-list .product-item:nth-child(4) {
        display: none;
    }
}

@media (max-width: 700px) {
    .product-card-description {
        display: none;
    }
}

@media (max-width: 680px) {
    .product-card-like-list .product-item:nth-child(3) {
        display: none;
    }

    .product-card-like-list {
        width: auto;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .img-wrapper {
        width: 320px;
        height: 230px;
    }

    .img-wrapper img {
        width: 130px;
        height: 155px;
    }

    .product-slider-nav {
        display: none;
    }

    .product-card-left {
        gap: 5px;
    }

    .product-slider-item {
        width: 60px;
        height: 64px;
    }

    .product-card-title {
        width: 320px;
    }

    .product-card-right {
        width: 320px;
    }

    .product-slider-item img {
        width: 70%;
        height: 70%;
    }

    .product-card-like h2 {
        font-size: 1rem;
    }

    .product-card-like-list {
        width: 320px;
    }

    .product-card-like-list > div {
        width: 156px;
    }

    .product-img {
        width: 136px;
        height: 134px;
    }

    .product-card-like-list .product-name, 
    .product-card-like-list .product-price {
        font-size: 0.875rem;
    }

    .product-card-like-list .product-colvo
    .product-card-like-list .product-sklad-colvo {
        font-size: 0.75rem;
    }

    .product-card-like-list .product-button {
        max-width: 100%;
    }
}

/* Новости */

.news-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    gap: 20px;
}

.news-grid a {
    text-decoration: none;
}

.news-item-card {
    width: 22.5em;
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--outline-gray);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item-img {
    width: 100%;
    max-width: 320px;
    height: 140px;
    border-radius: 8px;
}

.news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-card h1 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-text);
}

.news-item-card p {
    font-size: 0.875rem;
    color: var(--secondary-text);
  overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.news-item-date {
    font-size: 1rem;
    color: var(--secondary-text);
}

@media (max-width: 1070px) {
    .news-grid {
        gap: 15px;
    }

    .news-item-card {
  width: 100%;
    }
}

@media (max-width: 768px) {  
    .news-item-card h1 {
        font-size: 0.875rem;
    }

    .news-item-card p {
        font-size: 0.75rem;
    }

    .news-item-date {
        font-size: 0.875rem;
    }
}


@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 450px) {
    .news-grid {
        gap: 5px;
    }

    .news-item-card {
        width: 90%;
    }

    .news-item-card h1 {
        font-size: 0.875rem;
        word-wrap: break-word;
    }

    .news-item-card p {
        font-size: 0.75rem;
    }

    .news-item-date {
        font-size: 0.75rem;
    }
}

/* О нас */

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.about-content-company {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 100px;
}

.about-us-read-more-company {
    display: none;
}

.about-content-company-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-content-company-text p {
    font-size: 0.875rem;
    color: var(--black);
    text-align: start;
}

.about-content-company-logo {
    width: 456px;
    height: 387px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}  

.about-content-company-logo img {
    width: 100%;
  height: 100%;
    border-radius: 10px;
}

.about-content-connect {
    width: 100%;
    height: 160px;
    background: linear-gradient(to right, #0090C6, #006197);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    border-radius: 10px;
    padding-inline: 30px;
}

.about-content-connect h1 {
    width: 50%;
    color: var(--white);
    font-size: 2rem;
    text-wrap: nowrap;
}

.about-content-connect p {
    color: var(--white);
    font-size: 0.875rem;
    text-wrap: nowrap;
}

.about-content-connect a {
    text-decoration: none;
    color: var(--white);
}

@media (max-width: 1210px) {
    .about-content-connect p {
        text-wrap: wrap;
    }
}

@media (max-width: 1070px) {
    .about-us-advantages-company {
        display: none;
    }
    .about-content-company-logo {
        width: 370px;
        height: 358px;
    }
    .about-content-company {
        gap: 20px;
    }
}

@media (max-width: 950px) {
    .about-content-company {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }
    .about-content-company-logo {
        width: 320px;
        height: 189px;
    }
    .about-content-company-logo img {
        object-fit: cover;
    }

    .about-us-read-more-company {
        display: flex;
    }

    .about-content-connect h1 {
        width: 60%;
        text-wrap: wrap;
    }
    
}

@media (max-width: 601px) {
    .about-us-advantages-company {
        display: flex;
    }
    .about-content-connect {
        height: 178px;
        flex-direction: column;
        align-items: start;
        gap: 15px;
    }

    .about-content-connect h1 {
        font-size: 1.5rem;
        width: 90%;
    }

    .about-content-connect p {
        font-size: 0.75rem;
    }
}

/* Контакты */

.contacts-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.contacts-content-address {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    gap: 30px;
}

.contacts-content-address-img {
    width: 358px;
    height: 221px;
    border-radius: 10px;
}

.contacts-content-address-item {
    width: 100%;
    background-color: var(--white);
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.address-item-numbers {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.address-item-numbers a {
    text-decoration: none;
    color: var(--primary-gray);
    font-size: 1rem;
}

.address-item-numbers p {
    font-size: 1rem;
    color: var(--secondary-gray);
}

.address-item-email {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.address-item-email p {
    font-size: 0.875rem;
    color: var(--primary-gray);
    text-wrap: nowrap;
}

.address-item-email a {
    text-decoration: none;
    color: var(--primary-gray);
    font-size: 0.875rem;
}

.address-item-address {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.address-item-address-gap {
    display: flex;
    align-items: center;
    gap: 3px;
}

.address-item-address-gap p {
    font-size: 0.875rem;
    color: var(--primary-gray);
}

.address-item-icon {
    width: 16px;
    height: 16px;
}

.contacts-content-map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.contacts-content-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: none;
}

.contacts-content-form {
    width: 100%;
    background-color: var(--white);
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}

.contacts-content-form-title {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contacts-content-form-title h1 {
    font-size: 1.5rem;
    color: var(--primary-text);
}

.contacts-content-form-title p {
    font-size: 1rem;
    color: var(--secondary-text);
}

.contacts-content-form form {
    display: flex;
    gap: 25px;
    justify-content: space-between;
}

.contacts-content-form-data {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacts-content-form-data-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0; /* see note above */
}

.contacts-content-form-data-item label {
    font-size: 0.875rem;
    color: var(--primary-text);
}

.contacts-content-form-data-item input {
    width: 100%;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0 10px;
    outline: none;
    font-size: 0.875rem;
    color: var(--primary-gray);
}

.contacts-content-form-gal {
    position: absolute;
    top: 35px;
    right: 30px;
}

.capcha-mobile {
    display: none;
}

.contacts-content-form-message {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacts-content-form-message textarea {
    width: 100%;
    height: 123px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    outline: none;
    font-size: 0.875rem;
    color: var(--primary-gray);
    font-family: "onest";
}

.contacts-content-form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contacts-content-form-checkbox input {
    width: 18px;
    height: 18px;
    border: 1px solid var(--secondary-gray);
}

.contacts-content-form-checkbox a {
    font-size: 0.875rem;
    color: var(--secondary-text);
    text-decoration: none;
}

.contacts-content-form-button button {
    width: 180px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

@media (max-width: 900px) {
    .contacts-content-address {
        flex-direction: column;
    }
    .contacts-content-map {
        height: 300px;
    }
    .contacts-content-form form {
        flex-direction: column;
    }
    .contacts-content-form-data {
        width: 100%;
    }
    .contacts-content-form-message {
        width: 100%;
    }
    .capcha-mobile {
        display: block;
    }
    .capcha-desktop {
        display: none;
    }
    .contacts-content-form {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .contacts-content-address-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .address-item-address {
        width: 100%;
    }
    .contacts-content-map {
        height: 360px;
    }
    .contacts-content-form-button button {
        width: 100%;
    }
    .contacts-content-address-img {
        width: 100%;
        height: 200px;
    }
    .address-item-email {
        flex-wrap: wrap;
    }
    
    .address-item-numbers {
        width: 100%;
    }
}



/* Доставка */

.delivery-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.delivery-content-wrapper {
    width: 100%;
    display: flex;
    align-items: start;
    gap: 80px;
}

.delivery-content-wrapper-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: start;
}

.delivery-content-wrapper-text p {
    font-size: 0.875rem;
    color: var(--black);
}

.delivery-content-wrapper-img {
    width: 50%;
    border-radius: 8px;
}

.delivery-content-wrapper-img img {
    width: 100%;
    height: 100%;
}

.delivery-content-terms {
    background-image: url("/img/back-terms.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    min-height: 300px;
    border-radius: 10px;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.delivery-content-terms-left {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery-content-terms-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.delivery-content-terms-title h3 {
    font-size: 1.125rem;
    color: #151515;
    font-weight: 600;
}

.delivery-content-terms-title p {
    font-size: 0.875rem;
    color: var(--primary-gray);
}

.delivery-content-terms-list {
    display: flex;
    flex-direction: column;
}

.delivery-content-terms-list li {
    font-size: 0.875rem;
    color: var(--primary-gray);
}

.delivery-content-terms-right {
    width: 30%;
}

.delivery-content-methods {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery-content-methods-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.delivery-content-methods-info img {
    width: 25px;
    height: 25px;
}

.delivery-content-methods-info p {
    font-size: 0.875rem;
    color: var(--primary-gray);
}

.delivery-content-list {
    width: 100%;
    display: flex;
    gap: 10px;
}

.delivery-content-list-item {
    width: 100%;
    height: 180px;
    background-color: var(--white);
    border: 1px solid var(--secondary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
}

.delivery-content-list-item-img {
    width: 72px;
    height: 72px;
}

.delivery-content-list-item-img-payment {
    width: 92px;
    height: 92px;
}

.delivery-content-list-item-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.delivery-content-list-item-text h3 {
    font-size: 1.125rem;
    color: #151515;
    font-weight: 600;
}

.delivery-content-list-item-text p {
    font-size: 0.875rem;
    color: var(--primary-gray);
}

.delivery-content-map {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery-content-map-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--white);
    border: 1px solid var(--secondary-blue);
    border-radius: 8px;
    padding: 30px;
}

.delivery-content-map-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-content-map-img img {
    width: 100%;
}

.delivery-content-map-text {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.delivery-content-map-text p {
    font-size: 0.875rem;
    color: var(--black);
}

.delivery-content-important {
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--secondary-blue);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.delivery-content-payment {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery-content-important img {
    width: 25px;
    height: 25px;
}

.delivery-content-important-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.delivery-content-important-text p {
    font-size: 0.875rem;
    color: var(--primary-gray);
}

.product-card .swiper-wrapper .swiper-slide{
    position:relative;
}

.product-card .swiper-wrapper .swiper-slide img{
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    margin:auto;
}

.product-card .img-wrapper{
    overflow: hidden;
}

@media (max-width: 1070px) {
    .delivery-content-wrapper {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .delivery-content-wrapper-text {
        width: 60%;
    }

    .delivery-content-wrapper-img {
        width: 60%;
    }

    .delivery-content-terms {
        background-image: url("/img/back-terms-adapt.png");
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .delivery-content-terms-left {
        width: 35%;
        align-items: center;
        justify-content: center;
    }

    .delivery-content-terms-right {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .delivery-content-terms-title h3 {
        text-align: center;
    }

    .delivery-content-terms-title p {
        text-align: center;
    }
    .delivery-content-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .delivery-content-list-item {
        height: 180px;
        width: 45%;
    }
    .delivery-content-map-item {
        width: 80%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .delivery-content-list-item {
        width: 80%;
    }
    .delivery-content-wrapper-text {
        width: 80%;
    }
    .delivery-content-wrapper-img {
        width: 80%;
    }
}

@media (max-width: 600px) {
    .delivery-content-terms-left {
        width: 60%;
    }
}

@media (max-width: 450px) {
    .delivery-content-terms-left {
        width: 70%;
    }
    .delivery-content-list-item {
        width: 100%;
    }
    .delivery-content-map-item {
        width: 100%;
    }
    .delivery-content-terms-title h3 {
        font-size: 1rem;
    }
    .delivery-content-terms-title p {
        font-size: 0.75rem;
    }
    .delivery-content-terms-list {
        text-align: center;
    }
    .delivery-content-terms-list li {
        list-style-type: none;
        font-size: 0.75rem;
    }
    .delivery-content-important-text p {
        font-size: 0.75rem;
    }
}

@media (max-width: 390px) {
    .delivery-content-terms {
        gap: 10px;
        height: 100%;
        padding: 30px;
    }
    .delivery-content-terms-left {
        width: 90%;
    }
    .delivery-content-terms-right {
        width: 50%;
    }
    .delivery-content-terms-img img {
        width: 100%;
    }
}


/* гарантия */

.guarantee-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.guarantee-content-wrapper {
    width: 100%;
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
}

.guarantee-content-wrapper-up {
    display: flex;
    flex-direction: row;
}

.guarantee-content-wrapper-text-up {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.guarantee-content-wrapper-img {
    width: 220px;
    height: 220px;
}

.guarantee-content-wrapper-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    width: 80%;
}

.guarantee-content-wrapper-text p, .guarantee-content-wrapper-text-up p  {
    font-size: 0.875rem;
    color: var(--primary-gray);
}

.guarantee-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-title img {
    width: 42px;
    height: 42px;
}

.guarantee-title p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
}

.tabs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tabs-header {
    display: flex;
    gap: 15px;
    width: 100%;
}

.tabs input[type="radio"] { 
    display: none; 
}

.tab-title {
    font-size: 0.875rem;
    color: var(--black);
    padding: 15px;
    cursor: pointer;
    display: block;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    border: 1px solid var(--outline-gray);
    background: var(--bg);
}

.tab-content {
    font-size: 0.875rem;
    color: var(--primary-gray);
    padding: 20px;
    border: 1px solid var(--secondary-blue);
    background: var(--white);
    display: none;
    margin-top: -1px;
}

.tab-content ol {
    padding-left: 20px;
}

.tab-content li {
    margin-bottom: 20px;
}

#tab1:checked ~ #tab1-content,
#tab2:checked ~ #tab2-content,
#tab3:checked ~ #tab3-content {
    display: block;
}

#tab1:checked ~ .tabs-header .tab:nth-child(1) .tab-title,
#tab2:checked ~ .tabs-header .tab:nth-child(2) .tab-title,
#tab3:checked ~ .tabs-header .tab:nth-child(3) .tab-title {
    background: var(--white);
    border: 1px solid var(--secondary-blue);
    border-bottom-color: var(--white);
    position: relative;
    z-index: 1;
}

.guarantee-content-return {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto;
}

.guarantee-content-top {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.guarantee-content-top p {
    font-size: 0.875rem;
    color: var(--black);
}

.guarantee-content-item {
    width: 100%;
    background-color: var(--white);
    padding: 15px 20px;
    display: flex;
    gap: 30px;
    align-items: start;
    border-radius: 12px;
    border: 1px solid var(--secondary-blue);
}

.guarantee-content-down {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
}

.guarantee-content-down h1 {
    font-size: 1rem;
    color: var(--black);
}

.guarantee-content-down p {
    font-size: 0.875rem;
    color: var(--black);
}

@media (max-width: 1070px) {
    .delivery-content-terms-guarantee {
        background-image: url(img/back-terms-adapt.png);
        flex-direction: column;
        gap: 30px;
        padding: 20px;
        width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .guarantee-content-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 650px) {
    .delivery-content-terms-guarantee {
        width: 100%;
    }
    .tab-title {
        height: 80px;
    }
    .guarantee-content-wrapper-img {
        width: 180px;
        height: 180px;
    }
    .guarantee-content-wrapper-img img {
        height: 100%;
    }
}
@media (max-width: 550px) {
    body {
        font-size: 14px;
    }
    .guarantee-content-wrapper-text p, .guarantee-content-wrapper-text-up p, .guarantee-content-top p, .guarantee-content-down p, .contacts-content-form-title p  {
        font-size: 0.75rem;
    }
    .delivery-content-terms-guarantee {
        width: 90%;
    }
    .tabs-header {
        gap: 5px;
    }
    .tab-title {
        font-size: 0.625rem;
    }
    .tab-content {
        font-size: 0.75rem;
    }
}

@media (max-width: 390px) {
    .guarantee-content-wrapper-img {
        width: 100px;
        height: 100px;
    }
    .delivery-content-terms-guarantee {
        width: 80%;
    }
    .guarantee-content-item {
        padding: 10px;
    }
}

@media (max-width: 600px) {
    
    .products-nav-down {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .products-nav-down .for-whom-cart.pn-item {
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
        flex: 1;
    }
}

.mobile-menu.open .mobile-menu-close-wrap{
    position: fixed;
}

input#call-form-agreement{
    margin: 0 10px 80px 0;
}

#login-popup .sign-page-item .ra-label{
    margin-left: 40px;
}