/*********************************************
----------------------------------------------
====== FULL VANILLA THEME | main.css ======
----------------------------------------------
*********************************************/

/*************************
1 - Project General Style
2 - Utilities
3 - Components
*************************/

/**************************************
**** PROJECT GENERAL STYLE | BEGIN ****
**************************************/

body {
	color: var(--foreground);
	font-family: "Inter Tight";
	font-size: var(--font-size-base);
	background-color: var(--white);
	transition: 0.2s ease;
	height: auto !important;
	top: 0px !important;
}


/***************************
**** COMPONENTS | BEGIN ****
***************************/

.editor,
.woocommerce-Tabs-panel--description {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--spacing-editor);
	overflow: hidden;
}

.editor--cutted {
	max-height: 125px;
}

.editor ul,
.editor ol,
.woocommerce-Tabs-panel--description ol,
.woocommerce-Tabs-panel--description ul {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-left: 20px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 10rem;
}

.editor ul {
	margin-left: 0;
}

.editor ul li,
.woocommerce-Tabs-panel--description ul li {
	list-style-image: url("../icons/list-disc.svg");
	list-style-position: inside;
}

.editor ol li,
.woocommerce-Tabs-panel--description ol li {
	list-style: decimal;
	list-style-position: outside;
}

.editor ol li::marker,
.woocommerce-Tabs-panel--description ol li::marker {
	color: var(--blue);
}

.editor a,
.woocommerce-Tabs-panel--description a {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.ariane {
	text-transform: uppercase;
	letter-spacing: var(--leading-button);
	font-size: var(--font-size-xs);
	font-weight: 300;
}

.ariane span {
	font-weight: 600;
}

.retractable-block {
	gap: 10px;
	align-self: start;
	align-items: start;
	border-bottom: rgba(255, 255, 255, 0.5) 1px solid;
	width: 100%;
}

.product__filter__title,
.retractable-block h4 {
	cursor: pointer;
	display: block !important;
	text-align: left;
}

.open-block .product__filter__title::after {
	transform: rotate(-135deg);
	margin-top: 10px;
}


.product__filter__title::after,
.retractable-block.open-block h4::after {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	margin-top: 0;
	margin-top: 8px;
}

.retractable-block.open-block>* {
	display: flex;
}

.retractable-block>* {
	display: none;
}

.retractable-block-fit {
	display: flex !important;
	align-items: left;
}

.product__filter__title::after,
.retractable-block h4::after {
	content: "";
	border-width: 0 2px 2px 0;
	display: inline-block;
	float: right;
	margin-right: 20px;
	margin-left: 10px;
	margin-top: 5px;
	padding: 3px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.section {
	padding-inline: var(--spacing);
}

.section--large {
	padding-inline: var(--spacing-large);
}

.filter-selected {
	font-weight: 600;
	color: var(--blue);
}

.open-button {
	cursor: pointer;
	width: fit-content;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 1.5px;
	font-size: 12px;
}

.open-button::after {
	content: "";
	border: solid var(--primary-foreground);
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	margin-bottom: 2px;
	margin-left: 7px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.open~.open-button::after {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	margin-bottom: -2px;
}

.open {
	max-height: fit-content;
}

.closed-gradent {
	position: absolute;
	bottom: 0;
	background: rgb(255, 255, 255);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 66%, rgba(7, 7, 9, 0.50) 80%, rgba(7, 7, 9, 0.85) 100%);
	width: 100%;
	height: 100%;
	pointer-events: none;
	transition: background-color 2s ease;
}

/* BUTTONS */

.btn {
	display: block;
	width: fit-content;
	text-transform: uppercase;
	height: 100%;
	max-height: 48px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-right: 25px;
	padding-left: 25px;
	border-radius: 23px;
	font-size: var(--font-size-xs);
	letter-spacing: var(--leading-button);
	font-weight: 800;
	font-family: var(--inter-tight);
	box-shadow: 0px 0px 6px #00000029;
	background-color: var(--primary);
	transition: 0.3s ease;
	border: none;
	overflow: hidden;
	display: inline-block;
	position: relative;
}

.btn::before {
	content: '';
	width: 100%;
	height: 48px;
	background-color: var(--primary-foreground);
	transform: skew(30deg);
	transition: left 0.4s cubic-bezier(0.3, 1, 0.8, 1);
	display: inline-block;
	position: absolute;
	top: 0;
	left: -105%;
	z-index: 2;
}

.btn:hover::before {
	left: -5%;
	width: 110%;
}

.btn:hover span {
	position: relative;
	z-index: 2;
	color: var(--primary);
}

.btn--alternative {
	background-color: var(--blue);
}

.btn--alternative:hover span {
	color: var(--blue);
}

.btn--border {
	background-color: var(--primary-foreground);
	color: var(--primary);
	border: 2px solid var(--primary-foreground);
}

.btn--border::before {
	background-color: var(--primary);
	color: var(--primary-foreground);
}

.btn--border:hover span {
	color: var(--primary-foreground);
}

.btn--border--black {
	border: 2px solid var(--primary);
}

.btn--border--blue {
	border: 2px solid #2768AD;
}

.btn--outline {
	background-color: var(--primary);
	color: var(--primary-foreground);
}

.btn--outline::before {
	background-color: var(--primary-foreground);
}

.btn--outline:hover span {
	color: var(--primary);
}

.underline {
	text-transform: uppercase;
	font-size: var(--font-size-xs);
	letter-spacing: var(--leading-button);
	font-weight: 800;
	border-bottom: 1.5px solid var(--primary-foreground);
	padding-bottom: 3px;
	max-width: fit-content;
	transition: all 0.3s ease;
}

.underline:hover {
	color: var(--hover);
	border-bottom: 1.5px solid var(--hover);
}

/* Slider */

.embla {
	overflow: hidden;
}

.embla__container {
	display: flex;
}

.embla__slide {
	min-width: 0;
}

/* Pagination */

.page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem 0;
	gap: 1rem;
	border: none !important;
}

.page-numbers li {
	border-right: none !important;
}

.page-numbers li a:hover,
.current {
	background-color: transparent !important;
	color: var(--blue) !important;
}


/* TITLES */

.title__content {
	display: flex;
	flex-direction: column;
}

.title__center {
	align-items: center;
}


.subtitle {
	font-weight: 600;
}

.title {
	font-weight: 600;
	font-size: var(--font-size-3xl);
	line-height: var(--leading-3xl);
}

.heading {
	font-size: var(--font-size-4xl);
	line-height: var(--leading-4xl);
	font-weight: 600;
	/* letter-spacing: 3.75px; */
}

.heading-h3 {
	font-size: var(--font-size-2xl);
	line-height: var(--leading-2xl);
	font-weight: 600;
	letter-spacing: 0px;
}

/* ICONS */

.icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	text-align: center;
	max-width: 15%;
}

.icon__content~p {
	font-weight: 300;
}

.icon__content {
	font-weight: 600;
}


.icon--small {
	font-size: var(--font-size-xs);
}

.icon--small .icon__img {
	height: 30px;
}

.icon__img {
	max-height: 40px;
	width: auto;
}

@media screen and (max-width: 1024px) {
	.icon {
		max-width: 30%;
	}
}

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

	.editor ul,
	.editor ol {
		text-align: center;
		margin-left: 0;
	}

	.icon__content~p {
		display: none;
	}

	.icon__content {
		max-width: 100%;
	}

	.icon {
		max-width: 100%;
		margin-bottom: 1rem;
	}

	.icon__img {
		max-height: 35px;
		width: auto;
	}

	footer .icon__img {
		width: 70%;
	}

	.title__content {
		align-items: center;
		text-align: center;
	}
}

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

	.icon {
		max-width: 100%;
	}

}


/* GRADIENTS */

.left_gradent {
	position: absolute;
	height: 100%;
	width: 350px;
	height: 1904px;
	top: 0px;
	left: 0px;
	background-image: url("../img/blue-gradent.webp");
	z-index: 3;
	pointer-events: none;
}

.right_gradent {
	position: absolute;
	pointer-events: none;
	width: 426px;
	height: 1528px;
	right: 0px;
	;
	left: auto;
	background-image: url("../img/blue-gradent-2.webp");
	transform: translateY(-50%);
}

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

	.left_gradent,
	l.right_gradent {
		display: none;
	}
}


/**************************
**** UTILITIES | BEGIN ****
***************************/

.scroller {
	height: 20vw;
}

.scroller ul {
	display: flex;
	gap: 50px;
	position: absolute;
	left: 0;
	width: 400vw;
}

.scroller ul li {
	height: 20vw;
	width: 30vw;
}

.bg-primary {
	background-color: var(--primary);
}

.text-primary-foreground {
	color: var(--primary-foreground);
}

@media screen and (max-width: 767px) {
	.btn {
		padding-right: 15px;
		padding-left: 15px;
		padding-block: 10px;
	}

	.scroller {
		height: 200px;
	}

	.scroller ul {
		gap: 20px;
		overflow: scroll;
	}

	.scroller ul li {
		height: 150px;
		min-width: 200px;
	}

	.btn--arrow::after {
		height: 10px;
		width: auto;
	}


}


/************************************
**** PROJECT GENERAL STYLE | END ****
************************************/