@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;600&family=Tenor+Sans&family=Syne:wght@400&display=swap");

@font-face {
	font-family: "ProbaPro";
	font-weight: 300;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/proba-pro/ProbaPro-Light.otf") format("opentype");
}

@font-face {
	font-family: "ProbaPro";
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/proba-pro/ProbaPro-Regular.otf") format("opentype");
}

:root {
	--pure-black: #000000;
	--pure-ink: #111111;
	--pure-stone: #e8e8e1;
	--pure-muted: #b6b6b6;
	--pure-white: #ffffff;
	--pure-body: "Outfit", sans-serif;
	--pure-heading: "Tenor Sans", sans-serif;
	--colorBtnPrimary: #111111;
	--colorBtnPrimaryText: #ffffff;
	--colorLink: #000000;
	--colorTextBody: #000000;
	--colorBody: #ffffff;
	--colorBodyDim: #f2f2f2;
	--colorBorder: #e8e8e1;
	--colorAnnouncement: #0f0f0f;
	--colorAnnouncementText: #ffffff;
	--grid-gutter: 17px;
	--drawer-gutter: 20px;
}

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

body {
	font-family: var(--pure-body);
	color: var(--pure-ink);
	background: var(--pure-white);
	letter-spacing: 0.025em;
	margin: 0;
}

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

.pure-section {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 28px;
}

.pure-home h2,
.pure-home h3,
.pure-hero__title {
	font-family: var(--pure-heading);
	letter-spacing: 0em;
	text-transform: uppercase;
	margin: 0;
}

.pure-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border: 1px solid var(--pure-white);
	font-family: var(--pure-body);
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-size: 14px;
	transition: all 0.2s ease;
	background: transparent;
	color: var(--pure-white);
	cursor: pointer;
}

.pure-button--light {
	background: var(--pure-white);
	color: var(--pure-black);
	border-color: var(--pure-white);
}

.pure-button--ghost {
	background: transparent;
	color: var(--pure-white);
}

.pure-button--dark {
	background: var(--pure-black);
	color: var(--pure-white);
	border-color: var(--pure-black);
}

.pure-button:hover {
	opacity: 0.85;
}

/* Hero */
.pure-hero {
	position: relative;
	--hero-w-max: 1800px;
	--hero-w-min: 500px;
	--hero-x-at-max: 0%;
	--hero-x-at-min: 70%;
	--interpolation-coefficient: clamp(
		0,
		calc((100vw - var(--hero-w-min)) / (var(--hero-w-max) - var(--hero-w-min))),
		1
	);
	--hero-y: 35%;
	min-height: clamp(620px, 82vh, 820px);
	display: flex;
	align-items: flex-end;
	color: var(--pure-white);
	overflow: hidden;
}

.pure-hero--main {
	/* min-height: clamp(640px, 90vh, min(900px, 60vh)); */
	min-height: 730px;
	font-size: 35px;
}

.pure-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%), var(--hero-desktop);
	background-size: cover;
	background-position: calc(
		var(--hero-x-at-min) +
		(var(--hero-x-at-max) - var(--hero-x-at-min)) *
		var(--interpolation-coefficient)
	) var(--hero-y);
	z-index: 0;
}

.pure-hero__inner {
	position: relative;
	z-index: 1;
	padding: 120px 0 110px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
	text-align: center;
}

.pure-hero-main__text {
	margin-left: max(15%, calc((100vw - 1500px) / 2 + 40px));
}

@media screen and (max-width: 1200px) {
	.pure-hero-main__text {
		margin-left: 80px;
	}
}

.pure-hero__inner--left {
	align-items: flex-start;
	text-align: left;
}

.pure-hero--main .pure-hero__inner {
	gap: 13px;
}

.pure-hero__eyebrow {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 14px;
	font-weight: 600;
}

.pure-hero__title {
	--hero-font-size-base: 26px;
	font-size: var(--hero-font-size-base);
	line-height: 1.05;
	text-transform: uppercase;
}

.pure-hero--main .pure-hero__title {
	font-family: "ProbaPro", "Proba Pro", "Syne", sans-serif;
	text-transform: none;
	display: flex;
	flex-direction: column;
	font-weight: 300;
}

.pure-hero--main .pure-hero__title-line {
	display: block;
	text-transform: none;
	line-height: 1.25;
	letter-spacing: 0.02em;
}

.pure-hero--main .pure-hero__title-line--second-line {
	text-transform: uppercase;
	font-size: calc(var(--hero-font-size-base) * 1.06);
	letter-spacing: 0.08em;
	margin-top: 3px;
}

.pure-hero--main .pure-hero__actions {
	gap: 12px;
}

.pure-hero--main .pure-button--ghost {
	background: var(--pure-white);
	color: var(--pure-black);
	border-color: var(--pure-white);
}

.pure-hero__actions {
	display: flex;
	gap: 14px;
}

.pure-featured,
.pure-categories,
.pure-follow {
	padding: 100px 0 80px;
}

.pure-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 30px;
}

.pure-section__head--stacked {
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
	text-align: center;
}

.pure-section__head--stacked .pure-link-button {
	align-self: center;
}

.pure-section__head h2 {
	font-size: clamp(26px, 3vw, 36px);
	line-height: 1;
}

.pure-link-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 14px;
	color: var(--pure-ink);
	border: 1px solid var(--pure-ink);
	padding: 10px 18px;
}

.pure-product-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.pure-product-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	scroll-snap-align: start;
}

.pure-product-card--viewall {
	display: none;
	color: var(--pure-ink);
	font-size: 16px;
	text-transform: none;
	letter-spacing: 0.02em;
}

.pure-product-card__image {
	position: relative;
	width: 100%;
	aspect-ratio: 87 / 111;
	background: var(--pure-stone);
	overflow: hidden;
	cursor: pointer;
}

.pure-product-card__image:not(.pure-product-card__image--viewall)::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--card-image);
	background-size: cover;
	background-position: center;
	transform: scale(1);
	transition: transform 0.5s ease-in-out;
	will-change: transform;
	pointer-events: none;
	z-index: 0;
}

.pure-product-card__image:not(.pure-product-card__image--viewall)::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.12);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
	z-index: 1;
}

.pure-product-card__image:not(.pure-product-card__image--viewall):hover::before,
.pure-product-card__image:not(.pure-product-card__image--viewall):focus-visible::before {
	transform: scale(1.02);
}

.pure-product-card__image:not(.pure-product-card__image--viewall):hover::after,
.pure-product-card__image:not(.pure-product-card__image--viewall):focus-visible::after {
	opacity: 1;
}

.pure-product-card__image--viewall {
	background: var(--pure-white);
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 16px;
}

.pure-viewall-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border: 1px solid var(--pure-stone);
	padding: 18px 28px;
	font-family: var(--pure-body);
	font-weight: 300;
	line-height: 1.35;
}

.pure-viewall-line {
	display: block;
}

.pure-viewall-count:empty {
	display: none;
}

.pure-viewall-count:not(:empty) {
	margin-right: 4px;
	display: inline-block;
}


.pure-product-card__meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.pure-product-card__title {
	font-family: var(--pure-body);
	font-weight: 300;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0;
}

.pure-product-card__price {
	font-size: 14px;
	color: var(--pure-ink);
}

.pure-hero--gift::before {
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%), var(--hero-desktop);
}

.pure-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.pure-category-card {
	position: relative;
	padding-bottom: 100%;
	background-image: var(--card-image);
	background-size: cover;
	background-position: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--pure-white);
	overflow: hidden;
}

.pure-category-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.35) 100%);
	z-index: 0;
}

.pure-category-card span {
	position: relative;
	z-index: 1;
	font-size: 18px;
	font-family: var(--pure-body);
}

.pure-follow__head {
	text-align: center;
	max-width: 620px;
	margin: 0 auto 30px;
}

.pure-follow__head h2 {
	font-size: clamp(28px, 4vw, 38px);
}

.pure-follow__head p {
	margin: 8px 0 0;
	color: #4a4a4a;
}

.pure-follow__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.pure-follow__tile {
	padding-bottom: 100%;
	background-image: var(--card-image);
	background-size: cover;
	background-position: center;
}

/* Footer */
.pure-footer {
	border-top: 1px solid var(--pure-stone);
	padding: 60px 0 40px;
	background: var(--pure-white);
	color: var(--pure-ink);
	overflow: hidden;
}

.pure-footer__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.pure-footer__col h4 {
	margin: 0 0 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 16px;
}

.pure-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
	font-size: 14px;
}

.pure-footer__copy {
	margin: 0 0 12px;
	color: #4a4a4a;
}

.pure-footer__form-row {
	display: flex;
	gap: 10px;
}

.pure-footer__form input {
	flex: 1;
	padding: 12px 14px;
	border: 1px solid var(--pure-stone);
	font-family: var(--pure-body);
	letter-spacing: 0.02em;
	border-radius: 0;
}

.pure-footer__social {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 14px;
}

.pure-footer__social a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--pure-stone);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.pure-footer__social a:hover {
	border-color: var(--pure-ink);
	transform: translateY(-2px);
}

.pure-footer__bottom {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--pure-stone);
	padding-top: 16px;
	font-size: 13px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.pure-footer__brand {
	font-family: var(--pure-heading);
	font-size: 18px;
}

.screen-reader-text {
	position: absolute;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

/* Responsive */
@media (max-width: 1100px) {
	.pure-product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.pure-product-grid--bestsellers {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
	.pure-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.pure-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.pure-follow__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.pure-hero {
		min-height: 68vh;
		--hero-y: top;
	}
	.pure-hero--main {
		min-height: 75vh;
	}
	.pure-hero--main .pure-hero__inner.pure-hero-main__text {
		align-items: center;
		text-align: center;
		margin-inline: auto;
		padding-left: 18px;
		padding-right: 18px;
	}
	.pure-hero--main .pure-hero__title {
		--hero-font-size-base: min(4.4vw, 20px);
	}
	.pure-hero::before {
		background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%), var(--hero-desktop);
	}
	.pure-hero__inner {
		padding: 100px 0 70px;
	}
	.pure-section {
		padding: 0 18px;
	}
	.pure-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}
	.pure-section__head:not(.pure-section__head--stacked) {
		flex-direction: column;
		align-items: flex-start;
	}
	.pure-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.pure-follow {
		padding-bottom: 60px;
	}
	.pure-footer__grid {
		grid-template-columns: 1fr;
	}
	.pure-footer__form-row {
		flex-direction: column;
	}
	.pure-footer__bottom {
		flex-direction: column;
		gap: 8px;
		align-items: flex-start;
	}
}

@media (max-width: 768px) {
	.page-width--flush-small {
		padding: 0;
	}
	.pure-product-grid--bestsellers {
		display: flex;
		gap: 16px;
		overflow-x: auto;
		padding: 0 0 8px;
		scroll-padding-inline: 18px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}
	.pure-product-grid--bestsellers .pure-product-card {
		flex: 0 0 300px;
		max-width: 70%;
	}
	.pure-product-grid--bestsellers .pure-product-card:first-child {
		margin-left: 18px;
	}
	.pure-product-grid--bestsellers .pure-product-card:last-child {
		margin-right: 18px;
	}
	.pure-product-grid--bestsellers .pure-product-card--viewall {
		display: flex;
	}
}

/* Customer reviews */
.pure-reviews {
	padding: 84px 0 96px;
	background: #f5f2ed;
	overflow: hidden;
}

.pure-reviews__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 34px;
}

.pure-reviews__eyebrow {
	margin: 0 0 8px;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #77736d;
}

.pure-reviews__head h2 {
	margin: 0;
	font: 400 clamp(38px, 4.6vw, 66px)/.98 var(--pure-body);
	letter-spacing: -.04em;
}

.pure-reviews__controls {
	display: flex;
	gap: 8px;
}

.pure-reviews__arrow {
	width: 42px;
	height: 42px;
	border: 1px solid rgba(37, 34, 31, .18);
	border-radius: 999px;
	background: transparent;
	color: #292623;
	font: inherit;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease;
}

.pure-reviews__arrow:hover,
.pure-reviews__arrow:focus-visible {
	background: #fff;
	border-color: rgba(37, 34, 31, .38);
}

.pure-reviews__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scroll-padding-inline: 1px;
	padding: 0 0 8px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	align-items: flex-start;
}

.pure-reviews__track::-webkit-scrollbar {
	display: none;
}

.pure-review-shot {
	flex: 0 0 min(42vw, 560px);
	margin: 0;
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid rgba(37, 34, 31, .11);
	overflow: hidden;
}

.pure-review-shot img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 640px) {
	.pure-reviews {
		padding: 52px 0 58px;
	}

	.pure-reviews .page-width {
		padding-left: 0;
		padding-right: 0;
	}

	.pure-reviews__head {
		padding: 0 18px;
		margin-bottom: 24px;
	}

	.pure-reviews__head h2 {
		font-size: 42px;
	}

	.pure-reviews__controls {
		display: none;
	}

	.pure-reviews__track {
		gap: 12px;
		padding: 0 18px 8px;
		scroll-padding-inline: 18px;
	}

	.pure-review-shot {
		flex-basis: min(88vw, 420px);
	}
}
