
/*=====
Template Name: Naturtex	
Author: Pedro Gris
Author URI: https://pedrogris.es/
Version: 1.0.1
Description: Tema sostenible diseñado a medida
=======*/


/* Table of Content
==================================================
#BASIC
#MENU
#RESPONSIVE
==========*/


/* BASIC */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

:root {
	--darkest-black: #373532;
	--black: #615D59;
	--gray: #BEBEBE;
	--white: #fff;
	--white-overlay: #ffffffc4;
	--black-overlay: #9d9288e1;
	--cream: #F2F0EA;
	--light-brown: #C1B5A8;
	--dark-brown: #9D9288;
	--cubic-bezier:cubic-bezier(.45,0,.55,1);
}

::-moz-selection {
	color: var(--white);
	background: var(--black);
}
  
::selection {
	color: var(--white);
	background: var(--black);
}

::-webkit-scrollbar {
	display: none;
}
  
* {
	/* border: 1px solid blue; */
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
}

body,
html {
	overflow-x:hidden;
}

body {
	width: 100%;
	height: 100%;
	color: var(--black);
	background-color: var(--white);
	font-size: 18px;
	font-weight: 300;
	margin: 0;
	padding: 0;
	font-family: 'Cormorant Garamond', serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
}

h1 {
	font-size: 50px;
	line-height: 110%;
}

h2 {
	font-size: 60px;
	line-height: 1.13;
}

h3 {  
	font-size: 26px;  
}

h4 {  
	font-size: 22px;  
}

h5 {  
	font-size: 20px;  
}

h6 {  
	font-size: 18px;  
}

p {
	font-size: 18px;
	font-family: 'Cormorant Garamond', serif;
}

b {
	font-weight: 700;
}

a {
	color: inherit;
	width: fit-content;
	height: fit-content;
	font-weight: 700;
}

header a,
footer a,
.follow-us a {
	text-decoration: none;
	font-weight: 300;
}

#wpadminbar {
	display: none;
}


/* ANIMATE IF VISIBLE */

#loading-transition {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	height: 100svh;
	background-color: var(--white);
	z-index: 100000 !important;
	opacity: 0;
	pointer-events: none;
	animation: loading-transition 4s var(--cubic-bezier);
}

@keyframes loading-transition {
	0% {
		opacity: 0;

		pointer-events: all;
	}
	12.5%, 100% {
		opacity: 1;
		pointer-events: all;
	}
}

.hidden {
    opacity: 0;
    transition: all .5s var(--cubic-bezier);
	visibility: hidden;
}

.hidden-slide {
	opacity: 0 !important;
	visibility: hidden;
	transition: all .7s var(--cubic-bezier);
}

.slide-left {
	transform: translateX(-100px);
}

.slide-right {
	transform: translateX(100px);
}

.show-slide {
	opacity: 1 !important;
	transform: translateX(0) !important;
	visibility: visible;
}

.hidden-slide a .row-text h2,
.hidden-slide a .row-text p {
	transform: translateY(20px);
	opacity: 0;
	transition: all .5s ease-out;
}

.hidden-slide a .row-text h2 {
	transition-delay: .3s;
}

.hidden-slide a .row-text p {
	transition-delay: .5s;
}

.show-slide a .row-text h2,
.show-slide a .row-text p {
	transform: translateY(0);
	opacity: 1;
}

.show {
    opacity: 1;
    transform: translateY(0);
	visibility: visible;
}

.show:nth-of-type(2) {
	transition-delay: .05s;
}

.show:nth-of-type(3) {
	transition-delay: .1s;
}
.show:nth-of-type(4) {
	transition-delay: .15s;
}
.show:nth-of-type(5) {
	transition-delay: .2s;
}
.show:nth-of-type(6) {
	transition-delay: .25s;
}
.show:nth-of-type(7) {
	transition-delay: .3s;
}



/* HEADER */

.header-placeholder {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	backdrop-filter: blur(10px);
	background-color: var(--black-overlay);
	transform: translateY(-110px);
	transition: all .3s var(--cubic-bezier);
	z-index: 3;
}

.header-invert .header-placeholder {
	background-color: var(--white-overlay);
}

.animated-header .loading-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	background-color: var(--dark-brown);
	z-index: 10;
	animation: loading-menu 2s var(--cubic-bezier);
}

@keyframes loading-menu {
	0% {
		height: 100vh;
		background-color: var(--white);
	}
	25% {
		height: 100vh;
		background-color: var(--dark-brown);
	}
	50% {
		height: 100vh;
	}
	100% {
		height: 0;
	}
}

.tns-ovh {
	animation: main-home 2s var(--cubic-bezier);
}

@keyframes main-home {
	0%,40% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

body img {
	width: 100%;
}

header {
	width: 100%;
}

header .logo svg {
	width: 12rem;
}

header .logo {
	position: fixed;
	top: 35px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 11;
}

.animated-header header .logo {
	animation: logo 2s var(--cubic-bezier);
}

@keyframes logo {
	0%,50% {
		top: 50%;
	}
	100% {
		top: 35px;
	}
}

.animated-header .logo path {
	transition: 0.5s fill ease-out;
	animation: logo-path 1s var(--cubic-bezier);
}

@keyframes logo-path {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.header-invert .logo path {
	fill: var(--black);
}

@keyframes logo-invert {
	0%,80% {
		fill: var(--white);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		fill: var(--black);
	}
}

.logo path:nth-of-type(2) {
	animation-duration: .9s;
}

.logo path:nth-of-type(3) {
	animation-duration: .8s;
}

.logo path:nth-of-type(4) {
	animation-duration: .7s;
}

.logo path:nth-of-type(5) {
	animation-duration: .6s;
}

.logo path:nth-of-type(6) {
	animation-duration: .5s;
}

.logo path:nth-of-type(7) {
	animation-duration: .4s;
}

.logo path:nth-of-type(8) {
	animation-duration: .3s;
}

.logo path:nth-of-type(9) {
	animation-duration: .2s;
}

.header-invert .logo path:nth-of-type(2) {
	animation-duration: 1.9s;
}

.header-invert .logo path:nth-of-type(3) {
	animation-duration: 1.8s;
}

.header-invert .logo path:nth-of-type(4) {
	animation-duration: 1.7s;
}

.header-invert .logo path:nth-of-type(5) {
	animation-duration: 1.6s;
}

.header-invert .logo path:nth-of-type(6) {
	animation-duration: 1.5s;
}

.header-invert .logo path:nth-of-type(7) {
	animation-duration: 1.4s;
}

.header-invert .logo path:nth-of-type(8) {
	animation-duration: 1.3s;
}

.header-invert .logo path:nth-of-type(9) {
	animation-duration: 1.2s;
}

.sf-field-search {
	padding: 0 !important;
}

.sf-field-search input {
	padding: auto !important;
}

.header-language-search,
.language {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 15px;
	color: var(--white);
}

.current-lang a {
	font-weight: 700;
}

.header-invert .header-language-search,
.header-invert .language {
	color: var(--black);
}

.language .lang-item:first-of-type:after {
	position: absolute;
	top: 3px;
	left: 26px;
	display: block;
	content: "";
	width: 1px;
	height: 1rem;
	background-color: var(--white);
}

.header-invert .language .lang-item:first-of-type:after {
	background-color: var(--dark-brown);
}

.header-language-search {
	position: fixed;
	top: 35px;
	left: 5vw;
	z-index: 3;
}

.lang-item,
.sf-field-search {
	list-style: none;
}

.lang-item a {
	text-decoration: none;
	color: var(--white);
}

.header-invert .lang-item a {
	color: var(--black);
}

.sf-input-text {
	border: none;
	background: transparent;
	border-bottom: 1px solid var(--white);
	color: var(--white);
	margin-left: 3rem;
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
}

.sf-input-text::placeholder {
	color: var(--white);
	opacity: 1;
}
  
.sf-input-text:-ms-input-placeholder {
	color: var(--white);
}
  
.sf-input-text::-ms-input-placeholder {
	color: var(--white);
}

.sf-input-text:focus {
	outline: none;
}

.header-invert .sf-input-text {
	border-bottom: 1px solid var(--black);
	color: var(--black);
}

.header-invert .sf-input-text::placeholder {
	color: var(--black);
}
  
.header-invert .sf-input-text:-ms-input-placeholder {
	color: var(--black);
}
  
.header-invert .sf-input-text::-ms-input-placeholder {
	color: var(--black);
}


/* MENU */

header #burger {
	display: none;
}

header input + label {
	position: fixed;
	top: 40px;
	right: 5vw;
	height: 20px;
	width: 35px;
	z-index: 8;
}

header input + label span {
	position: absolute;
	width: 100%;
	height: 0px;
	top: 50%;
	margin-top: -1px;
	right: 0;
	display: block;
	border-bottom: 1px solid var(--white);
	transition: 0.25s ease-out;
}

.header-invert input + label span {
	border-bottom: 1px solid var(--black);
}

header input + label span:first-child {
	top: 3px;
}

header input + label span:last-child {
	top: 16px;
}

header label:hover {
	cursor: pointer;
}

header label:hover span:first-child {
	transform: translateY(-2px);
}

header label:hover span:nth-of-type(2) {
	width: 20px;
}

header label:hover span:last-child {
	transform: translateY(2px);
}

header input:checked + label span {
	opacity: 0;
	top: 50%;
	border-bottom: 1px solid var(--black);
}

header input:checked + label span:first-child {
	opacity: 1;
	transform: rotate(45deg);
}

header input:checked + label span:last-child {
	opacity: 1;
	transform: rotate(-45deg);
}

header input:checked ~ .logo path {
	fill: var(--black);
}

header input:checked ~ .logo path {
	fill: var(--black);
}

.carrito a svg path {
	transition: all .3s;
	fill: var(--white);
}

.carrito .numeroCarrito {
	background-color: var(--white);
	color: var(--black);
	transition: all .3s;
}

.carrito-invert .numeroCarrito {
	background-color: var(--black);
	color: var(--white);
}

header input:checked ~ .carrito a svg path {
	fill: var(--black);
}

header input:checked ~ .carrito .numeroCarrito {
	background-color: var(--black);
	color: var(--white);
}

header input ~ nav {
	background: var(--cream);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;;
	height: 0;
	z-index: 3;
	transition: 0.5s ease-in-out;
	transition-delay: 0.5s;
	overflow: hidden;
	pointer-events: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	font-weight: 500;
}

.nav {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 1rem;
}

.nav hr {
	height: 0;
	opacity: 0;
	min-height: fit-content;
	border: none;
	border-right: 1px solid var(--black);
	background-color: var(--black);
	transition: 0.5s ease-in-out;
}

header input ~ nav > .nav > ul {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 1rem;
	width: fit-content;
	padding-right: 5rem;
}

header input ~ nav > .nav > ul > li {
	opacity: 0;
	transform: translateY(-12px);
	transition: 0.5s;
	transition-delay: 0s;
	list-style: none;
	width: fit-content;
	color: var(--black);
	font-size: 45px;
	font-weight: 500;
	font-family: 'Cormorant Garamond', serif;
	display: block;
	width: fit-content;
}

header input ~ nav > .nav > ul > ul > li {
	opacity: 0;
	transform: translateY(-12px);
	transition: 0.5s;
	transition-delay: 0s;
	list-style: none;
	width: fit-content;
	font-size: 16px;
	margin: .7rem 0;
}

header input ~ nav > .nav > ul > li > a {
	text-decoration: none;
	color: var(--black);
	font-size: 45px;
	font-weight: 500;
	font-family: 'Cormorant Garamond', serif;
	display: block;
	width: fit-content;
}

header input ~ nav > .nav > ul > li > a:hover,
header input ~ nav > .nav > ul > ul > li > a:hover {
	text-decoration: underline;
}

header input:checked ~ nav {
	background-color: var(--cream);
	height: 100vh;
	pointer-events: all;
	transition-delay: 0s;
}

/* FIRST COLUM */
header input:checked ~ nav > .nav > hr {
	height: 290px;
	transform: translateY(12px);
	opacity: 1;
	transition-delay: .4s;
}

header input:checked ~ nav > .nav > ul > li,
header input:checked ~ nav > .nav > ul > ul > li {
	transform: translateY(0);
	opacity: 1;
	transition-delay: .4s;
}

header input:checked ~ nav > .nav > ul > li:nth-of-type(2) {
	transition-delay: .45s;
}

header input:checked ~ nav > .nav > ul > ul > li {
	transition-delay: .5s;
}

header input:checked ~ nav > .nav > ul > ul > li:nth-of-type(2) {
	transition-delay: .55s;
}

header input:checked ~ nav > .nav > ul > ul > li:nth-of-type(3) {
	transition-delay: .6s;
}

header input:checked ~ nav > .nav > ul > li:nth-of-type(3) {
	transition-delay: .65s;
}

/* SECOND COLUM */
header input:checked ~ nav > .nav > hr:nth-of-type(2) {
	transition-delay: .55s;
}

header input:checked ~ nav > .nav > ul:nth-of-type(2) > li {
	transition-delay: .6s;
}

header input:checked ~ nav > .nav > ul:nth-of-type(2) > ul > li {
	transition-delay: .65s;
}

header input:checked ~ nav > .nav > ul:nth-of-type(2) > ul > li:nth-of-type(2) {
	transition-delay: .7s;
}

header input:checked ~ nav > .nav > ul:nth-of-type(2) > ul > li:nth-of-type(3) {
	transition-delay: .75s;
}

header input:checked ~ nav > .nav > ul:nth-of-type(2) > li:nth-of-type(2) {
	transition-delay: .8s;
}

header input:checked ~ nav > .nav > ul:nth-of-type(2) > li:nth-of-type(3) {
	transition-delay: .85s;
}

/* THIRD COLUMN */
header input:checked ~ nav > .nav > hr:nth-of-type(3) {
	transition-delay: .7s;
}

header input:checked ~ nav > .nav > ul:nth-of-type(3) > li {
	transition-delay: .75s;
}

header input:checked ~ nav > .nav > ul:nth-of-type(3) > li:nth-of-type(2) {
	transition-delay: .8s;
}

/* FOURTH COLUM */
header input:checked ~ nav > .nav > hr:nth-of-type(4) {
	transition-delay: .95s;
}

header input:checked ~ nav > .nav > ul:nth-of-type(4) > li {
	transition-delay: 1s;
}

header input:checked ~ nav > .nav > ul:nth-of-type(4) > li:nth-of-type(2) {
	transition-delay: 1.05s;
}

header input:checked ~ nav > .nav > ul:nth-of-type(4) > ul > li {
	transition-delay: 1.1s;
}

header input:checked ~ nav > .nav > ul:nth-of-type(4) > ul > li:nth-of-type(2) {
	transition-delay: 1.15s;
}

header input:checked ~ nav > .nav > ul:nth-of-type(4) > ul > li:nth-of-type(3) {
	transition-delay: 1.2s;
}

header input:checked ~ nav > .nav > ul:nth-of-type(4) > li:nth-of-type(2) {
	transition-delay: 1.25s;
}

.mobile-menu {
	display: none;
}


/* SLDIER */

#homeSlider .splide {
	position: relative;
}

.splide__slide {
	overflow: hidden;
}

/* .splide__slide img {
	transition: transform .3s var(--cubic-bezier);
}

.splide__slide:hover img {
	transform: scale(1.03);
} */

#homeSlider .splide__track .splide__list .splide__slide a img {
	animation: sliderIntro 2s var(--cubic-bezier);
}

@keyframes sliderIntro {
	0%,50% {
		transform: scale(1.3);
	}

	100% {
		transform: scale(1);
	}
}

#homeSlider .splide__track .splide__list .splide__slide .slider-text .slider-h1,
#homeSlider .splide__track .splide__list .splide__slide .slider-text .slider-h5 {
	opacity: 0;
	transform: translateY(20px);
	transition: all .5s ease-out;
}

#homeSlider .splide__track .splide__list .splide__slide .slider-text .slider-text-anim {
	opacity: 1;
	transform: translateY(0);
}

#homeSlider .splide__track .splide__list .splide__slide .slider-text .slider-h5 {
	transition-delay: .1s;
}

#homeSlider .splide__slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #c9c9c9;
	mix-blend-mode: multiply;
	z-index: 1;
}

#homeSlider .splide__track ul li {
	height: 100vh;
	height: 100svh;
}

#homeSlider ul li img,
#homeSlider ul li video {
	object-fit: cover;
	min-width: 100vw;
	max-height: 100vh;
	max-height: 100svh;
	min-height: 100vh;
	min-height: 100svh;
}

#homeSlider .slider-text,
#headerAbout .slider-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .5rem;
	color: var(--white);
	z-index: 2;
}

#homeSlider .slider-text h1,
#headerAbout .slider-text h1,
#homeSlider .slider-text h5,
#headerAbout .slider-text h5 {
	text-align: center;
	font-weight: 300;
	white-space: nowrap;
}

#homeSlider .slider-text h1,
#headerAbout .slider-text h1 {
	font-size: 70px;
	font-weight: 500;
}

#homeSlider .slider-text h5,
#headerAbout .slider-text h5 {
	font-size: 20px;
}

#homeSlider .splide__pagination {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: var(--white);
	display: flex;
	flex-direction: row;
	align-items: end;
	gap: 1rem;
	font-size: 25px;
	cursor: pointer;
	width: fit-content;
	margin: 0;
	padding: 0;
}

#homeSlider .splide__arrows {
	display: none;
}

.slide-count {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: var(--white);
	display: flex;
	flex-direction: row;
	align-items: end;
	width: auto;
	gap: .5rem;
	font-size: 25px;
	cursor: pointer;
}

#homeSlider .splide__pagination__page {
	background: transparent !important;
	color: var(--white);
	font-family: 'Cormorant Garamond', serif;
	font-size: 25px;
	font-weight: 300;
	opacity: 1 !important;
	margin-right: 1.2rem !important;
}

#homeSlider .splide__pagination__page::before {
	content: "0";
}

#homeSlider .splide__pagination__page::after {
	content: "";
	width: 1px;
	height: 18px;
	background-color: var(--white);
	position: absolute;
	top: .6rem;
	left: 2rem;
}


#homeSlider .splide__pagination li:last-of-type .splide__pagination__page::after {
	display: none;
}

#homeSlider .is-active {
	transform: none !important;
	font-weight: 700 !important;
}

#homeSlider .slide-count span {
	border-right: 1px solid var(--white);
	height: 15px;
	margin-bottom: .3rem;
	width: 0;
	background-color: var(--white);
}

#homeSlider .slide-count span:last-of-type {
	display: none;
}




/* ROWS */

.spacer {
	margin: 6rem 0;
}

.spacer-big {
	margin: 4rem 0;
}

.spacer-medium {
	margin: 2rem 0;
}

.spacer-small {
	margin: .8rem 0;
}

.spacer-xtra-small {
	margin: .5rem 0;
}

.dual-row {
	display: flex;
	flex-direction: row;
	width: 100%;
	gap: 2vh;
	margin: 2vh 0;
}

.single-row .half-row img {
	width: 50vw;
}

.half-row {
	width: calc(50% - 1vh);
	height: calc(66.71vw / 2 - 1vh);
	position: relative;
	text-align: center;
	color: var(--white);
	overflow: hidden;
}

.half-row::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(66.71vw / 2 - 1vh);
	background-color: var(--gray);
	mix-blend-mode: multiply;
	opacity: .7;
	pointer-events: none;
}

.row-text {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.row-text h2 {
	white-space: nowrap;
}

.half-row img {
	transition: transform .3s;
}

.half-row a:hover img {
	transform: scale(1.05);
}

.single-row {
	width: 100%;
	height: fit-content;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.single-row h2 {
	margin: 0 1rem;
}

.single-row img {
	width: 100vw;
	min-height: 20rem;
	object-fit: cover;
}

.single-row .sustainability a {
	margin: 1rem;
}

.news {
	margin: 4rem 0;
}

.news p,
.news h2 {
	font-family: 'Cormorant Garamond', serif;
	z-index: 2;
}

.latest-projects {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	margin: 2rem;
}

.latest-projects a {
	overflow: hidden;
	width: 20vw;
	height: 30vw;
	min-width: 235px;
	min-height: 350px;
}

.latest-projects a img {
	height: fit-content;
	object-fit: cover;
	width: 20vw;
	height: 30vw;
	min-width: 235px;
	min-height: 350px;
	transition: transform .3s var(--cubic-bezier);
}

.latest-projects a:hover img {
	transform: scale(1.05);
}

.newsletter {
	position: relative;
	color: var(--white);
	height: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}

.newsletter p {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 300;
}

.newsletter .button {
	margin-top: 1rem;
}

.newsletter::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 400px;
	background-color: var(--gray);
	mix-blend-mode: multiply;
	opacity: .7;
	pointer-events: none;
	z-index: 0;
}




/* INSTAGRAM */

.follow-us {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 7rem 2rem;
	background-color: var(--cream);
}

#sb_instagram {
	display: grid;
}

#sbi_images {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 1rem;
	max-width: 80rem;
	margin: auto;
}

#sb_instagram.sbi_col_4 #sbi_images .sbi_item {
	width: 100% !important;
}

#sb_instagram .sbi_no_js img {
	display: block !important;
}

#sbi_images span {
	display: none;
}

#sb_instagram .sbi_photo img {
	display: block !important;
	height: 100% !important;
	object-fit: cover !important;
}





/* BUTTON */

.button {
	width: fit-content;
	padding: .5rem 1rem;
	border: 1px solid var(--white);
	color: var(--white);
	background-color: transparent;
	text-align: center;
	font-size: 15px;
	font-family: 'Cormorant Garamond', serif;
	letter-spacing: 0.005px;
	transition: background-color .3s;
}

.button:hover {
	background-color: var(--white);
	color: var(--black);
}






/* PRODUCT */
/* RUGS */
/* PROJECTS */

.rugs-fabrics {
	margin: 7rem 0 2rem;
}

.rugs-fabrics h2 {
	font-size: 45px;
}

.filterContainer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin: 4rem 10vw;
	padding: 1.5rem 0;
	width: calc(100% - 20vw);
	position: relative;
	z-index: 2;
	border-top: 1px solid var(--black);
	border-bottom: 1px solid var(--black);
}

.filterContainer h3 {
	font-size: 18px;
	font-weight: 400;
}

.filterContainer .filter {
	display: flex;
	flex-direction: row;
}

.filterContainer .filter p {
	font-weight: 400;
}

.filterContainer .filter form ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	position: relative;
	z-index: 4;
}

.filterContainer .filter form ul li {
	padding: 0;
	position: relative;
}

.filterContainer .filter form ul li h4 {
	padding: 0;
	font-weight: 400;
	position: relative;
	padding: 0 30px 0 0;
	margin-left: 3vw;
	cursor: pointer;
	font-size: 18px;
}

.filterContainer .filter form ul li h4::after {
	display: block;
	content: '';
	background-image: url('assets/images/filter-arrow.svg');
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	position: absolute;
	right: 0px;
	top: 4px;
	transition: transform .3s ease;
}

.filterContainer .filter form ul li .dropdownOpen::after {
	transform: rotate(180deg);
}

.filterContainer .filter form ul li ul {
	display: none;
	flex-direction: column;
	position: absolute;
	z-index: 3;
	top: 40px;
	left: 40px;
	background-color: var(--white);
	box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.1);
	animation: dropDown .3s var(--cubic-bezier);
}

.project .filter form ul li ul {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	position: static;
	z-index: 3;
	top: 0;
	left: 0;
	background-color: var(--white);
	border: none;
	box-shadow: none;
	animation: none;
}

@media (max-width:900px) {
	.project .filter form ul li ul {
		gap: .5rem;
	}
}

@media (max-width:480px) {
	.project .filter form ul li ul {
		gap: .25rem;
	}
}

@keyframes dropDown {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.filterContainer .filter form ul li:last-of-type ul {
	left: auto;
	right: 0px;
}

.filterContainer .filter form ul li ul li input {
	display: none;
}

.project .filter form ul li ul li {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.project .filter form ul li ul li input {
	display: block;
}

.filterContainer .filter form ul li ul li input:checked + label,
.filterContainer .filter form ul li ul li input:checked:hover + label {
	font-weight: 700;
}

.filterContainer .filter form ul li ul li input:checked + label:hover::after,
.filterContainer .filter form ul li ul li input:checked:hover + label:hover::after {
	display: none;
}

.filterContainer .filter form ul li ul li label::after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: var(--medium-dark-gray);
	transform-origin: bottom center;
	transition: transform 0.15s var(--cubic-bezier);
	z-index: 1;
}

.filterContainer .filter form ul li ul li label:hover::after {
	transform: scaleX(1);
}

.filterContainer .filter form ul li ul li label {
	padding: 0;
	white-space: pre;
	width: calc(100% - 20px);
	padding: 10px;
	background-color: var(--white);
	transition: all .2s ease;
	cursor: pointer;
}

.filterContainer .filter form ul li ul li label:hover {
	font-weight: 700;
}

.filterContainer span {
	width: 1px;
	height: 20px;
	margin: 0 0 0 3vw;
	background-color: var(--medium-dark-gray);
}



/* .filterContainer .filter #search-filter-form-394 ul {
	gap: 2rem;
} */

.filterContainer .filter form ul li {
	margin: 0;
	padding: 0;
}

.filterContainer .filter form ul li ul li input:hover,
.filterContainer .filter form ul li ul li label:hover {
	cursor: pointer;
}

.filterContainer .filter form ul li ul li input {
	width: 1rem;
	height: 1rem;
}

.filterContainer .filter form ul li ul li input:checked {
	accent-color: var(--black);
	border-width: 0;
	outline-offset: 0;
}

.filterContainer .filter form ul li ul li input::before {
	display: none;
}

/* RESULTS */

.search-results {
	transition: all .5s;
}

.search-filter-results .product-preview {
	margin-bottom: 1.5rem;
	animation: logo .2s ease;
}

.search-filter-results .product-preview:nth-of-type(2) {
	animation-duration: .4s;
}

.search-filter-results .product-preview:nth-of-type(3) {
	animation-duration: .6s;
}

.search-filter-results .product-preview:nth-of-type(4) {
	animation-duration: .8s;
}

.search-filter-results .product-preview:nth-of-type(5) {
	animation-duration: 1s;
}

.search-filter-results .product-preview:nth-of-type(6) {
	animation-duration: 1.2s;
}

.search-filter-results .product-preview:nth-of-type(7) {
	animation-duration: 1.4s;
}

.search-filter-results .product-preview:nth-of-type(8) {
	animation-duration: 1.6s;
}

.search-filter-results .product-preview:nth-of-type(9) {
	animation-duration: 1.8s;
}

.search-filter-results .product-preview:nth-of-type(10) {
	animation-duration: 2s;
}

.search-filter-results .product-preview:nth-of-type(11) {
	animation-duration: 2.2s;
}

.search-filter-results .product-preview:nth-of-type(12) {
	animation-duration: 2.4s;
}

.search-filter-results .product-preview:nth-of-type(13) {
	animation-duration: 2.6s;
}

.search-filter-results .product-preview:nth-of-type(14) {
	animation-duration: 2.8s;
}

.search-filter-results .product-preview:nth-of-type(15) {
	animation-duration: 3s;
}

.search-filter-results .product-preview:nth-of-type(16) {
	animation-duration: 3.2s;
}

.search-filter-results .product-preview:nth-of-type(17) {
	animation-duration: 3.4s;
}

.search-filter-results .product-preview:nth-of-type(18) {
	animation-duration: 3.6s;
}

.search-filter-results .product-preview:nth-of-type(19) {
	animation-duration: 3.8s;
}

.search-filter-results .product-preview:nth-of-type(20) {
	animation-duration: 4s;
}

.search-filter-results .product-preview a .imgWrapper {
	overflow: hidden;
	width: calc((100vw - 10vw) / 4 - 1rem);
	height: calc((120vw - 10vw) / 4 - 1rem);
}

.search-filter-results .product-preview a:hover .imgWrapper img {
	transform: scale(1.05);
}

.search-filter-results .product-preview a .imgWrapper img {
	width: calc((100vw - 10vw) / 4 - 1rem);
	height: calc((120vw - 10vw) / 4 - 1rem);
	transition: transform .3s var(--cubic-bezier);
	position: relative;
}

.search-filter-results .product-preview a .product-text {
	margin-top: .5rem;
}

.search-filter-results .product-preview a .product-text p {
	font-size: 14px;
	text-transform: uppercase;
}

.two-row-product {
	display: flex;
	flex-direction: row;
	width: 100%;
	margin: 0 10vw;
	gap: 5vw;
}

.half-row-product {
	display: flex;
	flex-direction: column;
	width: calc(50% - 12.5vw);
}

.product-title {
	width: calc(100% - 10vw);
    margin: 10rem 5vw 3rem;
    text-align: center;
    position: relative;
}

.product-title h1 {
	font-weight: 500;
	font-size: 45px;
}

.product-title h2 {
	font-size: 16px;
	margin-top: .5rem;
	text-transform: uppercase;
}

@media (max-width:700px) {
	.product-title h1 {
		font-size: 35px;
	}
}

.product-title .back {
	position: absolute;
    right: 0;
    top: .5rem;
}

.product-title .back svg {
	display: block;
}

@media (max-width:700px) {
	.product-title .back {
		top: 0;
	}

	.product-title .back svg {
		transform: scale(0.8);
	}
}

.product-title .back svg {
	transition: all .2s var(--cubic-bezier);
}

@media (min-width:700px) {
	.product-title .back:hover svg {
		transform: rotate(90deg);
	}
}

.selection-indicator {
	display: flex;
	flex-direction: row;
	gap: .5rem;
	text-transform: uppercase;
}

.section-title {
	text-transform: uppercase;
}

p.section-title {
	margin: 0 !important;
}

.colour-advice {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	margin: 2rem 0
}

.colour-advice .advice-icon {
	min-width: 2rem;
	width: 2rem;
}

.colour-advice p {
	font-size: 16px;
}

.current {
	overflow: hidden;
	width: 37.5vw;
	height: 37.5vw;
	cursor: url(assets/images/cursor-zoom.svg), auto !important;
	position: relative;
}

.current img {
	object-fit: cover;
	transition-property: opacity, transform;
	transition-duration: .3s;
	transition-timing-function: var(--cubic-bezier);
}

.current .scale-toggle {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	width: 2rem;
	height: 2rem;
	padding: .3rem;
	background-color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.scale-section {
	position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100svh;
    width: 40vw;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
    z-index: 20;
	transform: translateX(100%);
	transition: transform .5s var(--cubic-bezier);
}

.scale-section.active {
	transform: translateX(0);
}

.overlay-scale {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0;
	pointer-events: none;
	z-index: 19;
	transition: opacity .5s var(--cubic-bezier);
}

.overlay-scale.active {
	opacity: .4;
	pointer-events: auto;
}

.scale-section .close {
	position: absolute;
	top: 1rem;
    right: 1rem;
    padding: 1rem;
    cursor: pointer;
}

.scale-section .content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 20px;
	margin: auto;
	overflow: hidden;
}

.scale-section .content img {
	max-width: 700px;
}

.fade-out {
	opacity: 0;
}

.options {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: .5rem;
}

.options .thumbnail:hover img {
	opacity: .7;
}

.options .thumbnail {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.options .thumbnail p {
	text-align: center;
}

.options .thumbnail img {
	width: 75px;
	height: 75px;
	object-fit: cover;
	cursor: pointer;
	border: 1px solid transparent;
	padding: .2em;
	transition: opacity .3s ease;
}

.thumbnail img.selected {
	border: 1px solid var(--black);
}

.thumbnail:hover img.selected {
	opacity: 1;
}

.colourCard {
	width: calc(75px - 1.9rem);
	height: calc(75px - 1.9rem);
	padding: 1rem;
	margin: .2rem;
	background-color: var(--cream);
}

.colourCard svg {
	width: 100%;
	height: 100%;
	
}

.accordion {
	color: var(--black);
	border-top: 1px solid var(--black);
	overflow: hidden;
}

.accordion:last-of-type {
	border-bottom: 1px solid var(--black);
}

.accordion .title {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.accordion .accordion-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: left;
	width: 100%;
	padding: 2rem 0;
	border: none;
	background: none;
	outline: none;
	transition: all .3s;
}

.accordion .accordion-button:hover {
	cursor: pointer;
}

.accordion .accordion-button svg {
	transform: rotate(0);
	transition: all .3s var(--cubic-bezier);
}

.accordion .accordion-button[aria-expanded='true'] svg {
	transform: rotate(180deg);
}

.accordion .accordion-content {
	margin: 0;
	padding: 0;
	height: 100%;
	max-height: 0;
	overflow:hidden;
	margin-bottom: 0;
	transition: all .6s;
}

.accordion .accordion-button[aria-expanded='true'] + .accordion-content {
	max-height: 30rem;
	margin-bottom: 1rem;
}

.accordion-content a p {
	margin: 0 0 1rem;
}

.accordion .dual-row {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	margin: 0;
}

.accordion .half-row {
	height: auto;
	text-align: left;
	color: var(--black);
}

.accordion .half-row::after {
	display: none;
}

.fabric p,
.rug p {
	margin-bottom: 1rem;
}

.accordion .sustainability,
.sustainability {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 1rem;
	width: 100%;
	flex-wrap: wrap;
}

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

.accordion .sustainability a,
.sustainability a {
	text-align: center;
	margin: 0 0 1rem 0;
	width: 4rem;
}

.accordion .sustainability img,
.sustainability img {
	width: 4rem;
	min-width: 4rem;
	height: 4rem;
	min-height: 4rem;
	cursor: pointer;
}

.accordion-content .sustainability p,
.sustainability p {
	margin: 0;
}



/* PRODUCT SLIDER */

#productSlider .splide__arrow svg {
	opacity: 0;
	transition: all .3s var(--cubic-bezier);
}

#productSlider:hover .splide__arrow svg {
 opacity: 1;
}

#productSlider .splide__arrow {
	height: 3rem;
	width: 3rem;
	opacity: 1;
	background-color: transparent;
	z-index: 2;
}

#productSlider .splide__arrow svg {
	width: 100%;
	height: 100%;
}

#productSlider .splide__arrow--prev {
	left: 5vw;
}

#productSlider .splide__arrow--next {
	right: 5vw;
}




/* FROM PLASTIC BOTTLES */

.from-plastic-bottles {
	margin: 4rem 0;
	gap: 1rem;
}

.from-plastic-bottles .description {
	margin: 2rem 0;
	max-width: 45rem;
	margin: 0 1rem;
}



/* PRODUCT FILTER */

.search-filter-results {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 2rem;
	grid-auto-rows: minmax(100px, auto);
	margin: 2rem 10vw 10rem;
}

.search-filter-results .productPreview {
	overflow: hidden;
}

.search-filter-results .productPreview:hover a .imgWrapper img {
	transform: scale(1.1);
}

.search-filter-results .productPreview:hover a .imgWrapper::before {
	opacity: .7;
}

.search-filter-result                                                                                                      s .productPreview a {
	text-decoration: none;
	text-align: center;
}

.search-filter-results .productPreview a {
	text-decoration: none; 
	text-align: center;
}

.search-filter-results .productPreview a .imgWrapper {
	overflow: hidden;
	position: relative;
	width: calc((80vw - 5rem) / 3);
	height: calc((120vw - 5rem) / 3);
}

.search-filter-results .productPreview a .imgWrapper .newProduct {
	position: absolute;
	top: 3vw;
	right: 2vw;
	z-index: 1;
	background-color: var(--white-overlay);
	width: 8vw;
	height: 8vw;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	font-size: 1.2vw;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.search-filter-results .productPreview a .imgWrapper img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: relative;
	transition: transform .3s var(--cubic-bezier);
}

.search-filter-results .productPreview a .imgWrapper::before {
	content: "";
    position: absolute;
    inset: 0;
    background-color: var(--gray);
    mix-blend-mode: multiply;
    opacity: 0;
    pointer-events: none;
	z-index: 1;
	transition: opacity .3s var(--cubic-bezier);
}

.search-filter-results .productPreview a .productText p {
	font-size: 22px;
	font-weight: 400;
	margin-top: 2rem;
}






/* PROJECT */

.project-details {
	width: 100%;
	max-width: 50rem;
	margin: auto;
	padding: 2rem 0;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.half-detail {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.half-detail p a {
	text-decoration: none;
}

.project-overview a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	text-decoration: none;
	margin: 3rem auto 5rem;
}

.project-description {
	background-color: var(--cream);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 7rem 0;
	margin-top: 1.5rem;
	gap: 1rem;
}

.project-description p {
	max-width: 50rem;
	margin: 0 2rem;
}






/* SHOP */

.carrito,
.carrito-invert {
	position: fixed;
	top: 2.3rem;
	right: calc(5vw + 5rem);
	z-index: 4;
} 

.numeroCarrito {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	width: .75rem;
	height: .75rem;
	padding: .15rem .25rem .35rem;
	line-height: 100%;
	font-size: 14px;
	position: absolute;
	bottom: -.5rem;
	right: -.5rem;
}

.product-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	max-width: 90vw;
	margin: auto;
	gap: 2rem;
}

.product-thumbnail {
	position: relative;
	overflow: hidden;
	width: calc(90vw / 3 - 2rem);
	height: calc(114vw / 3 - 2rem);
	cursor: pointer;
}

.product-thumbnail a::after,
.product-thumbnail .linkPlaceholder::after {
	content: "";
	position: absolute;
	inset: 0;
	width: 100vw;
	height: 100vw;
	background-color: var(--black-overlay);
	mix-blend-mode: multiply;
	z-index: 1;
}

.product-thumbnail a img,
.product-thumbnail .linkPlaceholder img {
	position: relative;
	transition: transform .3s var(--cubic-bezier);
}

.product-thumbnail a .product-name,
.product-thumbnail .linkPlaceholder .product-name {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: none;
	color: var(--white);
	font-size: 25px;
	width: 100%;
	text-align: center;
	z-index: 2;
}

.product-thumbnail:hover a img,
.product-thumbnail:hover div img {
	transform: scale(1.1);
}

.woocommerce-product-gallery {
	opacity: 1 !important;
}

.product-list .inspiration-link,
.product-list .download-link {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-decoration: none;
	gap: 0.5rem;
}

.product-list .download-link {
	align-items: center;
}

.product-list .inspiration-link .mask,
.product-list .download-link .mask {
	overflow: hidden;
	aspect-ratio: 1 / 1.33;
}

.product-list .inspiration-link .mask img {
	transition: all .3s var(--cubic-bezier);
}

.product-list .inspiration-link:hover .mask img {
	transform: scale(1.05);
}

.product-list .inspiration-link p,
.product-list .download-link p {
	font-size: 25px;
	font-weight: 400;
}

.product-list .download-link .mask {
	position: relative;
}

.product-list .download-link .mask img {
	transition: all .3s;
}

.product-list .download-link .mask .overlay {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	inset: 0;
	opacity: 0;
	z-index: 1;
	transition: all .3s;
}

.product-list .download-link:hover .mask .overlay {
	opacity: 1;
}

.product-list .download-link:hover .mask img {
	filter: brightness(0.7);
	transform: scale(1.05);
}

#inspirationSlider .splide__pagination {
	position: static !important;
	padding: 2rem 1em !important;
}

#inspirationSlider .splide__pagination__page {
	height: 10px;
	width: 10px;
	opacity: 1;
}

#inspirationSlider .is-active {
	transform: none;
	background-color: var(--black);
}

#inspirationSlider:not(.is-overflow) .splide__pagination {
	display: flex !important;
}

#inspirationSlider .splide__arrow {
	background: transparent;
	opacity: 1;
	top: calc(50% - 2.5rem);
}

#inspirationSlider .splide__arrow svg {
	height: 3.6em;
    width: 3.6em;
}

#page #footer {
	display: none;
}

#page #header,
#page hr,
.woocommerce-breadcrumb,
.product_meta,
.product_title {
	display: none;
}

#page .product {
	display: flex;
	flex-direction: row;
	position: static !important;
	gap: 5vw;
	width: 80vw;
	margin: auto;
}

.woocommerce-product-gallery__wrapper {
	height: fit-content;
	overflow: hidden;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images,
.summary {
	width: calc(50% - 1rem) !important;
}

.woocommerce div.product form.cart  {
	display: flex;
	flex-direction: row;
}

#page .summary hr {
	display: block;
	height: 0;
	opacity: 1;
	border: none;
	border-top: 1px solid var(--black);
	background-color: var(--black);
	transition: 0.5s ease-in-out;
}

.product-description {
	padding: 1.6rem 0;
	border-top: 1px solid var(--black);
	border-bottom: 1px solid var(--black);
}

.product-description::before {
	content: "INFORMATION \a \a";
	white-space: pre;
	font-size: 15px;
}

.variations {
	text-align: left;
}

.woocommerce .product .cart .button,
.checkout_coupon button,
#place_order {
	background-color: var(--black) !important;
	color: var(--white) !important;
	padding: .5rem 3rem !important;
	font-weight: 100 !important;
	border-radius: 10px !important;
	height: fit-content !important;
}

.woocommerce .product .disabled {
	background-color: var(--light-brown) !important;
}

.woocommerce .product .cart .button:hover,
.checkout_coupon button:hover,
#place_order:hover {
	background-color: var(--darkest-black) !important;
}

.woocommerce-message {
	border-top-color: var(--black) !important;
	width: 80vw !important;
	margin: auto auto 3rem !important;
}

.woocommerce-message::before {
	color: var(--black) !important;
}

.woocommerce-product-gallery__wrapper {
	pointer-events: none;
}

.woocommerce-product-gallery__trigger {
	display: none;
}

.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)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
	border-radius: 10px !important;
	padding: .5rem 3rem !important;
}

#page .summary .price {
	font-weight: 900;
	color: var(--black);
	font-size: 28px;
	display: flex;
	gap: .5rem;
	flex-direction: column;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--black);
}

#page .summary .price::before {
	content: "TOTAL";
	font-size: 15px;
	font-weight: 100;
}

#page .product-type-variable .summary .variations_form {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 1.5rem;
}

#page .product-type-simple .summary .cart {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: end;
	margin-top: 1.5rem;
}

#page .summary .cart::before,
#page .summary .cart::after {
	display: none;
}

.variations tbody tr {
	display: flex;
	flex-direction: column;
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid var(--black);
}

.variations tbody tr td select {
	font-weight: 100;
}

.variations tbody tr th label {
	font-size: 15px;
	font-weight: 100 !important;
	text-transform: uppercase;
	color: var(--black);
}

.variations select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: none;
	cursor: pointer;
	font-family: 'Cormorant Garamond', serif;
	font-size: 28px;
	color: var(--black);
}

.variations select:focus {
	outline: none;
}

.variations select option {
	outline: none;
	border: none;
}

.reset_variations {
	display: none !important;
	text-decoration: none;
	background-color: var(--dark-brown);
	color: var(--white);
	padding: .5rem 1rem;
	border-radius: 10px;
}

.reset_variations:hover {
	background-color: var(--black);
}

.product .quantity input[type=number] {
	text-align: left !important;
	font-size: 20px;
	font-family: 'Cormorant Garamond', serif;
	margin: none;
	padding: none;
	border: none;
	text-align: center !important;
}

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

input[type=number] {
  -moz-appearance: textfield;
}

.quantity input[type=number]:focus {
	outline: none;
}

.product .quantity {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-right: 2rem !important;
}

.quantity::before {
	content: "QUANTITY";
	font-size: 15px
}

.woocommerce-variation-add-to-cart,
.variations_button,
.woocommerce-variation-add-to-cart-enabled {
	display: flex;
	justify-content: space-between;
	align-items: end;
}









  
.woo-variation-items-wrapper {
	position: relative;
	display: inline-block;
	vertical-align: middle;
}
  
.woo-variation-items-wrapper label {
	display: block;
	text-transform: uppercase;
	cursor: pointer;
	overflow: hidden;
	font-size: 25px;
}
  
.woo-variation-items-wrapper ul li {
	list-style: none;
	display: block;
	font-size: inherit;
	text-transform: uppercase;
	background: var(--cream);
	cursor: pointer;
	font-size: 25px;
	padding: 0 1rem;
	transform: translateX(-1rem);
}

.woo-variation-items-wrapper ul li:hover {
	background-color: var(--light-brown);
	color: var(--white);
}
  
.woo-variation-items-wrapper ul {
	position: absolute;
	top: 2rem;
	left: 0;
	opacity: 0;
	pointer-events: none;
	transform-origin: top;
	display: grid !important;
	grid-template-rows: 0fr;
	overflow: hidden;
	transition: grid-template-rows, opacity .3s var(--cubic-bezier);
	z-index: 1;
}

.openVariation {
	grid-template-rows: auto;
	opacity: 1 !important;
	pointer-events: all !important;
}

.quantitySelector {
	display: flex;
	flex-direction: row;
}

.quantitySelector input {
	padding: inherit !important;
}

.input-number-decrement,
.input-number-increment {
	border: 2px solid var(--black);
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .2s;
}

.input-number-decrement:hover,
.input-number-increment:hover {
	background-color: var(--black);
}

.input-number-decrement:hover svg path,
.input-number-increment:hover svg path {
	fill: var(--white);
}

	

  



/* CHECKOUT */

.cart-wrapper {
	width: 90vw;
	max-width: 60rem;
	margin: 10rem auto 0;
}

.woocommerce-cart-form tbody {
	display: flex;
	flex-direction: column;
	max-width: 60rem;
	width: 90vw;
}

.woocommerce-cart-form__cart-item {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 1rem 0;
	width: 100%;
}

.woocommerce-cart-form__cart-item td {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.woocommerce-cart-form__cart-item .product-remove {
	width: 5vw;
	min-width: 2rem
}

.woocommerce-cart-form__cart-item .product-image {
	width: 5vw;
	margin-right: 1rem;
	min-width: 4rem;
	min-height: 4rem;
}

.woocommerce-cart-form__cart-item .product-name {
	width: 50%;
	justify-content: start;
	margin-right: 1rem;
}

.woocommerce-cart-form__cart-item .product-quantity {
	width: 5vw;
	min-width: 2rem;
}

.woocommerce-cart-form__cart-item .product-subtotal {
	width: 5vw;
	min-width: 5rem;
}

.woocommerce-cart-form__cart-item .product-image a img {
	width: 5vw;
	height: 5vw;
	min-width: 4rem;
	min-height: 4rem;
	object-fit: cover;
}

.woocommerce-cart-form .product-quantity .quantity::before {
	display: none;
}

.woocommerce-cart-form .product-quantity .quantity input {
	font-family: 'Cormorant Garamond', serif;
	font-size: 20px;
}

.woocommerce-cart-form__contents {
	border-top: 1px solid var(--black);
}

.woocommerce-cart-form__cart-item {
	border-bottom: 1px solid var(--black);
}

.product-remove a {
	width: 2rem;
	text-decoration: none;
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-size: 30px;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 100;
}

.woocommerce-cart-form__cart-item .product-price,
.woocommerce-cart-form__cart-item .quantity label {
	display: none;
}

.woocommerce-cart-form__cart-item .quantity input {
	width: 3rem !important;
	border: none;
}

.woocommerce-cart-form__cart-item .quantity input::before {
	content: "QUANTITY" !important;
	display: block !important;
}

.shop_table .coupon {
	margin: 3rem 0 1rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.shop_table .coupon input {
	border: none;
	font-family: 'Cormorant Garamond', serif;
	font-size: 16px;
	border-bottom: 1px solid var(--black);
}

.shop_table .coupon input:focus {
	outline: none;
}

.shop_table .coupon button,
.actions button,
.wc-proceed-to-checkout a {
	background-color: var(--black);
	color: var(--white);
	padding: .5rem 3rem;
	border-radius: 10px;
	cursor: pointer;
	border: none;
	text-decoration: none
}

.shop_table .coupon button:hover,
.actions button:hover,
.wc-proceed-to-checkout a:hover {
	background-color: var(--darkest-black);
	color: var(--white);
}

.cart-collaterals {
	text-align: right;
	display: flex;
	flex-direction: column;
	justify-content: end;
	gap: 1rem;
	margin: 2rem 0 4rem;
}

.cart-collaterals h2 {
	font-size: 30px;
}

.cart-collaterals table,
.cart-collaterals table tbody {
	display: flex;
	flex-direction: column;
	align-items: end;
	margin: .5rem 0 1rem;
	gap: .3rem;
	font-size: 20px;
}

.cart-collaterals tr {
	display: flex;
	gap: 1rem;
}








/* CHECKOUT */

.checkout input,
.select2-search__field,
.input-text {
	border: none;
	font-family: 'Cormorant Garamond', serif;
	font-size: 16px;
	border: 1px solid var(--black);
	background-color: var(--white-overlay);
	color: var(--black);
	padding: .5rem;
}

.checkout-wrapper {
	width: calc(90vw - 4rem);
	max-width: 76rem;
	margin: 8rem auto 5rem;
	border: 1px solid var(--dark-brown);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem;
}

.woocommerce-checkout .col2-set {
	float: left !important;
	width: 45% !important;
	display: flex;
	flex-direction: column;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2,
.woocommerce-thankyou-order-received {
	width: 100% !important;
	margin-bottom: 1rem;
}

.woocommerce-info {
	border-top-color: var(--black) !important;
	background-color: var(--cream) !important;
}

.woocommerce-thankyou-order-received {
	font-size: 30px;
}

.woocommerce-order-details__title,
.woocommerce-column__title {
	margin-bottom: .5rem;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
	border: 1px solid var(--dark-brown);
	background-color: var(--white) !important;
	border-radius: 0 !important;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
	background-color: var(--light-brown) !important;
	color: var(--black) !important;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
	border: none !important;
}

fieldset {
	border: none;
}

.woocommerce-info::before {
	color: var(--darkest-black) !important;
}

#order_review_heading,
.woocommerce-checkout-review-order {
	float: right;
	width: 50%;
}

#wc-stripe-payment-request-wrapper {
	display: flex;
}

#stripe-payment-data #wc-stripe-cc-form .form-row {
	display: flex;
	flex-direction: column;
}
#stripe-payment-data #wc-stripe-cc-form .form-row .wc-stripe-elements-field {
	max-height: 2rem;
}
#stripe-payment-data .woocommerce-SavedPaymentMethods-saveNew {
	display: inherit;
}

address {
	border: none !important;
	background-color: var(--light-brown);
	width: auto !important;
}

.woocommerce-table--order-details {
	border: none !important;
	background-color: var(--light-brown);
}

.woocommerce-table__product-name a {
	color: var(--black) !important;
}

.woocommerce table.shop_table {
	background-color: var(--white) !important;
	border: 1px solid var(--dark-brown) !important;
	border-radius: 0 !important;
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table tfoot th {
	border-top: none !important;
}

.woocommerce form .form-row textarea {
	border: 1px solid var(--black);
	color: var(--black);
	background-color: var(--white);
	padding: 1rem;
	height: 10rem !important;
	resize: none;
	font-family: 'Fraunces', serif;
}

.select2-container--default .select2-selection--single {
	background-color: var(--white) !important;
	border: 1px solid var(--dark-brown) !important;
	border-radius: 0 !important;
	height: auto !important;
	padding: .3rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--black) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 6px !important;
	right: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: var(--black) transparent transparent !important;
}

.select2-container--default .select2-results > .select2-results__options,
.select2-search--dropdown {
	background-color: var(--white);
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {

}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
	border-bottom: 1px solid var(--darkest-black) !important;
}

.woocommerce-checkout-payment {
	margin-bottom: 1rem;
}

iframe {
	z-index: 1 !important;
}

#place_order {
	margin-top: 1rem;
}

.woocommerce form .form-row .required {
	color: var(--black) !important;
}










/* ABOUT US */

#headerAbout .header-content {
	width: 100%;
	height: 100vh;
	height: 100svh;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#headerAbout .header-content::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #c9c9c9;
	mix-blend-mode: multiply;
	z-index: 1;
}

#headerAbout .header-content {
	animation: sliderIntroShort 1s var(--cubic-bezier);
}

@keyframes sliderIntroShort {
	0% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1);
	}
}

#headerAbout .header-content .slider-text h1,
#headerAbout .header-content .slider-text h5 {
	white-space: pre-line;
}






/* CONTACT */

.headquarters a {
	font-weight: 400;
}

.contactForm {
	background-color: var(--cream);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8rem 0;
}

.contactForm form {
	max-width: 40rem;
	width: 60vw;
}

.contactForm .dual-row {
	margin: 0;
}

@media (max-width:820px) {
	.contactForm form {
		width: 90vw;
	}
	.contactForm .dual-row {
		gap: 0;
	}
}

.contactForm .dual-row p {
	width: 100%;
}

.contactForm input[type='text'],
.contactForm input[type='number'],
.contactForm input[type='email'],
.contactForm textarea {
	width: 100%;
	border: none;
	background-color: var(--cream);
	height: 1.5rem;
	margin: .5rem 0 1rem;
	color: var(--black);
}

.contactForm textarea {
	resize: vertical;
	min-height: 10rem;
	border-bottom: 1px solid var(--dark-brown);
}

.contactForm input[type='text']:focus,
.contactForm input[type='number']:focus,
.contactForm input[type='email']:focus,
.contactForm textarea:focus {
	outline: none;
}

.contactForm label {
	display: block;
	width: 100%;
	border-top: 1px solid var(--dark-brown);
}

.contactForm input[type='submit'] {
	background-color: var(--cream);
	border: 1px solid var(--dark-brown);
	color: var(--black);
	padding: .5rem 3rem;
	font-family: 'Cormorant Garamond', serif;
	cursor: pointer;
	transition: all .3s;
}

.contactForm input[type='submit']:hover {
	background-color: var(--black);
	color: var(--cream);
}

.buttonArea {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.buttonArea p span {
	display: none;
}

.wpcf7-response-output {
	border-color: var(--black) !important;
}









/* FOOTER */

footer {
	background-color: var(--light-brown);
	color: var(--white);
	padding: 4rem 15vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer-logo {
	min-width: 9rem;
	margin-right: 5vw;
}

.footer-first-block {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	gap: 5vw;
}

.footer-first-block .footer-block:last-of-type {
	gap: 5vw;
}

.footer-first-block .footer-block:last-of-type ul:first-of-type {
	min-width: 15rem;
}

.footer-first-block .footer-slider-block ul li {
	display: flex;
	flex-direction: row;
	gap: 5vw;
}

@media (max-width: 820px) {
	.footer-first-block .footer-slider-block ul li {
		flex-direction: column;
		gap: 10px
	}
}

.footer-first-block .footer-slider-block ul li img {
	width: 200px;
    height: fit-content;
    object-fit: contain;
}

.footer-block {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 5vw;
	width: 100%;
}

.footer-block ul {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 100%;
}

.footer-block h4 {
	white-space: nowrap;
}

.footer-block ul li {
	list-style: none;
	font-size: 16px;
}

.footer-second-block {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	border-top: 1px solid var(--white);
	padding: 1rem;
	margin-top: 5rem;
}

.footer-second-block .footer-block:first-of-type {
	width: calc(15rem + 10vw);
}

.footer-second-block .footer-block ul {
	flex-direction: row;
	justify-content: flex-start;
	gap: 5vw;
}

div.product div.images div.thumbnails:after {
    content: " ";
    display: table;
    clear: both;
}




/* SUBFOOTER */

.subfooter {
	background-color: var(--dark-brown);
	color: var(--white);
	padding: 4rem 15vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.subfooter .footer-first-block {
	gap: 5vw;
	justify-content: flex-start;
}

.footer-header {
	min-width: calc(9rem + 5vw);
}

.footer-slider p {
	font-size: 16px;
	font-weight: 300;
}

.subfooter .splide__slide,
.subfooter .splide__track {
	width: 50vw;
	max-width: 50rem;
}

.subfooter .splide__pagination {
	position: static;
	width: fit-content;
	padding: 0;
	transform: translate(0);
	margin-top: 2rem;
	margin-right: .5rem;
}

.subfooter .splide__arrows {
	display: none;
}

.subfooter .splide__pagination__page {
	background: transparent !important;
	color: var(--white);
	font-family: 'Cormorant Garamond', serif;
	font-size: 20px;
	font-weight: 300;
	opacity: 1 !important;
	margin-right: .5rem !important;
}

.subfooter .splide__pagination__page::before {
	content: "";
}

.subfooter .splide__pagination__page::after {
	left: 1rem;
	top: .4rem;
}


/* RESPONSIVE */

@media (max-width: 1199px) {
	.nav {
		display: none;
	}

	.mobile-menu #search-filter-form-32 {
		display: block;
	}

	.mobile-menu {
		overflow-y: scroll;
		margin-bottom: 5rem;
	}

	header input:checked ~ .mobile-menu {
		pointer-events: all;
		opacity: 1;
		transition-delay: 0s;
	}

	.mobile-menu .search-lang {
		margin-top: 2rem;
		font-weight: 700;
	}

	.mobile-menu .search-lang .language .lang-item a {
		color: var(--black);
	}

	.mobile-menu .search-lang .language .lang-item::after {
		background-color: var(--black);
	}

	.sf-input-text {
		border-bottom: 1px solid var(--black);
		color: var(--black);
		margin-left: 0;
		margin-top: 2rem;
		width: 100%;
		font-weight: 700;
	}
	
	.sf-input-text::placeholder {
		color: var(--black);
		opacity: 1;
	}
	  
	.sf-input-text:-ms-input-placeholder {
		color: var(--black);
	}
	  
	.sf-input-text::-ms-input-placeholder {
		color: var(--black);
	}
	
	.mobile-menu a,
	.mobile-menu .title,
	.mobile-menu .search-lang,
	.mobile-menu hr {
		opacity: 0;
		transform: translateY(-20px);
		transition: all .3s var(--cubic-bezier);
	}

	header input:checked ~ .mobile-menu a,
	header input:checked ~ .mobile-menu .title,
	header input:checked ~ .mobile-menu .search-lang,
	header input:checked ~ .mobile-menu hr {
		opacity: 1 !important;
		transform: translateY(0) !important;
	}

	.mobile-menu a {
		transition-delay: .4s;
	}

	.mobile-menu .collapse .title {
		transition-delay: .45s;
	}

	.mobile-menu hr {
		transition-delay: .5s;
	}

	.mobile-menu a:nth-of-type(2) {
		transition-delay: .55s;
	}
	
	.mobile-menu .collapse:nth-of-type(2) .title {
		transition-delay: .6s;
	}

	.mobile-menu .collapse:nth-of-type(2) hr {
		transition-delay: .65s;
	}

	.mobile-menu a:nth-of-type(3) {
		transition-delay: .7s;
	}

	.mobile-menu a:nth-of-type(4) {
		transition-delay: .75s;
	}

	.mobile-menu a:nth-of-type(5) {
		transition-delay: .8s;
	}

	.mobile-menu a:nth-of-type(6) {
		transition-delay: .85s;
	}

	.mobile-menu .collapse:nth-of-type(3) .title {
		transition-delay: .9s;
	}

	.mobile-menu .collapse:nth-of-type(3) hr {
		transition-delay: .95s;
	}

	.mobile-menu a:nth-of-type(7) {
		transition-delay: 1s;
	}

	.mobile-menu .search-lang {
		transition-delay: 1.05s;
	}

	.nav {
		height: 100vh;
		height: 100svh;
	}

	.mobile-menu {
		position: fixed;
		top: 15vh;
		left: 30vw;
		right: 30vw;
		bottom: 0;
		height: 100vh;
		height: 100svh;
		display: flex;
		flex-direction: column;
		gap: 0.3rem;
		z-index: 3;
		opacity: 0;
		pointer-events: none;
		transition: opacity .3s var(--cubic-bezier);
	}

	.mobile-menu h4 {
		font-size: 26px
	}

	.mobile-menu ul li {
		list-style: none;
		font-size: 18px;
	}

	.mobile-menu .collapse {
		display: flex;
		flex-direction: column;
		gap: .3rem;
		height: 50px;
		overflow: hidden;
		cursor: pointer;
		transition: height .3s var(--cubic-bezier);
	}

	.uncollapse {
		height: 150px !important;
	}

	.mobile-menu .uncollapse:last-of-type {
		height: 120px !important;
	}

	.collapse .title svg {
		transition: transform .3s var(--cubic-bezier);
	}

	.uncollapse .title svg {
		transform: rotate(180deg);
	}

	.mobile-menu .collapse .title {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		margin-bottom: .5rem;
	}

	.mobile-header {
		display: block;
	}

	.search-filter-results .productPreview a .imgWrapper .newProduct {
		width: 6rem;
		height: 6rem;
		font-size: 16px;
	}

	footer,
	.subfooter {
		padding: 4rem 5vw;
	}

	.footer-first-block .footer-block:last-of-type ul:first-of-type {
		min-width: 10rem;
	}
}

@media (max-width: 900px) {
	.header-language-search {
		display: none;
	}

	header label:hover span:first-child {
		transform: translateY(0);
	}
	
	header label:hover span:nth-of-type(2) {
		width: 100%;
	}
	
	header label:hover span:last-child {
		transform: translateY(0);
	}

	.two-row-product {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin: 0 5vw;
		gap: 5vw;
	}
	
	.half-row-product {
		display: flex;
		flex-direction: column;
		width: calc(100% - 10vw);
	}

	.overlay-scale {
		display: none;
	}

	.scale-section {
		width: calc(100% - 10vw);
	}

	.current {
		overflow: hidden;
		width: 90vw;
		height: 90vw;
		cursor: url(assets/images/cursor-zoom.svg), auto !important;
	}

	.product-title {
		margin: 8rem 5vw 3rem;
	}

	.product-list {
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}
	
	.product-thumbnail {
		width: calc(90vw / 2 - 1rem);
		height: calc(114vw / 2 - 1rem);
	}

	.carrito,
	.carrito-invert {
		right: auto;
		left: 5vw;
	} 

}

@media (max-width: 820px) {

	p {
		font-size: 16px;
	}

	h2 {
		font-size: 40px;
	}

	#homeSlider .slider-text h1,
	#headerAbout .header-content .slider-text h1 {
		font-size: 45px;
	}
	
	#homeSlider .slider-text h5,
	#headerAbout .header-content .slider-text h5 {
		font-size: 20px;
	}

	.single-row .half-row img {
		width: 100vw;
	}

	.dual-row {
		flex-direction: column;
	}
	
	.half-row,
	.half-row::after {
		width: 100%;
		height: 66.71vw;
	}

	.news {
		margin: 1rem 0;
	}

	.latest-projects {
		display: flex;
		flex-direction: row;
		gap: 1rem;
		margin: 2rem 0 0;
		overflow-x: scroll;
		width: 100vw;
	}
	
	.latest-projects img {
		height: fit-content;
		object-fit: contain;
		transition: transform .3s var(--cubic-bezier);
	}

	.project-details {
		width: calc(100% - 10vw);
		max-width: 100%;
		margin: 0 5vw;
		padding: 1rem 0;
		gap: .5rem;
	}

	#sbi_images {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
		max-width: 80rem;
		margin: auto;
	}

	.footer-first-block {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 2rem;
	}

	.footer-block {
		justify-content: space-between;
		width: 100%;
	}

	.footer-first-block .footer-block:last-of-type {
		flex-direction: column;
		gap: 2rem;
	}

	.subfooter .splide__slide,
	.subfooter .splide__track {
		width: 90vw;
	}

}

@media (max-width: 700px){

	header .logo svg {
		width: 9.5rem;
	}

	.footer-second-block {
		flex-direction: column;
		gap: 3rem;
	}

	.footer-second-block .footer-block ul {
		flex-direction: column;
		justify-content: flex-start;
		gap: 5vw;
	}

	.rugs-fabrics {
   		margin: 7rem 0 1rem;
	}

	.rugs-fabrics h2 {
		font-size: 35px;
	}

	.filterContainer {
		margin: 2rem 5vw 1rem;
		padding: 1.5rem 0;
		gap: .5rem;
		width: calc(100% - 10vw);
	}

	.filterContainer .filter form ul li h4 {
		padding: 0 20px 0 0;
	}

	.search-filter-results {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: .5rem;
		grid-auto-rows: minmax(100px, auto);
		margin: 2rem 5vw 10rem;
	}

	.search-filter-results .productPreview a .imgWrapper {
		width: calc((90vw - .2rem) / 2);
		height: calc((90vw - .2rem) / 2);
	}

	.search-filter-results .productPreview a .productText p {
		font-size: 18px;
		margin: 1rem 0;
	}

	.search-filter-results .productPreview a .imgWrapper .newProduct {
		width: 20vw;
		height: 20vw;
		font-size: 3vw;
	}

	#page .product {
		flex-direction: column;
		gap: 5vw;
		width: 80vw;
	}
	
	.woocommerce #content div.product div.images,
	.woocommerce div.product div.images,
	.woocommerce-page #content div.product div.images,
	.woocommerce-page div.product div.images,
	.summary {
		width: 100% !important;
	}
}

@media (max-width: 480px) {
	.filterContainer {
		margin: 1rem 5vw 0;
		padding: 1rem 0;
		align-items: start;
		border: none;
		flex-direction: column;
	}

	.search-filter-results {
		margin: 1rem 5vw 10rem;
	}

	.filterContainer .filter form {
		width: 90vw;
	}

	.filterContainer .filter form ul {
		width: 100%;
		border-top: 1px solid var(--black);
		border-bottom: 1px solid var(--black);
		padding: .6rem 0;
	}

	.filterContainer .filter form ul li:first-of-type h4 {
		margin-left: 0;
	}

	.filterContainer .filter form ul {
		padding: .3rem 0;
	}

	.product-list {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.product-thumbnail {
		width: 90vw;
	}
}

@media (max-width: 360px) {
}

@media (max-width: 320px) {
}

