:root {
	--color-main: #000;
	--color-brand: #0059A3;
	--color-secondary: #333;
	--color-grey: #808080;
	--color-white: #fff;
	--color-light: #F1F1F1;
}

body {
  margin:0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  margin-top: 0;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 40px;
  margin-top: 0;
}

h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}

.section {
  margin-bottom: 120px;
}

.container {
  max-width: 1554px;
  margin: 0 auto;
  padding: 0 24px;
}

.overlay {
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease-in;
}

.overlay--active {
	  background: rgba(0,0,0,0.5);
	  position: fixed;
	  top:0;
	  left:0;
	  right:0;
	  bottom: 0;
	  width: 100%;
	  height: 100vh;
	  z-index: 10;
	  overflow-y: auto;
	  opacity: 1;
	  pointer-events: all;
	  transition: 0.4s ease-in;
}

.border-btn {
  height: 50px;
  line-height: 48px;
  border: 1px solid var(--color-brand);
  color: var(--color-brand);
  text-align: center;
  min-width: 280px;
  transition: 0.3s ease-in;
}

.primary-btn, .add_to_cart_button, .inquire-price {
  height: 50px;
  line-height: 48px;
  border: 1px solid var(--color-brand);
  color: var(--color-white);
  text-align: center;
  min-width: 280px;
  transition: 0.3s ease-in;
  background-color: var(--color-brand);
  display: inline-block;
}

.woocommerce .entry-summary .inquire-price {
  padding: 0;
  border: 1px solid var(--color-brand);
  color: var(--color-white);
  background-color: var(--color-brand);
  border-radius: 0;
  line-height: 50px;
  font-weight: 400;
}

.woocommerce .entry-summary .inquire-price:hover {
  background: none;
  color: var(--color-brand);
}

.border-btn:hover {
	background-color: var(--color-brand);
	color: var(--color-white);
}

.primary-btn:hover {
	background-color: transparent;
	color: var(--color-brand);
}

.woocommerce .entry-summary .download-sheet {
  margin-left: 15px;
  padding: 17px 25px 17px 60px;
  border: 1px solid var(--color-brand);
  color: var(--color-brand);
  background: none;
  position: relative;
  border-radius: 0;
  font-weight: 400;
}

.download-sheet:before {
  position: absolute;
  content:'';
  background: url(../images/pdf.svg);
  width: 24px;
  height: 24px;
  left: 25px;
  top: calc(50% - 12px);
}

.woocommerce .entry-summary .download-sheet:hover {
  background: none;
  color: var(--color-brand);
}

.form {
  position: relative;
  z-index: 1;
}

.form input {
  border-radius: 50px;
  border: 1px solid #F0F0F0;
  background-color: var(--color-white);
  padding: 0 28px;
  height: 68px;
  line-height: 66px;
  color: var(--color-main);
  width: calc(100% - 56px);
  outline: none;
  font-family: "Istok Web", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.form textarea {
  height: 106px;
  border-radius: 50px;
  border: 1px solid #F0F0F0;
  background-color: transparent;
  padding: 12px 28px;
  line-height: 1.2;
  color: var(--color-main);
  width: 100%;
  outline: none;
  font-family: "Istok Web", sans-serif;
  font-size: 18px;
  transition: all 0.2s ease-out;
  overflow: hidden;
  resize: vertical;
}

.form-group {
  margin-bottom: 16px;
}

input:focus-within {
  border-color: var(--color-main);
}

.form__small {
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-secondary);
  text-align: center;
}

.form__small a {
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__small a:hover {
  text-decoration: none;
}

.modal {
  margin: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 1002;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 65px 0;
}

.modal::-webkit-scrollbar {
  width: 0;
}

.modal--active {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}

.modal__wrap {
  max-height: 100%;
  max-width: 530px;
  margin: 10px 0;
  width: 100%;
}

.modal__content {
  background: #fff;
  background-size: cover;
  padding: 40px;
  position: relative;
  width: calc(100% - 20px);
  margin: 0 10px;
}

.modal__body {
  position: relative;
  top: 0;
}

.modal__body > h3 {
  padding-right: 40px;
  margin-bottom: 25px;
}

.modal__header {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
  text-align: center;
}

.modal__text {
  color: var(--color-secondary);
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 27px;
  text-align: center;
}

.modal__close {
  position: absolute;
  width: 44px;
  height: 44px;
  right: 24px;
  top: 24px;
  z-index: 2;
  background: #F6F6F6 url(../images/close.svg) no-repeat center center;
  border-radius: 50%;
}

.modal__close:hover {
  cursor: pointer;
  background: var(--color-brand) url(../images/close-hover.svg) no-repeat center center;
}

.modal__submit {
  width: 360px;
  text-align: center;
  margin: 0 auto 27px;
  display: block;
}	
.form-group input {
  border: 1px solid rgba(0,0,0,0.05);
  height: 50px;
  padding: 0 20px;
  width: calc(100% - 40px);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}
.form-group textarea {
  border: 1px solid rgba(0,0,0,0.05);
  height: 100px;
  padding: 20px;
  width: calc(100% - 40px);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}
.form-group input::placeholder {
  color: var(--color-grey);
}
.wpcf7-submit {
  padding: 0;
  border: 1px solid var(--color-brand);
  color: var(--color-white);
  background-color: var(--color-brand);
  border-radius: 0;
  line-height: 50px;
  font-weight: 400;
  width: 250px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}


.top-header {
	padding: 20px 0 0;
}

.top-wrap {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	align-items: center;
}

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

.logo {
	min-width: 200px;
	flex-shrink: 0;
}

.social {
	display: flex;
	gap: 10px;
}

.social-item {
	width: 30px;
	height: 30px;
	position: relative;
}

.social-item:before {
	position: absolute;
	content:'';
	width: 30px;
	height: 30px;
	top: 0;
	left: 0;
}

.insta:before {
	background: url(../images/insta.svg);
}

.facebook:before {
	background: url(../images/facebook.svg);
}

.header-contact-item {
	display: flex;
	gap: 30px;
	align-items: center;
}

.phone, .mail {
	padding-left: 34px;
	position: relative;
	font-size: 16px;
}

.phone a, .mail a {
	color: var(--color-main);
}

.phone:before {
	position: absolute;
	content:'';
	width: 24px;
	height: 24px;
	top: calc(50% - 12px);
	left: 0;
	background: url(../images/phone.svg);
}

.mail:before {
	position: absolute;
	content:'';
	width: 24px;
	height: 24px;
	top: calc(50% - 12px);
	left: 0;
	background: url(../images/mail.svg);
}

.header-icons {
	display: flex;
	gap: 16px;
	align-items: center;
}

.header-icons > a {
	display: block;
}

.cart-icon {
	position: relative;
}

.cart-count {
	position: absolute;
	top: -10px;
	left: 12px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #D9D9D9;
	font-size: 14px;
	color: var(--color-main);
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-banner-list {
	padding: 120px 48px;
	background: url(../images/main-banner.jpg);
}

.subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--color-secondary);
}

.main-banner-text {
  font-size: 18px;
  color: var(--color-secondary);
  margin-bottom: 45px;
  max-width: 630px;
}

.popular-categories-list {
  display: flex;
  gap: 30px;
}

.popular-categories-item {
  border: 1px solid rgba(0,0,0,0.05);
  padding: 30px;
  width: 25%;
}

.cat-img {
  height: 200px;
  margin-bottom: 24px;
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-title {
  font-size: 18px;
  display: block;
  color: var(--color-main);
}

.preim-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
}

h2 {
  width: 100%;
}

.preim-item {
  width: calc(25% - 24px);
}

.preim-ic {
  margin-bottom: 20px;
}

.preim-title {
  margin-bottom: 20px;
  font-size: 20px;
}

.preim-text {
  color: var(--color-grey);
}

.preim-bottom {
  margin-top: 40px;
  font-size: 18px;
}

.splide {
  visibility: visible !important;
  opacity: 1 !important;
}

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

.product-img {
  display: block;
  margin-bottom: 24px;
  border: 1px solid var(--color-light);
}

.item-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.item-title a {
  color: var(--color-main);
}

.product-excerpt p {
  color: var(--color-grey);
}

.item-price {
  display: block;
  margin-bottom: 16px;
}

.splide__pagination {
  position: absolute;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  width: calc(50% - 20px);
  left: calc(50% + 20px);
  display: flex;
  border-bottom: 1px solid #121214;
  height: 6px;
  flex-wrap: nowrap;
}

.splide__pagination li {
  position: relative;
  display: inline-block;
  height: 5px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  width: 100%;
}


.splide__pagination li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 100%;
  height: 5px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.splide__pagination li .is-active {
  width: 100%;
  height: 5px;
  margin: 0;
  background: #0059A3;
  border-radius: 0;
  transform: scale(1);
  opacity: 1;
}

.splide__arrows {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.splide__arrow {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.splide__arrow--prev {
  top: calc(100% + 40px);
  left: calc(50% + 10px);
}

.splide__arrow--next {
  top: calc(100% + 40px);
  right: calc(50% - 70px);
}

.splide__arrow--prev:before {
  position: absolute;
  content: '';
  background: url(../images/arrow.svg);
  width: 23px;
  height: 10px;
  transform: rotate(180deg);
}

.splide__arrow--next:before {
  position: absolute;
  content: '';
  background: url(../images/arrow.svg);
  width: 23px;
  height: 10px;
}

.flex-viewport {
  border: 1px solid var(--color-light);
}

.woocommerce-product-gallery {
  display: flex;
  gap: 15px;
}
.flex-control-nav {
  order: 1;
  width: 140px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 448px;
  overflow: hidden;
}
.flex-viewport {
  order: 2;
  width: calc(100% - 140px - 15px);
  max-height: 447px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: calc(100% - 2px);
  border: 1px solid var(--color-light);
}

.additional-description {
  color: var(--color-grey);
  margin-bottom: 40px;
}

.option-label {
  font-size: 18px;
  margin-bottom: 20px;
}

.option-list {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}

.option-item {
  padding: 8px 10px;
  border: 1px solid var(--color-light);
  color: var(--color-grey);
  cursor: pointer;
}

.option-item label {
  cursor: pointer;
}

.option-item input {
  width: 0;
  margin: 0;
  cursor: pointer;
}

.from-price, .woocommerce-Price-currencySymbol {
  font-size: 18px;
  color: var(--color-main);
  font-weight: 400;
}

.option-item input:checked + label {
  color: var(--color-brand);
}

.from-price .amount {
  font-size: 24px;
  font-weight: 700;
}

.woocommerce-product-details__short-description {
  display: none;
}

.product_meta {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--color-light);
  overflow: visible;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none;
  background: none;
  padding: 16px 48px 16px 0;
  margin: 0;
}

.woocommerce div.product div.images {
  margin-bottom: 60px;
}

.woocommerce-tabs {
  margin-top: 40px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 0;
  font-size: 18px;
  color: var(--color-main) !important;
  font-weight: 400;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:before, .woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active:before {
  top: -2px;
  width: 100%;
  height: 2px;
  left: 0;
  background-color: var(--color-brand);
  content:'';
  box-shadow: none;
  display: block;
  border: none;
}

.wc-tab {
  padding-top: 30px !important;
  color: var(--color-secondary);
}

.wc-tab h2 {
  text-transform: initial;
}

.related {
  margin-top: 160px;
}

.wc-tab  ol {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  margin-bottom: 50px;
  counter-reset: myCounter;
}

.wc-tab ol li {
  padding-left: 44px;
  position: relative;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.wc-tab ol li:before {
  counter-increment: myCounter;
  content: counter(myCounter);
  position: absolute;
  border: 1px solid var(--color-light);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  left: 0px;
  top: -6px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-main);
  font-family: 'Open Sans';
  line-height: 32px;
}

/* базово все рахуємо з бордерами, щоб 100% не «розповзались» */
.detailsTable, .detailsTable * { box-sizing: border-box; }

/* таблиця */
.detailsTable{
  width:100%;
  border-bottom:1px solid #cacaca;
  margin-bottom:10px;
}

/* рядок */
.detailsTable>div{
  display:flex;
  align-items:stretch;
  width:100%;
  color:#737373;
  line-height:1.4375em;
  background:#fff;
}
.detailsTable>div:nth-child(2n){ background:#e7e7e7; }

/* комірки */
.detailsTable>div>div{
  padding:.625em 1.25em;
  border-top:1px solid #cacaca;
  border-left:1px solid #cacaca;
}

/* 1-й стовпець: № */
.detailsTable>div>div:first-child{
  flex:0 0 5%;
}

/* 2-й стовпець: назва */
.detailsTable>div>div:nth-child(2){
  flex:0 0 29%;
}

/* 3-й стовпець: значення */
.detailsTable>div>div:last-child{
  flex:1 1 0%;
  border-right:1px solid #cacaca;
}

/* значення-списки всередині третього стовпця */
.detailsTable .parent:not(.colors){ padding:0; }
.detailsTable .parent>div{
  display:flex;
  height:100%;
  justify-content:space-between;
} 

.detailsTable .parent>div b {
	text-align:center;
	width: 100%;
	padding: .6em .5em;
}

/* звичайні значення-тайли */
.detailsTable .parent>div>span:not(.color){
  flex:1 1 20%;
  padding:.6em .5em;
  text-align:center;
  border-right:1px solid #cacaca;
}
.detailsTable .parent>div>span:not(.color):last-child{ border-right:0; }

/* палітра RAL */
.detailsTable .parent.colors>div{ margin-bottom:-.4375em; }
.detailsTable .parent>div>span.color{
  display:inline-block;
  font-size:.75em;
  width:100%;
  max-width:100px;
  height:28px;
  padding:.3333em .4166em;
  text-align:center;
  margin:0 .5833em .6666em 0;
  position:relative;
}
.detailsTable .parent>div>span.color:before{
  content:"";
  position:absolute; inset:0;
  border:1px solid rgba(1,1,1,.3);
}

/* центрування одноваріантних значень (one_value) */
.detailsTable .one_value{ text-align:center; }

.breadcrumbs {
	margin-bottom: 40px;
}
.woocommerce-tabs h1 {
	font-size: 36px;
}
.woocommerce-tabs h2 {
	font-size: 28px;
}
.woocommerce .type-product .inquire-price {
    padding: 0;
    border: 1px solid var(--color-brand);
    color: var(--color-white);
    background-color: var(--color-brand);
    border-radius: 0;
    line-height: 50px;
    font-weight: 400;
}
.woocommerce .type-product .inquire-price:hover {
	background:transparent;
	color: var(--color-brand);
}
.product-categories .cat-item-15 {
	display: none;
}
.flex-container {
	display: flex;
	gap: 40px;
}
.shop-sidebar .widget {
	border: 1px solid var(--color-light);
	padding: 20px;
	margin-bottom: 30px;
}



/* адаптив */
@media (max-width:1024px){
  .detailsTable>div>div{ padding:.625em; }
}
@media (max-width:895px){
  .detailsTable>div{ flex-wrap:wrap; text-align:center; }
  .detailsTable>div>div:first-child,
  .detailsTable>div>div:nth-child(2),
  .detailsTable>div>div:last-child{ flex:0 0 100%; }
}


.profiling-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Відстань між плитками */
    justify-content: flex-start;
}

.profiling-item {
    flex: 0 0 calc(33.333% - 20px); /* Для трьох колонок */
    box-sizing: border-box;
    text-align: center;
    transition: box-shadow 0.3s;
}


.profiling-item a {
  border: 1px solid var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 10px;
}

.profiling-item img {

    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    cursor: pointer;
}

.pswp__img {
  width: auto !important;
}

.profile-name {
    margin: 0;
    font-weight: bold;
    font-size: 1em;
}
.shop-breadcrumbs nav {
	margin-bottom: 40px !important;
}
.wpc-posts-found, .wpc-edit-filter-set {
	display: none;
}

.flex-container {
	display: flex;
	gap: 40px;
}
.shop-sidebar {
	width: 370px;
}
.shop-sidebar h3, .shop-sidebar .wpc-filter-header {
	margin-top: 0;
	font-size: 18px;
	font-weight: 700;
	padding-bottom:7px;
	border-bottom: 1px solid var(--color-brand);
}
.shop-content {
	width: calc(100% - 370px - 40px);
}
.shop-sidebar ul {
	list-style: none;
	padding-left: 0;
}
.shop-sidebar li {
	padding-left:0;
	margin-bottom: 12px;
}
.shop-sidebar li:last-child {
	margin-bottom:0;
}
.shop-sidebar li a {
	color: var(--color-secondary);
	
}
.shop-content .product img {
	border: 1px solid var(--color-light);
}
.woocommerce-loop-product__title {
	font-size: 18px !important;
	font-weight: 700;
	color: #000;
}
.shop-content .price .amount {
    font-size: 24px;
    font-weight: 700;
	color: #000;
}
.woocommerce .type-product .add_to_cart_button {
    padding: 0;
    border: 1px solid var(--color-brand);
    color: var(--color-white);
    background-color: var(--color-brand);
    border-radius: 0;
    line-height: 50px;
    font-weight: 400;
}
.woocommerce ul.products li.product .button:hover {
	background: none;
	color: var(--color-brand);
}
.product .price .amount {
    font-size: 24px;
    font-weight: 700;
	color: #000;
}
.summary form .single_add_to_cart_button {
    padding: 0 !important;
    border: 1px solid var(--color-brand) !important;
    color: var(--color-white) !important;
    background-color: var(--color-brand) !important;
    border-radius: 0 !important;
    line-height: 50px !important;
    font-weight: 400 !important;
	display: block;
	max-width:225px;
	width: 100%;
}
.popular-products {
	margin-bottom: 120px;
}
.projects-text {
	max-width: 514px;
	margin-bottom: 48px;
}
.project-item {
	display: flex;
	gap: 100px;
	align-items: center;
}
.project-desc h3 {
	font-size: 24px;
	font-weight:700;
	margin-bottom: 24px;
	text-transform: uppercase;
	margin-top: 0;
}
.project-desc-item {
	padding-bottom: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--color-light);
}
.project-title {
	font-size: 20px;
	margin-bottom: 16px;
}
.project-text ul {
	list-style: none;
	padding-left: 0;
}
.project-text li {
	padding-left: 32px;
	position: relative;
	color: #808080;
	margin-bottom: 10px;
}
.project-text li:last-child {
	margin-bottom: 0;
}
.project-text li:before {
	position: absolute;
	content:'';
	background: var(--color-brand);
	width: 20px;
	height: 1px;
	left: 0;
	top: 11px;
}
.project-image {
	width: 60%;
	max-height: 500px;
}
.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.project-desc {
	width: calc(100% - 60% - 100px);
}
#splide-projects-list {
	margin-bottom: 40px !important;
}

:root {
	--color-main: #000;
	--color-brand: #0059A3;
	--color-secondary: #333;
	--color-grey: #808080;
	--color-white: #fff;
	--color-light: #F1F1F1;
}
.flex {
  display: flex;
  align-items: center;
  gap: 120px;
}
.calc-desc, .calc-img {
  width: 50%;
}
.calc-desc p {
  color: #333;
  font-size: 18px;
  margin-bottom: 48px;
}
.calc-desc .wpcf7-submit {
  background: none;
  color: var(--color-brand);
}
.calc-desc .wpcf7-submit:hover {
  background: var(--color-brand);
  color: #fff;
}


.services-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.services-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Реверс для парних рядків */
.services-item--reversed {
    direction: rtl;
}
.services-item--reversed > * {
    direction: ltr;
}

.services-item__img img {
    width: 100%;
    height: auto;
    display: block;
}

.services-item__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #FE6D00; /* жовтий акцент як на макеті */
    border-radius: 50%;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 24px;
    color: #fff;
}

.services-item__title {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 16px;
    margin-top: 0;
}

.services-item__desc {
    font-size: 16px;
    line-height: 1.6;
    color: #808080;
}


.clients-slider__item {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #F1F1F1;
    padding: 20px;
}

.clients-slider__item img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Прибираємо стрілки та пагінацію Splide */
.clients-slider .splide__arrows,
.clients-slider .splide__pagination {
    display: none !important;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
}

/* Елемент */
.faq-item {
    background: #F1F1F1;
    border-radius: 2px;
}

.faq-item--active {
    background: #0059A3; /* синій як на макеті */
    color: #fff;
}

/* Кнопка-тригер */
.faq-item__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 20px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 20px;
    line-height: 1.4;
}

.faq-item--active .faq-item__trigger {
    color: #fff;
}

/* Іконка +/- */
.faq-item__icon {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.icon-minus {
    display: none;
}

.faq-item--active .icon-plus {
    display: none;
}

.faq-item--active .icon-minus {
    display: block;
}

/* Відповідь */
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item--active .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer-inner {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: inherit;
    opacity: 0.85;
}
footer {
  padding-top: 40px;
  background: #F1F1F1;
}
.footer-top {
  display: flex;
  gap: 100px;
  justify-content: space-between;
}
.foot-menu h2 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 16px;
}
.foot-menu ul {
  padding-left: 0;
  list-style: none;
  font-size: 14px;

}
.foot-menu ul li {
  margin-bottom: 10px;
}
.foot-menu li a {
  color: #808080;
}
.foot-menu .phone {
  margin-bottom: 12px;
  font-size: 16px;
}
.foot-menu .mail {
  font-size: 16px;
}
.footer-top {
  padding-bottom: 40px;;
}
.bottom-footer {
  background: #000;
  padding: 20px 0;
  color: #fff;
  text-align: center;
}
a.wc-block-components-product-name {
  color: var(--color-brand);
}
.wc-block-cart__submit-button {
    padding: 0;
    border: 1px solid var(--color-brand);
    color: var(--color-white);
    background-color: var(--color-brand);
    border-radius: 0;
    line-height: 50px;
    font-weight: 400;
}
.wc-block-cart__submit-button:hover {
    background: transparent;
    color: var(--color-brand);
}

/* ===================================
   WooCommerce — Мій обліковий запис
   (безпечний варіант без зміни grid)
   =================================== */

/* Бокове меню — стилізуємо без зміни позиції */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    background: #f5f6f8;
    border-radius: 6px;
}

.woocommerce-MyAccount-navigation ul li {
    margin: 0;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 11px 20px;
    color: #333;
    font-size: 0.95rem;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    background: #eaecf0;
    color: #1a3a7c;
    border-left-color: #1a3a7c;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--is-active a {
    background: #fff;
    color: var(--color-brand);
    font-weight: 600;
    border-left-color: var(--color-brand);
}

/* Контентна область */
.woocommerce-MyAccount-content {
    padding-top: 4px;
}

/* Повідомлення про порожні замовлення */
.woocommerce-message,
.woocommerce-info {
    background: #f0f4ff;
    border: none;
    border-left: 4px solid var(--color-brand);
    border-radius: 0 4px 4px 0;
    padding: 14px 20px 14px 50px;
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Кнопка "Перегляд товарів" */
.woocommerce-message .button,
.woocommerce-info .button {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--color-brand);
    color: #fff !important;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    margin-left: auto;
    transition: background 0.18s ease;
    white-space: nowrap;
}
.woocommerce-info::before {
    top: 24px;
}

.woocommerce-message .button:hover,
.woocommerce-info .button:hover {
    background: var(--color-brand);
}

/* Таблиця замовлень */
.woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-top: 16px;
}

.woocommerce-orders-table th {
    background: #f5f6f8;
    padding: 10px 14px;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #666;
    border-bottom: 2px solid #e5e7ea;
}

.woocommerce-orders-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #f0f1f3;
    color: #333;
    vertical-align: middle;
}

.woocommerce-orders-table tr:last-child td {
    border-bottom: none;
}

/* Кнопки всередині таблиці */
.woocommerce-orders-table .button {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--color-brand);
    color: #fff !important;
    font-size: 0.82rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.18s ease;
}

.woocommerce-orders-table .button:hover {
    background: var(--color-brand);
}

a {
  color: var(--color-brand);
}

.woocommerce-Address-title h2 {
  font-size: 24px;
}
.wc_payment_methods.payment_methods, .woocommerce-additional-fields {
  display: none;
}
.wp-singular h2 {
  margin-top: 40px;
  font-size: 28px;
  margin-bottom: 24px;
}


@media screen and (max-width: 1366px) {
  
  .header-contacts {
    gap: 40px;
  }
}

@media only screen and (max-width:1200px) {
	img {
		max-width:100%;
    height: auto;
	}
	.container {
		max-width:960px;
	}
	.main-menu  {
		display:none;
	}
	.menu-mobile {
		display:none;
		position:absolute;
		background: #fff;
		width:100%;
		z-index:5;
		top:0px;
		left:0;
		padding:100px 0;
	}
	.menu-mobile.open {
		display:block;
		position: fixed;
		top: 0;
		left: 0;
		background-color: #F1F1F1;
	}
	header {
		position: relative;
	}
	.burger {
		width:24px;
		height:24px;
		background: none;
		border: none;
    position: relative;
	}
	.menu-open .burger {
		position: fixed;
		z-index: 10;
    right: 80px;
	}
	.burger:before {
		position:absolute;
		content:'';
		background:url(../images/menu.svg);
		width:24px;
		height:24px;
		top:0;
		right:0;
	}
	.header-contacts {
		padding-right: 80px;
	}
	.header-contacts .social, .header-contacts .border-btn {
		display: none;
	}
	.burger.open:before {
		position:absolute;
		content:'';
		background:url(../images/close.svg);
		width:30px;
		height:30px;
		top:0;
		right:0;
		z-index:10;
	}
	.top-wrap {
		position: relative;;
	}
	ul.main-menu li a:before {
		display:none;
	}
	.menu-mobile .main-menu {
		display:block;
	}
	.menu-mobile ul.main-menu {
		display:block;
		padding-left: 0;
	}
	.menu-mobile ul.main-menu li {
		margin-bottom:15px;
		list-style: none;
	}
	.menu-mobile ul.main-menu li {
		padding:0;
		font-size: 18px;
	}
	.menu-mobile ul.main-menu li a {
		font-size: 18px;
		color: var(--color-main);
	}
	ul.main-menu .menu-item-has-children > span {
		position:relative;
	}
	ul.main-menu .menu-item-has-children > span:after {
		display:block;
		position: absolute;
		content: '';
		background: url(../images/next-red.png);
		width: 7px;
		height: 14px;
		right: -25px;
		top: calc(50% - 7px);
	} 
	.sub-menu.open {
		display:block;
	}
	.sub-menu {
		position:unset;
		background:none;
		z-index:2;
		border:none;
		padding:20px 20px;
		list-style:none;
		flex-wrap:wrap;
		margin-top:0;
		max-height:unset;
		overflow:unset;
	}
	.sub-menu li {
		width:unset;
		border:none;
		font-size: 16px;
	}
	.sub-menu li a {
		color: var(--color-grey) !important;
	}
	.menu-mobile .container {
		max-height: calc(100vh - 120px);
		overflow-y: auto;
	}
	.social {
		margin-top: 20px;
	}

	.menu-item-has-children {
		position: relative;
	}
	.menu-item-has-children > a {
		padding-right: 36px; /* місце під кнопку */
	}
	.menu-item-has-children > .submenu-toggle {
		position: absolute;
		right: 8px;
		top: 50%;
		transform: translateY(-50%);
		width: 24px; height: 24px;
		border: 0; background: none; padding: 0; cursor: pointer;
	}
	.menu-item-has-children > .submenu-toggle:before {
		content: "▾"; /* стрілочка вниз */
		display: inline-block;
		transition: transform .25s;
		line-height: 1;
	}
	.menu-item-has-children.open > .submenu-toggle:before {
		transform: rotate(180deg);
	}

	.menu-item-has-children > .sub-menu {
		display: none;
	}
	.menu-item-has-children.open > .sub-menu {
		display: block;
	}
	.popular-categories-list {
		flex-wrap: wrap;
	}
	.popular-categories-list .popular-categories-item {
		width: calc(50% - 78px);
	}
	.top-header {
		padding: 20px 0 10px;
	}
	.section {
		margin-bottom: 60px !important;
	}
	.preim-list .preim-item {
		width: calc(50% - 24px);
	}
	.preim-list {
		gap: 30px !important;
	}
  .footer-top, .services-item, .project-item {
    gap: 40px;
  }
  .services-item__number {
    width: 60px;
    height: 60px;
  }
  h2 {
    font-size: 32px;
  }
  .shop-sidebar {
    width: 300px;
  }
  .shop-content {
    width: calc(100% - 300px - 40px);
  }
  .woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product {
    width: calc(50% - 24px);
  }
  .woocommerce ul.products {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .woocommerce ul.products li {
    margin: 0 !important;
  }
  .woocommerce .type-product .inquire-price {
    width: 100%;
    margin-bottom: 20px;
  }
  .woocommerce .entry-summary .download-sheet {
    margin-left: 0;
    width: stretch;
    text-align: center;
  }
  .inquire-price {
    min-width:200px;
  }
  .woocommerce .products ul::before {
    display: none;
  }
}
@media only screen and (min-width:1201px) {
	.menu-mobile, .burger {
		display:none;
	}
	ul.main-menu {
		display: flex;
		gap: 50px;
		align-items: center;
		list-style: none;
		padding-left: 0;
		margin: 20px 0 40px;
	}
	ul.main-menu li {
		position: relative;
	}
	ul.main-menu li a {
		color: var(--color-main);
		letter-spacing: 0.3px;
		padding-top:10px;
		padding-bottom: 10px;
		
	}
	.sub-menu {
		display: none;
		position: absolute;
		z-index: 2;
		background-color: var(--color-brand);
		padding: 24px 20px;
		list-style: none;
		left: 0;
		min-width: 200px;
		margin-top: 10px;
	}
	.sub-menu li {
		margin-bottom: 16px;
	}
	.sub-menu li:last-child {
		margin-bottom: 0;
	}
	.sub-menu li a {
		color: var(--color-light) !important;
	}
	.sub-menu li a:hover {
		opacity: 0.8;
	}
	ul.main-menu > li:hover .sub-menu {
		display:block;
	}

	#menu-item-99 {
		padding: 14px 68px 14px 20px;
		background-color: var(--color-brand);
		position: relative;
	}

	#menu-item-99 a {
		color: var(--color-white);
	}

	#menu-item-99:after {
		position: absolute;
		content:'';
		background: url(../images/menu-white.svg);
		width: 24px;
		height: 24px;
		right: 20px;
		top: calc(50% - 12px);
	}
  
}

@media only screen and (max-width:1024px) {

	.container {
		max-width:750px;
	}
  .top-wrap .header-contact-item {
    display: none;
  }
	.logo {
    flex-grow: 1;
  }
  .logo img {
    max-width: 200px;
  }
  .header-contacts {
    padding-right: 40px;
  }
  .preim-ic img {
    max-width: 80px;
  }
  h2 {
    font-size: 30px;
  }
  .preim-title {
    font-size: 18px;
  }
  .project-item {
    flex-direction: column;
  }
  .project-image, .project-desc, .calc-desc, .form-group {
    width: 100%;
  }
  .calc-section {
    margin-top: 100px;
  }
  .flex {
    flex-direction: column;
    gap: 0;
  }
  .calc-img {
    display: none;
  }
  .services-item {
    display: block;
  }
  .services-item__img {
    margin-bottom: 40px;
  }
  .faq-grid {
    display: flex;
    flex-direction: column;
  }
  .faq-item {
    width: 100%;
  }
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .foot-menu .phone, .foot-menu .mail {
    max-width: fit-content;
    margin: 0 auto 12px;
  }
  .primary-btn, .add_to_cart_button, .inquire-price {
    min-width: 180px;
  }
  h1 {
    font-size: 42px; 
  }
}


@media only screen and (max-width: 768px) {
    .container {
      max-width:520px;
    }
    .services-item,
    .services-item--reversed {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .services-item--reversed > * {
        direction: ltr;
    }
    .profiling-item {
        flex: 0 0 calc(50% - 10px); /* Дві колонки на мобільних */
    }
    .detailsTable .parent>div, .option-list{ 
      flex-wrap: wrap;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .popular-categories-item {
      padding: 20px;
    }
    .popular-categories-list .popular-categories-item {
        width: calc(50% - 57px);
    }
    .primary-btn, .add_to_cart_button, .inquire-price {
      min-width: 240px;
    }
    .flex-container {
      flex-direction: column;
    }
    .shop-sidebar, .shop-content {
        width: 100%;
    }
    .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
        width: calc(50% - 10px);
    }
    .inquire-price {
        min-width: 200px;
    }
    .modal__content {
      padding: 20px;
      width: calc(100% - 60px);
  }
}

@media only screen and (max-width:620px) {
	
	.container {
		max-width:100%;
	}
	
	body {
		max-width:100%;
		overflow-x:hidden;
	}
  .logo img {
    max-width: 160px;
  }
	
}

@media only screen and (max-width:480px) {
	.profiling-item {
        flex: 0 0 100%; /* Одна колонка на дуже малих екранах */
  }
  .popular-categories-list {
    gap: 20px;
  }
  .preim-list, .popular-categories-list {
    flex-direction: column;
  }
  .popular-categories-list .popular-categories-item {
    width: unset;
  }
  .preim-list .preim-item {
    width: 100%;
  }
  h2 {
    font-size: 24px;
  }
  .splide__pagination {
    left: 0;
    width: 100%;
  }
  .top-wrap {
    gap: 15px;
  }
  .logo {
    min-width: 140px;
  }
  .main-banner-list {
    padding: 40px 20px;
  }
  h1 {
    font-size: 32px;
  }
  .header-contact-item {
    flex-direction: column;
  }
  .header-contact-item .phone, .header-contact-item .mail {
    text-align: left;
  }
  .header-contact-item {
    align-items: flex-start;
  }
  .menu-open .burger {
    right: 20px;
  }
  .inquire-price {
    min-width: 160px;
  }
}
@media only screen and (max-width:414px) { 
	
}
@media only screen and (max-width:406px) { 
	
}
@media only screen and (max-width:360px) { 
	
	
}
@media only screen and (max-width:350px) { 

}

