/*!
Theme Name: Epoques
Theme URI: http://underscores.me/
Author: David Martin
Author URI: https://www.dmartin.tech
Description: Tema creado exclusivamente para Epoques. Diseño y programación realizados por David Martín.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: epoques
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Epoques is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

@media only screen and (max-width: 767px) {
	/* Footer */
	.footer-payment {
		width: 15vw;
	}
	.footer-logo {
		width: 30%;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	/* Footer */
	.footer-payment {
		width: 8vw;
	}
	.footer-logo {
		width: 20%;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	/* Footer */
	.footer-payment {
		width: 6vw;
	}
	.footer-logo {
		width: 10%;
	}
}
@media only screen and (min-width: 1025px) {
}

/* Header
--------------------------------------------- */
header {
	position: sticky;
	top: 0;
	z-index: 999;
}
.banner {
	display: block;
	font-family: 'Sofia Medium';
	font-size: 16px;
	line-height: 20px;
	padding: 8px;
	text-align: center;
	color: #fff;
	background-color: var(--black);
}
.main-navigation {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 12px 0 0;
	background-color: #fff;
}
.logo {
	padding-left: 10px;
}
.icons {
	display: flex;
	margin-right: 12.5px;
}
.cart-mobile {
	position: absolute;
	top: 60px;
	display: flex;
	flex-direction: column;
	height: 0;
	padding: 0 20px;
	background-color: #fff;
	overflow: hidden;
	z-index: 999;
	transition: .4s;
}
.cart-visible {
	height: calc(100vh - 92px);
}
.search-mobile {
	position: absolute;
	display: flex;
	gap: 10px;
	top: 60px;
	width: 100vw;
	height: 0;
	padding: 0 20px;
	background-color: #fff;
	overflow: hidden;
	z-index: 999;
	transition: .4s;
}
.search-visible {
	display: flex;
}
.search-mobile input {
	height: 35px;
	margin: 10px 0;
	outline: none !important;
	border: none !important;
	border-bottom: 1px solid #000 !important;
	border-radius: 0 !important;
	font-size: 20px;
}
.search-mobile input::placeholder {
	font-size: 20px;
}
.search-submit {
	display: flex !important;
	border: unset;
	background-color: unset;
	padding: 0;
}
.mobile-menu {
	margin: auto 7.5px;
	color: #000;
	cursor: pointer;
	stroke-width: 1.2px;
	transition: .4s;
}
.cart-count {
	position: absolute;
	right: 10px;
	height: 20px;
	width: 20px;
	font-size: 16px;
	line-height: 18px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--primary);
}
.display-none {
	display: none !important;
}
.categories-mobile {
	display: flex;
	gap: 35px;
	width: 100%;
	margin-top: 12px;
	padding: 8px 0;
	color: #fff;
	background-color: var(--primary);
	overflow-x: auto;
	-ms-overflow-style: none;  /* IE and Edge */
		scrollbar-width: none;  /* Firefox */
		scroll-behavior: smooth;
}
.categories-mobile::-webkit-scrollbar {
	display: none;
	-webkit-appearance: none;
	width: 0;
	height: 0;
}
.navbar-menu-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.category-mobile {
	filter: brightness(0);
}
.category-mobile:first-of-type {
	padding-left: 20px;
}
.category-mobile:last-of-type {
	padding-right: 20px;
}
.category-mobile img {
	width: 25px;
	height: 25px;
	margin: auto;
	filter: brightness(0) invert(1);
}
.category-mobile span {
	font-family: 'Sofia Light';
	font-size: 14px;
	line-height: 18px;
	color: #fff;
}

@media only screen and (max-width: 767px) {
	.logo {
		width: 135px;
	}
	.search-mobile input {
		width: calc(100% - 34px);
	}
	.cart-mobile {
		width: 100vw;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.logo {
		width: 144px;
	}
	.search-mobile input {
		width: calc(100% - 34px);
	}
	.cart-mobile {
		width: 100vw;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	.logo {
		width: 140px;
	}
	.categories-mobile {
		justify-content: center;
	}
	.search-mobile {
		justify-content: center;
	}
	.search-mobile input {
		width: calc(1024px - 24px - 7.5px);
	}
	.cart-mobile {
		width: 100vw;
	}
}
@media only screen and (min-width: 1025px) {
	.logo {
		width: 140px;
	}
	.categories-mobile {
		justify-content: center;
	}
	.search-mobile {
		justify-content: center;
	}
	.search-mobile input {
		width: calc(1024px - 24px - 7.5px);
	}
	.cart-mobile {
		width: 25vw;
		right: 0;
	}
}

/* Index
--------------------------------------------- */
.index-slider {
	display: flex;
	width: 100%;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	transition: .4s;
	-ms-overflow-style: none;  /* IE and Edge */
		scrollbar-width: none;  /* Firefox */
		scroll-behavior: smooth;
}
.index-slider::-webkit-scrollbar {
	display: none;
	-webkit-appearance: none;
	width: 0;
	height: 0;
}
.index-site-main {
	flex: 1 0 100%;
	height: 100%;
	width: 100vw;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	scroll-snap-align: center;
}
.slider-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 10vh 5vw 12vh;
	text-align: center;
	background: linear-gradient(#00000040, #ffffff00);
}
.slider-text {
	display: block;
	font-family: 'Sofia Light';
	font-size: 40px;
	line-height: 44px;
	color: #fff;
}
.slider-text-alt {
	display: block;
	margin-top: 5vh;
	font-family: 'Sofia Light';
	font-size: 30px;
	line-height: 32px;
	color: #fff;
}
.slider-button {
	width: auto;
	font-family: 'Sofia Medium';
	font-size: 18px;
	line-height: 20px;
	text-transform: uppercase;
	margin: 0 auto;
	padding: 15px 20px;
	color: #000;
	background-color: var(--primary, #fff);
}
.dots {
	display: flex;
	gap: 15px;
	position: absolute;
	bottom: 5vh;
}
.dots-2 {
	margin: 0 calc(50vw - 27.5px);
}
.dots-3 {
	margin: 0 calc(50vw - 45px);
}
.dot {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
}
.dot-selected {
	border: 4px solid #fff;
	background-color: #000;
}
.tips {
	display: flex;
	gap: 30px;
}
.tip {
	display: flex;
	flex-direction: column;
	text-align: center;
}
.tip-icon {
	margin: 0 auto;
	stroke-width: 1.2px;
}
.tip-text {
	font-family: 'Sofia Light';
}
.featured-categories {
	display: flex;
	gap: 10px;
}
.featured-category {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px;
	height: calc(25vh - 7.5px);
	width: calc(100%);
	background: linear-gradient(#00000030, #ffffff20);
}
.featured-category-name {
	font-family: 'Sofia Light';
	font-size: 24px;
	line-height: 30px;
	text-align: left;
	color: #fff;
}
.featured-category-cta {
	display: flex;
	justify-content: end;
}
.featured-category-cta span {
	margin: auto 0;
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
}
.featured-category-cta svg {
	stroke-width: 1.5px;
}
.featured-products-title {
	display: block;
	font-family: 'Sofia Medium';
	font-size: 26px;
	line-height: 30px;
}
.featured-products {
	display: flex;
	gap: 20px;
}
.featured-product {
	display: flex;
	flex-direction: column;
	scroll-snap-align: center;
}
.featured-product-image {
	position: relative;
	width: 100%;
	height: calc(100% - 68px);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.featured-product-sale {
	position: absolute;
	top: 10px;
	padding: 5px 5px 5px 10px;
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
	text-transform: uppercase;
	background-color: var(--primary);
}
.featured-product-header {
	display: flex;
	justify-content: space-between;
	height: 68px;
	padding: 10px 0;
}
.featured-product-name {
	display: -webkit-box;
	margin: auto 0;
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow: hidden;
}
.featured-product-price {
	display: flex;
	flex-direction: column;
	margin: auto 0;
}
.featured-product-price span {
	margin: 0 auto;
	font-family: 'Caveat';
	font-size: 26px;
	line-height: 30px;
}
.featured-product-price-through {
	margin: 0 auto;
	text-decoration: line-through;
	text-decoration-color: red;
	font-family: 'Sofia Medium' !important;
	font-size: 18px !important;
	line-height: 20px !important;
}
.index-features {
	display: flex;
	height: 250px;
	margin-top: 20px;
	background-image: url('https://images.unsplash.com/photo-1668278408467-ca63262573cb?q=80&w=1635&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.features-text {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 80px;
}
.features-text span {
	font-family: 'Sofia Medium';
	font-size: 28px;
	line-height: 30px;
	color: #fff;
	filter: drop-shadow(0 0 6px #000);
}
.index-ratings {
	display: flex;
}
.index-ratings .google-ratings {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.index-ratings .google-ratings-image {
	margin: auto 0;
	height: 50px;
	background-image: url('https://jetshare.co.nz/wp-content/uploads/2020/04/Google-Reviews-Icon.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.index-ratings .google-ratings span {
	margin: 0 auto;
	font-family: 'Sofia Light';
	font-size: 18px;
	line-height: 20px;
}
.index-ratings .ratings {
	display: flex;
	gap: 20px;
	overflow: hidden;
}
.index-ratings .rating {
	flex: 1 0 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	animation-duration: 20s;
	animation-name: ratings;
	animation-iteration-count: infinite;
}
.index-ratings .rating-header {
	display: flex;
	justify-content: end;
	text-align: right;
}
.index-ratings .rating-icon {
	width: 15px;
	height: 15px;
	color: #ffce44;
	fill: #ffce44;
	margin-right: 2px;
}
.index-ratings .rating-icon:last-of-type {
	margin-right: 10px;
}
.index-ratings .rating-header span {
	margin: auto 0;
	font-family: 'Sofia Light';
	font-size: 16px;
	line-height: 20px;
}
.index-ratings .rating-text {
	display: flex;
	justify-content: end;
	text-align: right;
	font-family: 'Sofia Light';
	font-size: 18px;
	line-height: 20px;
}
.index-blog {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}
.index-blog-header {
	display: flex;
	justify-content: space-between;
}
.index-blog-title {
	font-family: 'Sofia Medium';
	font-size: 26px;
	line-height: 30px;
}
.index-blog-cta {
	display: flex;
}
.index-blog-cta span {
	margin: auto 0;
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
}
.index-blog-cta svg {
	stroke-width: 1.5px;
	margin: auto 0;
}
.index-blog-entries {
	display: flex;
	gap: 20px;
}
.index-blog-entry {
	display: flex;
	flex-direction: column;
	gap: 18px;
	height: 400px;
	scroll-snap-align: center;
}
.index-blog-entry-image {
	position: relative;
	flex: 0 0 186px;
	width: 100%;
	height: 186px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.index-blog-entry-title {
	flex: 1 0 48px;
	display: -webkit-box;
	margin: auto 0;
	font-family: 'Sofia Semibold';
	font-size: 20px;
	line-height: 24px;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.index-blog-entry-text {
	display: -webkit-box;
	font-family: 'Sofia Light';
	font-size: 18px;
	line-height: 22px;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.index-blog-entry-text p {
	margin: 0;
}
.index-blog-entry-cta {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
	text-decoration: underline;
}

@media only screen and (max-width: 767px) {
	.slider-text {
		text-align: left;
	}
	.slider-text-alt {
		text-align: right;
	}
	.tips {
		padding: 40px 30px;
	}
	.tip {
		width: calc(33.33%);
	}
	.tip-icon {
		width: 50px;
		height: 50px;
		padding: 12px;
		stroke-width: 1.2px;
	}
	.featured-categories {
		flex-direction: column;
	}
	.featured-products-title {
		padding: 40px 20px 0;
	}
	.featured-products {
		padding: 20px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-ms-overflow-style: none;  /* IE and Edge */
			scrollbar-width: none;  /* Firefox */
			scroll-behavior: smooth;
	}
	.featured-products::-webkit-scrollbar {
	    display: none;
		-webkit-appearance: none;
	    width: 0;
	    height: 0;
	}
	.featured-product {
		flex: 1 0 80vw;
		height: calc(80vw * 3 / 4 + 68px);
	}
	.features-text {
		margin: auto;
	}
	.index-ratings {
		width: calc(100vw);
		padding: 40px 20px 0;
	}
	.index-ratings .google-ratings {
		width: 25%;
	}
	.index-ratings .ratings {
		width: 75%;
	}
	.index-blog-header {
		padding: 40px 20px 0;
	}
	.index-blog-entries {
		padding: 20px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-ms-overflow-style: none;  /* IE and Edge */
			scrollbar-width: none;  /* Firefox */
			scroll-behavior: smooth;
	}
	.index-blog-entries::-webkit-scrollbar {
	    display: none;
		-webkit-appearance: none;
	    width: 0;
	    height: 0;
	}
	.index-blog-entry {
		flex: 1 0 80vw;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.slider-text {
		text-align: left;
	}
	.slider-text-alt {
		text-align: right;
	}
	.tips {
		padding: 30px 100px;
	}
	.tip {
		width: calc(33.33%);
	}
	.tip-icon {
		width: 50px;
		height: 50px;
		padding: 12px;
		stroke-width: 1.2px;
	}
	.featured-categories {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.featured-categories a {
		width: 100%;
	}
	.featured-products-title {
		padding: 40px 20px 0;
	}
	.featured-products {
		padding: 20px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-ms-overflow-style: none;  /* IE and Edge */
			scrollbar-width: none;  /* Firefox */
			scroll-behavior: smooth;
	}
	.featured-products::-webkit-scrollbar {
	    display: none;
		-webkit-appearance: none;
	    width: 0;
	    height: 0;
	}
	.featured-product {
		flex: 1 0 40vw;
		height: calc(40vw * 3 / 4 + 68px);
	}
	.features-text {
		margin: auto 40px;
	}
	.index-ratings {
		width: calc(100vw);
		padding: 40px 20px 0;
	}
	.index-ratings .google-ratings {
		width: 25%;
	}
	.index-ratings .ratings {
		width: 75%;
	}
	.index-blog-header {
		padding: 40px 20px 0;
	}
	.index-blog-entries {
		padding: 20px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-ms-overflow-style: none;  /* IE and Edge */
			scrollbar-width: none;  /* Firefox */
			scroll-behavior: smooth;
	}
	.index-blog-entries::-webkit-scrollbar {
	    display: none;
		-webkit-appearance: none;
	    width: 0;
	    height: 0;
	}
	.index-blog-entry {
		flex: 1 0 40vw;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	.tips {
		padding: 30px 100px;
	}
	.tip {
		width: calc(33.33%);
	}
	.tip-icon {
		width: 50px;
		height: 50px;
		padding: 12px;
		stroke-width: 1.2px;
	}
	.featured-categories {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.featured-categories a {
		width: calc(50% - 5px);
	}
	.featured-categories a:nth-of-type(3) {
		margin: 0 auto;
	}
	.featured-products-title {
		padding: 40px 20px 0;
	}
	.featured-products {
		padding: 20px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-ms-overflow-style: none;  /* IE and Edge */
			scrollbar-width: none;  /* Firefox */
			scroll-behavior: smooth;
	}
	.featured-products::-webkit-scrollbar {
	    display: none;
		-webkit-appearance: none;
	    width: 0;
	    height: 0;
	}
	.featured-product {
		flex: 1 0 40vw;
		height: calc(40vw * 3 / 4 + 68px);
	}
	.features-text {
		margin: auto 40px;
	}
	.index-ratings {
		width: calc(100vw);
		padding: 40px 20px 0;
	}
	.index-ratings .google-ratings {
		width: 25%;
	}
	.index-ratings .ratings {
		width: 75%;
	}
	.index-blog-header {
		padding: 40px 20px 0;
	}
	.index-blog-entries {
		padding: 20px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-ms-overflow-style: none;  /* IE and Edge */
			scrollbar-width: none;  /* Firefox */
			scroll-behavior: smooth;
	}
	.index-blog-entries::-webkit-scrollbar {
	    display: none;
		-webkit-appearance: none;
	    width: 0;
	    height: 0;
	}
	.index-blog-entry {
		flex: 1 0 40vw;
	}
}
@media only screen and (min-width: 1025px) {
	.tips {
		width: 1024px;
		margin: 0 auto;
		padding: 40px 30px 50px;
	}
	.tip {
		width: calc(33.33%);
	}
	.tip-icon {
		width: 50px;
		height: 50px;
		padding: 12px;
		stroke-width: 1.2px;
	}
	.featured-categories {
		flex-wrap: wrap;
		width: 1024px;
		margin: 0 auto;
	}
	.featured-categories a {
		flex: 1 0 calc(50% - 5px);
		width: calc(50% - 5px);
	}
	.featured-products-title {
		padding: 70px 0 0;
		width: 1024px;
		margin: 0 auto;
	}
	.featured-products {
		flex-wrap: wrap;
		justify-content: center;
		width: 1024px;
		margin: 0 auto;
		padding: 20px 0;
	}
	.featured-product {
		flex: 0 0 calc(256px - 15px);
		height: calc((256px - 15px) * 3 / 4 + 68px);
	}
	.index-features {
		width: 1024px;
		margin: 0 auto;
		margin-top: 50px;
	}
	.features-text {
		margin: auto;
	}
	.index-ratings {
		width: 1024px;
		margin: 0 auto;
		padding: 50px 0 0;
	}
	.index-ratings .google-ratings {
		width: 100px;
		padding: 0 25px 0 0;
	}
	.index-ratings .ratings {
		width: calc(100% - 100px);
	}
	.index-blog-header {
		width: 1024px;
		margin: 0 auto;
		padding: 50px 0 0;
	}
	.index-blog-entries {
		width: 1024px;
		margin: 0 auto;
		padding: 20px 0;
	}
	.index-blog-entry {
		flex: 0 0 calc(512px - 10px);
		width: calc(512px - 10px);
	}
	.index-blog-entry:not(:nth-of-type(-n+2)) {
		display: none;
	}
}

/* Blog
--------------------------------------------- */
.blog-archives {
	display: flex;
}
.post-page {
	padding: 0 0 20px;
}
.blog-navigation {
	display: block;
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 27px;
	color: #fff !important;
	text-align: center;
	padding: 10px 20px !important;
	background-color: #000;
	border-color: #000;
	cursor: pointer;
}
.entry-page {
	position: relative;
}
.entry-page-image {
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.entry-page-image-gradient {
	width: 100%;
	height: 100%;
	background: linear-gradient(#00000040, #ffffff00);
}
.entry-page-title {
	position: absolute;
	top: 0;
	padding: 0 20px;
	font-family: 'Sofia Medium';
	font-size: 26px;
	font-weight: normal;
	line-height: 30px;
	color: #fff;
}
.entry-page-content {
	padding: 20px;
	font-family: 'Sofia Light';
	font-size: 18px;
	line-height: 22px;
}
.entry-page-content p {
	margin: 0 0 20px;
}
.post-page-navigation {
	display: block;
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 27px;
	color: #fff !important;
	text-align: center;
	margin: 0 20px;
	padding: 10px 20px !important;
	background-color: #000;
	border-color: #000;
	cursor: pointer;
}

@media only screen and (max-width: 767px) {
	.blog-page {
		padding: 0 20px 20px;
	}
	.blog-archives {
		flex-direction: column;
		gap: 40px;
	}
	.blog-navigation {
		margin: 40px 0 20px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.blog-page {
		padding: 0 20px 20px;
	}
	.blog-archives {
		flex-direction: column;
		gap: 40px;
	}
	.blog-navigation {
		margin: 40px 0 20px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	.blog-page {
		padding: 0 20px 20px;
	}
	.blog-archives {
		flex-direction: column;
		gap: 40px;
	}
	.blog-navigation {
		margin: 40px 0 20px;
	}
}
@media only screen and (min-width: 1025px) {
	.blog-page {
		width: 1024px;
		margin: 0 auto;
		padding: 0 0 50px;
	}
	.blog-archives {
		flex-wrap: wrap;
		gap: 20px;
	}
	.blog-navigation {
		width: 512px;
		margin: 50px auto 0;
	}
	.entry-page {
		display: flex;
		width: 1024px;
		margin: 0 auto;
		overflow: hidden;
	}
	.entry-page-image {
		width: 50%;
	}
	.entry-page-title {
		width: 50%;
	}
	.entry-page-content {
		width: 50%;
		overflow-y: auto;
		-ms-overflow-style: none;  /* IE and Edge */
			scrollbar-width: none;  /* Firefox */
			scroll-behavior: smooth;
	}
	.entry-page-content::-webkit-scrollbar {
		display: none;
		-webkit-appearance: none;
		width: 0;
		height: 0;
	}
	.post-page-navigation {
		width: 1024px;
		margin: 50px auto 30px;
	}
}

/* Whatsapp fixed
--------------------------------------------- */
.whatsapp {
	position: fixed;
	bottom: 20px;
	left: 20px;
	width: 60px;
	height: 60px;
	/*padding: 10px;*/
	/*border-radius: 50%;*/
	/*border: 2px solid #fff;*/
	/*background-color: green;*/
	fill: green;
	color: #fff;
	stroke-width: 1px;
	z-index: 900;
}
.whatsapp-icon {
	position: fixed;
	left: 37.5px;
	bottom: 37.5px;
	width: 25px;
	height: 25px;
	stroke-width: 1px;
	fill: #fff;
	color: #fff;
	pointer-events: none;
	z-index: 900;
}

/* Category
--------------------------------------------- */
.woocommerce-no-products-found {
	max-width: 1024px;
	margin: 0 auto;
	text-align: center;
}
.product-category {
	display: flex;
	flex-direction: column;
}
.product-category-header {
	display: flex;
	justify-content: space-between;
}
.product-category-title {
	font-family: 'Sofia Medium';
	font-size: 26px;
	font-weight: normal;
	line-height: 30px;
}
.product-category-tags {
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 10px;
}
.product-category-tag {
	font-family: 'Sofia Light';
	font-size: 18px;
	line-height: 22px;
	padding: 4px 10px;
	border: 1px solid var(--primary);
	border-radius: 40px;
	cursor: pointer;
}
.product-category-tags .active {
	background-color: var(--primary);
}
.product-category-cta {
	display: flex;
}
.product-category-cta span {
	margin: auto 0;
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
}
.product-category-cta svg {
	stroke-width: 1.5px;
	margin: auto 0;
}
.product-category-filter {
	display: flex;
	justify-content: space-between;
}
.product-category-orderby {
	display: flex;
	gap: 5px;
}
.product-category-orderby span {
	margin: auto 0;
	font-family: 'Sofia Light';
	font-size: 16px;
	line-height: 18px;
}
.product-category-orderby select {
	outline: none;
	border-radius: 4px;
	background-color: transparent;
	border: 1px solid #ddd;
}
.product-category-filter svg {
	stroke-width: 1.5px;
}
.product-subcategories {
	display: flex;
	flex-wrap: wrap;
	row-gap: 10px;
	column-gap: 20px;
}
.product-subcategory {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px;
	height: calc(25vh - 7.5px);
	background: linear-gradient(#00000030, #ffffff20);
}
.product-subcategory-small {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px;
	height: calc(25vh - 7.5px);
	background: linear-gradient(#00000030, #ffffff20);
}
.product-subcategory-name {
	font-family: 'Sofia Light';
	font-size: 24px;
	line-height: 30px;
	text-align: left;
	color: #fff;
}
.product-subcategory-cta {
	display: flex;
	justify-content: end;
}
.product-subcategory-cta span {
	margin: auto 0;
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
}
.product-subcategory-cta svg {
	stroke-width: 1.5px;
}
.product-category-products {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.product-category-product {
	display: flex;
	flex-direction: column;
	scroll-snap-align: center;
}
.product-category-product-image {
	position: relative;
	width: 100%;
	height: calc(100% - 68px);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.product-category-product-sale {
	position: absolute;
	top: 10px;
	padding: 5px 5px 5px 10px;
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
	text-transform: uppercase;
	background-color: var(--primary);
}
.product-category-product-header {
	display: flex;
	justify-content: space-between;
	height: 68px;
	padding: 10px 0;
}
.product-category-product-name {
	display: -webkit-box;
	margin: auto 0;
	padding: 0 10px 0 0;
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow: hidden;
}
.product-category-product-price {
	display: flex;
	flex-direction: column;
	margin: auto 0;
}
.product-category-product-price span {
	margin: 0 auto;
	font-family: 'Caveat';
	font-size: 26px;
	line-height: 30px;
}
.product-category-product-price-through {
	margin: 0 auto;
	text-decoration: line-through;
	text-decoration-color: red;
	font-family: 'Sofia Medium' !important;
	font-size: 18px !important;
	line-height: 20px !important;
}
.product-category-contact {
	padding: 20px;
}
.product-category-contact span {
	display: block;
	font-family: 'Sofia Medium';
	font-size: 18px;
	line-height: 20px;
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.product-category-header {
		padding: 0 20px;
	}
	.product-category-tags {
		padding: 0 20px 20px;
	}
	.product-subcategory {
		width: calc(100vw);
	}
	.product-subcategory-small {
		width: calc(50vw - 10px);
	}
	.product-category-filter {
		padding: 0 20px;
	}
	.product-category-products {
		padding: 20px 20px 0;
	}
	.product-category-product {
		width: calc(50% - 10px);
		height: calc((50vw - 30px) * 3 / 4 + 68px);
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.product-category-header {
		padding: 0 20px;
	}
	.product-category-tags {
		padding: 0 20px 20px;
	}
	.product-subcategory {
		width: calc(100vw);
	}
	.product-subcategory-small {
		width: calc(50vw - 10px);
	}
	.product-category-filter {
		padding: 0 20px;
	}
	.product-category-products {
		padding: 20px 20px 0;
	}
	.product-category-product {
		width: calc(50% - 10px);
		height: calc((50vw - 30px) * 3 / 4 + 68px);
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	.product-category-header {
		padding: 0 20px;
	}
	.product-category-tags {
		padding: 0 20px 20px;
	}
	.product-subcategory {
		width: calc(50vw - 10px);
	}
	.product-subcategory-small {
		width: calc(25vw - 15px);
	}
	.product-category-filter {
		padding: 0 20px;
	}
	.product-category-products {
		padding: 20px 20px 0;
	}
	.product-category-product {
		width: calc(50% - 10px);
		height: calc((50vw - 30px) * 3 / 4 + 68px);
	}
}
@media only screen and (min-width: 1025px) {
	.product-category-header {
		width: 1024px;
		margin: 0 auto;
	}
	.product-category-tags {
		width: 1024px;
		margin: 0 auto 20px;
	}
	.product-subcategories {
		width: 1024px;
		margin: 0 auto;
	}
	.product-subcategory {
		flex: 0 0 calc(512px - 10px);
		width: calc(512px - 10px);
	}
	.product-subcategory-small {
		flex: 0 0 calc(256px - 15px);
		width: calc(256px - 15px);
	}
	.product-category-filter {
		width: 1024px;
		margin: 0 auto;
	}
	.product-category-products {
		width: 1024px;
		margin: 20px auto 0;
	}
	.product-category-product {
		width: calc(256px - 15px);
		height: calc((256px - 15px) * 3 / 4 + 68px);
	}
}

/* Features */
.features-page h1 {
	font-family: 'Sofia Medium';
	font-size: 26px;
	line-height: 28px;
	text-align: center;
	margin: 40px 0;
}
.features-page h2 {
	font-family: 'Sofia Medium';
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	margin: 40px 0;
}
.features-page h3 {
	font-family: 'Sofia Medium';
	font-size: 22px;
	line-height: 24px;
	text-align: center;
	margin: 5px 0;
}
.features-page p {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
	white-space: break-spaces;
}
.features-page .features-cite {
	font-weight: 600;
	font-style: italic;
	text-align: center;
}
.features-page .features-features {
	display: flex;
	flex-wrap: wrap;
	column-gap: 40px;
	margin: 40px 0;
}
.features-page .contact-item-icon {
	width: 40px;
	height: 40px;
	margin: 0 auto 20px;
	padding: 5px;
	background-color: var(--primary);
	border-radius: 50%;
}
.features-page .contact-item-icon svg {
	width: 28px;
	height: 28px;
}

@media only screen and (max-width: 767px) {
	.features-page {
		padding: 0 20px 20px;
	}
	.features-page .features-feature {
		flex: 0 1 100%;
	}
	.features-page .contact-first {
		flex-direction: column;
		gap: 50px;
	}
	.features-page .contact-second .contact-form-input {
		flex: 1 1 calc(50% - 20px) !important;
	}
	.features-page .contact-second .contact-form-input:last-of-type {
		flex: 1 1 100% !important;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}
@media only screen and (min-width: 1025px) {
	.features-page {
		width: 1024px;
		margin: 0 auto;
	}
	.features-page .features-feature {
		flex: 0 1 calc(50% - 20px);
	}
}

/* About */
.about-page h1 {
	font-family: 'Sofia Medium';
	font-size: 26px;
	line-height: 28px;
	text-align: center;
	margin: 40px 0;
}
.about-page h2 {
	font-family: 'Sofia Medium';
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	margin: 40px 0;
}
.about-page h3 {
	font-family: 'Sofia Medium';
	font-size: 22px;
	line-height: 24px;
	text-align: center;
	margin: 5px 0;
}
.about-page p {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
	white-space: break-spaces;
}
.about-page .about-cite {
	font-weight: 600;
	font-style: italic;
	text-align: center;
}
.about-page .about-features {
	display: flex;
	flex-wrap: wrap;
	column-gap: 40px;
	margin: 40px 0;
}
.about-page .contact-first {
	display: flex;
	justify-content: space-around;
}
.about-page .contact-first .contact-item {
	display: flex;
	flex-direction: column;
	text-align: center;
	min-width: 20%;
}
.about-page .contact-first .contact-item .contact-item-icon {
	width: 40px;
	height: 40px;
	margin: 0 auto 20px;
	padding: 5px;
	background-color: var(--primary);
	border-radius: 50%;
}
.about-page .contact-first .contact-item svg {
	width: 28px;
	height: 28px;
}
.about-page .contact-first .contact-item p {
	margin: 4px 0;
}
.about-page .contact-form p {
	margin: 10px 0;
}
.about-page .contact-form button {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 27px;
	color: #fff;
	text-align: center;
	padding: 10px 20px !important;
	background-color: #000;
	border-color: #000;
	border-radius: 2px;
	cursor: pointer;
}

@media only screen and (max-width: 767px) {
	.about-page {
		padding: 0 20px 20px;
	}
	.about-page .about-feature {
		flex: 0 1 100%;
	}
	.about-page .contact-first {
		flex-direction: column;
		gap: 50px;
	}
	.about-page .contact-second .contact-form-input {
		flex: 1 1 calc(50% - 20px) !important;
	}
	.about-page .contact-second .contact-form-input:last-of-type {
		flex: 1 1 100% !important;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}
@media only screen and (min-width: 1025px) {
	.about-page {
		width: 1024px;
		margin: 0 auto;
	}
	.about-page .about-feature {
		flex: 0 1 calc(50% - 20px);
	}
}

/* Legal */
.legal-page h1 {
	font-family: 'Sofia Medium';
	font-size: 26px;
	line-height: 28px;
	margin: 40px 0;
}
.legal-page h2 {
	font-family: 'Sofia Medium';
	font-size: 24px;
	line-height: 28px;
	margin: 40px 0;
}
.legal-page h3 {
	font-family: 'Sofia Medium';
	font-size: 22px;
	line-height: 24px;
	margin: 5px 0;
}
.legal-page p {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
	white-space: break-spaces;
}

@media only screen and (max-width: 767px) {
	.legal-page {
		padding: 0 20px 20px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}
@media only screen and (min-width: 1025px) {
	.legal-page {
		width: 1024px;
		margin: 0 auto;
	}
}

/* FAQs */
.faqs-page h1 {
	font-family: 'Sofia Medium';
	font-size: 26px;
	line-height: 28px;
	text-align: center;
	margin: 40px 0;
}
.faqs-page h2 {
	font-family: 'Sofia Medium';
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	margin: 40px 0;
}
.faqs-page h3 {
	font-family: 'Sofia Medium';
	font-size: 22px;
	line-height: 24px;
	text-align: center;
	margin: 5px 0;
}
.faqs-page p {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
	white-space: break-spaces;
}
.faqs-page a {
	text-decoration: underline;
	color: blue;
}
.faqs-page .faq span {
	font-weight: unset !important;
	text-transform: unset !important;
	font-family: 'Sofia Medium';
	font-size: 20px;
	line-height: 24px;
}

@media only screen and (max-width: 767px) {
	.faqs-page {
		padding: 0 20px 20px;
	}
	.footer-link.faq-section {
		height: 90px;
	}
	.faq {
		gap: 30px;
	}
	.faqs-page .faq svg {
		flex: 1 0 24px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}
@media only screen and (min-width: 1025px) {
	.faqs-page {
		width: 1024px;
		margin: 0 auto;
	}
}

/* Mini-cart */
.woocommerce-mini-cart {
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: calc(100% - 68px - 94px - 125px);
	overflow-y: auto;
}
.woocommerce-mini-cart-item {
	position: relative;
}
.mini_cart_item a:not(:first-of-type) {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}
.cart-item-image {
	width: calc(50% - 10px);
	aspect-ratio: 1.34;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.cart-item-data {
	width: calc(50% - 10px);
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: right;
}
.cart-item-data span {
	font-family: 'Sofia Medium';
	font-size: 22px;
	line-height: 28px;
}
.cart-item-data-name {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow: hidden;
}
.remove_from_cart_button {
	position: absolute;
	top: 10px;
	font-size: 20px;
	line-height: 20px;
	color: #fff;
	padding: 2px 6px;
	background-color: #000;
}
.woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
}
.woocommerce-mini-cart__total span {
	font-family: 'Sofia Medium';
	font-size: 22px;
	line-height: 28px;
	padding: 20px 0;
}
.mini-cart-buttons {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.mini-cart-buttons a {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 27px;
	color: #fff;
	text-align: center;
	padding: 10px 20px !important;
	background-color: #000;
	cursor: pointer;
	justify-content: center;
}
/*.mini-cart-buttons a:first-of-type {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	text-decoration: underline;
	padding: 0 20px !important;
	cursor: pointer;
	justify-content: center;
}*/
/*.mini-cart-buttons a:not(:first-of-type) {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 27px;
	color: #fff;
	text-align: center;
	padding: 10px 20px !important;
	background-color: #000;
	cursor: pointer;
	justify-content: center;
}*/
.mini-cart-no-products {
	font-family: 'Sofia Medium';
	font-size: 22px;
	line-height: 28px;
	margin: auto;
}

/* Cart */
.woocommerce-cart-form__contents {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
}
.woocommerce-cart-form__cart-item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.cart-product-image {
	width: calc(50% - 10px);
	aspect-ratio: 1.34;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.cart-product-data {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: calc(50% - 10px);
}
.cart-product-name {
	font-family: 'Sofia Medium';
	font-size: 22px;
	line-height: 28px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow: hidden;
}
.cart-product-quantity-price {
	display: flex;
	gap: 10px;
}
.cart-product-quantity {
	width: calc(50% - 5px);
}
.cart-product-quantity input {
	width: 100%;
	font-family: 'Sofia Light';
	font-size: 18px;
	line-height: 24px;
	padding: 10px 20px !important;
	outline: none;
}
.cart-product-price {
	display: flex;
	width: calc(50% - 5px);
	text-align: right;
}
.cart-product-price span {
	margin: auto 0;
	font-family: 'Sofia Medium';
	font-size: 22px;
	line-height: 28px;
}
.product-remove {
	position: absolute;
	top: 10px;
	font-size: 20px;
	line-height: 20px;
	color: #fff;
	padding: 2px 6px;
	background-color: #000;
}
.cart-product-variations {
	display: flex;
	justify-content: space-around;
	width: 100%;
}
.cart-product-variation {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-family: 'Sofia Medium';
	font-size: 20px;
	line-height: 24px;
	text-align: center;
}
.cart-product-variation span:nth-of-type(2) {
	text-transform: capitalize;
	font-family: 'Sofia Light';
	font-size: 18px;
	line-height: 20px;
}
.cart-coupon-question {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	text-decoration: underline;
	margin: 0 auto;
	cursor: pointer;
}
.cart-actions {
	display: none;
}
.cart-coupon {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.cart-coupon .input-text {
	font-family: 'Sofia Light';
	font-size: 18px;
	line-height: 24px;
	width: 100%;
	padding: 10px 20px !important;
	outline: none;
}
.cart-coupon .button {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 27px;
	color: #fff;
	text-align: center;
	width: 100%;
	padding: 10px 20px !important;
	background-color: #000;
	cursor: pointer;
}
.cart-update {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 27px;
	color: #fff;
	text-align: center;
	width: 200px;
	margin: 0 auto;
	padding: 10px 20px !important;
	background-color: #000;
	cursor: pointer;
}
.cart_totals {
	padding: 0 20px;
}
.cart-collateral {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
}
.cart-collateral span {
	font-family: 'Sofia Medium';
	font-size: 22px;
	line-height: 28px;
}
.cart-total-collateral {
	padding: 10px 20px;
}
.cart_totals .cart-total-collateral {
	padding: 10px 0 !important;
}
.wc-proceed-to-checkout {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 27px;
	color: #fff;
	text-align: center;
	width: calc(100% - 40px);
	margin: 20px 20px 0;
	padding: 10px 20px !important;
	background-color: #000;
	cursor: pointer;
}
.woocommerce-cart-epoques .ppc-button-wrapper {
	display: none;
}

@media only screen and (max-width: 767px) {
	.woocommerce-cart-epoques {
		padding: 20px 0 40px;
	}
	.cart-product-data {
		text-align: left;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}
@media only screen and (min-width: 1025px) {
	.woocommerce-cart-epoques {
		display: flex;
		gap: 30px;
		width: 1024px;
		margin: 0 auto;
		padding: 40px 30px 50px;
	}
	.woocommerce-cart-form {
		flex: 0 0 calc(60% - 15px);
		width: calc(60% - 15px);
	}
	.cart-product-data {
		text-align: right;
	}
	.cart-collaterals {
		flex: 0 0 calc(40% - 15px);
		width: calc(40% - 15px);
	}
}

/* Checkout */
.woocommerce-checkout .woocommerce-form-coupon-toggle {
	display: none;
}
.woocommerce-billing-fields h3 {
	font-family: 'Sofia Medium';
	font-size: 26px;
	font-weight: normal;
	line-height: 30px;
}
#order_review_heading {
	font-family: 'Sofia Medium';
	font-size: 26px;
	font-weight: normal;
	line-height: 30px;
}
.woocommerce-billing-fields__field-wrapper label {
	font-family: 'Sofia Light';
	font-size: 16px;
	line-height: 20px;
	display: block;
	margin-bottom: 6px;
}
.woocommerce-billing-fields__field-wrapper input {
	width: 100%;
	font-family: 'Sofia Light';
	font-size: 16px;
	line-height: 20px;
	padding: 4px 10px !important;
	outline: none;
}
.woocommerce-billing-fields__field-wrapper .form-row.woocommerce-validated input.input-text {
	box-shadow: none;
}
.woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid input.input-text {
	box-shadow: none;
}
.woocommerce-additional-fields h3 {
	font-family: 'Sofia Medium';
	font-size: 26px;
	font-weight: normal;
	line-height: 30px;
}
.woocommerce-additional-fields label {
	font-family: 'Sofia Light';
	font-size: 16px;
	line-height: 20px;
	display: block;
	margin-bottom: 6px;
}
.woocommerce-additional-fields textarea {
	font-family: 'Sofia Light';
	font-size: 16px;
	line-height: 20px;
	padding: 4px 10px !important;
	outline: none;
	resize: vertical;
}
.woocommerce-checkout-review-order-table .cart_item {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: 10px;
}
.woocommerce-checkout-review-order-table .product-name {
	font-family: 'Sofia Light';
	font-size: 20px;
	font-weight: normal;
	line-height: 24px;
}
.woocommerce-checkout-review-order-table .product-total {
	font-family: 'Sofia Medium';
	font-size: 20px;
	font-weight: normal;
	line-height: 24px;
}
.woocommerce-checkout-review-order-table .cart-subtotal {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	padding: 10px 0;
	border-top: 2px solid var(--black);
}
.woocommerce-checkout-review-order-table .cart-subtotal div:first-of-type {
	font-family: 'Sofia Light';
	font-size: 20px;
	font-weight: normal;
	line-height: 24px;
}
.woocommerce-checkout-review-order-table .cart-subtotal div {
	font-family: 'Sofia Medium';
	font-size: 20px;
	font-weight: normal;
	line-height: 24px;
}
.woocommerce-checkout-review-order-table .cart-discount {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: 10px;
}
.woocommerce-checkout-review-order-table .cart-discount div:first-of-type {
	font-family: 'Sofia Light';
	font-size: 20px;
	font-weight: normal;
	line-height: 24px;
}
.woocommerce-checkout-review-order-table .cart-discount div {
	font-family: 'Sofia Medium';
	font-size: 20px;
	font-weight: normal;
	line-height: 24px;
}
.woocommerce-checkout-review-order-table .order-total {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: 10px;
}
.woocommerce-checkout-review-order-table .order-total div:first-of-type {
	font-family: 'Sofia Light';
	font-size: 20px;
	font-weight: normal;
	line-height: 24px;
}
.woocommerce-checkout-review-order-table .order-total div {
	font-family: 'Sofia Medium';
	font-size: 20px;
	font-weight: normal !important;
	line-height: 24px;
}
.woocommerce-checkout-review-order-table .order-total div strong {
	font-weight: normal !important;
}
.woocommerce-checkout-review-order-table {
	font-family: 'Sofia Light';
	font-size: 20px;
	font-weight: normal;
	line-height: 24px;
}
.woocommerce-checkout-review-order-table ul {
	margin-top: 1.5em;
	margin-left: 0;
	padding-left: 0;
	list-style: none;
}
.woocommerce-checkout-review-order-table label {
	font-family: 'Sofia Medium';
	font-size: 16px;
	font-weight: normal !important;
	line-height: 20px;
	margin-left: 5px;
}
.woocommerce-checkout-payment ul {
	margin-top: 40px;
	margin-left: 0;
	padding-left: 0;
	list-style: none;
}
.woocommerce-checkout-payment label {
	font-family: 'Sofia Medium';
	font-size: 16px;
	font-weight: normal !important;
	line-height: 20px;
}
.checkout-shipment-information {
	font-family: 'Sofia Light';
	font-size: 16px;
	font-weight: normal !important;
	line-height: 20px;
}
.checkout-shipment-information a {
	text-decoration: underline;
	color: blue;
}
.woocommerce-checkout-payment p {
	font-family: 'Sofia Light';
	font-size: 16px;
	font-weight: normal !important;
	line-height: 20px;
}
.woocommerce-checkout-payment a{
	text-decoration: underline;
}
#place_order {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 27px;
	color: #fff;
	text-align: center;
	width: 100%;
	padding: 10px 20px !important;
	background-color: #000;
	cursor: pointer;
}

@media only screen and (max-width: 767px) {
	.woocommerce .woocommerce-checkout {
		padding: 20px 0 40px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}
@media only screen and (min-width: 1025px) {
	.woocommerce .woocommerce-checkout {
		display: flex;
		gap: 30px;
		width: 1024px;
		margin: 0 auto;
		padding: 40px 30px 50px;
	}
	.woocommerce-checkout .col2-set {
		flex: 0 0 calc(60% - 15px);
		width: calc(60% - 15px);
	}
	.woocommerce-checkout .checkout-order-detail {
		flex: 0 0 calc(40% - 15px);
		width: calc(40% - 15px);
	}
}

/* Login */
.login {
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
}
.woocommerce-MyAccount-content {
	max-width: 1024px;
	margin: 0 auto;
}
.login-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 0 20px;
}
.login-form-recover {
	display: block;
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	text-decoration: underline;
	padding: 16px 20px 32px;
	cursor: pointer;
	justify-content: center;
}
.recover-password-text {
	display: block;
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
	padding: 0 20px 20px;
}
.woocommerce-orders-table__row {
	display: flex;
	flex-wrap: wrap;
	padding: 0 20px 40px;
	row-gap: 10px;
	column-gap: 20px;
}
.order-data-first {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 10px;
	color: #000;
	border-radius: 2px;
	background-color: var(--primary);
}
.order-data {
	width: calc(33.33% - 13.33px);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.order-data:nth-of-type(2) {
	text-align: left;
	padding: 0 0 0 10px;
}
.order-data:nth-of-type(3) {
	text-align: center;
}
.order-data:nth-of-type(4) {
	text-align: right;
	padding: 0 10px 0 0;
}
.woocommerce-orders-table__row  .footer-newsletter-cta {
	width: 200px !important;
	margin: 20px auto 0 !important;
}
.order-data-first .order-data-header {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 27px;
}
.order-data-first .order-data-text {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 27px;
}
.order-data .order-data-header {
	font-family: 'Sofia Medium';
	font-size: 20px;
	line-height: 24px;
}
.order-data .order-data-text {
	display: block;
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
}
/* Wishlist */
.wishlist-title-container {
	display: none;
}
/* Search */
.no-results {
	text-align: center;
}
.no-results span {
	font-family: 'Sofia Medium';
	font-size: 18px;
	line-height: 20px;
}
/* 404 */
.not-found-page-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.not-found-page-content span {
	font-family: 'Sofia Medium';
	font-size: 18px;
	line-height: 20px;
	text-align: center;
}
.not-found-page-content a {
		color: #fff !important;
		margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.not-found-page-content {
		padding: 20px 0;
	}
	.not-found-page-content a {
		width: calc(100% - 40px);
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}
@media only screen and (min-width: 1025px) {
	.not-found-page-content {
		width: 1024px;
		margin: 200px auto;
	}
	.not-found-page-content a {
		width: calc(200px);
	}
}
/* Footer */
footer {
	display: flex;
	flex-direction: column;
	gap: 20px;
	box-shadow: 0 1px 0 #000;
	background-color: #000;
}
.footer-links {
	display: flex;
	flex-direction: column;
	background-color: var(--primary);
}
.footer-newsletter {
	display: flex;
	flex-direction: column;
	gap: 20px;
	border-bottom: 1px solid #fff;
}
.footer-newsletter-title {
	display: block;
	font-family: 'Sofia Medium';
	font-size: 30px;
	line-height: 34px;
	margin: 0 auto;
}
.footer-newsletter-text {
	font-family: 'Sofia Light';
	font-size: 18px;
	line-height: 24px;
	margin: 0 auto;
	text-align: center;
}
.footer-newsletter-input {
	font-family: 'Sofia Light';
	font-size: 18px;
	line-height: 24px;
	padding: 10px 20px !important;
	outline: none;
}
.footer-newsletter-cta {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 27px;
	color: #fff;
	text-align: center;
	padding: 10px 20px !important;
	background-color: #000;
	border-color: #000;
	border-radius: 2px;
	cursor: pointer;
}
.footer-newsletter-lopd {
	font-family: 'Sofia Light';
	font-size: 14px;
	line-height: 16px;
	text-align: center;
}
.footer-newsletter-lopd a {
	text-decoration: underline;
}
.footer-link {
	display: flex;
	flex-direction: column;
	height: 45px;
	overflow: hidden;
	transition: .4s;
}
.footer-link-header {
	display: flex;
	justify-content: space-between;
	padding: 10px 20px;
	cursor: pointer;
	border-bottom: 1px solid #fff;
}
.footer-link-header span {
	margin: auto 0;
	font-weight: 500;
	text-transform: uppercase;
}
.footer-link-header line {
	transform-origin: center;
	transition: .4s;
}
.footer-link-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 10px 20px;
}
.footer-link-normal {
	font-size: 16px;
	line-height: 20px;
}
.footer-rrss {
	display: flex;
	gap: 30px;
	margin: 30px auto;
}
.footer-rrss-icon {
	width: 24px;
	height: 24px;
	stroke-width: 1.2px;
}
.footer-payments {
	display: flex;
	gap: 20px;
	margin: 0 auto;
	padding: 20px 35px;
	flex-wrap: wrap;
}
.footer-payment {
	aspect-ratio: 1.62;
	margin: auto 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.footer-logo {
	margin:  0 auto;
	filter: brightness(0) invert(1);
}
.footer-copy {
	display: flex;
	gap: 5px;
	padding: 10px 0;
	justify-content: center;
}
.footer-copy span {
	font-size: 16px;
	line-height: 18px;
	color: #fff;
}
.footer-copy svg {
	width: 18px;
	height: 18px;
	color: #fff;
}

@media only screen and (max-width: 767px) {
	.footer-newsletter {
		padding: 40px 20px;
	}
	.footer-payments {
		justify-content: center;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.footer-newsletter {
		padding: 40px 20px;
	}
	.footer-payments {
		justify-content: center;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	.footer-newsletter {
		padding: 40px 20px;
	}
	.footer-payments {
		justify-content: center;
	}
}
@media only screen and (min-width: 1025px) {
	.footer-newsletter {
		width: 1024px;
		margin: 0 auto;
		padding: 40px 0;
	}
	.footer-link {
		width: 1024px;
		margin: 0 auto;
	}
	.footer-payments {
		justify-content: space-between;
		width: 1024px;
		height: 100px;
	}
	.footer-payment {
		height: 50px;
	}
	.footer-logo {
		width: 200px;
	}
}

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Set font-faces
 */
@font-face {
    font-family: Sofia Light;
    src: url(../../fonts/sofia-light.woff2) format("woff2");
    unicode-range: U + 0-ff, U + 131, U + 152, U + 153, U + 2bb, U + 2bc, U + 2c6, U + 2da, U + 2dc, U + 2000-206f, U + 2074, U + 2082, U + 20ac, U + 2122, U + 2191, U + 2193, U + 2212, U + 2215, U + feff, U + fffd;
    font-display:swap
}
@font-face {
    font-family: Sofia Medium;
    src: url(../../fonts/sofia-medium.woff2) format("woff2");
    unicode-range: U + 0-ff, U + 131, U + 152, U + 153, U + 2bb, U + 2bc, U + 2c6, U + 2da, U + 2dc, U + 2000-206f, U + 2074, U + 2082, U + 20ac, U + 2122, U + 2191, U + 2193, U + 2212, U + 2215, U + feff, U + fffd;
    font-display:swap
}
@font-face {
    font-family: Sofia Semibold;
    font-weight: 700;
    src: url(../../fonts/sofia-semibold.woff2) format("woff2")
}
@font-face {
    font-family: Caveat;
    src: url(../../fonts/Caveat-Regular.ttf) format("truetype")
}
@font-face {
    font-family: Helvetica;
    src: url(../../fonts/Helvetica.ttf) format("truetype")
}

/**
 * Set keyframes
 */
@keyframes ratings {
	0% { transform: translateX(0); }
	20% { transform: translateX(calc(-100% - 20px)); }
	40% { transform: translateX(calc(-200% - 40px)); }
	60% { transform: translateX(calc(-300% - 60px)); }
	80% { transform: translateX(calc(-400% - 80px)); }
	100% { transform: translateX(0); }
}

/**
 * Set root variables
 */
:root {
	--black: #000;
	--primary: #f5f5f5;
	--secondary: #7b7b7b;
}

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0 !important;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 20px 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: var(--black);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 20px 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: unset;
	cursor: pointer;
	text-decoration: none;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

input[type='radio'] {
    accent-color: var(--primary);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	font-family: 'Sofia Light';
	font-size: 18px;
	line-height: 22px;
	padding: 4px 10px;
	border: 1px solid var(--primary);
	border-radius: 40px;
	background-color: var(--primary);
	-moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
	cursor: pointer;
}

select:focus-visible, select:active {
	outline: none;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: flex;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.updated:not(.published) {
	display: none;
}

/* Notices
--------------------------------------------- */
.woocommerce-notices-wrapper {
	position: fixed;
	top: 200px;
	z-index: 999;
}
.woocommerce-error {
	width: calc(80vw);
	text-align: center;
	margin: 0 10vw;
	border-radius: 4px;
	font-family: 'Sofia Medium';
	font-size: 16px;
	color: #fff;
	line-height: 20px;
	padding: 8px 0;
}
.woocommerce-message {
	position: fixed;
	top: 200px;
	z-index: 999;
	text-align: center;
	border-radius: 4px;
	font-family: 'Sofia Medium';
	font-size: 16px;
	color: #fff;
	line-height: 20px;
	padding: 8px 0;
}
.woocommerce-message a {
	display: none;
}

@media only screen and (max-width: 767px) {
	.woocommerce-message {
		width: calc(80vw);
		margin: 0 10vw;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.woocommerce-message {
		width: calc(80vw);
		margin: 0 10vw;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	.woocommerce-message {
		width: calc(80vw);
		margin: 0 10vw;
	}
}
@media only screen and (min-width: 1025px) {
	.woocommerce-message {
		width: calc(60vw);
		margin: 0 20vw;
	}
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/* Product view
--------------------------------------------- */
.woocommerce-breadcrumb {
	display: none;
}
.product {
	display: flex;
	flex-direction: column;
}
.product-column {
	position: relative;
}
.product-images {
	display: flex;
	overflow-x: hidden; /* TODO */
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-ms-overflow-style: none;  /* IE and Edge */
		scrollbar-width: none;  /* Firefox */
		scroll-behavior: smooth;
}
.product-images::-webkit-scrollbar {
    display: none;
	-webkit-appearance: none;
    width: 0;
    height: 0;
}
.product-image {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	scroll-snap-align: center;
}
.product-image-navigation-left {
	position: absolute;
	top: calc(50% - 16px);
	left: 0;
	width: 32px;
	height: 32px;
	padding: 3px;
	color: var(--black);
	background-color: var(--primary);
	cursor: pointer;
}
.product-image-navigation-right {
	position: absolute;
	top: calc(50% - 16px);
	right: 0;
	width: 32px;
	height: 32px;
	padding: 3px;
	color: var(--black);
	background-color: var(--primary);
	cursor: pointer;
}
.product-image-navigation-disabled {
	color: #d0d0d0;
	cursor: auto;
}
.product-title {
	font-family: 'Sofia Medium';
	font-size: 26px;
	line-height: 28px;
	margin: 0;
	padding: 20px;
}
.woocommerce-product-details__short-description {
	display: none;
}
.product {
	position: relative;
}
.product .variations th {
	text-align: left;
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
}
.product .variations td {
	text-align: right;
}
.product .variations .reset_variations {
	display: none !important;
}
.product .woocommerce-variation-availability {
	display: none;
}
#ppcp-messages {
	display: none;s
}
.product .woocommerce-variation-add-to-cart, .product .add-to-cart-simple  {
	position: fixed;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	width: 100% !important;
	height: fit-content;
	margin: 0 !important;
	border-top: 1px solid var(--primary);
	background-color: #fff;
	box-shadow: 10px 0 10px #00000020;
	z-index: 998;
}
.product .woocommerce-variation-add-to-cart .quantity, .product .add-to-cart-simple .quantity {
	display: none !important;
}
.add-to-cart-price {
	font-family: 'Caveat';
	font-size: 30px;
	line-height: 34px;
}
.add-to-cart-price-through {
	margin: auto 10px auto 0;
	text-decoration: line-through;
	text-decoration-color: red;
	font-family: 'Sofia Medium' !important;
	font-size: 26px !important;
	line-height: 28px !important;
}
.single_add_to_cart_button {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 27px;
	color: #fff;
	text-align: center;
	padding: 10px 20px !important;
	background-color: #000;
	border-color: #000;
	border-radius: 2px;
	cursor: pointer;
}
.yith-wcwl-add-to-wishlist {
	position: absolute;
	margin-top: 0;
	padding: 5px 10px 5px 5px;
	background-color: var(--primary);
}
.single_add_to_wishlist i {
	font-size: 20px;
	line-height: 24px;
	margin-right: 0 !important;
}
.single_add_to_wishlist span {
	display: none;
}
.product_meta {
	display: none;
}
.woocommerce-tabs {
	display: none;
}
.product-tips {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.product-tip {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	padding: 10px 20px;
	background-color: var(--primary);
}
.product-tip-icon {
	width: 20px;
	height: 20px;
	margin: auto 0;
}
.product-tip span {
	max-width: calc(100% - 44px);
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
	text-align: right;
}
.product-measurements {
	display: flex;
	justify-content: space-around;
	margin: 40px 20px;
}
.product-measurement {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.product-measurement span {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
	text-align: center;
}
.product-description-title {
	width: 100%;
	margin: 10px 0;
	font-family: 'Sofia Medium';
	font-size: 24px;
	line-height: 28px;
}
.product-description {
	font-family: 'Sofia Light';
	font-size: 20px;
	line-height: 24px;
}
.product-description a {
		text-decoration: underline;
	}
.product-related-title {
	margin: 10px 0 20px;
	font-family: 'Sofia Medium';
	font-size: 24px;
	line-height: 28px;
}
.product .product-category-products {
	padding: 0;
}
.product .up-sells h2 {
	font-family: 'Sofia Medium';
	font-size: 24px;
	line-height: 28px;
}
.product .fa-heart {
	cursor: pointer;
	font-size: 20px;
	line-height: 24px;
	margin-right: 0;
}
.product .yith-wcwl-add-to-wishlist .separator {
	display: none;
}
.product .yith-wcwl-add-to-wishlist .view-wishlist {
	display: none;
}
.product-template-default #yith-wcwl-popup-message {
	display: none !important;
}

@media only screen and (max-width: 767px) {
	.yith-wcwl-add-to-wishlist {
		top: calc(-100vw * 3 / 4 + 10px);
		right: 0;
	}
	.product-images {
		height: calc(100vw * 3 / 4);
	}
	.product .variations {
		padding: 10px 20px;
	}
	.product-description-title {
		padding: 0 20px;
	}
	.product-description {
		padding: 0 20px;
	}
	.product .up-sells h2 {
		margin: 10px 20px 20px;
	}
	.product .up-sells .product-category-products {
		flex-wrap: nowrap;
		padding: 0 20px 20px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		transition: .4s;
		-ms-overflow-style: none;  /* IE and Edge */
			scrollbar-width: none;  /* Firefox */
			scroll-behavior: smooth;
	}
	.product .up-sells .product-category-products::-webkit-scrollbar {
	    display: none;
		-webkit-appearance: none;
	    width: 0;
	    height: 0;
	}
	.product .up-sells .product-category-products .product-category-product {
		flex: 0 0 calc(60% - 10px);
		scroll-snap-align: center;
	}
	.product .related {
		margin: 0 20px 20px;
	}
	.product .woocommerce-variation-add-to-cart, .product .add-to-cart-simple  {
		padding: 15px 20px;
	}
	.product .tips {
		flex-wrap: wrap;
	}
	.product .product-column .tips {
		flex-wrap: nowrap;
	}
	.product .tips .tip {
		width: calc(50% - 15px)  !important;
	}
	.add-to-cart-ship {
		display: none;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.yith-wcwl-add-to-wishlist {
		top: calc(-100vw * 3 / 4 + 10px);
		right: 0;
	}
	.product-images {
		height: calc(100vw * 3 / 4);
	}
	.product .variations {
		padding: 10px 20px;
	}
	.product-description-title {
		padding: 0 20px;
	}
	.product-description {
		padding: 0 20px;
	}
	.product .up-sells h2 {
		margin: 10px 20px 20px;
	}
	.product .up-sells .product-category-products {
		flex-wrap: nowrap;
		padding: 0 20px 20px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		transition: .4s;
		-ms-overflow-style: none;  /* IE and Edge */
			scrollbar-width: none;  /* Firefox */
			scroll-behavior: smooth;
	}
	.product .up-sells .product-category-products::-webkit-scrollbar {
	    display: none;
		-webkit-appearance: none;
	    width: 0;
	    height: 0;
	}
	.product .up-sells .product-category-products .product-category-product {
		flex: 0 0 calc(60% - 10px);
		scroll-snap-align: center;
	}
	.product .related {
		margin: 0 20px 20px;
	}
	.product .woocommerce-variation-add-to-cart, .product .add-to-cart-simple  {
		padding: 15px 20px;
	}
	.add-to-cart-ship {
		margin-top: 10px;
		font-family: 'Sofia Light';
		font-size: 18px;
		line-height: 20px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	.yith-wcwl-add-to-wishlist {
		top: calc(-100vw * 3 / 4 + 10px);
		right: 0;
	}
	.product-images {
		height: calc(100vw * 3 / 4);
	}
	.product .variations {
		padding: 10px 20px;
	}
	.product-description-title {
		padding: 0 20px;
	}
	.product-description {
		padding: 0 20px;
	}
	.product .up-sells h2 {
		margin: 10px 20px 20px;
	}
	.product .up-sells .product-category-products {
		flex-wrap: nowrap;
		padding: 0 20px 20px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		transition: .4s;
		-ms-overflow-style: none;  /* IE and Edge */
			scrollbar-width: none;  /* Firefox */
			scroll-behavior: smooth;
	}
	.product .up-sells .product-category-products::-webkit-scrollbar {
	    display: none;
		-webkit-appearance: none;
	    width: 0;
	    height: 0;
	}
	.product .up-sells .product-category-products .product-category-product {
		flex: 0 0 calc(60% - 10px);
		scroll-snap-align: center;
	}
	.product .related {
		margin: 0 20px 20px;
	}
	.product .woocommerce-variation-add-to-cart, .product .add-to-cart-simple  {
		padding: 15px 20px;
	}
	.add-to-cart-ship {
		margin-top: 10px;
		font-family: 'Sofia Light';
		font-size: 18px;
		line-height: 20px;
	}
}
@media only screen and (min-width: 1025px) {
	.single-product .product {
		width: 1024px;
		margin: 0 auto;
		padding: 20px 0 0;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.yith-wcwl-add-to-wishlist {
		top: 10px;
		right: 100%;
	}
	.product-images {
		height: 384px;
	}
	.product-column {
		width: 50%;
		height: fit-content;
	}
	.product .variations {
		padding: 10px 0 10px 20px;
	}
	.product-tips {
		padding: 0 0 0 20px;
	}
	.product-measurements {
		max-width: 1024px;
		gap: 300px;
		margin: 40px auto !important;
	}
	.product .up-sells .product-category-products {
		padding: 0 0 20px;
	}
	.product .up-sells .product-category-products .product-category-product {
		flex: 0 0 calc(25% - 15px);
	}
	.product .related {
		margin: 0 0 20px;
	}
	.product .woocommerce-variation-add-to-cart, .product .add-to-cart-simple  {
		padding: 10px calc(50vw - 512px);
	}
	.add-to-cart-ship {
		margin-top: 10px;
		font-family: 'Sofia Light';
		font-size: 18px;
		line-height: 20px;
	}
}

/* COLS
--------------------- */
.checkout-row {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.checkout-col-md-4 {
	flex: 1 0 calc(33.33% - 20px);
	width: calc(33.33% - 20px);
}
.checkout-col-md-6 {
	flex: 1 0 calc(50% - 15px);
	width: calc(50% - 15px);
}
.checkout-col-md-12 {
	flex: 1 0 100%;
	width: 100%;
}
.checkout-row .form-row {
	width: 100% !important;
}
.checkout-row p.form-row {
	margin-botom: 0.5em;
}
.checkout-row .select2-selection {
	height: 34px;
	border: 1px solid #ccc;
	font-family: 'Sofia Light';
}


/* Swatches
--------------------- */
.sps-swatches {
	padding: 0 !important;
}
.sps-swatches > .swatchColor {
	border: 1px solid #dedede !important;
}
.sps-swatches > .swatchColor, .sps-swatches > .swatchColor > div {
	border-radius: 0 !important;
	width: 60px !important;
	height: 38px !important;
	background-size: cover;
}
.sps-swatches > .swatchColor > .spsTooltip {
	width: 60px !important;
	margin-left: 0 !important;
	margin-top: 10px !important;
}
.sps-swatches > .swatchColor.selected {
	border: 1px solid var(--black) !important;
}

