@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --blue: #0083DE;
    --light-blue: #37A6F2;
    --lighter-blue: #95DDF9;
    --blue-dark: #0077b6;
    --blue-gray: #46667C;
    --dark-blue: #012F41;
    --yellow: #FFE100;
    --green: #2BB826;
    --red: #DD0000;
    --gray-bg: #f5f5f5;
    --text: #222;
    --text-light: #666;
    --border: #D8DAE2;
    --white: #fff;
    --light-gray: #CBDAE0;
    --transparent-green: #3BC37830;
    --sky-blue: #F9FCFD;
    --orange: #E74A28;
    --light-orange: #F7C3B5;
    --lightest-orange: #F9EEEC;
    --dark-red: #9A0000;
    --light-black: #4A4A4A;
    --gray: #939393;
    --dark-gray: #747474;
    --bright: #DBDBDB;
    --blue-gradient: linear-gradient(90deg, #0083DE 0%, #37A6F2 100%);
}

html, body, #app {
    height: 100%;
    font-family: Manrope, sans-serif;
    color: black;
    background: #f7f7f7;
}

a:hover {
    text-decoration: none;
}

main {
    background: #f7f7f7;
    padding-bottom: 40px;
    min-height: 600px;
}

label {
    outline: none !important;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
}

button:focus {
    outline: none !important;
}

.relative {
    position: relative;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    font-size: unset;
}

.h2, h2 {
    font-size: 20px;
}

.flex {
    display: flex;
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: end;
}

.items-center {
    align-items: normal;
}

.align-top {
    align-items: start;
}

.items-center {
    align-items: normal;
}

.blue-bg {
    background-color: var(--blue) !important;
}

.yellow-bg {
    background-color: var(--yellow) !important;
}

.grey-bg {
    background-color: var(--light-gray) !important;
}

.light-grey-bg {
    background-color: #e9ecef !important;
}

.light-blue-bg {
    background-color: var(--light-blue) !important;
}

.lighter-blue-bg {
    background-color: var(--lighter-blue) !important;
}

.green-bg {
    background-color: var(--green) !important;
}

.green-bg {
    background-color: var(--green) !important;
}

.text-blue {
    color: var(--blue) !important;
}

.text-black {
    color: black !important;
}

.text-light-black {
    color: var(--light-black)
}

.text-green {
    color: var(--green) !important;
}

.white-bg {
    background: white;
}

.line-through {
    text-decoration: line-through;
}

.back-btn {
    width: 120px;
    display: block;
    position: absolute;
    bottom: 30px;
}

.modal {
    z-index: 9999;
}

.modal .modal-content-form {
    padding: 5px;
    width: 100%;
    background: white;
}

.modal .modal-body {
    background-color: var(--blue-gray);
    margin: 0;
}

.modal-title {
    font-size: 20px;
    font-weight: bold;
    padding: 15px 0;
}

.small-dialog {
    width: 325px !important;
}

label.required:after {
    color: red;
    content: " *";
}

.form-group {
    color: white
}

.small-control {
    width: 100px;
    margin: 0 10px;
}

.modal button.close {
    opacity: 1;
    font-size: 30px;
    line-height: 19px;
    cursor: pointer;
    text-align: right;
    border: none;
    outline: none;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 20000;
}

.form-wrap-respons {
    text-align: center;
    font-size: 20px;
    padding: 40px;
    display: none;
}

.form-check-label {
    outline: none;
}

/* End */
.modal-dialog {
    width: 420px;
    max-width: 90%;
    margin: 30px auto;
}

.callBack {
    color: var(--light-blue);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.fc-item .callBack {
    color: #FFFFFFB2;

}

/*
@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}
*/
.full-w {
    width: 100%;
}

.ft-32 {
    font-size: 32px;
}

.ft-24 {
    font-size: 24px;
}

.ft-22 {
    font-size: 22px;
}

.ft-20 {
    font-size: 20px;
}

.ft-18 {
    font-size: 18px;
}

.ft-16 {
    font-size: 16px;
}

.ft-14 {
    font-size: 14px;
}

.ft-13 {
    font-size: 13px;
}

.ft-12 {
    font-size: 12px !important;
}

.ft-bold {
    font-weight: bold;
}

.mr-1 {
    margin-right: 10px;
}

.mr-2 {
    margin-right: 20px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-5 {
    margin-top: 50px;
}

.m-0 {
    margin: 0;
}

.b-t-1 {
    border-top: 1px solid;
}

.align-top {
    align-items: start;
}

.breadcrumb {
    border-top: 4px solid var(--blue);
}

.col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 40%;
    max-width: 40%;
}

.col-xl-5 {
    -ms-flex: 0 0 50%;
    flex: 0 0 30%;
    max-width: 30%;
}

.btn {
    padding: 10px 15px;
    font-weight: 600 !important;
    color: white;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.btn.white-bg:hover, .calc-button.active {
    background-color: var(--green) !important;
    color: white !important;
    border: 1px solid var(--green) !important;
}

.btn.green-bg:hover {
    background-color: white !important;
    border: 1px solid var(--green) !important;
    color: var(--green) !important;
}

.btn.blue-bg:hover {
    background-color: white !important;
    border: 1px solid var(--blue) !important;
    color: var(--blue) !important;
}

.about-us {
    background: url(../images/main/blue-bg.png) no-repeat top right;
    background-size: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===== TOP BAR ===== */
.topbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 6px 0;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-logo {
    display: inline-block;
    width: 300px;
}

.topbar-logo img {
    width: 100%;
}

.topbar-contacts {
    display: flex;
    align-items: center;
    gap: 50px;
    flex: 1;
    justify-content: flex-end;
    margin-right: 5%;
}

.topbar-contact-item {
    font-size: 16px;
}

.topbar-contact-item i {
    color: var(--blue);
    font-size: 14px;
}

.topbar-contact-item.phone a {
    color: var(--text);
    font-family: Manrope;
    font-weight: 700;
    font-style: bold;
    font-size: 16px;

}


.topbar-contact-item .sub {
    font-size: 10px;
    color: var(--green);
    display: block;
}

.topbar-work {
    font-family: Manrope;
    font-weight: 400;
    font-size: 14px;
}

.topbar-work span {
    display: inline-block;
    vertical-align: middle;
}

.working-time {
    color: #939393;
}

.contact-icon {
    width: 26px;
    height: 26px;
    display: inline-block;
    vertical-align: middle;

}

.contact-icon.contact-icon-phone {
    background: url(../images/icons/top-phone.svg) no-repeat;
    background-size: 100%;
    width: 20px;
    height: 22px;
    margin-right: 6px;
}

.contact-icon.contact-icon-tel {
    background: url(../images/icons/top-telegram.svg) no-repeat;
    background-size: 85%;
}

.contact-icon.contact-icon-email {
    background: url(../images/icons/email-icon-top.svg) no-repeat;
    background-size: 90%;
}

.contact-icon.contact-icon-time {
    background: url(../images/icons/top-times.svg) no-repeat;
    background-size: 100%;
    margin-right: 10px;
}

.topbar-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.topbar-icon-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    color: var(--text-light);
    font-size: 12px;
}

.topbar-icon-btn .top-fav-icon {
    font-size: 18px;
    color: var(--text);
    width: 25px;
    height: 25px;
    margin: 0 auto;
}

.topbar-icon-btn .badge {
    position: absolute;
    top: -4px;
    right: 0;
    background: var(--lighter-blue);
    color: #000;
    border-radius: 50%;
    width: 21px;
    height: 21px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.balance-scale {
    background: url(../images/icons/scale.svg) no-repeat;
    background-size: 100%;
}

.fav-heart {
    background: url(../images/icons/fav_heart.svg) no-repeat;
    background-size: 100%;
}

.top-shopping-cart {
    background: url(../images/icons/shopping-cart.svg) no-repeat;
    background-size: 100%;

}

ul.top-menu-list {
    margin: 0;
    padding: 0;
}

/* ===== NAV ===== */
.navbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 !important;
}

.navbar .container {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.nav-main ul li {
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    transition: color .2s;
    -webkit-transition: color .2s;
    -moz-transition: color .2s;
    -ms-transition: color .2s;
    -o-transition: color .2s;
    min-width: 121px;
    text-align: center;
    text-transform: uppercase;
}

.nav-main ul li.active, .nav-main ul li:hover {
    background: linear-gradient(90deg, rgba(0, 131, 222, 0.22) 0%, rgba(55, 166, 242, 0.22) 100%);
    box-shadow: 0 4px 4px 0 #00000040;
    display: block;
    width: 100%;
    padding: 2px;
    border-radius: 100px;
    text-align: center;
}

.nav-main ul li.active a, .nav-main ul li:hover a {
    display: block;
    width: 100%;
    height: 100%;
    color: white;
    background: var(--blue-gradient);
    border-radius: 100px;
    padding: 8px 0;
    text-decoration: none;
}

.nav-ctas {
    display: flex;
    gap: 8px;
    padding: 8px 0;
}

.btn {
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-blue {
    background: var(--blue-gradient);
    color: #fff;
}

.btn:hover {
    box-shadow: 0px 4px 4px 0px #00000040;
    outline: none
}

.btn-yellow {
    background: var(--yellow);
    color: #333;
}

.btn-green {
    background: var(--green);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
}

.home-category-area {
    display: none;
    position: absolute;
    background: white;
    width: 100%;
    height: 140px;
    left: 0;
    bottom: 100%;
    z-index: 200;
}

.home-category-area-list {
    display: flex;
    border: 1px solid #D8DAE2;
    box-shadow: 0 1px 4px 0 #00000045;
    padding: 15px 20px;
    border-radius: 8px;
    grid-auto-flow: row;
    justify-items: stretch;
    align-items: center;
    justify-content: stretch;
    flex-wrap: wrap;
    gap: 10px;
    background: white;
}

.home-category-area-list-item {
    border: 1px solid #C3C3C3;
    opacity: 1;
    padding: 2px 0;
    border-radius: 4px;
    text-align: center;
    width: 30%;
    cursor: pointer;
}

.home-category-area-list-item span {
    font-family: Manrope;
    font-weight: 600;
    font-size: 13px;
    line-height: 100%
}

.category-card-item {
    cursor: pointer;
}

.home-category-area-list-item:hover, .home-category-area-list-item:hover a {
    background: var(--dark-blue);
    color: white
}

.brands-top-filter {
    gap: 35px;
    font-family: Manrope;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    flex-wrap: wrap;
}

.brands-top-filter span {
    cursor: pointer;
}

.brands-top-filter span:hover {
    text-decoration: underline;
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    background: linear-gradient(120deg, #1a3a5c 0%, #0077b6 60%, #00b4d8 100%);
    min-height: 320px;
    overflow: hidden;
}


.hero-content {
    flex: 1;
    padding-right: 40px;
    z-index: 2;
    position: relative;
}

.hero-promo-label {
    background: var(--yellow);
    color: #333;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
    margin-bottom: 18px;
}

.hero-title span {
    color: var(--yellow);
}

.hero-btn {
    background: var(--yellow);
    color: #333;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    display: inline-block;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.hero-btn:hover {
    background: #f5c800;
    transform: translateY(-1px);
}

.hero-image {
    flex: 0 0 55%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
}

.hero-image-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.hero-controls {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
}

.hero-dot.active {
    background: #fff;
}

.hero-arrows {
    position: absolute;
    bottom: 12px;
    left: 16px;
    display: flex;
    gap: 6px;
}

.hero-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, .4);
}

.hero-price-cards {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
}

.hero-price-card {
    background: rgba(255, 255, 255, .95);
    border-radius: 6px;
    padding: 8px 12px;
    text-align: center;
    min-width: 80px;
}

.hero-price-card .price {
    font-weight: 700;
    font-size: 14px;
    color: var(--blue);
}

.hero-price-card .label {
    font-size: 10px;
    color: var(--text-light);
}

/* ===== CATEGORY STRIP ===== */


.category-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 35px auto 30px;
}

/* ===== SECTION HEADER ===== */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.category-card {
    background: #fff;
    border: 1px solid #d9dee4;
    min-height: 92px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    font-family: Manrope;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.category-card:hover {
    background: var(--yellow);
    text-decoration: none;
    color: black
}

.category-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #ecf2f6;
    flex-shrink: 0;
}

.section-badge {
    background: var(--green);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    text-transform: uppercase;
    width: 185px;
    height: 60px;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-badge.red {
    background: var(--red);
    width: 106px;
    height: 60px;
}

.section-badge.yellow {
    background: var(--yellow);
    color: #333;
    width: 118px;
    height: 60px;
}

.section-badge span {
    display: block;
    transform: rotate(-6deg);
    font-family: Inter;
    font-weight: 900;
    font-style: Italic;
    font-size: 20px;

}

.brand-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
}

.brand-tab {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.brand-tab:hover, .brand-tab.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

/* ===== PRODUCT CARDS ===== */

#prod-catalog-list {
    margin: 20px 0 40px;
}

#prod-catalog-list .product-element, #prod-favotires-list .product-element, .product-list-block .product-element {
    flex: 1 1 250px; /* 👈 key */
    max-width: 25%; /* limit on large screens */
    box-sizing: border-box;
}

#prod-catalog-list .product-element {
    flex: 0 0 calc(33.333%);
    box-sizing: border-box;
    max-width: 33.333%;
}

.product-item {
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid #fff;
    padding: 0;
    padding-bottom: 20px;
    margin: 0 10px 20px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.product-list-block .product-element:nth-child(1) .product-item {
    margin-left: 0;
}

.product-list-block #prod-options {
    display: none;
    transition: 0.25s;
}

.product-item:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.product-item:hover #prod-options {
    display: block;
}

.product-image, .product-image a {
    min-height: 260px;
}

.product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-image img {
    width: 100%;
}

.product-info {
    padding: 20px 20px 0;
    min-height: 150px;
}

.prod-option-item {
    min-width: 60px;
    height: 50px;
    padding: 5px;
    margin-right: 10px;
    background: white;
    border: 2px solid var(--blue);
    cursor: pointer;
    line-height: 36px;
}

.prod-option-item:hover, .prod-option-item.selected {
    background: var(--blue);
    color: white;
}

#prod-catalog-list .prod-option-item, .product-list-block .prod-option-item {
    min-width: 50px;
    height: 35px;
    padding: 5px;
    margin-right: 5px;
    line-height: 20px;
}

.after_title {
    color: var(--blue-dark);
}

.tab-item {
    padding: 15px;
    cursor: pointer;
}

.tab-item.active, .tab-item:hover {
    border-bottom: 2px solid var(--blue);
    background: var(--light-gray);
}

.tab-item-desc {
    display: none;
}

.tab-item-desc.active {
    display: block;
}

.new-product-badge {
    width: 105px;
    height: 55px;
    background: url(../images/icons/new.svg) no-repeat center center;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 20;
}

.sale-product-badge {
    width: 70px;
    height: 30px;
    background: #DD0000;
    font-family: Manrope;
    font-weight: 600;
    font-size: 14px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    position: absolute;
    left: 12px;
    top: 12px;

}

.sale-product-badge:before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../images/icons/sale.svg) no-repeat center center;
}

.inverter-product-badge {
    width: 110px;
    height: 30px;
    background: url(../images/icons/inverter.svg) no-repeat center center;
    position: absolute;
    left: 12px;
    top: 12px;
}

.prod-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 80px;
    position: absolute;
    right: 12px;
    top: 12px;
}

.prod-compare, .prod-favorite {
    width: 35px;
    height: 35px;
    padding: 5px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -o-border-radius: 100%;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    outline: none;
    border: none;
}

/*.prod-compare:hover, .prod-favorite:hover {*/
/*    border: 2px solid var(--green);*/
/*}*/

.prod-compare {
    background: #FFFFFF url(../images/icons/scale.svg) no-repeat center center;
    background-size: 68%;
}

.prod-compare.active, .prod-action-data.active .balance-scale {
    background: #FFFFFF url(../images/icons/scale_active.svg) no-repeat center center;
    background-size: 100%;
}

.prod-favorite.active, .prod-action-data.active .fav-heart {
    background: #FFFFFF url(../images/icons/fav_heart_active.svg) no-repeat center center;
    background-size: 100%;
}

.prod-compare.active, .prod-favorite.active {
    background-size: 68%;
}
.balance-scale{
    background-size: 98%;
}
.prod-action-data.active, .prod-action-data.active {
    color: var(--green)
}

.prod-favorite {
    background: #FFFFFF url(../images/icons/fav_heart.svg) no-repeat center center;
    background-size: 68%;
}

.prod-compare.no-bg, .prod-favorite.no-bg {
    background: none !important;
    width: auto;
}

.prod-compare.no-bg:hover, .prod-favorite.no-bg:hover {
    border: none !important;
    color: var(--green)
}

.prod-title {
    font-size: 16px;
    height: 25px;
    overflow: hidden;
}

.prod-price {
    font-size: 20px;
    color: #212121;
    margin-bottom: 20px;
    font-weight: 600;
}

.prod-desc {
    font-weight: 400;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #6D6D6D;

}

.prod-add-card {
    padding: 0 10px;
}

.quantity-box {
    position: relative;
    display: flex;
    align-items: center;
}

.compare-top-block {
    height: 200px;
}

.compare-top-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.compare-item {
    padding: 20px 12px;
    width: auto;
    height: auto;
    -ms-flex: 1;
    flex: 1;
    border-right: 1px solid #EDEFF5;
    min-width: 20%;
    max-width: 50rem;
    background: white;
}

.compare-info-block {
    margin-bottom: 20px;
    border-bottom: 1px dashed #BDC2D3;
    padding: 0 0 15px;
}

.compare-info-title {
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    color: #BDC2D3;
    margin: 0 0 1rem;
}

.add-to-card.absolute {
    position: absolute;
    bottom: -5px;
    width: 150px;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-compare-image {
    width: 100px;
    height: 70px;
    margin-bottom: 20px;
}

.product-compare-image a {
    display: block;
    width: 100%;
    height: 100%
}

.qty-btn {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--dark-blue);
    cursor: pointer;
    padding: 0;
    user-select: none;
    outline: none;
}

.qty-btn.minus {
    position: absolute;
    font-size: 23px;
    left: 10%;
    cursor: pointer;
}

.qty-btn.plus {
    position: absolute;
    font-size: 23px;
    left:68px;
    cursor: pointer;
}

.prod-qty-input {
    border: 1px solid #D5D5D5;
    width: 95px;
    height: 45px;
    text-align: center;
    border-radius: 100px;
    padding-left: 15%;
}

.add-to-card {
    width: 100%;
    border: 1px solid #D5D5D5;
    background: #FFFFFF;
    border-radius: 100px;
    padding: 7px 52px;
    min-width: 140px;
}

.add-to-card.prod-added {
    background: #2BB826;
    font-family: Manrope;
    font-weight: 600;
    font-size: 14px;
    padding: 7px;
    white-space: normal;
    line-height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 5px;
    color: white !important;
}

.add-to-card.prod-added:before {
    background: url(../images/icons/check.svg) no-repeat right center;
    padding-left: 0;
}

.add-to-card:before {
    content: "";
    width: 23px;
    height: 23px;
    background: url(../images/icons/shopping-cart.svg) no-repeat;
    display: inline-block;
    vertical-align: middle;
}

.badge-recommendation, .badge-new, .badge-discount {
    border-radius: 8px;
    font-family: Inter;
    font-weight: 900;
    font-style: italic;
    font-size: 20px;
    color: white;
    padding: 2px 6px;
}

.badge-discount {
    background: var(--red);
    width: 110px;
    height: 53px;
}

.badge-new {
    background: var(--yellow);
    color: #000;
}

.badge-recommendation {
    background: var(--green);
    width: 160px;
    height: 24px;
    opacity: 1;
}

.badge-recommendation span, .badge-new span, .badge-discount span {
    transform: rotate(6deg);
}

.badge-inverter {
    background: #7b1fa2;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
}

.product-main-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 20px 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    position: relative;
    min-height: 388px;
}

.product-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 7px 10px;
    border-radius: 8px;
    z-index: 1;
}

.badge-red {
    background: #f82929;
}

.badge-green {
    background: #3cc049;
}

.badge-yellow {
    background: var(--yellow);
    color: #000;
}

.empty-shopping-cart {
    text-align: center;
}

.empty-shopping-cart img {
    width: 120px;
    height: auto;
    margin: 0 auto;
}

.filter-btn-mobile-fixed {
    position: fixed;
    left: 0;
    top: 50%;
    transform: rotate(-90deg) translate(-40%, 50%);
    -o-transform: rotate(-90deg) translate(-40%, 50%);
    -moz-transform: rotate(-90deg) translate(-40%, 50%);
    -webkit-transform: rotate(-90deg) translate(-40%, 50%);
    transform-origin: left center;
    transition: transform 200ms ease-in-out 400ms;
    z-index: 200;
}

.filter-btn-mobile-fixed .filter-btn {
    background: var(--blue);
    padding: 5px 10px;
    color: white;
    cursor: pointer;
}

.filter-btn-mobile-fixed .filter-btn:hover {
    background: var(--dark-blue);
}

.cart-item {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 2rem 2rem 9rem 2rem;
    background: #FFFFFF;
    border-radius: 10px;
}

._cart-item-price {
    display: block;
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    white-space: nowrap;
}

._cart-item-price small {
    font-size: 1.3rem;
    color: #BDC2D3;
    display: block;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

._cart-item-image {
    width: 9rem;
    height: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0 2rem 0 0;
    background: #FFFFFF;
    border: 1px solid #EDEDF9;
    border-radius: 5px;
}

.remove-btn:before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: url(../images/icons/delete.png) no-repeat;
    background-size: cover;
}

.dynamic-price {
    font-size: 37px;
    line-height: 28px;
    font-weight: 500;
    white-space: nowrap;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 1.5rem;
    clear: both;
}

.sku__view {
    background: #fff;
    width: 100%;
}

.sku__desc {
    padding: 30px 25px;
    background: white;
    max-width: 29%;

}

.sku__view-body > .row > [class^=col] {
    padding: 0;
    border-right: 1px solid #EDEDF9;
}

.sku__addto-btn-text small {
    display: block;
    font-size: 12px;
    color: #BDC2D3;
}

.sku__addto-btn-text {
    -ms-flex: 1;
    flex: 1;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    gap: 10px;
    cursor: pointer;
}
.sku__brand{
    max-width: 100px;
}

.custom-block table {
    width: 100%;
}

.custom-block table th, .custom-block table td {
    font-size: 16px;
}

.prod-available {
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    -o-border-radius: 100%;
    display: inline-block;
}

.prod-available.active {
    background: var(--green);
}

.price-economy {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: #BDC2D3;
    margin-top: 12px;
}

.sku__price-ins {
    font-weight: bold;
}

.sku__price-del {
    margin: 0 0 0 10px;
    padding: 0 2px;
    position: relative;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
    text-decoration: none;
}

.sku__price-del:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #F45656;
    margin: -1px 0 0;
}

/* ===== FILTER ===== */
.category-aside {

}

#product-filter-aside {
    margin-top: 25px;
}

.bx-filter-title {
    font-size: 20px;
    line-height: 1.2;
}

.filter-section {
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    background-color: #ffffff
}

.filter-content {

}

.filter-title {
    font: 600 italic 16px "Roboto", Arial, Helvetica, sans-serif;
    margin-bottom: 15px;
}

.filter-block {

}

.form-check {

}

.form-check-input {

}

.form-check-label {

}

.show-more-items {
    font-weight: normal;
    color: #337ab7;
    margin-top: 10px;
    padding: 0;
    font-size: 14px;
    cursor: pointer;
}

.hidden-item.hidden {
    display: none;
}

/* ===== BRANDS ===== */
.label-bluegray {
    background: #b8ccd4;
    color: #111;
}

.section {
    margin-top: 30px;
    margin-bottom: 38px;
}

.section.about {
    margin-top: 70px;
}

.section-title {
    font-family: Inter;
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 18px;
    font-style: italic;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.brand-tile {
    background: #fff;
    border-radius: 8px;
    min-height: 66px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #2877b7;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    cursor: pointer;
}

.brand-tile:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.brand-section {
    margin-top: 40px;
}

.brand-section .section-title {
    display: inline-block;
    margin-bottom: 24px;
}

.brandSwiper {
    position: relative;
    padding-bottom: 56px;
}

.swiper {
    padding: 0 !important;
}

.brandSwiper .swiper-wrapper {
    align-items: stretch;
}

.brandSwiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
}

.brand-card {
    height: 100px;
    background: #fff;
    border-radius: 10px;
    display: block;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: 1px solid #f1f1f1;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    cursor: pointer;
}

.brand-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.brand-card img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.brand-card-img {
    width: 100%;
    height: 100%;
    background-size: contain !important;
}

.brand-nav, .certificate-nav {
    position: absolute;
    left: 50%;
    bottom: -45px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.brand-prev,
.brand-next,
.certificate-prev,
.certificate-next {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    user-select: none;
    font-size: 20px;
    line-height: 1;
}

.home-main-slider {
    position: relative;
}

.homeHeroSwiper {
    position: relative;
    overflow: hidden;
}

.homeHeroSwiper .swiper-slide {
    height: auto;
}

.hero-slide {
    position: relative;
    width: 100%;
    max-height: 440px;
    overflow: hidden;
    background: #f5f5f5;
}

.hero-slide-image {
    width: 100%;
    height: 440px;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
    display: block;
}

.hero-slide-overlay {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 480px;
    height: 270px;
    opacity: 1;
    border-radius: 30px;
    background: #1D3546;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
    text-align: center;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);

}

.hero-slide-content {
    font-family: Inter;
    font-weight: 900;
    font-style: Italic;
    font-size: 32px;
    line-height: 100%;
    text-align: left;
}

.hero-slide-content a {
    text-decoration: none;
}

.hero-slide-content a:hover {
    color: white;
}

.caption-desc {
    color: #fff1f1;
    font-size: clamp(14px, 20px, 24px);
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 28px;
    padding: 0 7%;
}

.hero-slide-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    border-radius: 999px;
    background: var(--yellow);
    color: #111;
    font-size: clamp(10px, 1vw, 14px);
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease;
    min-width: 160px;
    margin-left: 7%;
}

.hero-slide-button:hover {
    background: #e5b800;
    color: #111;
    text-decoration: none;
}

.slider-nav {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 20;
}

.home-main-slider .slider-nav {
    left: 8.5%;
    bottom: 21px;
}

.slider-prev,
.slider-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
}

.slider-prev::before,
.slider-next::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #111;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--yellow);
}

.slider-prev::before {
    content: '‹';
}

.slider-next::before {
    content: '›';
}

.home-hero-pagination {
    bottom: 70px !important;
}

.home-hero-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.home-hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.homeHeroSwiper,
.homeHeroSwiper .swiper-wrapper,
.homeHeroSwiper .swiper-slide {
    width: 100%;
}

.homeHeroSwiper .swiper-slide {
    height: 440px;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
    background: #f5f5f5;
}

.hero-slide-image {
    width: 100%;
    height: 440px;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
    display: block;
}

/* ===== ABOUT ===== */
.home-main-article-block {
    max-height: 350px;
    overflow: hidden;
}

.home-main-article-block.extended {
    max-height: 100%;
    overflow: initial;
}

.home-main-article-block .hidden-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(247, 247, 247, 0.65) 0%, #F7F7F7 100%);
    height: 40px;
}

.article-show-more {
    margin-top: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    color: var(--blue);
}

.about-section {
    padding: 24px 0;
    background: #f9f9f9;
}

.about-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.about-link {
    color: var(--blue);
    font-size: 13px;
}

/* ===== CERTIFICATES ===== */
.certs-section {
    padding: 24px 0;
    background: #f9f9f9;
}

.certs-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.certs-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.cert-card {
    flex: 0 0 160px;
    background: #4a90d9;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    color: #fff;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cert-card i {
    font-size: 36px;
    opacity: .7;
}

.cert-card span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: .9;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.cert {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: pointer;
}

.cert img {
    width: 100%;
}

.cert:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);

}

.gallery-top {
    height: 400px; /* Adjust as needed */
    width: 100%;
}

.gallery-thumbs {
    height: 100px; /* Adjust as needed */
    box-sizing: border-box;
    padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
    width: 25%; /* Show 4 thumbnails at once */
    height: 100%;
    opacity: 0.4;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1; /* Highlight active thumbnail */
}


/* ===== JOIN BANNER ===== */
.join {
    margin-top: 36px;
    background: #88d6f7;
}

.join-inner {
    min-height: 146px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 16px;
    align-items: center;
}

.join .h3 {
    margin: 0 0 8px;
    font-size: 42px;
}


/* ===== FEATURES STRIP ===== */
.feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 18px auto 0;
    padding-bottom: 24px;
}

.feature {
    background: #fff;
    border-radius: 10px;
    min-height: 130px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border: 1px solid #CFDFE5
}

.feature:hover, .feature.highlight {
    background: var(--lighter-blue);
}


.socials {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.social-icon {
    display: grid;
    place-items: center;
    font-size: 18px;
    width: 38px;
    height: 38px;
    margin: 0 2%;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    border-radius: 100%;
}

.social-icon:hover {
    box-shadow: 0 0 10px var(--blue);
}

.social-icon a, .social-icon a span {
    display: block;
    width: 100%;
    height: 100%;
}

.vk-icon {
    background: url('../images/main/social/VK.svg') no-repeat;
    background-size: 100%;
}

.fb-icon {
    background: url('../images/main/social/Facebook.svg') no-repeat;
    background-size: 100%;
}

.ok-icon {
    background: url('../images/main/social/OK.svg') no-repeat;
    background-size: 100%;
}

.insta-icon {
    background: url('../images/main/social/Instagram.png') no-repeat;
    background-size: 100%;
}

.youtube-icon {
    background: url('../images/main/social/Youtube.svg') no-repeat;
    background-size: 100%;
}

.tiktok-icon {
    background: url('../images/main/social/TikTok.svg') no-repeat;
    background-size: 100%;
}

.telegram-icon {
    background: url('../images/main/social/Telegram.svg') no-repeat;
    background-size: 100%;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-blue);
    color: #fff;
    padding: 30px 0 16px;
}

.footer-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 24px;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    max-width: 265px;
}

.footer-logo .logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.footer-logo-text {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
}

.footer-col .h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    font-size: 12px;
    color: #FFFFFFB2;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-contacts .fc-item {
    margin-bottom: 8px;
    font-size: 14px;
    color: #FFFFFFB2;

}

.footer-contacts .fc-item .contact-icon {
    margin-right: 10px;
}

.footer-contacts .fc-item a {
    color: #fff;
    font-weight: 600;
}

.footer-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.footer-btn {
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.footer-btn:hover {
    background: var(--blue-dark);
}

.footer-btn.yellow {
    background: var(--yellow);
    color: #333;
}

.footer-btn.yellow:hover {
    background: #f5c800;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 12px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    font-family: Manrope;
    font-weight: 400;
    line-height: 100%;

}


.footer-cond {
    width: 330px;
    height: 130px;
    background: url('../images/icons/footer-cond.svg') no-repeat top center;
    margin-top: -16px;
}

.footer-cond-text {
    font-family: Manrope;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    overflow-y: auto;
    flex-direction: column;
}

.mobile-menu-overlay.open {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
}

.mobile-menu-icons {
    display: flex;
    gap: 40px;
    padding: 0 16px 12px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-icons .top-fav-icon {
    width: 35px;
    height: 35px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.mobile-nav-item a {
    color: black
}

.mobile-nav-item.active, .mobile-nav-item:hover {
    background: linear-gradient(90deg, rgba(0, 131, 222, 0.22) 0%, rgba(55, 166, 242, 0.22) 100%);
}

.mobile-nav-item.cat {
    color: var(--blue);
}


.mobile-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px;
    margin-top: auto;
}

.mob-contact {
    font-size: 14px;
    vertical-align: middle;
}

.mob-contact i {
    color: var(--blue);
}

.mob-contact a {
    font-weight: 700;
    color: var(--text);
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    width: 32px;
    height: 32px;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
    background: url(../images/icons/menu.png) no-repeat;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--blue-gradient);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    z-index: 500;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top i {
    width: 16px;
    height: 10px;
    background-image: url(../images/icons/scroll-top.png);
    background-repeat: no-repeat;
    background-position: center center;
}

.slider-block {
    width: 100%;
}

.web-view {
    display: block;
}

span.web-view {
    display: inline;
}

.web-view.topbar-icon-btn {
    display: flex;
}

.mobile-view {
    display: none;
}

.news__list {
    margin: 0 -1rem -4rem;
    padding: 0;
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.news__list > li {
    padding: 0 1rem 5rem;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.news__item-image {
    box-shadow: inset 0 0 0 1px #eef0f3;
    display: block;
    background: #F7F7FB;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    transition: transform 0.25s;
    will-change: transform;
    margin: 0 0 1.5rem;
    height: 18rem;
}
.news__item-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.news__item-title {
    display: block;
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 500;
    transition: transform 0.25s;
    will-change: transform;
}
.news__item-title u {
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s;
}
.prod-item-left-inner .product-info{
    min-height: auto;
    padding: 0;
}

/*-------Alert block-------*/

.alerts-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1010;
    padding: 10px;
    pointer-events: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media (min-width: 1199px) {
    .alerts-wrapper {
        padding: 20px;
    }
}

.alert {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: 50px;
    pointer-events: auto;
    padding: 10px;
    margin: 0 0 10px;
    position: relative;
    border-radius: 10px;
    width: 100%;
    animation: alertShow 0.5s forwards;
}

.alert:after {
    content: "";
    min-height: 40px;
}

.dom-alert--red, .alert-danger {
    background: var(--red);
    color: #fff;
}

.dom-alert--green, .alert-success {
    background: var(--green);
    color: #fff;
}

.dom-alert--yellow, .alert-warning {
    background: var(--yellow);
    color: #343434;
}

.dom-alert--yellow a, .dom-alert--yellow a:hover {
    color: #343434;
    border-bottom: 1px solid rgb(52 52 52 / 50%);
}

.dom-alert--dark {
    background: var(--dark-blue);
    color: #fff;
}

.alert.is-hide {
    animation: alertHide 0.5s forwards;
    pointer-events: none;
}

@media (min-width: 768px) {
    .alert {
        width: auto;
    }
}

@media (min-width: 1199px) {
    .alert {
        margin: 0 0 10px;
        padding: 15px;
    }
}

.dom-alert__close {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: inherit;
}

.dom-alert__text {
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    margin: 0;
    padding-right: 10px;
}

.dom-alert__text a {
    text-decoration: underline;
    color: #fff;
    transition: opacity 0.25s;
}

.dom-alert__text a:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
}

@media (min-width: 1199px) {
    .dom-alert__text {
        margin: 0 30px 0 0;
    }
}

.dom-alert__action {
    display: none;
}

@media (min-width: 1199px) {
    .dom-alert__action {
        display: block;
    }
}

.alerts-wrapper.is-auto-close .alert {
    overflow: hidden;
}

.alerts-wrapper.is-auto-close .alert:before {
    content: '';
    position: absolute;
    height: 5px;
    background: rgb(0 0 0 / 10%);
    bottom: -1px;
    left: -1px;
    right: -1px;
    animation: progressBar 5s linear;
    animation-fill-mode: both;
}


.sitemap-tree ul, .sitemap-tree li{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.sitemap-tree h3{
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: normal;
}
.sitemap-tree{
    margin-bottom: 40px;
}
.sitemap-tree a{
    display: inline-block;
    padding: 0;
    position: relative;
    text-decoration: none;
    transition: all .2s linear;
    margin-bottom: 5px;
}

.sitemap-tree-block li a:before {
    display: inline-block;
    padding-right: 10px;
}
.sitemap-tree-block li a:hover {
    text-decoration: underline;
}
div.tree_top a:before {
    display: inline-block;
    font-size: 20px;
    color: #202020;
}
ul.tree li.last {
    border: medium none;
}

ul.tree li {
    margin: 0 0 0 18px;
    padding: 5px 0 0 10px;
    border-left: 1px solid #dbdbdb;
}
div.tree_top {
    padding: 5px 0 0 27px;
}
ul.tree {
    padding-left: 24px;
}
ul.tree > li {
    margin: 0 0 0 11px;
}
.tree-page{
    margin-bottom: 20px;
}

@keyframes progressBar {
    0% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}

@keyframes alertShow {
    0% {
        opacity: 0;
        transform: translate(-100px, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes alertHide {
    0% {
        opacity: 1;
        transform: translate(0, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-100px, 0);
    }
}

/* ===== RESPONSIVE ===== */

@media screen and (min-width: 1281px) and (max-width: 1366px) {
    .topbar-contacts {
        gap: 35px;
        margin-right: 2%;
    }

    .topbar-contact-item, .topbar-contact-item.phone a {
        font-size: 15px;
    }

    .topbar-work {
        font-size: 13px;
    }

    .contact-icon {
        width: 23px;
        height: 23px;
    }

    .topbar-logo {
        display: inline-block;
        width: 280px;
    }
}

@media screen and (min-width: 1100px) and (max-width: 1280px) {
    .topbar-logo {
        width: 250px;
    }

    .topbar-contacts {
        gap: 30px;
        margin-right: 3%;
    }

    .topbar-contact-item, .topbar-contact-item.phone a {
        font-size: 14px;
    }

    .topbar-contact-item, .topbar-work, .callBack, .nav-main ul li, .btn {
        font-size: 12px;
    }

    .topbar-icons {
        gap: 20px;
    }

    .topbar-icon-btn {
        font-size: 10px;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
    }

    .nav-main ul li {
        min-width: 100px;
    }

    .caption-desc {
        font-size: clamp(14px, 20px, 24px);
        padding: 0 5%;
    }

    .hero-slide-overlay {
        width: 420px;
        height: 250px;
    }

    .brands-top-filter {
        gap: 20px;
        font-size: 14px;
    }

    .add-to-card {
        width: 97%;
        padding: 7px 40px;
        min-width: 100px;
    }

    .prod-qty-input {
        width: 100%;
        height: 40px;
        padding-left: 15px;
    }

    .qty-btn.plus {
        font-size: 20px;
        right: 10px;
    }

    .qty-btn.minus {
        font-size: 20px;
        left: 10px;
    }

    .sale-product-badge {
        width: 60px;
    }

    .dynamic-price {
        font-size: 28px;
    }

    .sku__price-del {
        font-size: 16px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1099px) {
    body {
        zoom: 0.7;
    }

    .container {
        width: 98%;
    }
}

@media screen and (min-width: 823px) and (max-width: 1023px) {
    body {
        zoom: 0.6;
    }

    .container {
        width: 98%;
    }

    .topbar-contacts {
        gap: 30px;
        margin-right: 2%;
    }
}

@media screen and (min-width: 769px) and (max-width: 821px) {
    body {
        zoom: 0.55;
    }

    .container {
        width: 98%;
    }

    .topbar-contacts {
        gap: 20px;
        margin-right: 2%;
    }
}

@media (max-width: 768px) {
    .news__list > li {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .compare-section-page {
        overflow-x: scroll;
    }

    .hero-slide {
        max-height: 450px;
    }

    .hero-slide-image {
        height: 255px;
    }

    .hero-slide-image {
        background-position: top center !important;
    }

    .hero-slide-overlay {
        position: absolute;
        aspect-ratio: 1 / 1;
        background: #46667C;
        align-items: center;
        justify-content: flex-end;
        z-index: 2;
        top: auto;
        bottom: -50%;
        left: 50%;
        width: 550px;
        height: 450px;
        padding-right: 0;
        display: block;
        transform: translate(-50%, 15%);
        border-radius: 100%;
        max-width: 700px;
    }

    .hero-slide-content {
        max-width: 400px;
        padding: 40px 60px 0;
        text-align: center;
        margin: 0 auto;
    }

    .caption-desc {
        font-size: 16px;
        width: 90%;
        margin: 0 auto 10px;
        line-height: 22px;
        text-align: left;
        padding: 0;
    }

    .callBack {
        font-family: Manrope;
        font-weight: 600;
        font-size: 13px;
        line-height: 100%;
        text-align: center;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
    }

    nav.navbar .container {
        justify-content: center;
    }

    .contact-icon.contact-icon-time {
        margin-right: 0;
    }

    .hero-slide-button {
        font-size: 16px;
        width: 80%;
        margin-left: 0;
        max-width: 200px;
        padding: 3px 0;
    }

    .topbar-icons {
        width: auto
    }

    .web-view {
        display: none !important;
    }

    .mobile-view {
        display: block;
    }

    .mobile-view.mobile-contacts {
        display: flex;
        padding-bottom: 0;
        align-items: flex-start;
    }

    .footer-col {
        margin-top: 20px;
    }

    .topbar .topbar-contacts, .topbar-work {
        display: none;
    }

    .topbar-logo .web-logo {
        background: url(../images/mobile_logo.svg) no-repeat;
        background-size: 100%
    }

    .topbar-logo .logo-text span:last-child, .product-filter-block {
        display: none;
    }

    .navbar {
        position: static;
    }

    .hamburger {
        display: block;
    }

    .navbar .nav-main {
        display: none;
    }

    .features-strip .container {
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 0 0 calc(50% - 8px);
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-price-cards {
        display: none;
    }

    .join .h3 {
        margin: 0 0 8px;
        font-size: 30px;
        text-align: center;
    }

    .footer-cond {
        margin: 25px auto 0;
    }

    .social-icon {
        width: 44px;
        height: 44px;
        margin: 0;
    }

    .section {
        margin-top: 20px;
    }

    .category-strip .container {
        gap: 0;
    }

    .feature-row, .category-row {
        display: grid;
        margin-top: 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 20px;
    }

    .feature-row, .features-section {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .category-card {
        display: block;
        text-align: center;
        padding: 10px;
        gap: 0;
        font-size: 13px;
    }

    .category-icon {
        margin: 0 auto 5px;
        display: block;
    }

    .join-inner, .single-prod-page, .brands-grid, .products-grid, .no-flex, .footer-grid {
        display: block !important;
        margin: 20px 0;
    }

    .feature {
        font-size: 14px;
        margin: 0;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-item {
        min-width: 120px;
        padding: 6px 12px;
    }

    #prod-catalog-list .product-element, .product-list-block .product-element,  #prod-favotires-list .product-element {
        flex: 2;
        max-width: 48%;
    }

    .product-list-block {
        gap: 20px;
        justify-content: center;
    }

    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .socials {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        padding-bottom: 20px;
    }

    .product-item {
        margin: 0 0 25px;
    }

    .col-xl-6, .col-xl-5 {
        max-width: 100%;
        flex: 1
    }

    .prod-item-left-inner .sale-product-badge, .inverter-product-badge {
        position: absolute !important;
        right: 0 !important;
        left: auto !important;
        top: 50px !important;
    }

    .col-xl-5.custom-block {
        padding: 0 15px !important;
    }

    .sku__desc {
        padding: 30px 15px !important;
    }

    .product-tabs .light-grey-bg {
        padding: 30px 12px !important;
    }

    .product-filter-block {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        transform: translateX(-100%) translate3d(0, 0, 0);
        transition: transform 300ms ease-in-out, box-shadow 150ms linear;
        background: white;
        z-index: 1000;

    }

    .product-filter-block.extended {
        display: block;
        margin: 0 !important;
        transform: translateX(0);
        max-width: 320px;
    }

    .category-aside {
        padding: 30px 0;
        height: 100%;
        width: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .bx-filter-title {
        padding-left: 30px;
        font-size: 30px;
        font-weight: bold;
        font-style: italic;
    }

    .product-filter-block .form-check-label {
        margin-left: 10px;
    }

    .product-filter-block .form-check-input {
        width: 20px;
        height: 20px;
    }

    .product-filter-close {
        padding: 5px;
        cursor: pointer;
        position: absolute;
        font-size: 30px;
        right: 25px;
        top: -3px;
        line-height: 30px;
    }

    .back-btn {
        bottom: -50px;
    }

    .homeHeroSwiper .swiper-slide {
        height: 400px
    }

    .home-main-slider .slider-nav {
        left: 50%;
        bottom: 10px;
    }

    .join {
        margin-top: 70px;
    }

    .compare-item {
        min-width: 50%;
    }

    .modal-content label {
        font-size: 12px;
    }

    .footer-cond-text {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-cond-text h3 {
        font-weight: 600;
        font-size: 32px;
        line-height: 100%;
    }

    .mobile-flex {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .mobile-flex a {
        font-size: 14px;
    }

    .footer-contacts .fc-item a {
        font-weight: 400;
        font-size: 16px;
    }

    .footer-contacts .fc-item .contact-icon,
    .mfi-phone .contact-icon
     {
        width: 26px;
        height: 26px;
    }

    .footer-grid .contact-icon.contact-icon-phone{
        width: 22px;
        height: 22px;
    }

    .footer-working-hours-text {
        font-family: Manrope;
        font-weight: 400;
        font-size: 14px;
        line-height: 100%;
        color: #939393
    }

    .home-main-article-block {
        max-height: 600px;
        overflow: hidden;
    }

    .empty-icon {
        width: 23px;
    }

    .home-category-area {
        left: 0;
        top: 100%;
        z-index: 2000;
    }

    .home-category-area-list {
        display: block;
    }

    .home-category-area-list-item {
        width: 100%;
        margin-bottom: 5px;
    }

    .footer-logo img {
        width: 80%;
    }

    .footer-col ul li a {
        font-size: 13px;
    }

    .brands-top-filter {
        gap: 20px;
        font-family: Manrope;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
    }

    .prod-qty-input {
        width: 120px;
        padding-left: 5%;
    }

    ._cart-item-image {
        width: 15%;
        margin-right: 0;
    }

    #cart-wrapper .flex-grow-1, #order-form .flex-grow-1 {
        width: 40%;
    }

    #cart-wrapper .input-group, #order-form .input-group {
        width: 35%;
    }

    #order-form .col-md-7.mt-4.text-left, #order-form .col-md-5 {
        width: 100%;
        max-width: 100%;
    }

    .no-flax {
        display: block;
    }
    .contact-icon.contact-icon-phone {
        width: 17px;
        height: 17px;
         margin-right: 0;
    }
}

@media (width: 768px) {

    .nav-ctas {
        position: absolute;
        bottom: 17px;
        left: 52%;
        transform: translate(-50%, 0);
    }

    .topbar-icons .topbar-icon-btn {
        position: absolute;
        right: 10%;
    }

    .hero-slide-image {
        height: 400px;
    }
}

@media (max-width: 767px) {

    .hero-slide-overlay {
        bottom: -53%;
    }

    .w-50 {
        width: 50%;
    }

    .cart-total-data {
        font-size: 18px;
    }

    .customer-data-block {
        width: 100% !important;
    }

    .customer-data-block .flex.justify-start.align-items-center {
        margin-bottom: 10px;
    }

    .no-flex {
        display: block;
        text-align: left;
    }

    .product-list-block {
        gap: 0
    }

    .topbar-logo {
        display: inline-block;
        width: 260px;
    }

    .compare-item {
        min-width: 75%;
    }

    .hero-slide {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-image {
        display: none;
    }

    .feature-item {
        flex: 0 0 100%;
    }

    .certs-grid {
        gap: 8px;
    }

    .cert-card {
        flex: 0 0 130px;
    }

    .topbar-logo {
        display: inline-block;
        width: 220px;
    }

    .home-main-slider .slider-nav {
        display: none;
    }

    .container.home-category-slider-block {
        padding: 0;
    }

    .topbar-icon-btn .top-fav-icon.top-shopping-cart {
        width: 31px;
        height: 31px
    }

    .topbar-icon-btn .badge {
        top: -7px;
        right: -7px;
    }

    .contact-icon.contact-icon-email {
        width: 18px;
        height: 18px;
        background-position: center center;
    }

    .mob-contact a {
        font-family: Manrope;
    }

    .phone-number-block, .whatsapp-block {
        margin-bottom: 10px;
    }

    .phone-number-block a, .whatsapp-block a {
        font-weight: 700;
        font-size: 13px;
        line-height: 100%;
    }

    .email-address-block a {
        font-weight: 400;
        font-size: 13px;
    }

    .call-back-block .contact-icon {
        width: 18px;
        height: 18px;
    }

    .working-times-block {
        font-weight: 400;
        font-size: 14px;
        line-height: 100%;
    }

    .working-times-block .empty-icon {
        width: 23px;

    }

    .whatsapp-block {

    }

    .mobile-menu-footer-item .call-back-block {
        margin: 10px 0 5px;
    }

}

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

    .hero-slide-overlay {
        bottom: -53%;
    }

    .w-50 {
        width: 50%;
    }

    .cart-total-data {
        font-size: 18px;
    }

    .customer-data-block {
        width: 100% !important;
    }

    .customer-data-block .flex.justify-start.align-items-center {
        margin-bottom: 10px;
    }

    .hero-slide-image {
        height: 400px;
    }

    .no-flex {
        display: block;
        text-align: left;
    }

    .topbar-icons .topbar-icon-btn {
        position: absolute;
        right: 12%;
    }

    .product-list-block {
        gap: 10px
    }

    .topbar-logo {
        display: inline-block;
        width: 260px;
    }

    .compare-item {
        min-width: 75%;
    }

    .hero-slide {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-image {
        display: none;
    }

    .feature-item {
        flex: 0 0 100%;
    }

    .certs-grid {
        gap: 8px;
    }

    .cert-card {
        flex: 0 0 130px;
    }

    .topbar-logo {
        display: inline-block;
        width: 220px;
    }

    .home-main-slider .slider-nav {
        display: none;
    }

    .container.home-category-slider-block {
        padding: 0;
    }

    .topbar-icon-btn .top-fav-icon.top-shopping-cart {
        width: 31px;
        height: 31px
    }

    .topbar-icon-btn .badge {
        top: -7px;
        right: -7px;
    }

    .contact-icon.contact-icon-email {
        width: 18px;
        height: 18px;
        background-position: center center;
    }

    .mob-contact a {
        font-family: Manrope;
    }

    .phone-number-block, .whatsapp-block {
        margin-bottom: 10px;
    }

    .phone-number-block a, .whatsapp-block a {
        font-weight: 700;
        font-size: 13px;
        line-height: 100%;
    }

    .email-address-block a {
        font-weight: 400;
        font-size: 13px;
    }

    .call-back-block .contact-icon {
        width: 18px;
        height: 18px;
    }

    .working-times-block {
        font-weight: 400;
        font-size: 14px;
        line-height: 100%;
    }

    .working-times-block .empty-icon {
        width: 23px;

    }

    .whatsapp-block {

    }

    .mobile-menu-footer-item .call-back-block {
        margin: 10px 0 5px;
    }

    .mobile-menu-overlay {
        max-width: 100%
    }

    .product-element, #prod-catalog-list .product-element, #prod-favotires-list .product-element {
        flex: 2;
        max-width: 48%;
    }

    .hero-slide-overlay {
        width: 100%;
        height: 450px;
        border-radius: 30%;
        max-width: 800px;
    }

    .hero-slide-content {
        max-width: 100%;
        margin: auto;
    }

    .hero-slide-button {
        width: 220px;
    }

    .slider-prev, .slider-next {
        width: 25px;
        height: 25px;
    }

    .feature-row, .category-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        margin: 35px auto 30px;
    }

    .socials {
        justify-content: center;
        gap: 20px;
    }

    .feature {
        min-height: 100px;
        padding: 10px;
    }

    .footer-btns {
        display: flex;
        flex-direction: row;
        gap: 10px;
        margin-top: 30px;
        align-items: center;
        justify-content: center;
    }

}

@media (min-width: 530px) and (max-width: 680px){

    .prod-add-card{
        display: block;
    }
    .prod-add-card .col-md-5, .prod-add-card .col-md-7{
        width: 100%;
        margin-top: 10px;
        max-width: 100%;
    }
    .qty-btn.plus {
        left: auto  !important;
        right: 20px;
    }
    .prod-qty-input {
        width: 100%;
        padding-left: 5%;
    }
}

@media (max-width: 550px) {
    .news__list > li {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .feature-row, .category-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    #cart-wrapper .flex-grow-1, #order-form .flex-grow-1, ._cart-item-image, #cart-wrapper .input-group {
        width: 100% !important;
    }

    .topbar-logo {
        display: inline-block;
        width: 240px;
    }

    #prod-catalog-list .product-element, .product-list-block .product-element, #prod-favotires-list .product-element {
        flex: 1;
        max-width: 100%;
    }

    .hero-slide-content {
        padding: 40px 20px 0;
    }

    .mobile-menu-footer-item {
        width: 150px;
    }

    .qty-btn.plus {
        left: 90px;
    }

    .prod-item-left-inner .qty-btn.plus {
        right: 15%;
    }

    .hero-slide-image {
        height: 420px;
    }

    .hero-slide-image {
        background-position: center center !important;
    }

}

@media (max-width: 350px) {
    .footer-cond {
        width: 100%;
    }
    .social-icon {
        width: 30px;
        height: 30px;
        margin: 0;
    }
    .mobile-flex a {
        font-size: 12px;
    }
    .footer-contacts .fc-item a {
        font-weight: 400;
        font-size: 14px;
    }
    .footer-contacts .fc-item {
        margin-bottom: 8px;
        font-size: 12px;
        color: #FFFFFFB2;
    }
    .footer-cond-text h3 {
        font-size: 20px;
    }
    .footer-cond-text {
        font-size: 14px;
    }
    .feature-row, .category-row {
        grid-template-columns: repeat(1, 1fr);
        gap: 5px;
    }
    .topbar-logo {
        display: inline-block;
        width: 200px;
    }

    .phone-number-block a, .whatsapp-block a, .callBack {
        font-size: 12px;
    }

    .caption-desc {
        font-size: 14px;
        width: 75%;
        margin: 0 auto 10px;
        line-height: 22px;
        text-align: left;
        padding: 0;
    }
    .prod-add-card{
        display: block;
    }
    .prod-add-card .col-md-5, .prod-add-card .col-md-7{
        width: 100%;
        margin-top: 10px;
    }
    .qty-btn.plus {
        left: auto;
        right: 20px;
    }
    .prod-qty-input {
        width: 100%;
        padding-left: 5%;
    }
    .nav-ctas {
        display: block;
    }
    .nav-ctas .btn{
        width: 100%;
        margin-top: 10px;
    }
    .mobile-menu-footer-item {
        width: 49%;
    }
    .mobile-view.mobile-contacts, .mobile-contacts {
        gap: 1%;
    }
}

@media (max-width: 300px) {
    .mobile-menu-footer-item {
        width: 100%;
    }
    .mobile-view.mobile-contacts {
        gap: 0;
    }
}
