:root {
	--background-color: #F3F2EF;
	--main-color:#2F2E2C;
	--accent-light:#E2DED2;
	--accent-main:#D1C5AD;
	--main-light-color:#595343;
	--border-color: #0000001A;
	--main-text:'Manrope', sans-serif;
	--heading-text:'Ogg', serif;
}

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

body {
	font-family: var(--main-text);
	background-color: #F3F2EF;
	font-size: 18px;
	height: 100vh;
	scroll-behavior: smooth;
}

p {
	line-height: 1.6em;
	font-weight: 300;
}

h1, h2, h3, h4, h5 {
	font-family: var(--heading-text);
	font-weight: 400;
}

h2 {
	font-size: 70px;
}

h3 {
	font-size: 25px;
}

h6 {
	font-size: 18px;
	font-family: var(--main-text);
	text-transform: uppercase;
	font-weight: 600;
}

a {
	color: var(--main-color);
	text-decoration: none;
	transition: all .75s ease;
}

.site-header {
	position: absolute;
    width: 100%;
    transition: all 1s ease;
    padding:5px 0px;
    z-index:9;
}

.site-header:hover {
	background: var(--main-color);
}

.site-logo {
	width: 100px;
	height: 100px;
}

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

.header--light { 
	color:var(--main-color); 
	position: relative;
}

.header--dark {
	color:#fff; 
}

.header__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header_menu {
	list-style: none;
	display: flex;
	gap:40px;
}

.header--dark .header_menu a {
	color: #fff;
}

.header__right{
	display: flex;
	gap:30px;
	align-items: center;
}

.header__icons {
	list-style: none;
	display: flex;
	gap:20px;
}

.search__line {
  opacity: 0;
  position: relative;
  height: 0px;
  transition: all .3s ease;
}

.search__line.active {
  opacity: 1;
  height: auto;
  border-top: 1px solid #595856;
  padding: 30px 0px 25px 0px;
}

.yay-currency-custom-select__trigger {
	background: transparent!important;
	color: #fff!important;
	border-radius: 0px!important;
	border:none!important;
	justify-content: end!important;
}

.yay-currency-custom-select-wrapper {
    width: max-content!important;
}

.yay-currency-custom-arrow::before, .yay-currency-custom-arrow::after {
    width: 1px!important;
}

.yay-currency-custom-options {
	border:none!important;
	border-radius: 0px!important;
}

.yay-currency-custom-option-row.selected {
    color: var(--main-color)!important;
    background-color: var(--accent-main)!important;
}

.header--light .yay-currency-selected-option {
	color: var(--main-color)!important;
}

.header--light .yay-currency-custom-arrow::before {
	background: var(--main-color)!important;
}
.header--light .yay-currency-custom-arrow::after {
	background: var(--main-color)!important;
}

.header--light .header__icon_img {
	fill: var(--main-color);
}

.header--light .header__icon_stroke {
	stroke: var(--main-color);
}

.header--light:hover .yay-currency-selected-option {
	color: #fff!important;
}

.header--light:hover .yay-currency-custom-arrow::before {
	background: #fff!important;
}
.header--light:hover .yay-currency-custom-arrow::after {
	background: #fff!important;
}

.header--light:hover .header__icon_img {
	fill: #fff;
}

.header--light:hover .header__icon_stroke {
	stroke: #fff;
}

.header--light:hover .header_menu .menu-item a {
	color: #fff;
}

.header--light:hover .site-logo img {
	filter: invert(1);
}

.header--light:hover .search__line {
	position: absolute;
	width: 100%;
    background: var(--main-color);
    z-index: 9999999;
}

.header__icon_img {
	transition: all .75s ease;
}

.header__icon:hover .header__icon_img {
	fill:var(--accent-main);
}

.header__icon_stroke {
	transition: all .75s ease;
}

.header__icon:hover .header__icon_stroke{
	stroke:var(--accent-main);
}

.aws-container .aws-search-field  {
	background: #444341;
	border:none;
	font-family: var(--main-text);
}

.aws-container .aws-search-field:focus {
	background: #444341;
	color: #fff;
}

.aws-container .aws-search-form .aws-form-btn  {
	background: #444341;
	border:none;
}

.hero {
	height: 85vh;
	padding-bottom: 60px;
	color: #fff;
	display: flex;
}

.about-container {
    padding-top:60px;
}

.container {
	width: 100%;
	margin: 0 auto;
	padding: 0px 60px;
	max-width: 1800px;
}

.hero__title {
	color: #fff;
	font-size: 100px;
}

.offer__content {
	display: flex;
	flex-direction: column;
	gap:30px;
	justify-content: flex-end;
    height: 100%;
}

.hero__desc {
	max-width: 800px;
	margin-bottom: 20px;
}

.hero__buttons {
	display: flex;
	gap:30px;
	align-items: center;
}

.btn {
	padding: 10px 20px;
	text-transform: uppercase;
	font-weight: 500;
	position: relative;
	z-index: 2;
}

.btn:before {
	content: '';
	 display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-light);
    top: 0px;
    left: 0px;
    z-index: -2;
}

.btn:after {
	content: '';
    display: flex;
    position: absolute;
    width: 100%;
    height: 0px;
    left: 0px;
    bottom: 0px;
    background: var(--accent-main);
    transition: all 1s ease;
    opacity: 0;
   	z-index: -1;
}

.btn:hover::after {
	opacity: 1;
	height: 100%;
}

.cta_secondary {
	text-transform: uppercase;
	padding: 5px 0px;
	color: var(--accent-light);
	border-bottom: 1px solid #FAF3E033;
	position: relative;
}

.cta_secondary:after {
	content: '';
    display: flex;
    position: absolute;
    width: 0px;
    height: 1px;
    left: 0px;
    bottom: -1px;
    background: var(--accent-light);
    transition: all 1s ease;
    opacity: 0;
   	z-index: 1;
}

.cta_secondary:hover::after {
    width: 100%;
    opacity: 1;
}

.features {
	padding-top: 120px;
}

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

.feature__item {
	display: flex;
	flex-direction: column;
	gap:15px;
	width: calc(25% - 15px);
}

.feature__text {
	color: var(--main-light-color);
	font-size: 16px;
}

.feature__list {
	list-style: none;
	display: flex;
	justify-content: space-between;
}

.about__content {
	display: flex;
	gap:30px;
	justify-content: space-between;
	align-items: center;
}

.about {
	padding-top: 120px;
}

.about__image-wrap {
	width: 40%;
	height: 90vh;
	overflow: hidden;
	position: relative;
}

.about__image--big {
	position: absolute;
	  left: 50%;
	  top: 50%;
	  transform: translate(-50%,-50%);      /* старт по центру */
	  width: 100%;
	  height: 120%;                          /* +20% запас під рух */
	  object-fit: cover;
	  will-change: transform;
}

.about__content__main {
	display: flex;
	flex-direction: column;
	gap:30px;
	align-items: center;
	width: calc(60% - 40px);
	text-align: center;
	position: relative;
}

.about__desc {
	width: 85%;
}

.about__image--small {
  position: relative;
  width: min(50%, 420px);
  height: 400px;
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  pointer-events: none;        /* щоб не заважала клікам по контенту */
}

.cta_secondary-dark {
	color: var(--main-color);
	border-bottom: 1px solid #2F2E2C33;
}

.cta_secondary-dark:after {
    background: var(--main-color);
}

.categories {
	margin-top: 120px;
}

.cat-hero {
  position: relative;
  height: clamp(420px, 70vh, 760px);
  overflow: hidden;
  margin-top: 120px; 
}

/* шари зображень */
.cat-hero__images { position: absolute; inset: 0; }
.cat-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0; transform: scale(1.04);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
  filter: saturate(.95) contrast(1.02);
}
.cat-hero__img.is-active {
  opacity: 1;
  transform: scale(1);
}

/* підписи */
.cat-hero__labels {
  position: relative;
  z-index: 2;
  width: 100%; height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr; /* як на макеті — 2 колонки */
  place-items: center;
  pointer-events: none; /* щоб кліки ловили лише лінки */
  padding: 0px 60px;
}

/* лінки-мітки (клікабельні) */
.cat-hero__link {
  position: absolute;
  pointer-events: auto;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
  mix-blend-mode: normal;
}

/* розкладка: ліво/центр/право — піджени відсотки під свою композицію */
.cat-hero__link.is-left   { left: 10%; top: 30%; }
.cat-hero__link.is-center { left: 50%; top: 65%; transform: translateX(-50%); }
.cat-hero__link.is-right  { right: 10%; top: 30%; }

.cat-hero__title {
  font-family: var(--heading-text);
  font-weight: 400;
  font-size: 70px;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.cat-hero__count {
  font-size: .35em; font-weight: 300; opacity: .9;
  margin-left: .2em;
}

/* “неактивним” підписам трохи менша непрозорість */
.cat-hero__link:not(.is-active) { opacity: .65; }
.cat-hero__link:hover           { opacity: 1; }

.bestsellers {
	padding-top: 120px;
	margin-bottom: 120px;
}

.bestsellers__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.bestsellers__grid {
	display: flex;
	gap:20px;
}

.product-card {
	width: calc(25% - 20px);
}

.product_card_footer {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

.product-card__media img {
	width: 100%;
	height: auto;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
	padding: 5px;
}

.product__card-info {
	padding: 0px 10px;
}

.product-card__title {
  white-space: nowrap;      /* не переносити текст */
  overflow: hidden;         /* обрізає зайве */
  text-overflow: ellipsis;  /* додає "..." в кінці */
}

.product-card__meta a {
	font-size: 14px;
	font-weight: 300;
	text-transform: uppercase;
	transition: all 1s ease;
}

.product-card__meta a:hover {
	opacity: 0.5;
}

.woo-variation-swatches-variable-item-more a {
	transition: all 1s ease;
}

.woo-variation-swatches-variable-item-more a:hover {
	opacity: 0.5;
}

.product-card__media{
  position: relative;
  display:block;
  overflow:hidden;
  aspect-ratio: 4/4;  
}
.product-card__img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transition: opacity 1s ease, transform 1.5s ease;
  will-change: opacity, transform;
  display:block;
}
.product-card__img--base { opacity:1; transform: scale(1); }
.product-card__img--hover{ opacity:0; transform: scale(1.04); }

.product-card__media:hover .product-card__img--base  { opacity:0;   transform: scale(1.02); }
.product-card__media:hover .product-card__img--hover { opacity:1;   transform: scale(1); }

.price__current {
  font-size: 25px;

}

.product-card__price del {
  font-size: 16px;
  text-decoration: line-through;
  opacity: 0.3;
}

/* Нова (акційна) ціна */
.product-card__price ins {
  font-size: 25px;
  text-decoration: none; 
}

.product-card__title {
	margin-bottom: 10px;
}

.product-card__btn {
	position: relative;
	height: 40px;
}

.product-card__btn:before {
	content: '';
	 display: flex;
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--background-color);
    top: 0px;
    left: 0px;
    z-index: -2;
}

.product-card__btn:after {
	content: '';
    display: flex;
    position: absolute;
    width: 40px;
    height: 0px;
    left: 0px;
    bottom: 0px;
    background: var(--accent-light);
    transition: all 1s ease;
    opacity: 0;
   	z-index: -1;
}

.product-card__btn:hover::after {
	opacity: 1;
	height: 40px;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item.selected:not(.no-stock) .variable-item-contents:before, .woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).image-variable-item.selected:not(.no-stock) .variable-item-contents:before {
	background-image: none;
}

.tcombo{
	background:#f5f1eb;
	overscroll-behavior:contain;
}

/* 2 колонки: ліве фото ~420px + контент */
.tcombo__grid{
	display:grid;
	grid-template-columns:600px 1fr;gap:clamp(24px,4vw,60px);
	align-items:center;
}
@media(max-width:900px){
	.tcombo__grid{
		grid-template-columns:1fr;
		}
	}

/* важливо для Grid, щоб Swiper коректно міряв ширину */
.tcombo__right{
	min-width:0;
}
.tcombo__right .swiper{
	width:100%;
	min-width:0;
	overflow:hidden;
}
.tcombo__right .swiper-wrapper{ 
 }
.tcombo__right .swiper-slide{
	display:flex;
	justify-content:center;
	text-align: center;
}
.tcombo__right .tcontent{
	width:100%;
	margin:0 auto;
	text-align:center;
	display: flex;
    flex-direction: column;
    align-items: center;
}

.tcombo__left{
	max-width:100%;
	margin-left:auto;
}
.tcombo__img{
	width:100%;
	display:block;
	object-fit:cover;
	transition:all 2s ease;
}

.tstars{
	display:flex;
	gap:10px;
}
.tstar{
	font-size:clamp(14px,1.4vw,20px);
	color:#cdb695;
	opacity:.5;
}
.tstar.is-full{
	opacity:1;
}
.tquote{
	font-family:var(--heading-text);
	font-weight:400;
	font-size:50px;
	color:#23211f;
	margin:20px 0px;
}
.tauthor{
	font-size:14px;
	font-weight: 300;
	text-transform:uppercase;
	color:var(--main-light-color);
}

/* прогрес-лінія */
.tcombo__progress{
	margin-top:clamp(18px,3vw,28px);
	display:flex;
	justify-content:center;
}
.tprogress{
	width:100%;
	height:2px;background:#e2ddd5;
	position:relative;overflow:hidden;
}
.tprogress__bar{
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	width:100%;
	transform-origin:left center;
	transform:scaleX(0);
	background:#2f2c27;
	transition:transform .25s ease;
}

/* забороняємо drag — тільки колесо */
.tcombo-right-swiper .swiper-wrapper{
	cursor:default;
}

/* Плавна анімація зміни фото */
.tcombo__img {
  transition:
    opacity 1s ease,
    transform 2s ease;
  will-change: opacity, transform;
}

/* При зміні фото — трішки зменшується */
.tcombo__img.is-transitioning {
  opacity: 0;
  transform: scale(.92);
}

.follow {
	padding-top: 120px;
}

.follow__grid {
  display:flex;
  gap: 30px;
  list-style: none;
  padding: 0; margin: 0;
  margin-top: 50px;
}

.follow__item {
	width: calc(25% - 30px);
	height: 376px;
}

.follow__item img {
	width: 100%;
	height: 376px;
	object-fit: cover;
}

.site-footer {
	margin-top: 120px;
	border-top: 1px solid #59534333;
	padding-top: 60px;
}

.footer__logo {
	width: 132px;
}

.footer__logo .custom-logo-link img {
	width: 100%;
	height: auto;
}

.footer__top {
	display: flex;
	justify-content: space-between;
}

.footer__top-item {
	width: calc(25% - 15px);
}

.company__slogan {
	font-size: 14px;
	margin-top: 20px;
}

.footer__top-item__title {
	margin-bottom: 30px;
}

.footer_menu {
	list-style: none;
}

.footer_menu {
	display: flex;
	flex-direction: column;
	gap:20px;
}

.footer_menu .menu-item {
	font-size: 16px;
}

.contact__list {
	list-style: none;
}

.contact__item__title {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 300;
	color: #2F2E2C66;
}


.footer__link {
	padding: 2px 0px;
	position: relative;
	font-size: 16px;
}

.footer__link:after {
	content: '';
    display: flex;
    position: absolute;
    width: 0px;
    height: 1px;
    left: 0px;
    bottom: -1px;
    background: var(--main-color);
    transition: all 1s ease;
    opacity: 0;
   	z-index: 1;
}

.footer__link:hover::after {
    width: 100%;
    opacity: 1;
}

.contact__list {
	display: flex;
	flex-direction: column;
	gap:20px;
}

.footer__address {
	font-size: 16px;
	padding: 2px 0px;
}

.company__slogan {
	width: 85%;
}

.footer__bottom {
	margin-top: 50px;
	padding: 20px 0px;
	border-top: 1px solid #59534333;
}

.company__rights {
	font-size: 14px;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.socials {
	display: flex;
	gap:10px;
	list-style: none;
}

.socials li img {
	width: 30px;
	height: 30px;
	transition: all 1s ease;
}

.socials li img:hover {
	transform: scale(0.9);
	opacity: 0.7;
}
.header__mobile {
	display: none;
}
.yay-currency-custom-select__trigger {
	height: auto!important;
}
.yay-currency-custom-options {
	top: 25px!important;
}
.yay-currency-single-page-switcher {
		margin-bottom: 0px!important;
	}

	.testimonials .js-hscroll{
  overflow: hidden;         /* якщо свій слайдер */
  touch-action: pan-x;      /* дозволяємо горизонтальні жести, блокуємо вертикальні */
  -webkit-overflow-scrolling: touch;
}

.shop {
	margin-top: 30px;
}

.tcombo__left {
	height: 75vh;
	width: 100%;
}

/* для плавної заміни того самого .tcombo__img */
.tcombo__img {
  transition: opacity .45s ease, transform .45s ease, filter .45s ease;
}
.tcombo__img.is-transitioning {
  opacity: 0;
  transform: scale(.975);
  filter: saturate(.9) contrast(.98);
}

.tcombo__img{
  width:100%; height:100%!important; object-fit:cover;
  transition:opacity .45s ease, transform .45s ease;
}
.tcombo__img.is-transitioning{ opacity:0; transform:scale(.975); }

/* прогрес-бар: одна підкладка + активна частина */
.tprogress{ position:relative; background:rgba(0,0,0,.08); overflow:hidden; }
.tprogress__bar{
  position:absolute; left:0; top:0; bottom:0; width:100%;
  transform-origin:left center;
  transform:scaleX(0);
  transition:transform var(--pb-dur, 5000ms) linear;
}

.catalog__text {
	padding-bottom: 120px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.catalog__desc {
	margin-top: 30px;
		width: 80%;
		color: var(--main-light-color);
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {
	display: flex;
	align-items: center;
}
.breadcrumbs__home {
	height: 24px;
}

.woocommerce-breadcrumb span {
	margin-left: 10px;
	font-size: 16px;
	color: var(--main-color);
	opacity: 0.5;
}

/* Активна остання сторінка */
.woocommerce-breadcrumb span[aria-current="page"] {
	opacity: 1;
}

.breadcrumb__icon {
	transition: 1s ease all;
}

.breadcrumbs__home:hover .breadcrumb__icon {
	stroke-opacity:1;
}

.shop__heading {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap:30px;
}

.shop__desc {
	max-width: calc(33.3333% - 15px);
	font-size: 16px;
}

.shop__heading h2 {
	max-width: calc(66.6666% - 15px);
	line-height: 1em;
}

.shop__heading {
	margin-bottom: 60px;
	margin-top: 30px;
}


/* Картка */
.cat-card { list-style: none; }
.cat-card__link { display:block; text-decoration:none; color:inherit; }
.cat-card__media { position:relative; overflow:hidden; }
.cat-card__img {
  width:100%; height: 380px; object-fit: cover; display:block;
  transition: transform .6s ease, filter .6s ease;
}
.cat-card__overlay {
  position:absolute; inset:0; display:flex; flex-direction:column;
  justify-content:flex-end; padding:30px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.45) 100%);
}
.cat-card__title {
  font-family: var(--heading-text); 
  font-size: 40px; 
  font-weight: 500; color:#fff; letter-spacing:.01em; 
  display:flex; 
  align-items: flex-start;
  gap:8px;
}
.cat-card__count { 
	font-size: 25px; 
}

.cat-card__desc {
  color: rgba(255,255,255,.92);
  font-size: 14px; line-height: 1.5;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .45s ease, opacity .45s ease;
}

.cat-card__cta {
 color: #fff;
 font-size: 16px;
 padding: 3px 0px;
}

/* Hover state */
.cat-card__media:hover .cat-card__img { transform: scale(1.04); filter: saturate(1.05) contrast(1.03); }
.cat-card__media:hover .cat-card__desc { max-height: 120px; opacity: 1; }
.cat-card__media:hover .cat-card__cta { opacity: 1; }

/* Акцент кольором теми на активній/фокусній */
.cat-card__link:focus-visible .cat-card__cta { 
  outline: 0; 
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--main-color) 45%, transparent);
}

.woocommerce ul.products li.product a img {
	margin-bottom: 0px;
}
.woocommerce .products ul, .woocommerce ul.products {
	margin-bottom: 60px;
}

/* сітка */
.woocommerce ul.products { 
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 30px;
}

/* картка категорії */
.woocommerce ul.products li.product-category {
  overflow: hidden;
}

/* медіаблок з фіксованою пропорцією */
.woocommerce ul.products li.product-category .cat-card__media {
  aspect-ratio: 4 / 3;        /* або 4/3, 3/2 — як у макеті */
  position: relative;
}

/* картинка заповнює блок */
.woocommerce ul.products li.product-category .cat-card__img,
.woocommerce ul.products li.product-category a img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* підпис/кнопки всередині */
.woocommerce ul.products li.product-category .cat-card__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px;
}

.woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product {
    width: 100%;
}

.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before {
	display: none;
}

.cat-card__heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product .product-card {
	width: 100%;
}
.variations {
	margin-bottom: 0px!important;
}

.archive-variable-items {
	margin-bottom: 0px!important;
}

/* кнопка можна стилізувати як завгодно */
.filters-toggle{
	display:flex;
	align-items: center;
	padding:15px 30px;
	border: none;
	border-right: 1px solid #0000001A;
	outline: none;
	background: transparent;
	gap:7px;
	font-size: 16px;
	font-family: var(--main-text);
	font-weight: 300;
	transition: all .25s ease;
}

.filters-toggle:hover {
	background: var(--accent-light);
	border-right: 1px solid var(--accent-light);
}

.filters-drawer{
  position:fixed; top:0; left:0;
  width: 50vh;
  max-width: 50vh;
  height:100vh;
  background:#fff; transform:translateX(-100%); transition:transform .3s ease;
  z-index:1001; overflow:auto;
  padding:30px;
}
.filters-drawer.is-open{ transform:none; }

.filters-close{ display:inline-block; background:none; border:0; font-size:20px; line-height:1; margin-bottom: 20px;}

.filters-backdrop{
  position:fixed; inset:0; background:rgba(0,0,0,.35);
  opacity:0; pointer-events:none; transition:opacity .3s; z-index:1000;
}
.filters-backdrop.is-open{ opacity:1; pointer-events:auto; }

.woocommerce-result-count {
	display: none;
}

.custom-orderby {
  position: relative;
  display: inline-block;
}

.orderby-toggle {
  background: transparent;
  border: none;
  border-left: 1px solid #0000001A;
  padding: 15px 30px;
  font-family: var(--main-text);
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all .25s ease;
}

.orderby-toggle:hover {
  color: var(--main-color);
  background: var(--accent-light);
   border-left: 1px solid var(--accent-light);
}

.orderby-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  background: var(--background-color);
  border: 1px solid #0000001A;
  margin-top: 6px;
  display: none;
  z-index: 15;
  list-style: none;
  width: 100%;
}

.custom-orderby.open .orderby-dropdown {
  display: block;
}

.orderby-dropdown li a {
  display: block;
  padding: 8px 16px;
  color: var(--main-color);
  text-decoration: none;
  transition: background .2s;
  font-size: 14px;
}

.orderby-dropdown li a:hover,
.orderby-dropdown li a.is-active {
  background: var(--accent-light);
  color: var(--main-color);
}

.products-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #0000001A;
	margin-bottom:30px!important;
}

.wpc-filters-main-wrap .wpc-filters-labels li.wpc-term-item label span.wpc-filter-label-wrapper {
	border-radius: 0px!important;
}
.wpc-filters-main-wrap .wpc-filters-labels li.wpc-term-item label {
	border-radius: 0px!important;
	font-size: 14px!important;
}

.wpc-filter-more-less.wpc-show-more .wpc-see-less-control {
	font-size: 14px!important;
}

.wpc-filters-main-wrap a.wpc-filters-reset-button, .wpc-filters-main-wrap a.wpc-filters-submit-button {
	border-radius: 0px!important;
	font-size: 16px!important;
}

.product-template-default .site-content {
	margin-top: 30px;
}

.product-section .container {
  margin-top: 30px;
}

/* Основна сітка */
.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

/* Галерея */
.product-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Sticky info */
.product-info {
  position: sticky;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 100%;
}

.product-info-inner {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Після */
.product-extra {
  margin-top: 120px;
}

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
	width: 100%;
}

.product-title {
	font-size: 50px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.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: var(--main-color);
	font-family: var(--main-text);
	font-size: 16px;
	margin-bottom: 30px;
}
.woocommerce div.product p.price ins, .woocommerce div.product span.price ins {
	text-decoration: none;
	font-weight: 400;
	font-size: 25px;
	margin-left: 10px;
}

.woocommerce div.product form.cart .variations label {
	font-weight: 300;
	font-size: 16px;
	color: var(--main-light-color);
}

.woo-variation-swatches.wvs-show-label .variations th .woo-selected-variation-item-name {
	font-size: 16px;
	font-weight: 500;
	color: var(--main-color);
}

.woocommerce-product-details__short-description {
	margin-bottom: 30px;
	color: var(--main-light-color);
	font-size: 16px;
}

/* Контейнер */
.product-actions {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 12px;
  margin-top: 24px;
}

/* Кількість */
.quantity-wrapper {
  flex: 0 0 140px;
}

.quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 8px 12px;
}

.quantity input.qty {
  border: none;
  width: 50px;
  text-align: center;
  font-size: 16px;
  background: transparent;
}

.quantity button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Кнопки */
.buttons-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 10px;
}

/* Add to Cart */
.single_add_to_cart_button {
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  border: 1px solid #000;
  background: transparent;
  color: #000;
  border-radius: 8px;
  padding: 16px 24px;
  transition: all 0.3s ease;
}

.single_add_to_cart_button:hover {
  background: #000;
  color: #fff;
}

/* Wishlist (YITH) */
.yith-wcwl-add-button a,
.yith-wcwl-wishlistaddedbrowse a,
.yith-wcwl-wishlistexistsbrowse a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  color: #000;
  font-size: 20px;
  transition: all 0.3s ease;
}

.yith-wcwl-add-button a:hover,
.yith-wcwl-wishlistaddedbrowse a:hover {
  background: #000;
  color: #fff;
}

/* Вирівнювання wishlist поруч із add to cart */
form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  width: 100%
}

form.cart .quantity {
  flex: 0 0 100px;
}

form.cart .single_add_to_cart_button {
  flex: 1;
  border-radius: 8px;
  background: #000;
  color: #fff;
  padding: 16px 24px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid #000;
  transition: all 0.3s ease;
}

form.cart .single_add_to_cart_button:hover {
  background: transparent;
  color: #000;
}

.variations_form div {
	width: 100%;
}

.wishlist-wrapper {
	width: fit-content!important;

}

/* Wishlist */
.wishlist-wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border:none;
  border-left: 1px solid #0000001A;
  text-transform: uppercase;
  font-size: 15px;
  transition: all 0.3s ease;
  color: var(--main-color);
}

.yith-wcwl-add-to-wishlist-button__label {
	display: none;
}

.wishlist-wrapper a:hover {
  background: var(--accent-light);
  color: var(--main-color);
  border-left: 1px solid var(--accent-light);
}

.woocommerce-variation-add-to-cart {
	display: flex;
	justify-content: space-between;
	width: 100%;
	border: 1px solid #0000001A;
	align-items: stretch;
}

/* Контейнер */
.quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  border:none;
  border-right: 1px solid #0000001A;
  border-radius: 0px;
}

/* Інпут */
.quantity input.qty {
  width: 50px;
  height: 100%;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  outline: none;
  -moz-appearance: textfield;
}

/* Ховаємо стрілочки */
.quantity input.qty::-webkit-inner-spin-button,
.quantity input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Кнопки */
.qty-btn {
  width: 40px;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  color: var(--main-color);
  transition: all 0.2s ease;
  opacity: 0.5;
}

.qty-btn:hover {
  opacity:1;
}



.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt {
	background: transparent;

	color: var(--main-color);
	font-size: 16px;
	font-family: var(--main-text);
	letter-spacing: 0;
	border:none;
	border-radius: 0px;
	font-weight: 400;
	display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    justify-content: center;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover {
	background: var(--accent-light);
	color: var(--main-color);
}

.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor svg.yith-wcwl-icon-svg, .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor img {
	max-width: 20px;
}

.yith-add-to-wishlist-button-block {
	margin: 0px;
}

.woocommerce div.product form.cart div.quantity {
	margin: 0px;
}

.product-stock-message {
	display: flex;
	gap:7px;
	align-items: center;
	font-size: 16px;
	margin-bottom: 10px;
}

.stock-icon {
	height: 24px;
}

.product-benefits {
	display: flex;
	flex-wrap: wrap;
	gap:10px;
}

.benefit-item {
	width: calc(50% - 5px);
	border: 1px solid #0000001A;
	padding: 20px;
	align-items: center;
	display: flex;
	flex-direction: column;
	gap:10px;
}

.benefit-content h4 {
	font-family: var(--main-text);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 300;
}

.wc-tabs {

}

.woocommerce .related ul, .woocommerce ul.related {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.woocommerce .related ul.products li.product, .woocommerce-page .related ul.products li.product {
	width: 100%;
}

.related .product-card {
	width: 100%;
}

.product-tabs-section {
  margin-top: 60px;
}

.product-tab-titles {
  display: flex;
  gap: 0px;
  margin: 0;
  list-style: none;
  border:1px solid #0000001A;
  justify-content: space-between;
}

.product-tab-titles li {
  font-size: 18px;
  cursor: pointer;
  padding: 15px 30px;
  color: var(--main-color);
  opacity: 0.5;
  position: relative;
  transition: all 1s ease;
  width: 100%;
  text-align: center;
}

.product-tab-titles li:hover {
	opacity: 1;
}

.product-tab-titles li.active {
  background: var(--accent-main);
  opacity: 1;
}

.product-tab-content {
  display: none;
  padding: 30px 0;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

.product-tab-content.active {
  display: block;
}

.product-tab-content ul {
	list-style: square;
    list-style-position: inside;
    color: var(--main-light-color);
}

.woocommerce-Reviews-title {
	display: none;
}

.woocommerce #review_form #respond textarea {
	background: transparent;
	border: 1px solid var(--border-color);
	padding: 15px;
}

.comment-form-comment label {
	margin-bottom: 10px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit {
	background-color: var(--accent-main);
	border-radius: 0px;
	font-weight: 400;
	font-family: var(--main-text);
	padding: 15px 30px;
	color: var(--main-color);
	transition: all ease 1s;
	text-transform: uppercase;
	font-weight: 500;
	position: relative;
	z-index: 2;
}


.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover {
	background-color: var(--accent-light);
}

.related__products {
	padding-top: 80px;
}

.products-toolbar {
	margin-bottom: 30px;
}

.breadcrumbs-wrapper {
    margin-top:30px;
}

.text-page__title {
    font-size:70px;
    margin-bottom:30px;
}

.text-block {
    display:flex;
    justify-content: space-between;
    padding:20px;
    border-bottom: 1px solid var(--border-color);
}

.text-block:first-child {
    padding-top:0px;
}

.text-block:last-child {
    padding-bottom:0px;
    border-bottom:none;
}

.text-block__content ul {
    font-weight:300;
    list-style: square;
    list-style-position: inside;
    
}

.text-block__subtitle {
    font-family:var(--main-text);
    font-size:20px;
    font-weight:600;
    width:calc(33.333% - 15px);
}

.text-block__content {
    width:calc(66.6666% - 15px);
    color: var(--main-light-color);
    font-size:16px;
    line-height:1.6em;
}

.footer_menu a:hover {
    opacity:0.5;
}

.header_menu a:hover {
    opacity:0.5;
}

.hero {
  position: relative;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* рівень затемнення */
  z-index: 1;
}

.offer__content {
  position: relative;
  z-index: 2; /* щоб текст був поверх затемнення */
}

.about-container {
        display: flex;
    flex-direction: column;
    align-items: center;
    padding-top:120px;
}

.about__point {
    display:flex;
    align-items:center;
    background: var(--accent-light);
}

.about__point-content {
    width:50%;
    padding:0px 60px;
}

.feature__heading-about {
    justify-content: normal;
}

.point__image {
     width:50%;
     height:580px;
     
    position: relative;
    overflow: hidden;
}

.about_point-img {
    width:100%;
    object-fit:cover;
        height: 120%;
    position: absolute;
    top: 50%;
    left:50%;
}

.point__title {
    font-size:40px;
    margin-bottom:30px;
}

.about__point:nth-child(even) {
     flex-direction: row-reverse;
}

.about__point-content:nth-child(even) {
     padding-left:0px;
     padding-right:60px;
}

.contact__content {
    display:flex;
    gap:30px;
}
.contact__title {
    font-family:var(--main-text);
    font-size:18px;
    font-weight:600;
    margin-bottom:30px;
}

.contact__info {
    width:calc(25% - 15px);
    padding:20px;
    border:1px solid var(--border-color);
    height:fit-content;
}

.contact {
    padding-top:120px;
}

.contact__form {
    width:calc(75% - 15px);
}

.input__label {
    display:flex;
    flex-direction:column;
    font-size:14px;
    font-weight:500;
    font-family:var(--main-text);
    width:100%;
}

.main__input {
    font-family:var(--main-text);
    padding:15px;
    border-radius:0px;
    background:transparent;
    border:1px solid var(--border-color);
    width:100%;
    color:var(--main-color);
    transition:.75s ease all;
    outline:none;
}

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

.main__input:focused {
    border:1px solid var(--main-color);
}

.input__label-small {
    width:calc(50% - 7.5px);
}
.form p {
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content: flex-end;
}

.form br {
    display:none;
}
.wpcf7-spinner {
    display:none;
}

.form .btn {
    outline:none;
    border:none;
    background:var(--accent-main);
    transition: all ease 1s;
}

.form .btn:hover {
    background:var(--accent-light);
}

.faq {
    padding-top:120px;
}

.faq__content {
    display:flex;
    gap:30px;
    justify-content:space-between;
}

.accordion {
  width: calc(75% - 15px);
      display: flex;
    flex-direction: column;
    gap:20px;
}

.accordion-header {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 10px 15px;
  font-size: 20px;
  font-weight: 500;
  color: var(--main-color);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight:300;
  transition: all 0.3s ease;
}

.accordion-header.active {
  background: var(--accent-main);
  border:1px solid var(--accent-main);
}

.accordion-header:hover {
    border:1px solid var(--accent-main);
}

.accordion-header.active::after {
  content: '−';
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
  font-size:16px;
  color:var(--main-light-color);
}

.accordion-content.open {
  max-height: 800px;
  padding: 10px 0 0px;
}

.accordion-content p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}
.faq__title {
    width:calc(25% - 15px);
}

.woocommerce-breadcrumb {
    display:flex;
}

.wishlist {
    margin-top:30px;
}

.offer_breadcrumbs {
    height: 100%;
    padding: 120px 0px 60px;
}

.offer_breadcrumbs .woocommerce-breadcrumb span {
    color:#fff;
}

.woocommerce table.shop_table {
    border: none;
}

.woocommerce table.shop_table.wishlist_table tr td {
    background:transparent;
}
table.wishlist_table thead th, table.wishlist_table tbody td {
    border-color:transparent;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
    width:50%;
}

.account-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.account-popup.active {
  display: flex;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.popup-content {
  position: relative;
  z-index: 10;
  background: var(--background-color);
  padding: 40px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

.auth-panel {
  display: none;
  animation: fade .3s ease;
}
.auth-panel.active {
  display: block;
}

.auth-toggle-text {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #555;
}
.auth-toggle-text button {
  border: none;
  background: none;
  color: #0073aa;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

body.popup-open {
  overflow: hidden;
}

.auth-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}
.auth-tab {
  font-size: 18px;
  font-weight: 600;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.auth-tab.active {
  color: var(--main-color);
}
.auth-panel {
    display: none;
    color:var(--main-color);
}
.auth-panel.active { display: block; }

.popup-open { overflow: hidden; }

.auth-tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.auth-tab {
  font-family: inherit;
  font-size: 18px;
  color: var(--main-color);
  opacity:0.5;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 6px 0;
  transition: all 0.3s ease;
}

.auth-tab.active {
  opacity:1;
}

.auth-tab::after {
    width:0%;
}

.auth-tab.active::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--main-color);
}

.login__form, .register__form {
  transition: opacity 0.3s ease;
}

.register-panel.active .login__form {
    display:none;
}

.auth-panel h2 {
    font-size:30px;
    margin-bottom:30px;
}
.remember__row {
    display:flex;
    flex-direction:column;
    gap:10px;
}

.auth-panel .btn {
    outline:none;
    border:none;
}

.lost_password .cta_secondary {
    font-size:12px;
}

.register__form .btn {
    width:100%;
    margin-top:10px;
}

.woocommerce-privacy-policy-text {
    font-size:12px;
    margin-top:10px;
}

/* Ховаємо стандартний вигляд */
.woocommerce-form__input-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid var(--main-light-color);
  border-radius: 0px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  transition: all 0.25s ease;
  margin-right: 8px;
}

/* Ефект при наведенні */
.woocommerce-form__input-checkbox:hover {
  border-color: var(--main-color);
}

/* Активний стан */
.woocommerce-form__input-checkbox:checked {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

/* Галочка */
.woocommerce-form__input-checkbox:checked::after {
      content: "";
    position: absolute;
    top: 2px;
    left: 4.5px;
    width: 2px;
    height: 5.5px;
    border: solid #fff;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

/* Текст поруч */
.woocommerce-form__label-for-checkbox span {
  font-size: 14px;
  color: var(--main-color);
  cursor: pointer;
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
    font-family:var(--main-text);
    padding:15px;
    border-radius:0px;
    background:transparent;
    border:1px solid var(--border-color);
    width:100%;
    color:var(--main-color);
    transition:.75s ease all;
    outline:none;
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select:hover {
    border:1px solid var(--main-light-color);
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select:focused {
    border:1px solid var(--main-color);
}

.entry-header {
    margin-top:30px;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
    font-weight:300;
    font-size:14px;
    color:var(--main-color);
}

.woocommerce form .form-row label {
    font-size:14px;
    font-weight:500;
    font-family:var(--main-text);
    width:100%;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    width:100%;
}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    width:100%;
}

.woocommerce form .form-row label, .woocommerce-page form .form-row label {
    font-size:14px;
    font-weight:500;
    font-family:var(--main-text);
    width:100%;
}

.login-panel.active .register__form {
    display:none;
}

.cart__trigger {
  position: relative;
}

.cart__trigger .cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #fff;
  color: #000;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-id-8, .page-id-9, .page-id-10 .site-content {
    width: 100%;
	margin: 0 auto;
	padding: 0px 60px;
	max-width: 1800px;
}

.wc-block-components-product-badge {
    border: 1px solid var(--border-color)!important;
    border-radius: 0px!important;
    font-size: 12px!important;
    font-weight: 400!important;
    max-width:fit-content!important;
}
.wc-block-cart-item__prices {
    margin-bottom:0px!important;
}

.wc-block-cart-item__wrap {
    display:grid;
}

.wc-block-components-quantity-selector:after {
    border:1px solid var(--main-color)!important;
    border-radius:0px!important;
}

.wc-block-components-button:not(.is-link) {
    background:var(--accent-main)!important;
    text-transform:uppercase!important;
    transition:all 1s ease!important;
    outline:none!important;
    border:none!important;
}
.wc-block-components-button:not(.is-link):hover {
    background:var(--accent-light)!important;
}

.wc-block-components-form .wc-block-components-text-input input[type=email], .wc-block-components-form .wc-block-components-text-input input[type=number], .wc-block-components-form .wc-block-components-text-input input[type=password], .wc-block-components-form .wc-block-components-text-input input[type=tel], .wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-form .wc-block-components-text-input input[type=url], .wc-block-components-text-input input[type=email], .wc-block-components-text-input input[type=number], .wc-block-components-text-input input[type=password], .wc-block-components-text-input input[type=tel], .wc-block-components-text-input input[type=text], .wc-block-components-text-input input[type=url] {
    background:transparent!important;
    border:1px solid var(--border-color)!important;
    border-radius:0px!important;
}

.wc-block-components-text-input input[type=text] {
    background:transparent!important;
    border:1px solid var(--border-color)!important;
    border-radius:0px!important;
}

.wc-block-components-text-input input[type=text]:hover {
    border-color:var(--main-color)!important;
}

.wc-block-components-text-input input[type=text]:focus {
    border-color:var(--main-color)!important;
}

.wc-block-components-text-input input[type=text]:focus-visible {
    border-color:var(--main-color)!important;
}

.wc-blocks-components-select .wc-blocks-components-select__container {
    background:transparent!important;
    border-radius:0px!important;
}

.woocommerce-MyAccount-navigation ul {
    list-style:none;
    margin-top:30px;
}

.woocommerce-MyAccount-navigation li {
    padding:15px 30px;
}

.woocommerce-MyAccount-content {
    margin-top:30px;
}

.woocommerce-Address-title h2 {
    font-size:30px;
    font-family:var(--main-text);
}

.woocommerce-Addresses {
    display:flex;
    flex-direction:column;
    gap:30px;
}

.woocommerce-MyAccount-navigation li.is-active {
    background:var(--accent-main);
}

@media (max-width: 1400px) {
	.container {
	    padding: 0px 40px;
	    max-width: 1320px;
	}
	.page-id-8, .page-id-9, .page-id-10 .site-content {
	    padding: 0px 40px;
	    max-width: 1320px;
	}
	.header_menu li {
		font-size: 16px;
	}
	.hero__title {
		font-size: 75px;
	}
	.feature__list {
		flex-wrap: wrap;
		gap:30px;
	}
	.feature__item {
		width: calc(50% - 15px);
		text-align: center;
	}
	.feature__heading {
		align-items: center;
    	justify-content: center;
	}
	.about__image--small  {
		height: 300px;
	}
	.price__current {
		font-size: 22px;
	}
	h3 {
		font-size: 22px;
	}

	.product-card__price ins {
		font-size: 22px;
	}
	.tquote {
		font-size: 40px;
	}
	.follow__item {
		width: calc(33.333% - 15px);
	}

	.follow__item:last-child {
		display: none;
	}
	.shop__heading {
		flex-direction: column;
		align-items: flex-start;
	}
	.shop__heading h2 {
		max-width: 100%;
	}
	.shop__desc {
		max-width: 60%;
	}
	.cat-card__title {
		font-size: 30px;
	}
	.cat-card__count {
		font-size: 20px;
	}
	.woocommerce ul.products {
		gap:10px;
	}
	.woocommerce ul.products li.product-category .cat-card__overlay {
		padding: 20px;
	}
	.about-container {
		padding-top: 120px;
	}
	.about__point-content {
	    padding: 0px 40px;
	}
}

@media (max-width: 1200px) {
	.container {
	    padding: 0px 30px;
	}
	.page-id-8, .page-id-9, .page-id-10 .site-content {
	    padding: 0px 30px;
	}
	.header__icons {
		gap:10px;
	}
	.header__right {
		gap:20px;
	}
	.header_menu li {
		font-size: 14px;
	}
	.hero__desc {
		max-width: 100%;
	}
	.about__image--small {
		display: none;
	}
	.about__content {
		flex-direction: column-reverse;
	}
	.about__image--big {
		width: 100%;
	}
	.about__content__main {
		width: 100%;
	}
	.about__image-wrap {
		height: 60vh;
		width: 100%;
	}
	  .product-card {
	    flex: 0 0 38%;      /* ширина картки у в’юпорті */
	    scroll-snap-align: start;
	}
	.bestsellers__grid {
		overflow-x: scroll;
		overflow-y: hidden;
	}
	.tcombo__grid  {
		display: flex;
		flex-direction: column-reverse;
	}
	.tcombo__right {
		width: 100%;
	}
	.tcombo__left {
		height: 70vh;
		width: 100%
	}
	.tcombo__left img {
		height: 100%;
		width: 100%;
		object-fit: cover;
	}
	.footer__top-item:first-child {
		width: 100%;
		display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 15px;
        border-bottom: 1px solid #59534333;
	}
	.footer__top {
		flex-wrap: wrap;
		gap:30px;
	}
	.company__slogan {
	    width: 40%;
	    text-align: right;
	    margin-top: 0px;
	}
	.site-footer {
		padding-top: 30px;
	}
	.follow__item {
	    height: 300px;
	}
	.follow__item img {
	    height: 300px;
	}
	.about-container {
	    padding-top:120px;
	}
	.about__point-content {
	    padding:0px 30px;
	}
	.product-main {
	    display:flex;
	    flex-direction:column;
	}
	.product-gallery {
	    width:100%;
	}
	.product-info {
	    position:relative;
	    width:100%;
	}
}

@media (max-width: 992px) {
    body {
        overflow-x:hidden!important;
        -webkit-overflow-scrolling: touch;
    }
	.header__inner {
		display: none;
	}
	.container {
		padding: 0px 15px;
		max-width: 100%;
	}
	.page-id-8, .page-id-9, .page-id-10 .site-content {
	    padding: 0px 15px;
		max-width: 100%;
	}
	.header__mobile {
		display: block;
	}
	.header__mob__top-content {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header__mob__top {
		background: var(--main-color);
		padding: 12px 0px;
	}
	.site-header {
		padding-top: 0px;
	}
	.yay-currency-custom-option {
		font-size: 12px!important;
	}
	.burger__menu {
		height: 14px;
	}
	#checkbox {
	  display: none;
	}

	.toggle {
	  position: relative;
	  width: 22px;
	  cursor: pointer;
	  margin: auto;
	  display: block;
	  height: 14px;
	}

	.bar {
	  position: absolute;
	  left: 0;
	  right: 0;
	  height: 2px;
	  border-radius: 100px;
	  background: #fff;
	  color: inherit;
	  opacity: 1;
	  transition: none 0.35s cubic-bezier(.5,-0.35,.35,1.5) 0s;
	}

	/***** Spin Animation *****/

	.bar--top {
	  bottom: calc(50% + 4px + 4px/ 2);
	  transition-property: bottom,transform;
	  transition-delay: calc(0s + 0.35s),0s;
	}

	.bar--middle {
	  top: calc(50% - 3px/ 2);
	  transition-property: opacity;
	  transition-delay: calc(0s + 0.35s);
	}

	.bar--bottom {
	  top: calc(50% + 4px + 3px/ 2);
	  transition-property: top,transform;
	  transition-delay: calc(0s + 0.35s),0s;
	}

	#checkbox:checked + .toggle .bar--top {
	  bottom: calc(50% - 2px/ 2);
	  transform: rotate(135deg);
	  transition-delay: 0s,calc(0s + 0.35s);
	}

	#checkbox:checked + .toggle .bar--middle {
	  opacity: 0;
	  transition-duration: 0s;
	  transition-delay: calc(0s + 0.35s);
	}

	#checkbox:checked + .toggle .bar--bottom {
	  top: calc(50% - 2px/ 2);
	  transform: rotate(225deg);
	  transition-delay: 0s,calc(0s + 0.35s);
	}
	.burger__popup {
  position: absolute;
  top: 118px;
  right: 0;
  width: 100%;
  height: 200vh;
  background: var(--main-color);
  display: flex;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
  padding:30px 15px;
}

#checkbox:checked ~ .burger__popup {
  opacity: 1;
  visibility: visible;
}

/* меню всередині popup */
.mob_menu {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

.mob_menu li {
  margin: 20px 0;
}

.mob_menu a {
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.mob_menu a:hover {
    opacity:0.5;
}

/* невелике анімаційне виїжджання */
.burger__popup {
  transform: translateY(-10px);
}
#checkbox:checked ~ .burger__popup {
  transform: translateY(0);
}
	.header__mob__bottom .site-logo {
		width: 80px;
		height: 80px;
	}
	.header__mob__bottom .site-logo img {
		width: 80px;
	}

	.header__mob__bottom-content {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header__mob_icon_list {
		display: flex;
		gap:10px;
		list-style: none;
	}
	.site-header {
		padding: 0px;
	}
	.follow__item:nth-child(3) {
		display: none;
	}
	.follow__item {
		width: calc(50% - 5px);
	}
	.follow__grid {
		gap:10px;
	}
	.follow__item img {
        height: 350px;
    }
    .follow__item {
    	height: 350px;
    }
        .shop__heading h2 {
        font-size: 60px;
    }
    .shop__desc {
    	max-width: 80%;
    }
    .woocommerce ul.products {
    	display: flex;
    	flex-direction: column;
    	gap:15px;
    }
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    	margin: 0px;
    }
    .about-container {
        padding-top:120px;
    }
    .about-container .catalog__desc {
        width:100%;
    }
    .about__point {
        flex-direction:column-reverse;
    }
    .about__point-content {
        padding: 30px;
        width: 100%;
    }
    .point__image {
        width: 100%;
        height: 300px;
    }
    .about__point:nth-child(even) {
    flex-direction: column-reverse;
}
.about_point-img {
    height:150%;
}
.contact__content {
    flex-direction:column;
}
.contact__info{
    width:100%;
}
.contact__form {
    width:100%;
}
.contact {
    padding-top:60px;
}
.product-tab-titles {
    flex-direction:column;
}
}

@media (max-width: 768px) {
	.hero__title {
		font-size: 55px;
		line-height: 1.3em;
	}
	.hero__desc {
		margin-bottom: 0px;
		font-size: 16px;
	}
	.feature__item {
		width: 100%;
		text-align: left;
	}
	.feature__heading {
        justify-content: flex-start;
    }
    .features {
    	padding-top: 60px;
    }
    h2 {
    	font-size: 40px;
    }
    .about {
    	padding-top: 60px;
    }
    .cat-hero {
    	margin-top: 60px;
    	height: clamp(420px, 30vh, 760px);
    }
    .cat-hero__title {
    	font-size: 40px;
    }
    .cat-hero__labels {
    	padding: 0px 15px;
    }
    .product-card {
    	flex: 0 0 80%;
    }
    .tcombo__left {
        height: 60vh; 
    }
    .bestsellers {
    	padding-top: 60px;
    	margin-bottom: 60px;
    }
    .follow {
    	padding-top: 60px;
    }
    .follow__item img {
        height: 250px;
    }
    .follow__item {
        height: 250px;
    }
    .site-footer {
    	margin-top: 60px;
    	padding-top: 10px;
    }
    .footer__top-item:first-child {
    	flex-direction: column;
    	gap:10px;
    	align-items: flex-start;
    }
    .company__slogan {
    	text-align: left;
    	width: 100%;
    }
    .footer__top-item {
	    width: calc(50% - 15px);
	}
	.footer__top-item:last-child {
		width: 100%;
		padding-top: 15px;
        border-top: 1px solid #59534333;
	}
	.footer__top-item__title {
		margin-bottom: 15px;
	}
	.footer__top {
        gap: 15px;
    }
        .shop__heading h2 {
        font-size: 40px;
    }
    .shop__desc {
    	max-width: 100%;
    }
    .shop__heading {
    	margin-bottom: 30px;
    }
    .woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product {
    	margin: 0px;
    }
    .catalog__text {
    	padding-bottom: 60px;
    }
    .about-container {
        padding-top:60px;
    }
    .point__title {
        font-size:27px;
    }
    .faq__content {
    flex-direction:column;
}
.faq__title {
    width:100%;
}
.accordion {
    width:100%;
}
.faq {
    padding-top:60px;
}
.product-title {
    font-size:30px;
}
}

@media (max-width: 576px) {
	.hero {
		height: 100vh;
	}
	.hero__title {
    	font-size: 37px;
    }
    .hero__desc {
    	font-size: 14px;
    	margin-bottom: 10px;
    }
    .offer__content {
    	gap:20px;
    }
    .btn {
    	font-size: 14px;
    	padding:10px 15px;
    }
    .cta_secondary {
    	font-size: 14px;
    }
    .hero__buttons {
    	gap:20px;
    }
    .aws-container .aws-show-clear .aws-search-field {
    	font-size: 14px;
    }
    .search__line.active {
	  padding: 15px 0px 15px 0px;
	}
	h2 {
		font-size: 34px;
	}
	.about__desc {
		width: 100%;
		font-size: 16px;
	}
	.about__content__main {
		gap:20px;
	}
	.about__image-wrap {
		height: 30vh;
	}
	.cat-hero__title {
		font-size: 34px;
	}
	.cat-hero {
        height: clamp(300px, 30vh, 760px);
    }
    .tquote {
        font-size: 25px;
    }
    .tcombo__left {
        height: 40vh;
    }
        .follow__item img {
        height: 150px;
    }
        .follow__item {
        height: 150px;
    }
    .follow__grid {
    	margin-top: 30px;
    }
    .company__rights {
    	font-size: 12px;
    }
    .footer_menu .menu-item {
    	font-size: 14px;
    }
    .footer__link {
    	font-size: 14px;
    }
    .footer__address {
    	font-size: 14px;
    }
    .footer__bottom {
    	margin-top: 15px;
    }
    .catalog__desc {
    	width: 100%;
    	margin-top: 20px;
    	font-size: 16px;
    }
    .products-toolbar {
    	flex-direction: column;
    }
    .filters-toggle {
    	width: 100%;
    	border-right: none;
    	border-bottom: 1px solid #0000001A;
    }

    .filters-toggle:hover {
    	border-right: none;
    }

    .custom-orderby {
    	width: 100%;
    }
    .orderby-toggle {
    	width: 100%;
    	border-left: none;
    }

    .orderby-toggle:hover {
    	border-left: none;
    }
    .filters-drawer {
    	width: 100%;
    	padding: 20px;
    	max-width: 100%;
    }
    .about__point-content {
        padding: 30px 15px;
    }
    .input__label-small {
        width:100%;
    }
    .woocommerce-variation-add-to-cart {
        align-items: center;
        flex-direction: column;
    }
    form.cart .quantity {
        flex: 0 0 54px;
    }
    .woocommerce div.product form.cart .button {
        width:100%;
        border-top:1px solid var(--border-color);
        border-bottom:1px solid var(--border-color);
    }
    .quantity {
        border-right:none;
    }
    .wishlist-wrapper a {
        border-left:none;
    }
    .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--single.yith-wcwl-add-to-wishlist-button--anchor {
    width: 100%;
    align-items: center;
    justify-content: center;
}
.yith-add-to-wishlist-button-block.yith-add-to-wishlist-button-block--single {
    align-items: center;
    width: 100%;
}
.wishlist-wrapper {
    width:100%!important;
}
.yith-add-to-wishlist-button-block.yith-add-to-wishlist-button-block--single {

    width: 100%;
}
}

html, body {
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

/* Safari специфіка */
@supports (-webkit-touch-callout: none) {
  html, body {
    overflow-x: clip !important; /* clip краще за hidden */
    max-width: 100%;
  }
}

/* Щоб нічого не "вилізало" */
* {
  box-sizing: border-box;
}

/* Якщо є Lenis або інший smooth scroll */
html.lenis, html.lenis body {
  overflow-x: clip !important;
  width: 100%;
}