:root {
	--text-color: #333;
	--font-family-sans: 'Jost', sans-serif;
	--font-family-serif: 'Quattrocento', serif;
	--bg-primary: #fff;
	--bg-secondary: #fff;
	--bg-secondary-darker: #f3f3f3;
	--bg-images: #f6f6f6;
	--bg-header: var(--bg-secondary);
	--bg-header-darker: #111;
	--color-primary: #cfa954;
	--color-primary-lighter: #d5b56e;
	--color-primary-darker: #bb9f60;
	--color-onaccent: #fff;
	--bg-danger: #ef4444;
	--color-danger: #dc2626;
	--bg-success: #22c55e;
	--color-success: #16a34a;
	--border-primary: #e0e0e0;
	--shadow-small: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-medium: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-large: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
	--shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
	--shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
	--header-bar-height: 32px;
	--header-top-height: 65px;
	--header-bottom-height: 47px;
	--header-bar-height-mobile: 38px;
	--header-top-height-mobile: 95px;
}

@font-face {
	font-family: 'Jost';
	src: url('/assets/fonts/Jost/Jost-italic-variable.woff2') format('woff2');
	font-weight: 100 900;
	font-style: italic;
}

@font-face {
	font-family: 'Jost';
	src: url('/assets/fonts/Jost/Jost-variable.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
}

@font-face {
	font-family: 'Libre Baskerville';
	src: url('/assets/fonts/LibreBaskerville/LibreBaskerville-bold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Libre Baskerville';
	src: url('/assets/fonts/LibreBaskerville/LibreBaskerville-italic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
}

@font-face {
	font-family: 'Libre Baskerville';
	src: url('/assets/fonts/LibreBaskerville/LibreBaskerville-regular.woff2') format('woff2');
	font-weight: 400;
}

@font-face {
	font-family: 'Quattrocento';
	src: url('/assets/fonts/Quattrocento/Quattrocento-bold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Quattrocento';
	src: url('/assets/fonts/Quattrocento/Quattrocento-regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	padding: 0;
	margin: 0;
	background-color: var(--bg-secondary);
	height: 100%;
}

body {
	padding: 0;
	margin: 0;
	font-family: var(--font-family-sans);
	color: var(--text-color);
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.content {
	flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-serif);
	margin: 0;
}

a {
	color: unset;
	text-decoration: none;
}

p {
	margin: 0;
}

button {
	cursor: pointer;
	border: 0;
	background-color: unset;
	border-radius: unset;
	font-family: var(--font-family-sans);
	padding: 0;
	color: var(--text-color);
}

button[disabled] {
	opacity: 0.7;
	cursor: not-allowed;
}

.container {
	max-width: 1500px;
	margin: auto;
	padding: 0 80px;
}

.spinner-global {
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
}

img,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

input,
select,
textarea {
	padding: 8px 15px;
	border: 1px solid var(--border-primary);
	font-family: var(--font-family-sans);
	color: var(--text-color);
	width: 100%;
	font-size: 16px;
	border-radius: 3px;
}

select {
	border: 1px solid transparent;
	border-right: 10px solid var(--bg-primary);
	box-shadow: 0px 0px 0px 1px var(--border-primary);
	padding-left: 10px;
	cursor: pointer;
}

input[type='checkbox'] {
	width: unset;
	position: relative;
	cursor: pointer;
}

input[type='text'],
input[type='password'],
input[type='number'],
input[type='tel'],
textarea {
	box-shadow: var(--shadow-small);
}

textarea {
	max-width: 100%;
	resize: vertical;
}

input[readonly] {
	border: 0;
	box-shadow: none;
	padding: 0;
	border-radius: 0;
	background-color: transparent;
}

label {
	margin-bottom: 5px;
	display: block;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	user-select: none;
}

@media screen and (max-width: 1024px) {
	.container {
		padding: 0 40px;
	}
}

@media screen and (max-width: 768px) {
	.container {
		padding: 0 20px;
	}
}

@keyframes fade-in-entrance {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* Hide Google reCAPTCHA badge (but please note that links to
reCAPTCHA policies must always be displayed where it is used) */
.grecaptcha-badge {
	visibility: hidden;
}

/* || HEADER */

.header__bar {
	background-color: var(--bg-header-darker);
	color: var(--color-onaccent);
	min-height: var(--header-bar-height);
	height: var(--header-bar-height);
	display: flex;
	justify-content: center;
	align-items: center;
}

.header__bar-content {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
}

.header {
	z-index: 90;
}

.header__top {
	height: var(--header-top-height);
	background-color: var(--bg-header);
	width: 100%;
	padding-top: 17px;
}

.header__top-container {
	align-items: start;
	display: grid;
	grid-template-columns: 350px 1fr 350px;
	gap: 80px;
}

.header__hamburger,
.header__mobile-items {
	display: none;
}

.header__search input {
	padding-top: 5px;
	padding-bottom: 5px;
	border: 0;
	border: 1px solid var(--border-primary);
	background-color: transparent;
}

.header__search .search__button {
	color: #c1c1c1 !important;
}

.header__search input::placeholder {
	color: #c1c1c1 !important;
}

.header__search input:focus-visible {
	border: 0 !important;
	box-shadow: none !important;
}

.header__logo {
	position: relative;
	top: -12px;
}

.header__logo a {
	display: block;
	width: max-content;
	margin: auto;
}

.header__logo img {
	max-height: 55px;
	position: relative;
	top: 1px;
	left: -3px;
}

.header__bottom {
	padding: 0 50px;
	background-color: var(--bg-header);
	position: relative;
	height: var(--header-bottom-height);
}

.header__bottom-container {
	display: flex;
	gap: 30px;
	justify-content: center;
}

.header__categories,
.header__quick-links {
	display: flex;
	font-size: 18px;
}

.header__quick-links {
	display: flex;
	gap: 35px;
	align-items: center;
	font-size: 18px;
}

@media screen and (max-width: 1350px) {
	.header__top-container {
		grid-template-columns: 280px 1fr 280px;
	}

	.header__bottom {
		padding-left: 10px;
		padding-right: 10px;
	}

	.header__bottom-container {
		padding: 0;
	}
}

@media screen and (max-width: 1200px) {
	.header__top-container {
		grid-template-columns: 200px 1fr 200px;
	}
}

@media screen and (max-width: 1024px) {
	.header__top-container {
		grid-template-columns: 180px 1fr 180px;
		gap: 20px;
	}
}

@media screen and (max-width: 768px) {
	.header__bar {
		height: var(--header-bar-height-mobile);
		padding: 5px 10px;
		text-align: center;
	}

	.header__top {
		background-color: var(--bg-primary);
		height: var(--header-top-height-mobile);
		padding: 5px 20px 10px 20px;
		position: relative;
		z-index: 20;
	}

	.header__top-container {
		grid-template-columns: 50px 1fr 50px !important;
		grid-template-areas:
			'hamburger logo user'
			'search search search';
		gap: 0;
		padding: 0;
		align-items: center;
	}

	.header__logo {
		grid-area: logo;
		top: 0;
	}

	.header__logo img {
		max-height: 50px;
		top: -2px;
	}

	.header__hamburger {
		display: block;
		grid-area: hamburger;
		width: 100%;
		height: 80%;
		display: flex;
		align-items: center;
		position: relative;
		top: 1px;
	}

	.header__mobile-items {
		display: block;
	}

	.header__hamburger-closer {
		display: none;
	}

	.header__hamburger--open .header__hamburger-closer {
		display: block;
	}

	.header__hamburger--open .header__hamburger-opener {
		display: none;
	}

	.header__search {
		grid-area: search;
	}

	.header__bottom {
		background-color: var(--bg-primary);
		position: fixed;
		left: 0;
		top: calc(var(--header-bar-height-mobile) + var(--header-top-height-mobile));
		width: 100%;
		height: 100%;
		transform: translateX(-100vw);
		transition: transform 0.2s ease-in-out;
		visibility: hidden !important;
		padding: 10px 10px 0 10px;
	}

	.header__bottom--open {
		transform: translateX(0);
		visibility: visible !important;
	}

	.header__bottom-container {
		display: block;
		height: 100%;
	}

	.header__bottom .header__categories {
		display: block;
		transition: transform 0.2s ease-in-out;
		height: 100%;
	}

	.header__bottom--submenu-open .header__categories {
		transform: translateX(-100vw);
	}

	.header__search input {
		background-color: var(--bg-primary);
		border: 1px solid var(--border-primary);
	}

	.header__search .search__button {
		color: #6d6d6d !important;
	}

	.header__search input::placeholder {
		color: #6d6d6d !important;
	}

	.header__mobile-selectors {
		display: flex;
		flex-flow: row;
		gap: 20px;
		align-items: center;
		justify-content: center;
		margin-top: 30px;
	}
}

@media screen and (max-width: 380px) {
	.header__logo img {
		max-height: 40px;
		top: -3px;
	}
}

/* || MENUITEM */

.menu-item > a {
	padding: 8px 20px 15px 20px;
	display: block;
	transition: color 0.3s;
	position: relative;
	-webkit-tap-highlight-color: transparent;
	font-size: 17px;
	color: #444;
	white-space: nowrap;
}

.menu-item:hover > a {
	color: var(--color-primary);
}

.menu-item__triangle {
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 12px solid var(--border-primary);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	visibility: hidden;
	opacity: 0;
	z-index: 99;
}

.menu-item__triangle::after {
	content: '';
	position: absolute;
	top: 2px;
	left: -9px;
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
	border-bottom: 11px solid var(--bg-primary);
}

.menu-item--open .menu-item__triangle {
	visibility: visible;
	opacity: 1;
}

.menu-item__submenu {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	width: 100%;
	left: 0;
	background-color: var(--bg-primary);
	border-top: 1px solid var(--border-primary);
	border-bottom: 1px solid var(--border-primary);
	max-height: calc(
		100vh - var(--header-bar-height) - var(--header-top-height) - var(--header-bottom-height)
	);
	overflow: auto;
	background: rgb(255 255 255 / 95%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.menu-item--open .menu-item__submenu {
	visibility: visible;
	opacity: 1;
}

.menu-item__submenu-go-back {
	display: none;
}

.menu-item__submenu-content {
	padding-top: 30px;
	padding-bottom: 30px;
}

.menu-item__submenu-items {
	display: grid;
	column-gap: 50px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.menu-item__submenu-group-title {
	font-weight: 600;
	font-size: 17px;
	margin-bottom: 5px;
	color: #444;
}

.menu-item__submenu-item {
	font-size: 16px;
	color: #444;
	padding: 3px 0;
}

.menu-item__submenu-item > a {
	transition: color 0.3s;
	-webkit-tap-highlight-color: transparent;
}

.menu-item__submenu-item > a:hover {
	color: var(--color-primary);
}

@media screen and (max-width: 1200px) {
	.menu-item > a {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media screen and (max-width: 1024px) {
	.menu-item > a {
		font-size: 17px;
	}
}

@media screen and (max-width: 960px) {
	.menu-item > a {
		font-size: 16px;
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media screen and (max-width: 768px) {
	.menu-item > a {
		border-bottom: 1px solid var(--border-primary);
		padding: 15px 10px !important;
	}

	.menu-item:nth-last-child(2) > a {
		border-bottom: 0;
	}

	.menu-item__triangle {
		display: none;
	}

	.menu-item__submenu {
		background-color: var(--bg-secondary);
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		max-height: calc(
			100% - var(--header-bar-height-mobile) - var(--header-top-height-mobile)
		) !important;
		transform: translateX(calc(100vw * 2));
		transition: transform 0.2s ease-in-out !important;
		visibility: hidden !important;
		opacity: 1 !important;
		border: 0;
		box-shadow: none;
		z-index: 10;
		padding: 0 !important;
	}

	.menu-item--open .menu-item__submenu {
		visibility: visible !important;
		transform: translateX(100vw);
	}

	.menu-item__submenu-go-back {
		display: flex;
		align-items: center;
		font-size: 18px;
		margin-bottom: 15px;
	}

	.menu-item__submenu-content {
		padding: 0;
		border: 0;
	}

	.menu-item__submenu-items {
		display: block;
		width: 100%;
	}

	.menu-item__submenu-group-title {
		padding: 15px 10px;
		font-size: 16px;
		border: 1px solid var(--border-primary);
		background-color: var(--bg-images);
	}

	.menu-item__submenu-item {
		max-width: unset;
	}

	.menu-item__submenu-item > a {
		display: block;
		max-width: unset;
		font-size: 16px;
		padding: 15px 10px;
		border-bottom: 1px solid var(--border-primary);
	}

	.menu-item__submenu-item:first-child > a {
		padding-top: 0 !important;
	}

	.menu-item__submenu-item:last-child > a {
		border-bottom: 0;
	}
}

/* || NAVIGATION */

.header__navigation {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: end;
}

.header__navigation-link {
	font-size: 16px;
}

.header__navigation-link-login {
	font-weight: 500;
	background-color: var(--bg-secondary);
	padding: 4px 11px;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header__account {
	position: relative;
}

.header__account-name {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color-primary);
	font-size: 14px;
	padding: 6px 0px;
	height: 40px;
	font-family: var(--font-family-sans);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 3px;
}

.header__account-name img {
	width: 23px;
}

.header__account-submenu {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	transition: opacity 0.5s, visibility 0.5s;
	background-color: var(--bg-primary);
	right: 0;
	margin-top: 15px;
	padding: 15px 30px;
	min-width: 300px;
	text-align: center;
	box-shadow: var(--shadow-large);
}

.header__account-submenu--open {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.5s, visibility 0s;
}

.header__navigation .locale-switcher,
.header__navigation .currency-switcher {
	background-color: transparent;
	border-right: 0;
	box-shadow: none;
	width: max-content;
	font-size: 14px;
	height: 40px;
	padding-left: 0;
	padding-right: 0;
}

.header__navigation .locale-switcher option,
.header__navigation .currency-switcher option {
	background-color: var(--bg-secondary);
}

@media screen and (max-width: 768px) {
	.header__navigation .locale-switcher,
	.header__navigation .currency-switcher {
		display: none;
	}
}

/* || SEARCH */

.search {
	position: relative;
}

.search__button {
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(calc(-50% + 2px));
}

.search input {
	padding-right: 40px;
}

.search input::-webkit-search-cancel-button {
	display: none;
}

/* || FOOTER */

.footer {
	background-color: var(--bg-secondary);
	padding-top: 50px;
	padding-bottom: 50px;
	margin-top: 50px;
}

.footer__content {
	display: grid;
	grid-template-columns: auto auto auto auto;
	gap: 100px;
}

.footer__logo {
	position: relative;
	top: -15px;
}

.footer__logo img {
	max-height: 50px;
	position: relative;
	left: -5px;
}

.footer__tagline {
	font-size: 18px;
}

.footer__menu-item {
	display: block;
	margin-bottom: 5px;
	font-size: 17px;
}

.footer__bar {
	padding-top: 15px;
	margin-top: 30px;
	border-top: 1px solid var(--border-primary);
	display: flex;
	justify-content: space-between;
	gap: 50px;
	align-items: center;
}

.footer__bar-selectors {
	display: flex;
	flex-flow: row wrap;
	gap: 20px;
	align-items: center;
	justify-content: center;
}

.footer__bar-selectors select {
	width: 180px;
	background-color: transparent;
	border-right: 10px solid transparent;
}

@media screen and (max-width: 1024px) {
	.footer {
		margin-top: 25px;
		padding-bottom: 30px;
	}

	.footer__content {
		grid-template-columns: 1fr;
		gap: 0px;
	}

	.footer__logo {
		margin-bottom: 30px;
		top: 0;
	}

	.footer__logo img {
		left: 0;
		margin: auto;
	}

	.footer__tagline {
		max-width: 300px;
		margin: auto;
		text-align: center;
	}

	.footer__menu-1,
	.footer__menu-2,
	.footer__menu-3 {
		text-align: center;
	}

	.footer__menu-2 {
		margin-bottom: 30px;
	}

	.footer__bar {
		flex-flow: row wrap-reverse;
		justify-content: center;
		gap: 20px;
		border-top: 0;
	}
}

/* || HOMEPAGE */

.home__heading {
	text-align: center;
}

.home__title {
	font-weight: 400;
	font-size: 30px;
}

.home__section {
	padding: 40px 0 150px 0;
}

.home__slideshow-wrapper {
	margin-bottom: 50px;
}

.home__slideshow {
	position: relative;
}

.home__slideshow .slideshow {
	background-color: #fff0db;
}

.home__slideshow .splide__arrows svg {
	fill: #aaa;
}

.home__slideshow .splide__arrow--prev {
	left: -40px !important;
}

.home__slideshow .splide__arrow--next {
	right: -40px !important;
}

.home__slideshow > .slideshow {
	height: 100% !important;
}

.home__slideshow .splide__slide {
	width: 100% !important;
}

.home__slide {
	width: 100%;
	display: flex;
	align-items: center;
	height: 280px;
	background-position: center top;
}

.home__slide-content {
	color: #222;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	column-gap: 50px;
	background: #ffdead8a;
	background: radial-gradient(
		circle,
		rgba(255, 222, 173, 0.93) 10%,
		rgba(255, 222, 173, 0.6) 57%
	);
	padding: 0 50px;
}

.home__slide-center {
	text-align: center;
	max-width: 700px;
}

.home__slide-title {
	font-family: var(--font-family-serif);
	font-size: 40px;
	text-transform: capitalize;
	margin-bottom: 5px;
	font-weight: 600;
}

.home__slide-description {
	font-size: 23px;
}

.home__slide-button {
	display: block;
	color: var(--color-primary-darker);
	font-size: 17px;
	background-color: var(--color-primary);
	width: fit-content;
	min-width: 150px;
	margin: auto;
	margin-top: 15px;
	padding: 12px 20px;
	border-radius: 5px;
	color: #ffffff;
	font-size: 19px;
}

.home__slideshow-bar {
	display: flex;
	gap: 50px;
	background-color: #ffdead;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	flex-flow: row wrap;
	row-gap: 10px;
}

.home__slideshow-bar-item {
	display: flex;
	align-items: center;
	gap: 7px;
}

.home__slideshow-bar-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.home__recently-active-merchants {
	margin-bottom: 50px;
	display: none;
	text-align: center;
}

.home__recently-active-merchants img {
	margin: auto;
}

.home__recently-active-merchant {
	text-align: center;
}

.home__recently-active-merchant-logo {
	width: 120px;
	border-radius: 100%;
}

.home__recently-active-merchant-name {
	margin-top: 5px;
	font-size: 17px;
	font-weight: 500;
}

.home__content {
	position: relative;
	z-index: 10;
}

.home .recently-viewed__heading {
	padding-bottom: 50px;
	text-align: center;
}

.home .recently-viewed__title {
	font-weight: 400;
	font-size: 30px;
}

.home .recently-viewed-products .product-slideshow {
	margin-bottom: 150px;
}

.home .recently-viewed-products .product-card__name {
	margin-top: 10px;
	font-weight: 400;
}

.home__topics {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.home__topic {
	padding: 50px;
	color: var(--text-color);
	display: flex;
	gap: 30px;
	background-color: var(--bg-secondary);
	height: 100%;
	position: relative;
	min-height: 250px;
	border: 1px solid var(--border-primary);
	border-radius: 3px;
}

.home__topic-link {
	display: block;
}

.home__topic-text {
	width: 60%;
}

.home__topic-title {
	font-size: 33px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 8px;
	position: relative;
}

.home__topic-title > svg {
	transition: transform 0.5s;
	will-change: transform;
	position: absolute;
	margin-left: 10px;
	margin-top: 3px;
}

.home__topic-link:hover svg {
	transform: translateX(7px);
}

.home__topic-description {
	font-size: 18px;
	max-width: 600px;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.home__topic-image {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
}

.home__about {
	padding-top: 10px;
	padding-bottom: 100px;
	background-color: var(--bg-primary);
	padding: 30px 50px;
	margin-top: 20px;
}

.home__about-introduction {
	text-align: center;
	font-size: 19px;
	margin-bottom: 20px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.home__description {
	padding-top: 10px;
	padding-bottom: 100px;
	max-width: 800px;
}

@media screen and (max-width: 1200px) {
	.home__section {
		padding-bottom: 100px;
	}

	.home .recently-viewed-products .product-slideshow {
		margin-bottom: 100px;
	}

	.home__topics {
		row-gap: 100px;
		margin-top: 90px;
	}

	.home__topic {
		padding: 80px 60px 40px 60px;
	}

	.home__topic-text {
		width: 100%;
	}

	.home__topic-image {
		left: 50%;
		top: -10px;
		transform: translate(-50%, -50%);
		max-width: 150px;
	}
}

@media screen and (max-width: 900px) {
	.home__slide {
		background-size: 580px;
	}

	.home__slide-content {
		background: radial-gradient(
			circle,
			rgba(255, 222, 173, 0.93) 20%,
			rgba(255, 222, 173, 0.7) 90%
		);
	}

	.home__slide-title {
		font-size: 38px;
	}

	.home__slide-description {
		font-size: 20px;
	}

	.home__slide-button {
		font-size: 17px;
	}
}

@media screen and (max-width: 768px) {
	.home__slideshow-wrapper {
		margin-top: 15px;
	}

	.home__slideshow {
		overflow: hidden;
	}

	.home__slide {
		height: 307px;
	}

	.home__slide-title {
		font-size: 34px;
	}

	.home__slide-description {
		font-size: 19px;
	}

	.home__slide-button {
		font-size: 16px;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.home__slideshow-bar {
		flex-flow: column;
		gap: 10px;
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.home__topics {
		grid-template-columns: 1fr;
	}

	.home__slideshow .splide__arrow--prev {
		left: 0px !important;
	}

	.home__slideshow .splide__arrow--next {
		right: 0px !important;
	}

	.home__topic {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media screen and (max-width: 480px) {
	.home__slide-description {
		font-size: 17px;
	}

	.home__about {
		padding-left: 0;
		padding-right: 0;
	}
}

/* || CATALOG PAGE */

.catalog,
.catalog--loading {
	margin-top: 20px;
	width: 100%;
}

.catalog .breadcrumbs {
	margin-bottom: 5px;
}

.catalog__related-topics {
	margin-top: 10px;
}

.catalog__related-topics-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 15px;
	margin-bottom: 30px;
}

.catalog__related-topic {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: 18px;
	border: 1px solid var(--border-primary);
	padding: 18px 30px 18px 20px;
	width: max-content;
	transition: border 0.3s;
	width: 100%;
	border-radius: 3px;
}

.catalog__related-topic:hover {
	border: 1px solid var(--text-color);
}

.catalog__related-topic-image {
	max-height: 70px;
	width: auto;
}

.catalog__related-topic-description {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
}

.catalog__list {
	margin: 15px 0 15px 0;
	display: flex;
	gap: 50px;
}

.catalog__products {
	width: 100%;
}

.catalog__children-category {
	padding: 2px 0;
	transition: color 0.5s;
	display: block;
	width: fit-content;
}

.catalog__content {
	font-size: 15px;
	border: 1px solid var(--border-primary);
	padding: 20px;
	margin-top: 50px;
	border-radius: 3px;
}

.catalog__content-title {
	font-weight: 500;
	margin-bottom: 5px;
	font-size: 17px;
	font-family: var(--font-family-sans);
}

@media screen and (max-width: 1200px) {
	.catalog__related-topics-list {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media screen and (max-width: 900px) {
	.catalog__related-topics-list {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 768px) {
	.catalog {
		margin-top: 20px;
	}

	.catalog__related-topics-list {
		grid-template-columns: 1fr;
	}
}

/* || PRODUCT PAGE */

.product__main {
	display: grid;
	grid-column-gap: 60px;
	column-gap: 60px;
	align-items: start;
	grid-template-columns: 65% 1fr;
	grid-template-rows: auto 1fr;
	grid-template-areas:
		'images head'
		'images info';
	padding: 40px 0;
	background-color: var(--bg-primary);
}

.product__images {
	grid-area: images;
	position: relative;
}

.product__head {
	grid-area: head;
}

.product__info {
	grid-area: info;
}

.product__images .favorite-button {
	position: absolute;
	right: 20px;
	top: 15px;
}

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

.product__name {
	font-size: 33px;
	font-weight: 400;
}

.product__price {
	font-size: 21px;
	font-weight: 600;
	margin-top: 5px;
}

.product__attributes {
	margin: 20px 0 30px 0;
}

.product__attribute {
	margin-bottom: 15px;
	font-size: 17px;
}

.product__attribute-key {
	font-size: 20px;
}

.product__attribute-value {
	font-weight: 300;
}

.product__merchant {
	margin-top: 20px;
	border: 1px solid var(--border-primary);
	padding: 20px 25px;
	border-radius: 3px;
}

.product__merchant-head,
.product__merchant-summary {
	display: flex;
	gap: 20px;
}

.product__merchant-head {
	align-items: start;
	justify-content: space-between;
}

.product__merchant-logo {
	min-width: 75px;
	min-height: 75px;
	width: 75px;
	height: 75px;
	border-radius: 100%;
	background-color: var(--bg-secondary);
}

.product__merchant-name {
	font-family: var(--font-family-serif);
	font-weight: 600;
	font-size: 18px;
}

.product__merchant-location {
	font-size: 18px;
}

.product__merchant-details-link {
	text-decoration: underline;
}

.product__merchant .follow-button {
	border: 1px solid var(--border-primary);
	padding: 6px 21px;
	position: relative;
	top: -8px;
	right: -5px;
}

.product__merchant-contacts {
	margin-top: 20px;
}

.product__merchant-email,
.product__merchant-landline,
.product__merchant-phone,
.product__merchant-whatsapp {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}

.product__merchant-email span,
.product__merchant-landline span,
.product__merchant-phone span,
.product__merchant-whatsapp span {
	transition: color 0.3s;
}

.product__merchant-email:hover span,
.product__merchant-landline:hover span,
.product__merchant-phone:hover span,
.product__merchant-whatsapp:hover span {
	color: var(--color-primary-darker);
}

.product__merchant-whatsapp {
	margin-bottom: 0;
}

.product__merchant-whatsapp img {
	max-width: 25px;
	padding: 1px;
}

.product__details {
	margin-top: 50px;
	margin-bottom: 45px;
	padding-top: 10px;
	padding-bottom: 50px;
}

.product__details-title {
	font-size: 25px;
	margin-bottom: 10px;
}

.product__details-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.product__sheet {
	display: grid;
	grid-template-columns: auto 1fr;
}

.product__sheet-key,
.product__sheet-value {
	padding: 10px 20px;
	border-bottom: 1px solid var(--border-primary);
}

.product__sheet-key {
	padding-left: 0;
	font-size: 15px;
	font-weight: 500;
}

.product__sheet-key:nth-last-child(2),
.product__sheet-value:nth-last-child(1) {
	border-bottom: 0;
}

.product__description {
	font-size: 18px;
	font-weight: 300;
	white-space: pre-line;
}

.product__merchant-details {
	padding-top: 5px;
}

.product__merchant-details-head {
	display: flex;
	gap: 20px;
	max-width: 600px;
}

.product__merchant-specialisation {
	font-style: italic;
}

.product__merchant-details .product__merchant-logo {
	min-width: 90px;
	min-height: 90px;
	width: 90px;
	height: 90px;
}

.product__merchant-text {
	display: flex;
	margin-top: 20px;
	gap: 40px;
}

.product__merchant-history,
.product__merchant-company {
	font-size: 18px;
	font-weight: 300;
}

.product__merchant-history {
	max-width: 600px;
}

.product__merchant-company {
	max-width: 400px;
}

.product__merchant-hours-title,
.product__merchant-legal-title {
	font-weight: 500;
}

.product__merchant-legal {
	margin-top: 15px;
}

.product__merchant-products {
	margin-top: 80px;
	margin-bottom: 80px;
}

.product__merchant-product-heading {
	margin-bottom: 30px;
}

.product__merchant-products-title {
	font-family: var(--font-family-serif);
	font-size: 28px;
}

.product__merchant-products-link {
	display: block;
	font-size: 18px;
	margin-top: 10px;
	text-decoration: underline;
}

@media screen and (max-width: 1200px) {
	.product__main {
		grid-template-columns: 50% 1fr;
	}
}

@media screen and (max-width: 768px) {
	.product__main {
		padding-top: 20px;
		grid-template-columns: 1fr;
		grid-template-areas:
			'head'
			'images'
			'info';
	}

	.product__images {
		width: 100%;
	}

	.product__info {
		width: 100%;
	}

	.product .breadcrumbs {
		justify-content: center;
	}

	.product__name {
		margin-bottom: 30px;
		text-align: center;
	}

	.product__details {
		padding-top: 10px;
		padding-bottom: 25px;
		margin-top: 0;
		margin-bottom: 30px;
	}

	.product__details-content {
		display: block;
	}

	.product__description {
		margin-bottom: 20px;
	}

	.product__merchant-products {
		margin-top: 30px;
	}

	.product__merchant-products-title {
		font-size: 23px;
	}
}

/* || MERCHANT PAGE */

.merchant__cover {
	margin-bottom: -110px;
	min-height: 300px;
	object-fit: cover;
	border-radius: 5px;
}

.merchant__logo {
	min-width: 150px;
	min-height: 150px;
	width: 150px;
	height: 150px;
	border-radius: 100%;
	background-color: var(--bg-images);
	margin: auto;
	border: 6px solid var(--bg-secondary);
	z-index: 10;
	position: relative;
}

.merchant__name {
	margin-top: 5px;
	text-align: center;
}

.merchant__specialisation {
	margin-top: 5px;
	font-size: 19px;
	text-align: center;
	max-width: 600px;
	margin: auto;
	font-style: italic;
}

.merchant__location {
	font-size: 19px;
	text-align: center;
	margin-bottom: 10px;
	margin-top: 3px;
}

.merchant__details {
	margin-top: 30px;
	margin-bottom: 30px;
	padding: 30px;
	border: 1px solid var(--border-primary);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	border-radius: 3px;
}

.merchant__contacts,
.merchant__legal {
	margin-top: 20px;
}

.merchant__history-title,
.merchant__hours-title,
.merchant__legal-title {
	margin-bottom: 5px;
}

.merchant__contacts-title {
	margin-bottom: 8px;
}

.merchant__about {
	display: flex;
	gap: 40px;
}

.merchant__history-content,
.merchant__company {
	font-size: 18px;
	font-weight: 300;
	white-space: pre-line;
}

.merchant .contact-button {
	display: block;
	max-width: -moz-fit-content;
	max-width: fit-content;
	font-size: 15px;
	padding: 11px 18px;
	margin: auto;
}

.merchant__email,
.merchant__landline,
.merchant__phone,
.merchant__whatsapp {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}

.merchant__email span,
.merchant__landline span,
.merchant__phone span,
.merchant__whatsapp span {
	transition: color 0.3s;
}

.merchant__email:hover span,
.merchant__landline:hover span,
.merchant__phone:hover span,
.merchant__whatsapp:hover span {
	color: var(--color-primary-darker);
}

.merchant__whatsapp img {
	max-width: 25px;
	padding: 1px;
}

.merchant__catalog-title {
	margin-top: 60px;
	margin-bottom: 20px;
	font-size: 31px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.merchant__cover {
		margin-bottom: -90px;
	}

	.merchant__logo {
		min-width: 130px;
		min-height: 130px;
		width: 130px;
		height: 130px;
	}

	.merchant__details {
		display: block;
	}

	.merchant__about {
		display: block;
	}

	.merchant__hours {
		margin-top: 15px;
	}

	.merchant__company {
		max-width: unset;
	}
}

/* || LOGIN PAGE */

.login {
	max-width: 400px;
	margin: auto;
	padding-top: 50px;
}

.login__title {
	font-size: 50px;
	text-align: center;
	font-weight: 700;
	line-height: 1;
}

.login__description {
	font-size: 20px;
	margin-top: 10px;
	margin-bottom: 40px;
	text-align: center;
}

.login__input {
	margin-bottom: 30px;
}

.login__password-reset {
	text-align: right;
	margin-top: 3px;
	text-decoration: underline;
	font-size: 15px;
}

.login__button {
	font-size: 16px;
	background-color: var(--color-primary);
	border: 0;
	padding: 15px 50px;
	font-weight: 600;
	color: var(--color-onaccent);
	display: block;
	margin: 50px auto 10px auto;
	width: 100%;
}

.login__do-sign-up {
	margin-bottom: 50px;
	text-align: center;
}

.login-do-sign-up-link {
	color: var(--color-primary);
	margin-left: 3px;
	font-weight: 600;
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	.login {
		padding-left: 20px;
		padding-right: 20px;
	}

	.login__title {
		font-size: 40px;
	}
}

/* || PRODUCT LISTS */

.products__list {
	display: grid;
	grid-template-columns: repeat(var(--product-columns), 1fr);
	column-gap: 30px;
	row-gap: 60px;
}

.products__no-product {
	text-align: center;
	padding: 40px 30px;
	border: 1px solid var(--border-primary);
	color: #777;
	border-radius: 3px;
}

.products .pagination {
	margin: 50px 0;
}

@media screen and (max-width: 1024px) {
	.products__list {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media screen and (max-width: 768px) {
	.products__list {
		grid-template-columns: 1fr 1fr;
		column-gap: 20px;
	}
}

/* || PASSWORD RESET PAGE */

.password-reset {
	max-width: 400px;
	margin: auto;
	padding-top: 50px;
}

.password-reset__title {
	font-size: 50px;
	text-align: center;
	font-weight: 700;
	line-height: 1;
}

.password-reset__description {
	font-size: 20px;
	margin-top: 10px;
	margin-bottom: 40px;
	text-align: center;
}

.password-reset__description span {
	font-weight: 500;
}

.password-reset__input {
	margin-bottom: 20px;
}

.password-reset__button {
	font-size: 16px;
	background-color: var(--color-primary);
	border: 0;
	padding: 15px 50px;
	font-weight: 600;
	color: var(--color-onaccent);
	display: block;
	margin: 20px auto 20px auto;
	width: 100%;
}

.password-reset__go-back {
	text-align: center;
}

.password-reset__go-back a {
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	.password-reset {
		padding-left: 20px;
		padding-right: 20px;
	}

	.password-reset__title {
		font-size: 40px;
	}
}

/* || PASSWORD RESET CONFIRM PAGE */

.password-reset-confirm {
	max-width: 400px;
	margin: auto;
	padding-top: 50px;
}

.password-reset-confirm__title {
	font-family: var(--font-family-serif);
	font-size: 50px;
	text-align: center;
	font-weight: 700;
	line-height: 1;
}

.password-reset-confirm__description {
	font-size: 20px;
	margin-top: 10px;
	margin-bottom: 40px;
	text-align: center;
}

.password-reset-confirm__input {
	margin-bottom: 30px;
}

.password-reset-confirm__button {
	font-size: 16px;
	background-color: var(--color-primary);
	border: 0;
	padding: 15px 50px;
	font-weight: 600;
	color: var(--color-onaccent);
	display: block;
	margin: 30px auto 20px auto;
	width: 100%;
}

.password-reset-confirm__login {
	text-align: center;
	width: 100%;
	font-size: 16px;
	text-decoration: underline;
}

.password-reset-confirm__error {
	text-align: center;
}

.password-reset-confirm__error-icon {
	color: var(--color-danger);
}

.password-reset-confirm__error-title {
	font-size: 29px;
	margin-top: 10px;
	font-weight: 500;
	color: var(--color-danger);
	line-height: 1.2;
	margin-bottom: 8px;
}

.password-reset-confirm__error-description {
	font-size: 20px;
}

.password-reset-confirm__error-redirect {
	text-decoration: underline;
	margin-top: 25px;
	display: block;
	font-size: 18px;
}

@media screen and (max-width: 768px) {
	.password-reset-confirm {
		padding-left: 20px;
		padding-right: 20px;
	}

	.password-reset-confirm__title {
		font-size: 40px;
	}
}

/* || SIGN-UP PAGE */

.sign-up {
	max-width: 400px;
	margin: auto;
	padding-top: 50px;
}

.sign-up__title {
	font-size: 50px;
	text-align: center;
	font-weight: 700;
	line-height: 1;
}

.sign-up__description {
	font-size: 20px;
	margin-top: 10px;
	margin-bottom: 40px;
	text-align: center;
}

.sign-up__description > span {
	font-weight: 500;
}

.sign-up__input {
	margin-bottom: 30px;
}

.sign-up__input--accept {
	margin-top: 40px;
	display: flex;
	align-items: start;
	gap: 3px;
}

.sign-up__input--accept label a {
	text-decoration: underline;
}

.sign-up__button {
	font-size: 16px;
	background-color: var(--color-primary);
	border: 0;
	padding: 15px 50px;
	font-weight: 600;
	color: var(--color-onaccent);
	display: block;
	margin: 50px auto 10px auto;
	width: 100%;
}

.sign-up__do-login {
	margin-bottom: 50px;
	text-align: center;
}

.sign-up__do-login-link {
	color: var(--color-primary);
	margin-left: 3px;
	font-weight: 600;
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	.sign-up {
		padding-left: 20px;
		padding-right: 20px;
	}

	.sign-up__title {
		font-size: 40px;
	}
}

/* || SIGN-UP CONFIRM PAGE */

.sign-up-confirm {
	max-width: 400px;
	margin: auto;
	padding-top: 50px;
}

.sign-up-confirm__title {
	font-size: 50px;
	text-align: center;
	font-weight: 700;
	line-height: 1;
}

.sign-up-confirm__description {
	font-size: 20px;
	margin-top: 10px;
	margin-bottom: 40px;
	text-align: center;
}

.sign-up-confirm__input {
	margin-bottom: 30px;
}

.sign-up-confirm__input--read-only input {
	border: 0;
	outline: none;
	box-shadow: none;
	padding: 0;
}

select[id='gender'] option:first-child,
select[id='country'] option:first-child,
select[id='sub-region'] option:first-child {
	display: none;
}

.sign-up-confirm__calendar-input-wrapper {
	position: relative;
}

.sign-up-confirm__calendar {
	position: absolute;
	left: 0;
	bottom: 0;
	top: calc(100%);
	z-index: 999999;
	display: block !important;
	width: 100%;
}

.sign-up-confirm__button {
	font-size: 16px;
	background-color: var(--color-primary);
	border: 0;
	padding: 15px 50px;
	font-weight: 600;
	color: var(--color-onaccent);
	display: block;
	margin: 50px auto 50px auto;
	width: 100%;
}

.sign-up-confirm__error {
	text-align: center;
}

.sign-up-confirm__error-icon {
	color: var(--color-danger);
}

.sign-up-confirm__error-title {
	font-size: 29px;
	margin-top: 10px;
	font-weight: 500;
	color: var(--color-danger);
	line-height: 1.2;
	margin-bottom: 8px;
}

.sign-up-confirm__error-description {
	font-size: 20px;
}

@media screen and (max-width: 768px) {
	.sign-up-confirm {
		padding-left: 20px;
		padding-right: 20px;
	}

	.sign-up-confirm__title {
		font-size: 40px;
	}
}

/* || PRODUCT CARDS */

.product-card__image {
	margin-bottom: 10px;
	position: relative;
	background-color: var(--bg-images);
	overflow: hidden;
}

.product-card__image > a {
	display: block;
}

.product-card__image > a > img {
	width: auto;
	margin: 0 auto;
	max-height: 250px;
	transition: transform 0.3s;
	will-change: transform;
}

.product-card__image:hover > a > img {
	transform: scale(1.05);
}

.product-card__availability {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #00000030;
	color: var(--color-onaccent);
	text-shadow: 0px 2px 6px black;
	font-size: 28px;
	font-weight: 600;
}

.product-card__merchant-name {
	font-weight: 300;
	font-size: 14px;
	font-family: var(--font-family-serif);
}

.product-card__title {
	margin-top: 3px;
	font-size: 18px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.2;
}

.product-card--unavailable .product-card__title,
.product-card--unavailable .product-card__merchant {
	opacity: 0.7;
}

.product-card__century {
	margin-bottom: 3px;
}

.product-card__price {
	margin-top: 7px;
	font-weight: 500;
	font-size: 15px;
}

.product-card__description {
	overflow-wrap: anywhere;
	font-size: 15px;
}

@media screen and (max-width: 768px) {
	.product-card__title {
		font-size: 16px;
	}
}

/* || PAGINATION */

.pagination {
	display: flex;
	justify-content: end;
	font-size: 18px;
	gap: 20px;
	align-items: center;
}

.pagination__page {
	padding: 10px;
	width: 50px;
	border: 1px solid var(--border-primary);
	text-align: center;
}

.pagination__page--ellipsis,
.pagination__page--previous,
.pagination__page--next {
	border: 0;
	padding: 0;
	width: unset;
}

.pagination__page--previous,
.pagination__page--next {
	display: flex;
	align-items: center;
	gap: 3px;
}

.pagination__page--selected {
	font-weight: 500;
	background-color: var(--bg-secondary);
}

/* || BREADCRUMBS */

.breadcrumbs {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	gap: 8px;
}

.breadcrumbs__crumb {
	font-size: 14px;
}

/* || CONTACT BUTTON */

.contact-button {
	width: 100%;
	padding: 14px 20px;
	font-size: 19px;
	font-weight: 500;
	background-color: var(--color-primary);
	color: var(--color-onaccent);
	transition: background-color 0.3s;
	border-radius: 3px;
}

.contact-button:hover {
	background-color: var(--color-primary);
}

.message-form {
	width: 600px;
	background-color: var(--bg-primary);
	padding: 50px;
	position: relative;
	max-height: 80%;
	overflow-y: auto;
}

.message-form__close {
	position: absolute;
	right: 25px;
	top: 15px;
	cursor: pointer;
	color: #666;
	background-color: transparent;
	border: none;
	will-change: top;
	transition: 0.3s;
}

.message-form__close:hover {
	color: var(--text-color);
}

.message-form__status {
	text-align: center;
}

.message-form__status-icon--success {
	color: var(--color-primary);
}

.message-form__status-icon--failure {
	color: var(--color-danger);
}

.message-form__status-title {
	font-size: 21px;
	margin-top: 10px;
	font-weight: 500;
}

.message-form__status-sub-title {
	font-size: 18px;
}

.message-form__title {
	font-family: var(--font-family-serif);
	font-size: 31px;
	font-weight: 700;
}

.message-form__product-wrapper {
	margin-top: 25px;
}

.message-form__product-label {
	margin-bottom: 5px;
	display: block;
	font-size: 14px;
	font-weight: 500;
}

.message-form__product {
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid var(--border-primary);
	padding: 10px;
}

.message-form__product-image {
	max-height: 60px;
}

.message-form__product-title {
	font-family: var(--font-family-serif);
}

.message-form__input {
	margin-top: 25px;
}

.message-form__checkbox {
	display: flex;
	align-items: start;
	gap: 3px;
}

.message-form__checkbox > input {
	margin-left: 0;
}

.message-form__checkbox label a {
	text-decoration: underline;
}

.message-form__recaptcha-policies {
	margin-top: 10px;
}

.message-form__error {
	margin-top: 25px;
	color: var(--color-danger);
	display: none;
	align-items: center;
	gap: 7px;
	font-weight: 500;
}

.message-form__error--show {
	display: flex;
}

.message-form__error-icon {
	position: relative;
	bottom: 1px;
}

.message-form__buttons {
	display: flex;
	justify-content: end;
	gap: 15px;
	margin-top: 30px;
}

.message-form__cancel-button,
.message-form__send-button {
	font-size: 16px;
	border: 0;
	padding: 12px 20px;
	font-weight: 500;
}

.message-form__cancel-button {
	border: 1px solid var(--border-primary);
	border-radius: 3px;
}

.message-form__send-button {
	background-color: var(--color-primary);
	color: var(--color-onaccent);
	min-width: 180px;
	transition: background-color 0.3s;
	border-radius: 3px;
}

.message-form__send-button:hover {
	background-color: var(--color-primary);
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}

.overlay--open {
	pointer-events: all;
	background-color: #00000075;
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.message-form {
		width: 100%;
		height: 80%;
		bottom: 0;
		transform: translateY(100%);
		transition: transform 0.5s;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}

	.overlay--open .message-form {
		transform: translateY(0);
	}

	.message-form__close {
		top: 10px !important;
	}

	.message-form__close svg {
		width: 35px;
		height: 35px;
		stroke-width: 2px;
	}

	.message-form__buttons {
		display: block;
	}

	.message-form__cancel-button,
	.message-form__send-button {
		display: block;
		width: 100%;
	}

	.message-form__cancel-button {
		margin-bottom: 15px;
	}

	.overlay {
		align-items: end;
	}
}

@media screen and (max-width: 480px) {
	.message-form {
		padding: 30px;
		padding-top: 50px;
	}
}

/* || BENEFITS */

.benefits {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 30px;
}

.benefits__benefit-tile {
	text-align: center;
	padding: 20px;
	margin-bottom: 3px;
}

.benefits__benefit-tile-title {
	font-size: 21px;
	font-weight: 500;
}

@media screen and (max-width: 1200px) {
	.benefits {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 768px) {
	.benefits {
		grid-template-columns: 1fr;
	}
}

/* || SLIDESHOW */

/* This fixes the issue that causes the slideshow content to be
displayed after a delay */
.splide {
	visibility: visible !important;
}

.splide__arrow {
	background-color: transparent !important;
}

.splide__arrow svg {
	width: 30px !important;
	height: 30px !important;
}

.splide__slide {
	margin-right: var(--slideshow-gap) !important;
}

@media screen and (max-width: 768px) {
	.splide__slide {
		margin-right: 20px !important;
	}
}

/* || PRODUCT GALLERY */

.product-gallery {
	display: flex;
	flex-direction: row-reverse;
	gap: 30px;
	max-height: 650px;
}

.product-gallery__main-image {
	max-height: 650px;
	border-radius: 3px;
	position: relative;
}

.product-gallery .splide__track .splide__list .splide__slide {
	margin: auto !important;
	width: 100%;
}

.product-gallery .splide__pagination {
	bottom: -40px;
}

.product-gallery .splide__pagination__page {
	background-color: #ccc;
}

.product-gallery .splide__pagination__page.is-active {
	background: #333;
}

.product-gallery__image-container {
	width: 100%;
	cursor: zoom-in;
}

.product-gallery__main-image img {
	max-height: 650px;
	margin: auto;
	width: auto;
}

.product-gallery__availability {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #00000030;
	color: var(--color-onaccent);
	text-shadow: 0px 2px 6px black;
	font-size: 45px;
	font-weight: 600;
	pointer-events: none;
}

.product-gallery__thumbnails {
	position: relative;
}

.product-gallery__thumbnails-overlay {
	position: absolute;
	left: 0;
	top: 0;
	min-width: 100%;
	min-height: 100%;
	background-color: transparent;
	pointer-events: none;
	background: linear-gradient(
		0deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(15, 15, 15, 0) 15% 15%,
		rgba(0, 0, 0, 0) 100%
	);
	z-index: 8;
}

.product-gallery__thumbnails-list {
	display: flex;
	flex-flow: column;
	gap: 15px;
	min-width: 70px;
	overflow-y: auto;
	overflow-x: hidden;
	position: relative;
	-ms-overflow-style: none;
	scrollbar-width: none;
	max-height: 100%;
}

.product-gallery__thumbnails-list::-webkit-scrollbar {
	display: none;
}

.product-gallery__thumbnail {
	width: 70px;
	height: 70px;
	min-width: 70px;
	min-height: 70px;
	border: 1px solid var(--border-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	transition: border 0.3s;
	border-radius: 3px;
	cursor: pointer;
}

.product-gallery__thumbnail:last-child {
	z-index: 10;
}

.product-gallery__thumbnail--selected {
	border: 1px solid var(--text-color);
}

.product-gallery__thumbnail:hover {
	border: 1px solid var(--text-color);
}

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

@media screen and (max-width: 1200px) {
	.product-gallery__main-image img {
		max-height: 500px;
	}
}

@media screen and (max-width: 1024px) {
	.product-gallery__main-image img {
		max-height: 400px;
	}
}

@media screen and (max-width: 768px) {
	.product-gallery {
		padding-bottom: 50px;
	}

	.product-gallery__thumbnails {
		display: none;
	}

	.product-gallery .splide__pagination {
		bottom: -25px;
	}
}

/* || RECAPTCHA POLICIES */

.recaptcha-policies {
	font-size: 14px;
	max-width: 500px;
	color: #555;
}

.recaptcha-policies a {
	text-decoration: underline;
}

/* || SPINNER */

.spinner {
	width: var(--spinner-size);
	height: var(--spinner-size);
	border: var(--spinner-border-width) solid var(--border-primary);
	border-bottom-color: var(--color-primary);
	border-radius: 50%;
	display: none;
	box-sizing: border-box;
	animation: spinner-rotation 0.8s linear infinite;
	margin-left: auto;
	margin-right: auto;
}

.spinner--show {
	display: block;
}

@keyframes spinner-rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* || TOAST */

.toast {
	width: calc(100% - 20px);
	max-width: 600px;
	position: fixed;
	left: 50%;
	transform: translateX(-50%) translateY(-50%) scale(0.95);
	background-color: var(--color-primary);
	color: var(--color-onaccent);
	z-index: 99999;
	top: 50px;
	padding: 30px 40px;
	box-shadow: var(--shadow-large);
	font-weight: 600;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0s, visibility 0s, transform 0s;
	will-change: opacity, transform;
	border-radius: 5px;
	display: flex;
	gap: 10px;
	align-items: start;
}

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

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

.toast--visible {
	transition: opacity 0.2s, visibility 0s, transform 0.4s;
	visibility: visible;
	opacity: 1;
	transform: translateX(-50%) translateY(0) scale(1);
}

.toast > svg {
	min-width: 30px;
	margin-top: -5px;
}

/* || PASSWORD INPUT */

.password-input {
	position: relative;
}

.password-input__visibility-icon {
	position: absolute;
	bottom: 0;
	z-index: 99999;
	width: 50px;
	right: 0;
	height: 38px;
}

.password-input__visibility-icon img {
	margin: auto;
}

.password-input input {
	padding-right: 50px;
}
