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

.modal-backdrop {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #00000035;
    display: none;
	top: 0;
}

.modal {
	display: none;
	position: fixed;
	background-color: #fafafa;
	padding: 0;
	margin: auto;
	overflow-y: auto;
	border-radius: 2px;
	will-change: top, opacity;
	top: 50%;
	left: 50%;
	max-width: 400px;
	transform: translate(-50%, -50%);
    z-index: 101;
	color: #000;
}

.modal p {
	padding: 20px;
}

.modal-buttons {
	display: grid;
	gap: 2px;
	padding: 2px;
	grid-template-columns: 1fr 1fr;
}

@media(max-width:430px) {
	.modal .button {
		min-width: 140px;
	}
}

.lds-spinner {
	color: official;
	display: inline-block;
	width: 80px;
	height: 80px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
	right: 0
}

#loading-backdrop {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: #00000035;
	visibility: hidden
}

#loading-backdrop.active {
	visibility: visible
}

.lds-spinner div {
	transform-origin: 40px 40px;
	animation: lds-spinner 1.2s linear infinite
}

.lds-spinner div:after {
	content: " ";
	display: block;
	position: absolute;
	top: 3px;
	left: 37px;
	width: 6px;
	height: 18px;
	border-radius: 20%;
	background: #000
}

.lds-spinner div:nth-child(1) {
	transform: rotate(0);
	animation-delay: -1.1s
}

.lds-spinner div:nth-child(2) {
	transform: rotate(30deg);
	animation-delay: -1s
}

.lds-spinner div:nth-child(3) {
	transform: rotate(60deg);
	animation-delay: -.9s
}

.lds-spinner div:nth-child(4) {
	transform: rotate(90deg);
	animation-delay: -.8s
}

.lds-spinner div:nth-child(5) {
	transform: rotate(120deg);
	animation-delay: -.7s
}

.lds-spinner div:nth-child(6) {
	transform: rotate(150deg);
	animation-delay: -.6s
}

.lds-spinner div:nth-child(7) {
	transform: rotate(180deg);
	animation-delay: -.5s
}

.lds-spinner div:nth-child(8) {
	transform: rotate(210deg);
	animation-delay: -.4s
}

.lds-spinner div:nth-child(9) {
	transform: rotate(240deg);
	animation-delay: -.3s
}

.lds-spinner div:nth-child(10) {
	transform: rotate(270deg);
	animation-delay: -.2s
}

.lds-spinner div:nth-child(11) {
	transform: rotate(300deg);
	animation-delay: -.1s
}

.lds-spinner div:nth-child(12) {
	transform: rotate(330deg);
	animation-delay: 0s
}

@keyframes lds-spinner {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

:root {
	--color-text-primary: #000000;
	--color-text-primary-inverted: #ffffff;
	--color-text-secondary: #686868;
	--color-text-secondary-inverted: #a6a6a6;
	--color-text-gray: #71717A;

	--color-bg-primary: #ffffff;
	--color-bg-primary-inverted: #272727;
	--color-bg-secondary: #f3f3f3;
	--color-bg-checkout: #f5f5f5;

	--color-border-primary: #a6a6a6;
	--color-fragrance: #111;

	--color-bg-button: #222;
	--color-bg-button-hover: #3f3f3e;
}

.text--gray {
	color: var(--color-text-gray);
}

html {
    scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.hidden {
	display: none;
}

.validation__error {
	font-size: 12px;
	color: red;
	text-align: start;
}

#toast {
	visibility: hidden;
	min-width: 250px;
	background-color: white;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	text-align: center;
	border-radius: 10px;
	padding: 16px;
	position: fixed;
	left: 50%;
	top: 100px;
	font-size: 16px;
	z-index: 9999;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	gap: 10px;
	height: fit-content;
}

.toast--error {
	color: red;	
}

.toast--success {
	color: #009d00;
}

#toast.show {
  visibility: visible;
}

#toast svg {
	width: 30px;
	height: 30px;
	min-width: 30px;
	min-height: 30px;
}

@media screen and (max-width: 600px) {
	#toast {
		width: 90%;
	}
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

/* .transition--opacity {
	transition-property: opacity;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s;
}

.opacity--0 {
	opacity: 0;
	visibility: hidden;
}

.opacity--100 {
	opacity: 1;
	visibility: visible;
} */

.mobile {
	display: block;
}

.desktop {
	display: none;
}

a {
	text-decoration: unset;
	color: var(--color-text-primary);
}

body {
	overflow-x: hidden;
	font-size: 14px;
	line-height: 1.5;
	font-family: "Marcellus", serif;
	font-weight: 400;
	font-style: normal;
}

body.locked {
	overflow: hidden;
}

.container {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    max-width: 1920px;
    margin: auto;
}

@media(max-width:500px) {
	.container {
		padding-left: 10px;
		padding-right: 10px;
	}
}

p {
	font-size: 14px;
	line-height: 1.5;
}

h1 {
	font-size: 32px;
	line-height: 1.15;
}

h2 {
	font-size: 26px;
	line-height: 1.15;
}

h3 {
	font-size: 22px;
	line-height: 1.2;
}

h4 {
	font-size: 18px;
	line-height: 1.3;
}

h5 {
	font-size: 16px;
	line-height: 1.3;
}

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

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

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

section.section:not(.login-trust):not(.register-trust),
main {
    flex: 1;
}

main {
	min-height: 100vh;
}

.section:not(.login-trust):not(.register-trust) {
	padding-top: 60px;
	padding-bottom: 60px;
}

ul,
ol {
    list-style: none;
}

button {
	background: none;
	padding: 0;
	margin: 0;
	border: none;
}

.button {
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 1rem 2.2rem;
	text-decoration: none;
	min-width: 180px;
	-webkit-appearance: none;
	appearance: none;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 10px;
	font-family: var(--font-caption-family);
	border: 0;
	text-align: center;
	height: 42px;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.button--primary {
	background: #222;
	color: white;
}

.button--primary:hover {
	opacity: 1;
	background: var(--color-bg-button-hover);
}

.button--secondary {
	border: 1px solid #222;
	background: transparent;
	color: #222;
}

.button--secondary:hover {
	background: #222;
	color: #fff;
}

.button--secondary:hover a {
	color: #fff;
}

.button--disabled,
.button:disabled {
	background: var(--color-text-secondary);
	color: var(--color-text-primary-inverted);
	cursor: not-allowed;
	pointer-events: none;
}

.button--full-width {
	width: 100%;
}

.field {
	position: relative;
	margin-bottom: 15px;
	overflow: visible;
}

.field input::-webkit-input-placeholder {
	color: transparent;
}

.field input:-ms-input-placeholder {
	color: transparent;
}

.field input::placeholder {
	color: transparent;
}

.field input[type='text'],
.field input[type='password'],
.field input[type='email'],
.field input[type='tel'],
.field input[type='number'] {
	width: 100%;
	height: 42px;
	line-height: 42px;
	background: transparent;
	border: 0;
	outline: 0;
	border-radius: 0;
	font-size: 16px;
	border-bottom: 1px solid #a1a1aa;
	font-family: var(--font-body-family);
	transition: border-bottom 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
	-moz-appearance: textfield;
	padding-left: 3px;
}

.field input[type='number'] {
	width: 100%;
	height: 42px;
	line-height: 42px;
	background: transparent;
	font-size: 16px;
	-webkit-appearance: none;
	appearance: none;
	-moz-appearance: textfield;
}

.select {
	font-size: 16px;
	border: 1px solid #a1a1aa;
	padding: 7px;
	border-radius: 3px;
}

.field__label {
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.05rem;
	margin-bottom: 12px;
	display: block;
	font-family: var(--font-body-family);
	color: var(--color-text-secondary);
}

.field--input {
	position: relative;
}

.field input[type='text']~label,
.field input[type='password']~label,
.field input[type='email']~label,
.field input[type='tel']~label,
.field input[type='number']~label {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-size: 14px;
	font-family: var(--font-body-family);
	transition: top 0.2s ease, font-size 0.2s ease;
	pointer-events: none;
	color: var(--color-text-secondary);
}

.field input[type='text']:hover,
.field input[type='text']:focus,
.field input[type='password']:hover,
.field input[type='password']:focus,
.field input[type='email']:hover,
.field input[type='email']:focus,
.field input[type='tel']:hover,
.field input[type='tel']:focus,
.field input[type='number']:hover,
.field input[type='number']:focus {
	outline-style: none;
	box-shadow: none;
	background: transparent;
}

.field input[type='text']:focus~label,
.field input[type='password']:focus~label,
.field input[type='email']:focus~label,
.field input[type='tel']:focus~label,
.field input[type='number']:focus~label,
.field input[type='text']:-webkit-autofill~label,
.field input[type='password']:-webkit-autofill~label,
.field input[type='email']:-webkit-autofill~label,
.field input[type='tel']:-webkit-autofill~label,
.field input[type='number']:-webkit-autofill~label,
.field input[type='text']:not(:placeholder-shown)~label,
.field input[type='password']:not(:placeholder-shown)~label,
.field input[type='email']:not(:placeholder-shown)~label,
.field input[type='tel']:not(:placeholder-shown)~label,
.field input[type='number']:not(:placeholder-shown)~label {
	transform: translateY(-50%);
	font-size: 10px;
	top: 0;
}

.field textarea {
	width: 100%;
	height: 120px;
	background: transparent;
	appearance: none;
	border: 1px solid #a1a1aa;
	outline: 0;
	transition: border 0.2s ease;
	padding: 20px;
	color: black;
}

.field textarea:hover,
.field textarea:focus {
	border: 1px solid black;
}

.swiper-pagination-bullet-active {
	background: #000000 !important;
}

.caption {
	text-transform: uppercase;
	font-size: 11px;
	line-height: 1.4;
	letter-spacing: 1px;
}

@media screen and (min-width: 768px) {
	body {
		font-size: 16px;
	}

	p {
		font-size: 16px;
	}

	h1 {
		font-size: 52px;
	}

	h2 {
		font-size: 36px;
	}

	h3 {
		font-size: 28px;
	}

	h4 {
		font-size: 20px;
	}

	h5 {
		font-size: 18px;
	}
}

@media screen and (min-width: 992px) {
	.mobile {
		display: none;
	}

	.desktop {
		display: block;
	}

	.container {
		padding-left: 40px;
		padding-right: 40px;
	}

	.button__primary-inverted:hover,
	.button__primary:hover {
		opacity: 0.7;
	}

	.button__secondary:hover {
		background: #222;
		color: white;
	}

	.button__secondary-inverted:hover {
		background: #fff;
		color: #222;
	}

	h1 {
		font-size: 56px;
	}

	h2 {
		font-size: 42px;
	}

	h3 {
		font-size: 34px;
	}

	h4 {
		font-size: 22px;
	}

	.field input[type='text'],
	.field input[type='password'],
	.field input[type='email'],
	.field input[type='tel'],
	.field input[type='number'] {
		font-size: 14px;
	}
}

.products__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-gap: 40px;
}

.product__image {
	display: flex;
	padding-bottom: 60%;
	position: relative;
}

.product__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	position: absolute;
}

.product__image {
	position: relative;
}

.products__heading {
	text-align: center;
	margin-bottom: 20px;
}

.product__content {
	padding: 12px;
}

.products__title {
	text-align: center;
}

.product__atc {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	width: calc(100% - 30px);
	margin: 5px 15px;
	visibility: hidden;
	height: 33px;
}

.product__group {
	margin-bottom: 8px;
	letter-spacing: 1px;
	font-size: 0.625rem;
	line-height: 1.4;
	text-transform: uppercase;
}

.product__name {
	margin-bottom: 20px;
	word-break: break-word;
	font-size: .9rem;
}

.product__price {
	font-weight: 600;
	font-size: .9rem;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.product__price--new {
	color: #dc3545 !important;
	margin-left: 10px;
}

.variation__price--new {
	color: #dc3545 !important;
	margin-left: 5px;
}

.product__price--new ~ .product__price--old {
	text-decoration: line-through;
}

.breadcrumbs {
	display: flex;
    margin: 20px 0;
	column-gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}

@media(max-width:767px) {
	.breadcrumbs {
		column-gap: 5px;
	}
}

.breadcrumbs__divider {
	font-size: .7rem;
	padding-top: 4px;
}

.breadcrumbs li:not(:last-child) .caption:hover {
	border-bottom: 1px solid #a6a6a6;
}

.social__wrapper {
	display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
	margin-bottom: 24px;
}

.social__wrapper.align--start {
	justify-content: flex-start;
}

.social__login {
	background: #000;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 1rem 2.2rem;
    text-decoration: none;
    min-width: 180px;
    -webkit-appearance: none;
    appearance: none;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 10px;
    font-family: var(--font-caption-family);
    border: 0;
    text-align: center;
    height: 42px;
    white-space: nowrap;
    transition: all .3s ease;
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	z-index: 1;
	gap: 8px;
}

.login-method:hover .social__login {
	background: var(--color-bg-button-hover);
}

.js__facebookLogin {
	pointer-events: unset;
}

.social__login svg {
	width: 20px;
	height: 20px;
}

.login-method {
	width: 180px;
	height: 42px;
	position: relative;
	overflow: hidden;
}

.login__divider {
	margin-bottom: 1.5rem;
	font-size: 0.8rem;
	/* border-bottom: 1px solid #e4e4e4; */
}

@media screen and (min-width: 992px) {
	.products__heading {
		margin-bottom: 40px;
	}

	.products__list {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-gap: 40px;
	}

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

	.product__image:hover .product__atc {
		opacity: 1;
		visibility: visible;
	}
}

.section__full-height {
	height: auto;
}

.row--align-center {
	margin: 50px 0 25px;
	display: flex;
	justify-content: center;
}

@media screen and (min-width: 992px) {
	.section__full-height {
		height: calc(100vh - 135px);
	}
		
	.row--align-center {
		margin: 25px 0 15px;
	}
}
