/*!
Theme Name: Segal Theme
Author: Segal Theme
Version: 1.0.0
*/
 
/* montserrat-regular - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/montserrat-v31-cyrillic_latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-500 - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/montserrat-v31-cyrillic_latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/montserrat-v31-cyrillic_latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    --main-color:#E88F40;
    --main-color-hover:#60C339; 
    --padding-bt:100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

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

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

ul, li {
    list-style: none;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    font-family: 'Montserrat';
}

.container {
    max-width: 1450px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    position: relative;
}

aside {
    padding: 30px 20px; 
    border-right: 1px solid #E8E8E8;
}

.aside-inner {
    position: sticky;
    top: 50px;
}

.nav-box__logo { 
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.nav-item {
    display: grid;
    align-items: center;
    grid-template-columns: 30px 1fr;
}

.menu-with-thumbnails {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

.main-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    max-width: 1920px;
    margin: 0 auto;
    border-left: 1px solid #E8E8E8;
    border-right: 1px solid #E8E8E8;
}

.breadcrumbs {
    padding: 15px 0 35px; 
    color: var(--main-color); 
}

.breadcrumbs a { 
    color: #AEB1C4;
    transition: all .3s;
    font-weight: 400;
}
.breadcrumbs a:hover { 
    color: var(--main-color); 
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

p {
    margin-bottom: 24px;
}

h1 {
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 38px;
    line-height: 1;
    font-family: 'Montserrat';
}
 
 
 
.content>*:last-child { 
    margin-bottom: 0;
}

.content h2 { 
    font-weight: 800;
    margin-bottom: 36px;
    font-size: 24px;
    line-height: 1; 
    padding-top: 20px;
}

.content h3 { 
    font-weight: 700;
    margin-bottom: 26px;
    font-size: 18px;
    line-height: 1; 
    padding-top: 5px;
}

.content ul, .content ol  {  
    margin-bottom: 30px; 
    padding-left: 35px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.content ul  {   
    padding-left: 45px; 
}

.content ol li  {  
    list-style: auto;
}

.content ul li  {  
    position: relative;
    list-style: disc;
}
 

.content ol li::marker {  
    font-weight: 900;
    color: var(--main-color);
}

.content a {  
    transition: all .3s;
    color: var(--main-color);
}

 
 

.content table {
    width: 100%; 
    border-collapse: collapse; 
    margin-bottom: 30px; 
}

.content table tr:has(th) {
    background: #EBF4FA; 
    border: 0;
}
.content table tr  {
    border-bottom: 1px solid #D6DFE6;
}

.content table tr th {
    padding: 20px 10px; 
    font-weight: 700;
}
.content table tr td {
    padding: 20px 10px; 
    text-align: center;
    position: relative;
}

.content table tr td::after {
    content: '';
    background: #D6DFE6;
    width: 1px;
    height: 30px; 
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
 
.content table tr td:last-child::after  {
	 content: none;
}

.content table tr th:last-child {
    border-radius: 0 12px 12px 0;
}

.content table tr th:first-child {
    border-radius: 12px 0 0 12px;
}
 

h2 { 
    font-weight: 800;
    margin-bottom: 36px;
    font-size: 32px;
    line-height: 1; 
}

h3 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 24px;
}

h4 {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 24px;
}

.btn { 
    align-items: center;
    justify-content: center;
    color: #FFF;
    background: var(--main-color);
    border-radius: 3px;
    height: 35px; 
    font-size: 16px;
    display: inline-flex;
    padding:  0 25px;  
    cursor: pointer;
    font-weight: 400;
    transition: all .3s;
    border: 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif; 
    position: relative;
}
 
.btn:hover {
    box-shadow: none; 
    background: var(--main-color-hover);
} 

.btn-white  {
    background: #FFFFFF;
    color: #424242; 
}

.btn-white:hover  { 
    background: var(--main-color-hover);
    color: #fff; 
}

*::-webkit-scrollbar {
    -webkit-appearance: none;
    cursor: default;
}

*::-webkit-scrollbar:vertical {
    width: 4px;
    cursor: default;
}

*::-webkit-scrollbar:horizontal {
    height: 4px;
    cursor: default;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px;
    cursor: default;
}

*::-webkit-scrollbar-track {
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px;
    background-color: #EFEFEF;
    cursor: default;
}

.swiper-slide { 
    overflow: hidden;
}

.swiper-pagination {
    position: relative;  
    padding-top: 50px;
    margin: 0;
    bottom: auto;
    top: auto;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px; 
    background: var(--main-color); 
    border-radius: 50%;
    opacity: .5;
}

.swiper-pagination-bullet-active { 
    opacity: 1;
    width: 10px;     
}

.main-pagination {
    position: absolute; 
    padding-top: 0px;
    bottom: 25px!important;
}

.slide-nav .swiper-button-prev, .slide-nav .swiper-button-next {
    left: auto;
    position: relative;
    margin-top: 0;
    top: auto;
    right: auto;
    user-select: none;
}

.swiper-button-next, .swiper-button-prev {
    width: 30px;
    min-width: 30px;
    height: 30px;  
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none; 
    background: #FFFFFF;
    border-radius:3px; 
}

.swiper-button-prev { 
    left: 15px;
}
.swiper-button-next{ 
    right: 15px;
}
 
 

.swiper-button-next:hover svg path, .swiper-button-prev:hover svg path { 
    /* stroke: var(--main-color-hover); */
    fill: #fff;
}
.swiper-button-next:hover , .swiper-button-prev:hover { 
    background: var(--main-color);
}

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

.slide-nav {
    display: flex;
    column-gap: 10px;
}

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    gap: 40px;
}

.title-row h3 {
    font-weight: 500; 
    font-size: 32px;
    line-height: 1.2;
    color: #01403C;
}

.title-row h2, .title-row h1, .title-row .h2, .title-row h3 {
    margin: 0;
}



html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.2;    
    font-weight: 400;
    color: #2D2D2D;
    overflow-x: hidden;  
}

header {
    margin-bottom: 40px;
}

.header-box {
    max-width: 1540px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    position: relative;
}

.header-top {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 10px;
    border-bottom: 1px solid #E8E8E8;
}

.header-navigation__list {
    display: flex;
    gap: 15px;
}

.header-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-links>div {
    display: flex;
    gap: 3px;
    align-items: center;
}
.header-links>div span {
    display: flex;
    justify-content: center;
    font-size: 10px;
    align-items: center;
    background: var(--main-color);
    color: #fff;
    border-radius: 50%;
    min-width: 12px;
    height: 12px;
}

.header-bottom {
    padding: 15px 0 20px;
    display: flex;
    gap: 35px;
    align-items: center;
}

.search-field {
    height: 40px;
    border-radius: 1px;
    background: #FAFAFA;
    border: 1px solid #E8E8E8;
    padding: 0 60px 0 30px;
    width: 100%;
    font-family: 'Montserrat';
}
.search-box {
    flex-grow: 1;
}

.search-form {
    position: relative;
}
.search-submit {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    pointer-events: none;
}

.header-phone {
    display: grid;
    grid-template-columns: 15px 1fr;
    gap: 7px;
    margin-right: 30px;
}

.header-phone div {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    line-height: 1;
}

.header-phone div a:first-child {
    font-weight: 600;
}
.header-phone div a:last-child {
    color: var(--main-color);
}

.text-box {
    padding-bottom: 50px;
}

.related-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.related-item {
    position: relative;
    border-radius: 3px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    overflow: hidden;
}

.related-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);

}

.related-item img {
    position: absolute;
    border-radius: 3px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;    
    transition: all .3s;
}

.related-item:hover img {
    transform: scale(1.025);
}

.related-item-desc {
    position: relative;
    color: #fff;
    z-index: 1;
}

.related-item-desc h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
    transition: all .3s;
}

.related-item-desc p {
    margin: 0;
    font-size: 14px;
}

.related-item  .date {
    position: relative;
    margin-left: auto;
    background: var(--main-color);
    color: #fff;
    font-size: 14px;
    padding: 2px 5px;
    border-radius: 3px;
}

.related-item:hover h3 {
    color: var(--main-color);
}

.news-list {
    padding-bottom: 50px;
    border-bottom: 1px solid #E8E8E8;
    margin-bottom: 70px;
}
.benefit {
    background: #F8F8F8;
    margin-bottom: 50px;
    padding: 50px 0;
    border-top: 1px solid #F8F8F8;
    border-bottom: 1px solid #F8F8F8;
}

.benefit-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 35px;
    text-align: center;
}

.benefit-item  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.benefit-item p {
    margin: 0;
    
}

.benefit-item p span {
    display: block;
    font-weight: 500;
    padding-bottom: 10px;
}

.cat-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
    justify-content: space-between;
}

.cat-item  {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 22px;
    border-radius: 3px;
    overflow: hidden;
    min-height: 360px;
    align-items: start;
}

.cat-item img {
    position: absolute;
    border-radius: 3px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;    
    transition: all .3s;
}


.cat-item:hover img {
    transform: scale(1.025);
}

.cat-item span {
    position: relative;
    z-index: 1;
    background: var(--main-color-hover);
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 3px;

}

.cat-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);

}
.cat-item-desc h3 {
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 20px;
}

.cat-list {
    padding-bottom: 50px;
    border-bottom: 1px solid #E8E8E8;
    margin-bottom: 50px;
}

.cat-item-desc {
    position: relative;
    z-index: 1;
    color: #fff;
}

.cat-item-desc p {
    margin: 0;
    font-size: 14px;
}

.colouring {
    padding-bottom: 50px;
}

.colouring-box {
    padding: 35px 55px;
    border: 1px solid #E8E8E8;
    display: grid;
    grid-template-columns: 620px 1fr;
    gap: 50px;
    align-items: center;
}

.colouring-text ul {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 50px;
}

.colouring-text ul li {
    flex-grow: 1;
    border: 1px solid #E88F40;
    padding: 12px;
    text-align: center;
}

.about  {
    background: #F8F8F8;
    margin-bottom: 50px;
}

.about-box {
    display: grid;
    grid-template-columns: 350px 1fr;
    align-items: center;
    padding: 35px 0;
}

.about-img {
    padding-left: 75px;
}

.about-text h2 { 
    margin-bottom: 20px;
    font-size: 24px; 
} 

.main-cat {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    padding-top: 15px;
}

.main {
    padding-bottom: 60px;
}

.main-cat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 30px 22px;
    border-radius: 3px;
    overflow: hidden;
    min-height: 250px;
    align-items: start; 
}

.main-cat-item img {
    position: absolute;
    border-radius: 3px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all .3s;
}
.main-cat-item-desc {
    position: relative;
    z-index: 1;
    color: #fff;
}

.main-cat-item-desc p {
    margin: 0;
}

.main-cat-item-desc p:first-child {
    margin-bottom: 15px;
    color: #C4C4C4;
}

.main-item-btns {
    display: flex;
    gap: 15px;
}

.main-item {
    height: 485px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 50px 110px;
    color: #fff;
}

.main-item-text {
    position: relative;
    max-width: 700px;
}

.main-item-text p em {
    font-style: normal;
    color: #C4C4C4;
    font-size: 15px;
}

.main-item-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
}

.popular-top {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 30px;
}

.popular-top h2 { 
    margin-bottom: 0px;
}

.popular-content {
    display: none;
}

.popular-content.active {
    display: block;
}

.popular-tabs {
    display: flex;
    gap: 20px;
    margin-left: auto;
}

.popular-tab {
    border-bottom: 1px solid transparent;
    transition: all .3s;
    cursor: pointer;
}

.popular-tab.active,
.popular-tab:hover {
    border-bottom: 1px solid var(--main-color); 
}

.products-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.products-list > * {
    border: 1px solid #E8E8E8;
    border-top: none;
    border-left: none;
    padding: 45px;
}

/* Верхняя рамка для первых 4 элементов */
.products-list > *:nth-child(-n+4) {
    border-top: 1px solid #E8E8E8;
}

/* Левая рамка для каждого 4-го элемента + первого */
.products-list > *:nth-child(4n+1) {
    border-left: 1px solid #E8E8E8;
}

.products-list > * h2 {
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1;
    padding-top: 30px;
}

.product-card-list-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.product-card-list-bottom a {
    border: 1px solid #E8E8E8;
    padding: 5px;
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular {
    padding-bottom: 130px;
}

/* product */

.product h1 { 
    font-size: 30px;
    margin-bottom: 30px; 
    font-weight: 500;
}

.product-gallery {
    padding: 25px;
    border: 1px solid #ececec;
    width: calc(100% - 400px);
}

.product-box {
    display: flex; 
    gap: 50px;
    flex-wrap: wrap;
}

.product-slide {
    max-width: 450px;
    margin: 0 auto 20px;
}

.product-thumbs {
    max-width: 450px;
    margin: 0 auto;
}

.product-desc {
    width: 345px;
}

.product-badge {
    background: #60c339;
    padding: 7px 10px;
    border-radius: 2px;
    color: #fff;
    font-size: 15px;
}

.product-badges {
    display: flex;
    gap: 5px;
}

.onsale-badge {
    background: #e41b11;
}

.recommended-badge{
    background: #893ca9;
}

.sku_wrapper {
    color: #999;
}

.product-top-info {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 20px;
}
.product-info-bnts {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.product-desc .price {
    font-size: 30px;
    font-weight: 600;
}
.price ins {
    text-decoration: none;
} 
.product-desc .price del {
    color: #999;
    font-size: 20px;
} 
.product-desc .cart {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.woocommerce-product-details__short-description {
    font-size: 14px;
}

.counter-container {
    display: flex;
    align-items: center; 
    justify-content: space-around;
    border: 1px solid #BAC6CF; 
    height: 40px;
    border-radius: 2px;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input {
    width: 50px;
    height: 26px;    
    border: 0;
    border-left: 1px solid #EBF4FA; 
    text-align: center;
    font-size: 16px; 
    outline: none;
    transition: border-color 0.2s;
    -moz-appearance: textfield;
    font-family: inherit;
    border-right: 1px solid #EBF4FA;
}

.counter-btn {
    width: 28px;
    height: 38px;     
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    user-select: none;
    position: relative;
    border: 0;
    background: transparent;
}

.counter-btn:hover:not(:disabled) {              
    color: inherit;
}

.counter-btn:active:not(:disabled) {
    color: #BAC6CF;
}

.counter-btn:disabled { 
    cursor: not-allowed; ;
} 

.product_meta {
    padding-top: 10px;
}

.product_meta .btn {
    height: 40px;
    width: 100%;
    border: 1px solid var(--main-color); 
    font-size: 14px;
    border-radius: 2px;
}

.product_meta .btn:hover { 
    border: 1px solid var(--main-color-hover); 
}

.single_add_to_cart_button {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff; 
    font-size: 14px;
    border-radius: 2px;
    transition: all .3s;
}

.single_add_to_cart_button:hover {
    background: #e41b11; 
}

.attrib-box {
    padding-top: 30px;
}
.attrib-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.attrib-item {
    display: flex;
    gap: 10px;
}

.attrib-items {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.attrib-item div:first-child {
    color: #999;
}

.wc-tabs li a {
    background: #fafafa;
    padding: 16px 24px 15px;
    color: #777;
    display: block;
    text-align: center;
    transition: all .3s;
    border: 1px solid #ececec;
    position: relative;
}
.wc-tabs  {
    display: flex;
    gap: 10px;
    padding-bottom: 20px;
}


.tabs-block{
    padding-top: 30px;
    padding-bottom: 50px;
}

.product-card-slide {
    width: 350px;
    display: flex;  
    height: auto;
    border: 1px solid #E8E8E8;
}

.product-card-slide a { 
    display: flex;  
    flex-direction: column;
}

.product-card-slide h3 {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0px;
    padding: 10px 10px 20px;
}

.related-box {
    margin-bottom: 100px;
}

.product-card-slide-bottom {
    margin-top: auto;
    padding: 0 10px 20px;
}

.wc-tabs>li.active a:after {
    content: "";
    position: absolute;
    left: -1px;
    right: -1px;
    top: -1px;
    z-index: 1;
    height: 2px; 
    border-top-left-radius: 3px; 
    border-top-right-radius: 3px;
    background: var(--main-color);
}

.wc-tabs>li.active a  {
    background: transparent;
}

/* Подключаем шрифт star */
@font-face {
    font-family: WooCommerce;
    src:  url('/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

.woocommerce p.stars a {
    position: relative;
    height: 1em;
    width: 1em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
    font-size: 24px;
}
.woocommerce p.stars a::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-family: WooCommerce;
    content: "\e021";
    text-indent: 0;
}
.woocommerce p.stars a:hover ~ a::before {
    content: "\e021";
}
.woocommerce p.stars:hover a::before {
    content: "\e020";
}
.woocommerce p.stars.selected a.active::before {
    content: "\e020";
}
.woocommerce p.stars.selected a.active ~ a::before {
    content: "\e021";
}
.woocommerce p.stars.selected a:not(.active)::before {
    content: "\e020";
}
.woocommerce .star-rating {
    float: right;
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1em;
    width: 5.4em;
    font-family: WooCommerce;
}
.woocommerce .star-rating::before {
    content: "sssss";
    color: #cfc8d8;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}
.woocommerce .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}
.woocommerce .star-rating span::before {
    content: "SSSSS";
    top: 0;
    position: absolute;
    left: 0;
    color: #e6c553;
}
.woocommerce .woocommerce-product-rating {
    line-height: 2;
    display: block;
}
.woocommerce .woocommerce-product-rating::after,
.woocommerce .woocommerce-product-rating::before {
    content: " ";
    display: table;
}
.woocommerce .woocommerce-product-rating::after {
    clear: both;
}
.woocommerce .woocommerce-product-rating .star-rating {
    margin: 0.5em 4px 0 0;
    float: left;
}
.woocommerce .products .star-rating {
    display: block;
    margin: 0 0 0.5em;
    float: none;
}
.woocommerce .hreview-aggregate .star-rating {
    margin: 10px 0 0;
}
/* footer */

footer {
    background: #F8F8F8;
    padding: 35px 0 30px;
    border-top: 1px solid #E8E8E8;
}

.footer__contact span,
.footer__nav span {
    display: block;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1;
    font-size: 14px;
}

.footer-top {
    display: grid;
    grid-template-columns: auto auto auto auto 525px;
    gap: 50px;
    padding-bottom: 30px;
}

.footer-navigation__list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.footer-navigation__list li a{
    transition: all .3s;
    font-size: 14px;
        
}

.footer-navigation__list li a:hover{
    color: var(--main-color);

}

.footer__phone a {
    font-weight: 600;
}

.footer__phone,
.footer__address,
.footer__work {
    margin-bottom: 20px;
}

.footer-social>div {
    height: 1px;
    background: #E8E8E8;
    flex-grow: 1;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.footer__pay {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer__copy {
    font-size: 14px;
}

.woocommerce-pagination {
    display: flex;
    flex-direction: row;
    justify-content: end;
    margin: 32px 0;
}

.woocommerce-pagination .page-numbers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    border: none;
    gap: 4px;
}
.woocommerce-pagination .page-numbers li {
    display: inline-block;
    border: none;
    margin: 0;
}



.woocommerce-pagination .page-numbers .page-numbers:hover {
    background-color: var(--main-color);
    color: #fff;
}

.woocommerce-pagination .page-numbers .page-numbers {
    display: inline-block;
    padding: 9px 0;
    margin: 0;
    background-color: #ffffff;
    color: #1f2028;
    text-decoration: none;
    border: 1px solid #dadadd;
    border-radius: 5px;
    transition: background-color 0.2s ease;
    min-width: 32px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.woocommerce-pagination .page-numbers .page-numbers.current {
    background-color: var(--main-color);
    color: #ffffff;
    font-weight: 600;
    border: 1px solid var(--main-color);
}

.woocommerce-pagination .page-numbers .next {
    padding: 9px 0;
    color: #90939a;
    min-width: 32px;
}

.select2-results ul li:first-child, .wpc-posts-found {
    display: none!important;
}

.product-list-card.product h3 {
    font-weight: 400;
    font-size: 17px;
    padding-top: 15px;
}

header.woocommerce-products-header {
    margin: 0;
}