@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  font-size: 14px;
  font-family: "Rubik", sans-serif;
}
.no-scroll {
  overflow: hidden;
}
a {
  text-decoration: none;
}
p {
  text-align: justify;
  hyphens: auto;
}
ul,
ol {
  list-style-type: none;
}
:root {
  --link-color-white: #fff;
}
.container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.main {
  flex: 1 1 100%;
}
.first-header {
  background-image: linear-gradient(
    to right,
    #03a4db,
    #0097d5,
    #0089ce,
    #007cc6,
    #006ebd
  );
  width: 100%;
  padding: 15px 0;
}

.first-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.link-color {
  color: var(--link-color-white);
}
.first-header-contacts {
  display: flex;
  gap: 50px;
  align-items: center;
}
.first-header-contacts a {
  display: flex;
  gap: 10px;
  align-items: center;
}
.custom-logo-link img {
  width: 100%;
  max-width: 200px;
  height: auto;
}
.second-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}
.mobile-menu {
  display: none;
}
#primary-menu {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  text-transform: uppercase;
}
#primary-menu li a {
  color: #000;
}
.mobile-btn-cart-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
.btn-menu {
  display: none;
  position: relative;
  width: 34px;
  height: 24px;
}
.btn-menu span {
  width: 34px;
  height: 2px;
  background-color: #1d8dcd;
  border-radius: 2px;
  display: flex;
  transition: 0.3s ease all;
  position: absolute;
}
.btn-menu span:nth-child(1) {
  top: 0;
}
.btn-menu.active-menu span:nth-child(1) {
  rotate: 45deg;
  top: 50%;
  transform: translateY(-50%);
}
.btn-menu span:nth-child(2) {
  opacity: 1;
  left: 0;
  top: 50%;
}
.btn-menu.active-menu span:nth-child(2) {
  right: -100%;
  opacity: 0;
}
.btn-menu span:nth-child(3) {
  top: 100%;
}
.btn-menu.active-menu span:nth-child(3) {
  rotate: -45deg;
  top: 50%;
  transform: translateY(-50%);
}
.menu-item-has-children {
  position: relative;
  padding: 20px 20px 20px 0;
}
.menu-item-has-children:hover .sub-menu {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.menu-item-has-children::after {
  content: "";
  background: url(../images/icon/arrow-donw-menu.png) center/contain no-repeat;
  width: 12px;
  height: 12px;
  background-size: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sub-menu {
  position: absolute;
  display: none;
  gap: 14px;
  font-size: 14px;
  flex-direction: column;
  background-color: #fff;
  padding: 20px;
	    max-height: 500px;
    overflow: auto;
  width: 100%;
  border-radius: 10px;
  min-width: 280px;
  border-left: 1px solid #0000004f;
  border-right: 1px solid #0000004f;
  box-shadow: 0 5px 0 #0000004f;
  top: 50px;
  z-index: 100;
}

header .sub-menu a {
	    display: block;
    text-align: start;
    width: 100%;
}
.current-menu-item {
  background-image: linear-gradient(
    to right,
    #03a4db,
    #0097d5,
    #0089ce,
    #007cc6,
    #006ebd
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.second-header-cart {
  position: relative;
}
.counter-cart {
  position: absolute;
  color: #fff;
  min-width: 20px;
  width: auto;
  height: 20px;
  background-image: linear-gradient(
    to right,
    #03a4db,
    #0097d5,
    #0089ce,
    #007cc6,
    #006ebd
  );
  top: 20px;
  right: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 12px;
  padding: 4px;
}
/* BANNER */
.main-slider {
  position: relative;
}
.main-swiper {
  width: 100%;
  max-width: 1080px;
  height: 370px;
  overflow: visible;
  position: relative;
  margin: 0 auto 100px;
  overflow: hidden;
}
.swiper-slide {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  display: flex;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  top: 50%;
  transform: translateY(-50%);
}
.swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* чорний прозорий фон */
  z-index: 1;
}

.swiper-slide::after {
  content: "";
  border-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
}
.swiper-slide .banner-btn,
.swiper-slide .banner-descriptio,
.swiper-slide .banner-title {
  position: absolute;
  color: #fff;
  z-index: 2;
}
.swiper-slide .banner-title {
  left: 50%;
  top: 15%;
  transform: translate(-50%, 20px);
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 600;
}
.swiper-slide .banner-descriptio {
  left: 50%;
  top: 30%;
  transform: translate(-50%, 20px);
  font-size: 18px;
}
.swiper-slide .banner-btn {
  left: 50%;
  bottom: 20%;
  transform: translate(-50%, 20px);
  font-size: 14px;
  font-weight: 700;
  background-image: linear-gradient(
    to right,
    #03a4db,
    #0097d5,
    #0089ce,
    #007cc6,
    #006ebd
  );
  padding: 20px 40px;
  border-radius: 40px;
  text-transform: uppercase;
}
input.wpcf7-form-control.wpcf7-submit {
  border: none;
  font-size: 14px;
  font-weight: 700;
  background-image: linear-gradient(
    to right,
    #03a4db,
    #0097d5,
    #0089ce,
    #007cc6,
    #006ebd
  );
  padding: 20px 40px;
  border-radius: 40px;
  text-transform: uppercase;
  color: #fff;
  margin: 20px auto;
}
.cf7-btn-submit {
  width: 100%;
  display: flex;
  justify-content: center;
}
.wpcf7-spinner {
  display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  text-align: center;
}
input.wpcf7-form-control.wpcf7-submit {
}
input.wpcf7-form-control.wpcf7-submit .swiper-pagination {
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  transform: translate(-50%, 25px) !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #03a4db !important;
  width: 12px !important;
  height: 12px !important;
}
.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  transition: 0.3s ease all;
}
/* MAIN CONTENT */
.second-title {
  color: #2c2c2c;
  font-size: 24px;
  width: 100%;
  text-align: center;
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
}
.second-title::before {
  content: "";
  position: absolute;
  background: url(../images/line_under_text.png);
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 20px);
  width: 180px;
  height: 2px;
}
.product-category-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 колонки однакової ширини */
  gap: 20px; /* Відстань між елементами сітки */
  padding: 80px 50px;
}
.product-category-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px #7676761a;
  padding: 20px 35px;
  transition: 0.3s ease all;
  position: relative;
  top: 0;
}
.product-category-item:hover,
.product-item-cat:hover {
  box-shadow: 0 0 10px #93ddfc;
  top: -10px;
}
.product-category-item img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 206px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.categoy-desc {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.category-title {
  color: #000;
  font-size: 19px;
  text-transform: uppercase;
  margin: 15px 0 30px;
  font-weight: bold;
  text-align: start;
}
.category-link {
  background-image: linear-gradient(
    to right,
    #03a4db,
    #0097d5,
    #0089ce,
    #007cc6,
    #006ebd
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
  gap: 5px;
}
/* ABOUT US */
.about-us {
  background: url(../images/home_bg_about.webp) center/cover no-repeat;
  height: 100%;
  width: 100%;
  min-height: 448px;
  padding: 50px;
}
.about-us-title {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 50px;
  font-weight: bold;
}
.about-us p {
  color: #fff;
  font-size: 16px;
  margin: 20px 0;
  max-width: 70%;
}
/* TOV-praotech */
.bold-text {
  font-weight: 700;
}
.safety-subtitle {
  font-weight: 700;
  margin: 20px 0;
  font-size: 1.17em;
}
.widget_custom_contact_widget {
  margin-bottom: 20px;
}
.sidebar a {
  background-image: linear-gradient(
    to right,
    #03a4db,
    #0097d5,
    #0089ce,
    #007cc6,
    #006ebd
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.3s ease all;
}
.sidebar.category-sidebar a {
  background-image: linear-gradient(to right, #000, #000);
}
.sidebar a:hover {
  background-image: linear-gradient(to right, #01a4db, #01a4db);
}
.TOV-praotech {
  font-size: 16px;
  color: #000;
}
.TOV-praotech .second-title {
  margin: 50px auto;
  width: 100%;
  max-width: 800px;
}
.TOV-praotech .title-description {
  text-align: center;
  max-width: 850px;
  width: 100%;
  margin: 50px auto;
  hyphens: none;
}
.TOV-praotech .safety {
  list-style: decimal;
  margin: 0 0 30px 25px;
}
.TOV-praotech .container {
  max-width: 1240px;
}
.TOV-praotech-info-wrapper,
.service-template-info-wrapper,
.payment-delivery-info-wrapper,
#primary-tobos {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}
#primary-tobos {
  justify-content: space-between;
  padding-bottom: 50px;
}
.payment-delivery-info ul {
  margin: 20px 0;
}
.payment-delivery-info ul li {
  margin: 10px 0;
}
.service-template-info-wrapper .img-service {
  width: 100%;
  max-width: 300px;
  display: flex;
}
.service-template-info-wrapper .big-height-img {
  height: 400px;
  float: left;
  margin: 20px 20px 10px 0;
}
.service-block-img-text .img-service {
  margin: 20px;
}
.TOV-praotech-info {
  width: 100%;
  max-width: 850px;
}
.sidebar {
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 15px 30px;
  position: relative;
  width: 100%;
  max-width: 300px;
  font-size: 14px;
}
.sidebar .safety-subtitle {
  font-weight: 500;
  font-size: 16px;
}
.sidebar p {
  margin-bottom: 20px;
  text-align: left;
  hyphens: none;
}
.sidebar pre {
  color: #000;
  font-size: 14px;
}
.icon-phone {
  position: absolute;
  top: 15px;
  right: 20px;
}

/* OUR CLIENTS */
.our-clients .second-title {
  margin: 50px auto;
  width: 100%;
  max-width: 800px;
}
.our-clients-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; /* Можете змінити значення для бажаної відстані між брендами */
  margin-bottom: 80px;
}

.our-clients-brand-item {
  flex: 0 1 calc(20% - 40px); /* 20% для 5 брендів в ряд, враховуючи проміжки */
  box-sizing: border-box;
  max-height: 100px;
}

.our-clients-brand-item img {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: contain;
}
footer {
  background-color: #efefef;
}
.footer-title {
  font-weight: 500;
  font-size: 19px;
  margin: 30px 0;
}
.footer-wrapper {
  display: flex;
  gap: 40px;
  padding: 10px 80px;
  align-items: flex-start;
  justify-content: center;
}
.footer-border-top {
  border-top: 1px solid #b1b1b1;
  padding-top: 10px;
}
.footer-nav {
  width: 100%;
  max-width: 850px;
}
.nav-list-wrapper {
  display: flex;
  gap: 40px;
}
.nav-list-wrapper ul li {
  margin: 10px 0;
  text-align: left;
}

.footer-sidebar-info {
  color: #000;
  position: relative;
  width: 100%;
  max-width: 300px;
  text-align: left;
  hyphens: none;
  display: flex;
  flex-direction: column;
}
.footer-sidebar-info a,
.nav-list-wrapper a {
  color: #000;
  transition: 0.3s ease all;
}
.footer-sidebar-info a:hover,
.nav-list-wrapper a:hover {
  color: #01a4db;
}
.footer-sidebar-info p {
  margin-top: 10px;
}
.footer-sidebar-info a {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 20px 0;
}
.copyright {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.copyright p {
  color: #848484;
  font-size: 12px;
  font-weight: 400;
}
/* CONTACT PAGE */
.main-contact-wrapper {
  margin: 50px 0 20px;
  display: flex;
}
.main-contact-wrapper .sidebar {
  border: none;
  max-width: 50%;
}
.main-contact-wrapper .icon-phone {
  display: none;
}
.main-contact-wrapper .phone-numbers {
  display: flex;
  gap: 40px;
}
.phone-numbers li {
  margin: 10px 0;
}
.main-contact-wrapper .contact-item {
  margin-bottom: 40px;
}
.main-contact-wrapper .sidebar .safety-subtitle {
  margin-bottom: 10px;
}
.main-contact-wrapper iframe {
  border-radius: 10px;
}
/* delivery-and-payment */
.payment-delivery-info-wrapper,
.service-template-info-wrapper {
  margin-top: 50px;
  padding: 10px 20px 50px;
}
.service-block-img-text {
  display: flex;
}
.service-block-text {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.service-block-img-text img {
  float: left;
}

/* Cart text translate_______________________________________________ */
th.wc-block-cart-items__header-image::before {
  display: block;
  content: 'Товар';
}

th.wc-block-cart-items__header-total::before {
  display: block;
  content: 'Загальна сума';
}

.wc-block-components-totals-wrapper .wc-block-components-totals-item::before {
  display: inline;
  content: 'Загальна сума';
  text-wrap: wrap;
  max-width: 100px;
}

.wp-block-woocommerce-cart-order-summary-totals-block .wc-block-components-totals-item::before {
  display: inline;
  content: 'Проміжний підсумок';
  text-wrap: wrap;
  max-width: 100px;
}

th.wc-block-cart-items__header-image span, th.wc-block-cart-items__header-total span, span.wc-block-components-totals-item__label {
  display: none;
}

.wc-block-components-totals-item {
  justify-content: space-between;
}

tr.wc-block-cart-items__row .wc-block-cart-item__remove-link {
  color: transparent !important; /* Скрыть оригинальный текст */
  position: relative;
}

tr.wc-block-cart-items__row .wc-block-cart-item__remove-link::before {
  content: 'Видалити товар'; /* Новый текст */
  color: black; /* Цвет нового текста */
  position: absolute;
  left: 0;
  top: 0;
  text-decoration: underline;
}





/* ARCHIVE-PRODUCT */
.archive div#main {
  width: 100%;
}
.woocommerce.archive ul.products li.product a img {
  padding: 20px;
}
.woocommerce-breadcrumb {
  font-size: 16px; /* Задайте розмір шрифту за потреби */
  color: #838383; /* Основний колір для тексту */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.woocommerce-breadcrumb img {
  padding: 0 10px;
}
.woocommerce-breadcrumb a {
  transition: 0.3s ease all;
}
.woocommerce-breadcrumb a:hover {
  color: #03a4db;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme))
  .woocommerce-breadcrumb {
  color: #03a4db;
}
.woocommerce .woocommerce-breadcrumb {
  margin: 20px 0 40px;
}
/* PAGINATION */
.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #03a4db;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
}
.woocommerce nav.woocommerce-pagination ul li a.prev:hover,
.woocommerce nav.woocommerce-pagination ul li a.next:hover,
.woocommerce nav.woocommerce-pagination ul li a.prev:focus,
.woocommerce nav.woocommerce-pagination ul li a.next:focus {
  background: transparent;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  padding: 10px 15px;
  color: #000;
}
.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}
.woocommerce nav.woocommerce-pagination ul li {
  margin: 0 2px;
}
/* cart */
.product-list-cat {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.product-item-cat {
  position: relative;
  top: 0;
  width: 296px;
  border-radius: 10px;
  border: 1px solid #ececec;
  padding: 20px;
  transition: 0.3s ease all;
}
.product-item-cat {
  width: 100%;
}
#primary-tobos .product-list-cat {
  width: auto;
}
.article-product {
  position: absolute;
  top: 20px;
  left: 20px;
  max-width: 83px;
  z-index: 1;
}
.article-product span {
  color: #000;
}
.product-item-cat img {
  width: 100%;
}

.in-stock {
  color: #70bf44;
}
.price-product {
  font-weight: 500;
  font-size: 20px;
}
.btn-buy,
.woocommerce
  ul.products
  li.product
  .button.product_type_simple.add_to_cart_button,
#single-btn-buy.custom-add-to-cart-button {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  background-image: linear-gradient(
    to right,
    #03a4db,
    #0097d5,
    #0089ce,
    #007cc6,
    #006ebd
  );
  padding: 20px 20px;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  display: flex;
  background-color: none;
}
#single-btn-buy.custom-add-to-cart-button {
  max-width: 250px;
}
.woocommerce
  ul.products
  li.product
  .button.product_type_simple.add_to_cart_button,
#single-btn-buy.custom-add-to-cart-button {
  justify-content: center;
}
.product-title {
  margin: 5px 0 10px 0;
}
.product-title a {
  color: #000;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme))
  div.product
  span.price {
  color: #000;
  font-weight: 500;
  margin-bottom: 20px;
}
.price-product {
  margin: 20px 0;
}
.main-category-title {
  margin-bottom: 70px;
}
/* category description */
.category-description {
  max-width: 850px;
  width: 100%;
}
.category-description img {
  float: left;
  margin: 0 20px 20px;
  clear: both;
  max-width: 300px;
}
.category-description .service-block-img-text {
  margin-bottom: 20px;
}
.category-description .img-flex-wrapper {
  display: flex;
  flex-direction: column;
}
.category-description p {
  margin: 20px 0;
}
.category-description ul {
  padding-left: 20px;
  list-style-image: url(../images/list-circle.svg);
}
.category-description ol{
	padding-left: 20px;
	list-style-type: decimal;
}
.description-category-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* або будь-який інший відступ між елементами */
}
.description-category-grid-2 img,
.description-category-product-block img{
	float: none;
	max-width: 200px;
}
.description-category-grid-2 p{
	display: flex;
	flex-direction: column;
	align-items: center;
}


.description-category-product-block p{
	display: flex;
}
/* FORM */
#popmake-147 .popmake-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
#popmake-147 span input,
#popmake-147 span textarea,
.form input,
.form text-area {
  border: 1px solid #e3e2e2;
  border-radius: 10px;
  padding: 10px 15px;
  color: #5c5b5b;
  width: 100%;
}
#popmake-147 span textarea {
  resize: none;
  width: 100%;
}
.product-sku-stock {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.product-sku-stock .article-product {
  position: relative;
  max-width: 100%;
  top: 0;
  left: 0;
}
.single-product-short-info-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 30px;
}
.single-product-short-info-text {
  display: flex;
  flex-direction: column;
}
.img-main-info-product-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
}
.single-product-short-info-text p {
  margin: 10px 0;
}
.custom-product-description__single p {
  margin: 20px 0;
}
.woocommerce div.product div.images img {
  max-width: 340px;
}
.quantity {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.quantity button {
  border: none;
  background: transparent;
  color: #03a4db;
  font-size: 18px;
}
.single-product-short-info-text p a {
  color: #03a4db;
  transition: 0.3s ease all;
}
.single-product-short-info-text p a:hover {
  color: #48d0ff;
}
#quantity-input {
  outline: none;
}
input#quantity-input {
  border: none;
}
/* label */
.product-image-wrapper,
.woocommerce-product-gallery {
  position: relative;
}
.badge-top-seller,
.badge-on-sale {
  position: absolute;
  display: flex;
  color: #fff;
  height: 3rem;
  width: 3rem;
  text-align: center;
  vertical-align: middle;
  line-height: 2.5rem;
  transform: rotate(-20deg);
  animation: beat 1s ease infinite alternate;
  top: -10px;
  right: -20px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 2;
  align-items: center;
  justify-content: center;
  &:before,
  &:after {
    content: "";
    position: absolute;
    background: inherit;
    height: inherit;
    width: inherit;
    top: 0;
    left: 0;
    z-index: -1;
    transform: rotate(30deg);
  }
  &:after {
    transform: rotate(60deg);
  }
}

@keyframes beat {
  from {
    transform: rotate(-20deg) scale(1);
  }
  to {
    transform: rotate(-20deg) scale(1.1);
  }
}
/* Відображення бейджів один під одним, якщо обидва активні */
.badge-on-sale + .badge-top-seller {
  top: 60px; /* Відступ другого бейджа від першого */
}

.badge-top-seller + .badge-on-sale {
  top: 60px; /* Відступ другого бейджа від першого */
}
.badge-on-sale {
  background-image: linear-gradient(
    to right bottom,
    #ff6f61,
    #f85d4d,
    #f04b39,
    #e73623,
    #dd1a07
  );
}

.badge-top-seller {
  background-image: linear-gradient(
    to right bottom,
    #ffd65d,
    #ffd14e,
    #ffcc3d,
    #ffc629,
    #ffc107
  );
}
.woocommerce-product-gallery .badge-on-sale,
.woocommerce-product-gallery .badge-top-seller {
  right: 20px;
}
.custom-product-description__single table{
	border: 1px solid #03a4db;
    border-collapse: collapse;
}
.custom-product-description__single table td{
	border: 1px solid #03a4db;
    padding: 2px;
	text-align: center;
}
@media (max-width: 1200px) {
  .product-category-list {
    grid-template-columns: repeat(3, 1fr); /* 3 колонки на середніх екранах */
  }
  .custom-logo-link img {
    max-width: 150px;
  }
  #primary-menu {
    gap: 20px;
  }
  .second-header {
    padding: 15px 30px;
  }
  .product-category-item img {
    min-height: auto;
  }
}
@media (max-width: 1000px) {
  .second-header {
    background-color: #fff;
    position: fixed;
    z-index: 100000;
  }
  .service-block-img-text .img-service {
    max-width: 200px;
  }

  main {
    margin-top: 100px;
  }
  .btn-menu {
    display: block;
  }
  .first-header {
    display: none;
  }
  .site-header.menu-open {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    z-index: 1000;
  }
  .site-header.menu-open .second-header-cart {
    opacity: 0;
  }
  .second-header #primary-menu {
    display: none;
  }
  .menu-open .mobile-menu .first-header-contacts {
    flex-direction: column-reverse;
  }
  .menu-open .mobile-menu .first-header-contacts,
  .menu-open .mobile-menu .link-color {
    color: #000;
  }
  .menu-open .mobile-menu .first-header-contacts,
  .menu-open .mobile-menu .first-header-download-price {
    margin-top: 50px;
  }

  .menu-open .mobile-menu {
    display: flex;
    justify-content: space-between;
    margin-top: 150px;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
  }
  .menu-open .mobile-menu #primary-menu {
    display: flex;
    flex-direction: column;
  }
  .menu-open .mobile-menu #primary-menu .menu-item-has-children {
	  padding: 0;
    margin: 0 40px;
    text-align: center;
  }
  .menu-open .mobile-menu .sub-menu {
    position: relative;
    border: none;
    top: 10px;
    box-shadow: none;
    padding: 0px 0 20px 0px;
  }
  .menu-open .mobile-menu .menu-item-has-children::after {
    top: 10px;
    right: -20px;
  }
  .swiper-slide .banner-title {
    font-size: 24px;
    text-align: center;
    hyphens: none;
  }
  .swiper-slide .banner-descriptio {
    text-align: center;
    hyphens: none;
    top: 40%;
  }
  .product-category-list {
    margin-top: 60px;
  }
  .product-category-item {
    padding: 10px;
  }
  .product-category-item img {
    min-height: auto;
  }
  .category-title,
  .category-link {
    font-size: 12px;
  }
  .product-category-list {
    padding: 0;
  }
  .about-us p {
    max-width: 100%;
    width: 100%;
  }
  .service-block-img-text .img-service {
    height: max-content;
  }
  .woocommerce.archive ul.products li.product a img {
    padding: 0;
  }
  .woocommerce.archive ul.products li.product .product-item-cat a img {
    padding: 20px;
  }
  .woocommerce ul.products li.product a {
    font-size: 12px;
  }
  .price-product {
    font-size: 16px;
  }
  .woocommerce
    ul.products
    li.product
    .button.product_type_simple.add_to_cart_button,
  #single-btn-buy.custom-add-to-cart-button {
    font-size: 10px;
    font-weight: 500;
    padding: 15px 20px;
  }
}

@media (max-width: 900px) {
  .woocommerce ul.products.columns-3 li.product,
  .woocommerce-page ul.products.columns-3 li.product {
    width: 45.75%;
  }
}
@media (max-width: 768px) {
  .second-title::before {
    content: "";
    position: absolute;
    background: url(../images/line_under_text_mobile.png) center/contain
      no-repeat;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 20px);
    width: 180px;
    height: 2px;
  }
  .product-category-list {
    grid-template-columns: repeat(2, 1fr); /* 2 колонки на малих екранах */
  }
  .our-clients-brand-item {
    flex: 0 1 calc(30% - 40px); /* 50% для 2 брендів в ряд на мобільних пристроях */
  }
  .main-swiper {
    height: 260px;
  }
  .swiper-slide img {
    height: 100%;
  }
  .category-link svg {
    width: 12px;
  }
  .TOV-praotech-info-wrapper,
  .service-template-info-wrapper,
  .payment-delivery-info-wrapper,
  #primary-tobos {
    flex-direction: column;
  }
  .about-us {
    padding: 20px;
  }
  .footer-wrapper {
    padding: 10px 20px;
    flex-direction: column;
  }
  .footer-sidebar-info,
  .sidebar {
    max-width: 100%;
  }
  .footer-sidebar {
    width: 100%;
  }
  .second-header-cart svg {
    width: 26px;
    height: 24px;
  }
  .mobile-btn-cart-wrapper {
    gap: 20px;
  }
  .counter-cart {
    min-width: 14px;
    height: 14px;
    font-size: 10px;
  }
  .second-title {
    font-size: 20px;
  }
  .main-contact-wrapper {
    flex-direction: column;
  }
  .main-contact-wrapper .sidebar {
    width: 100%;
    max-width: 100%;
    padding: 10px;
  }
  .main-contact-wrapper iframe {
    width: 100%;
  }
  .service-block-img-text {
    flex-direction: column;
  }
  .service-block-img-text .img-service {
    max-width: 100%;
    margin: 20px 0;
  }
  .service-block-text {
    padding: 0;
  }
  .product-category-item {
    padding: 20px 35px;
  }
  aside#secondary {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .swiper-slide .banner-title {
    font-size: 18px;
  }
  .swiper-slide .banner-descriptio {
    font-size: 14px;
  }
  .swiper-slide .banner-btn {
    text-align: center;
    hyphens: none;
  }
  .swiper-slide .banner-btn {
    width: 60%;
  }
  .product-category-item {
    padding: 20px;
  }
  .category-title {
    font-size: 12px;
  }
  .category-link {
    font-size: 10px;
  }
  .copyright {
    gap: 10px;
    padding: 20px 10px;
    align-items: flex-start;
  }
  .copyright p {
    text-align: center;
    hyphens: none;
  }
  .service-template-info-wrapper .img-service {
    float: none;
    height: auto;
    max-width: 100%;
  }
  .img-main-info-product-wrapper {
    flex-direction: column;
  }
	.description-category-grid-2 {
		grid-template-columns: 1fr; /* 1 елемент в ряд на маленьких екранах */
	}
}
@media (max-width: 480px) {
  .swiper-slide .banner-btn {
    width: 75%;
  }
  .nav-list-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .nav-list-wrapper ul li:last-child {
    margin-bottom: 0;
  }
  .service-template-info-wrapper {
    padding: 10px 0 50px;
  }
  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page ul.products[class*="columns-"] li.product {
    width: 100%;
    margin: 0 auto;
  }
  .woocommerce .products ul,
  .woocommerce ul.products {
    padding: 20px 40px;
  }
  .article-product {
    top: 25px;
    left: 25px;
  }
  .product-item-cat {
    padding: 25px;
    margin-bottom: 20px;
  }
  .woocommerce
    ul.products
    li.product
    .button.product_type_simple.add_to_cart_button,
  #single-btn-buy.custom-add-to-cart-button {
    padding: 20px;
  }
}
@media (max-width: 380px) {
  .category-title {
    font-size: 10px;
  }
  .category-description img {
    float: none;
    margin: 20px 0;
    max-width: 100%;
  }
}

/* Перемикач мов (Polylang) — у футері */
.first-header-wrapper .language-switcher{ display:none; }
footer .copyright{ flex-wrap:wrap; }
footer .footer-lang-row{
  flex-basis:100%; display:flex; justify-content:center; margin-top:14px;
}
footer .footer-lang-row ul,
footer .language-switcher.footer-lang{
  display:flex; align-items:center; gap:0;
  list-style:none; margin:0; padding:0;
}
footer .footer-lang-row li{ display:inline-flex; margin:0; padding:0; list-style:none; }
footer .footer-lang-row li + li{ border-left:1px solid rgba(0,0,0,.25); }
footer .footer-lang-row li a{
  display:inline-block; padding:3px 12px;
  font-family:Rubik,sans-serif; font-size:14px; font-weight:500; line-height:1;
  text-transform:uppercase; letter-spacing:.5px;
  color:#666; text-decoration:none; transition:color .15s ease;
}
footer .footer-lang-row li a:hover{ color:#0d6efd; }
footer .footer-lang-row li.current-lang a{ color:#111; font-weight:700; }
