.vivart-collection-hero {
	--vivart-hero-bg: #ffffff;
	--vivart-hero-media-bg: #ffffff;
	--vivart-hero-text: #0d0d0d;
	--vivart-hero-accent: #6cbab1;
	--vivart-hero-line: rgba(13, 13, 13, 0.58);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	width: 100%;
	min-height: clamp(650px, calc(100svh - 80px), 820px);
	margin: -1px 0 0;
	border-top: 0;
	border-bottom: 1px solid var(--vivart-hero-line);
	background: var(--vivart-hero-bg);
	color: var(--vivart-hero-text);
	overflow: hidden;
}

.vivart-collection-hero,
.vivart-collection-hero * {
	box-sizing: border-box;
}

.vivart-collection-copy {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding: clamp(54px, 7vw, 120px);
}

.vivart-collection-copy-inner {
	width: min(100%, 580px);
}

.vivart-collection-eyebrow {
	margin: 0 0 20px;
	color: var(--vivart-hero-accent);
	font-size: 13px;
	line-height: 1.4;
}

.vivart-collection-title {
	margin: 0;
	line-height: 1;
	color: inherit;
}

.vivart-collection-description {
	max-width: 530px;
	margin-top: clamp(28px, 3vw, 44px);
	font-size: clamp(16px, 1.1vw, 19px);
	line-height: 1.55;
}

.vivart-collection-description p {
	margin: 0;
}

.vivart-collection-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	margin-top: 30px;
	padding: 12px 25px;
	border: 1px solid currentColor;
	color: inherit;
	font-size: 15px;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease;
}

.vivart-collection-button:hover,
.vivart-collection-button:focus-visible {
	border-color: #6cbab1;
	background: #6cbab1;
	color: #fff;
}

.vivart-collection-slider {
	position: relative;
	min-width: 0;
	min-height: 100%;
	border-left: 1px solid var(--vivart-hero-line);
	background: var(--vivart-hero-media-bg);
}

.vivart-collection-slides,
.vivart-collection-slide {
	position: absolute;
	inset: 0;
}

.vivart-collection-slide {
	z-index: 0;
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 420ms ease, visibility 420ms ease;
}

.vivart-collection-slide.is-active {
	z-index: 1;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.vivart-collection-image-link {
	position: relative;
	display: block;
	min-height: 0;
	overflow: hidden;
	background: transparent;
	line-height: 0;
}

.vivart-collection-product-image {
	position: absolute;
	inset: -2px;
	display: block;
	width: calc(100% + 4px);
	max-width: none;
	height: calc(100% + 4px);
	margin: 0;
	object-fit: cover;
	object-position: center;
	transition: transform 700ms ease;
}

.vivart-collection-slide.is-active .vivart-collection-image-link:hover .vivart-collection-product-image {
	transform: scale(1.015);
}

.vivart-collection-product-meta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 28px;
	min-height: 160px;
	padding: 28px 34px 70px;
	border-top: 1px solid var(--vivart-hero-line);
	background: var(--vivart-hero-bg);
}

.vivart-collection-product-title {
	margin: 0 0 7px;
	line-height: 1.15;
	color: inherit;
}

.vivart-collection-product-title a,
.vivart-collection-product-link {
	color: inherit;
}

.vivart-collection-product-title a {
	text-decoration: none;
}

.vivart-collection-price {
	font-size: 16px;
	line-height: 1.35;
}

.vivart-collection-price del {
	opacity: 0.55;
}

.vivart-collection-product-link {
	align-self: center;
	margin-right: clamp(95px, 10vw, 150px);
	font-size: 15px;
	text-underline-offset: 4px;
}

.vivart-collection-slider-footer {
	position: absolute;
	right: 26px;
	bottom: 22px;
	left: 34px;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
}

.vivart-collection-dots,
.vivart-collection-controls {
	display: flex;
	align-items: center;
	gap: 7px;
	pointer-events: auto;
}

.vivart-collection-dot {
	width: 8px;
	height: 8px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: currentColor;
	cursor: pointer;
	opacity: 0.32;
}

.vivart-collection-dot.is-active {
	background: var(--vivart-hero-accent);
	opacity: 1;
}

.vivart-collection-controls button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 1px solid currentColor;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.72);
	color: inherit;
	cursor: pointer;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.vivart-collection-controls button:hover,
.vivart-collection-controls button:focus-visible {
	border-color: #6cbab1;
	background: #6cbab1;
	color: #fff;
	transform: translateY(-2px);
}

.vivart-arrow-icon {
	display: block;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (max-width: 1024px) {
	.vivart-collection-copy {
		padding: 54px 40px;
	}

	.vivart-collection-product-link {
		margin-right: 92px;
	}
}

@media (max-width: 767px) {
	.vivart-collection-hero {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.vivart-collection-copy {
		justify-content: flex-start;
		padding: 64px 20px 70px;
	}

	.vivart-collection-title {
		line-height: 1;
	}

	.vivart-collection-description {
		margin-top: 25px;
		font-size: 16px;
	}

	.vivart-collection-slider {
		min-height: 650px;
		border-top: 1px solid var(--vivart-hero-line);
		border-left: 0;
	}

	.vivart-collection-slide {
		grid-template-rows: minmax(0, 1fr) auto;
	}

	.vivart-collection-product-meta {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 18px;
		min-height: 165px;
		padding: 23px 18px 68px;
	}

	.vivart-collection-product-link {
		align-self: start;
		margin: 3px 0 0;
	}

	.vivart-collection-slider-footer {
		right: 17px;
		bottom: 17px;
		left: 18px;
	}

	.vivart-collection-controls button {
		width: 42px;
		height: 42px;
	}
}

/* Homepage editorial sections. */
.vivart-home-sections {
	--vivart-home-bg: #ffffff;
	--vivart-home-media: #ffffff;
	--vivart-home-text: #0d0d0d;
	--vivart-home-line: rgba(13, 13, 13, 0.5);
	width: 100%;
	margin: 0;
	background: var(--vivart-home-bg);
	color: var(--vivart-home-text);
}

.vivart-home-sections,
.vivart-home-sections * {
	box-sizing: border-box;
}

.vivart-home-products-section {
	padding: clamp(58px, 6vw, 110px) clamp(18px, 3vw, 56px);
	background: var(--vivart-home-bg);
}

.vivart-home-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
}

.vivart-home-section-header h2 {
	margin: 0;
	line-height: 1;
	color: inherit;
}

.vivart-home-outline-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 11px 22px;
	border: 1px solid currentColor;
	color: inherit;
	text-decoration: none;
}

.vivart-home-outline-link:hover,
.vivart-home-outline-link:focus-visible {
	border-color: #6cbab1;
	background: #6cbab1;
	color: #fff;
}

.vivart-new-arrivals-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 34px);
	row-gap: clamp(42px, 5vw, 76px);
}

.vivart-home-product-card {
	min-width: 0;
	margin: 0;
}

.vivart-home-product-image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: transparent;
}

.vivart-home-product-image img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	object-position: center;
	-webkit-user-drag: none;
	user-select: none;
	transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.vivart-home-product-card:hover .vivart-home-product-image img {
	transform: scale(1.025);
}

.vivart-home-product-card h3 {
	min-height: 50px;
	margin: 14px 0 4px;
	font-family: "GFS Didot", serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.25;
	color: inherit;
}

.vivart-home-product-card h3 a {
	color: inherit;
	text-decoration: none;
	transition: color 180ms ease;
}

.vivart-home-product-card h3 a:hover,
.vivart-home-product-card h3 a:focus-visible {
	color: #6cbab1;
}

.vivart-home-product-price {
	font-family: "Noto Sans", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.35;
}

.vivart-home-product-price del {
	opacity: 0.55;
}

.vivart-promo-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 30px);
	padding: clamp(58px, 7vw, 120px) clamp(18px, 3vw, 56px);
	background: #fff;
}

.vivart-promo-card {
	position: relative;
	min-height: clamp(420px, 42vw, 650px);
	margin: 0;
	overflow: hidden;
	background: var(--vivart-home-media);
}

.vivart-promo-card-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	overflow: hidden;
}

.vivart-promo-card > img {
	position: absolute;
	inset: 0;
}

.vivart-promo-card-media img,
.vivart-promo-card > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.vivart-promo-card::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.02) 66%);
	content: '';
	pointer-events: none;
}

.vivart-promo-card:hover .vivart-promo-card-media img,
.vivart-promo-card:hover > img {
	transform: scale(1.07);
}

.vivart-promo-overlay {
	position: absolute;
	right: 24px;
	bottom: 38px;
	left: 24px;
	z-index: 2;
	color: #fff;
	text-align: center;
	pointer-events: none;
}

.vivart-promo-overlay p {
	margin: 0 0 10px;
}

.vivart-promo-overlay h3 {
	margin: 0 0 24px;
	line-height: 1.1;
	color: inherit;
}

.vivart-promo-overlay a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 22px;
	background: #fff;
	color: #0d0d0d;
	text-decoration: none;
	pointer-events: auto;
	transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.vivart-promo-overlay a:hover,
.vivart-promo-overlay a:focus-visible {
	background: #6cbab1;
	color: #fff;
	box-shadow: 0 10px 24px rgba(13, 13, 13, 0.2);
	transform: translateY(-3px);
}

.vivart-top-products {
	overflow: hidden;
}

.vivart-products-carousel-track {
	display: flex;
	gap: clamp(18px, 2vw, 34px);
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-x: contain;
	touch-action: pan-x;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.vivart-products-carousel-track::after {
	content: '';
	flex: 0 0 68%;
}

.vivart-products-carousel-track img {
	-webkit-user-drag: none;
	user-select: none;
}

.vivart-products-carousel-track::-webkit-scrollbar {
	display: none;
}

.vivart-home-product-card.is-carousel-card {
	flex: 0 0 calc((100% - clamp(36px, 4vw, 68px)) / 3);
	scroll-snap-align: start;
}

.vivart-products-carousel-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 48px;
}

.vivart-products-carousel-dots {
	display: flex;
	align-items: center;
	gap: 7px;
}

.vivart-products-carousel-dots button {
	width: 8px;
	height: 8px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.25;
}

.vivart-products-carousel-dots button.is-active {
	background: #6cbab1;
	opacity: 1;
}

.vivart-products-carousel-controls {
	display: flex;
	gap: 8px;
}

.vivart-products-carousel-controls button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 1px solid currentColor;
	border-radius: 50%;
	background: transparent;
	color: inherit;
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.vivart-products-carousel-controls button:hover,
.vivart-products-carousel-controls button:focus-visible {
	border-color: #6cbab1;
	background: #6cbab1;
	color: #fff;
	transform: translateY(-2px);
}

.vivart-home-banner {
	position: relative;
	height: clamp(560px, 50vw, 800px);
	min-height: 0;
	overflow: hidden;
	background: #6a4b34;
}

.vivart-home-banner > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.vivart-home-banner::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 58%);
	content: '';
}

.vivart-home-banner-copy {
	position: relative;
	z-index: 2;
	width: min(600px, 86%);
	padding: clamp(40px, 5vw, 90px);
	color: #fff;
}

.vivart-home-banner-copy h2 {
	margin: 0 0 28px;
	line-height: 1;
	color: inherit;
}

.vivart-home-banner-copy a,
.vivart-brand-quote > a {
	color: inherit;
	text-underline-offset: 5px;
}

.vivart-brand-quote {
	width: 100%;
	padding: clamp(48px, 5vw, 88px) clamp(22px, 4vw, 76px) clamp(76px, 8vw, 140px);
	border-top: 1px solid var(--vivart-home-line);
	background: var(--vivart-home-bg);
	font-family: "GFS Didot", serif;
}

.vivart-brand-quote blockquote {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	border: 0;
}

.vivart-brand-quote blockquote p {
	margin: 0 0 42px;
	font-size: clamp(42px, 5.8vw, 108px);
	line-height: 1.08;
}

.vivart-home-about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: clamp(620px, 52vw, 800px);
	min-height: 0;
	border-top: 1px solid var(--vivart-home-line);
	background: #fff;
}

.vivart-home-about.has-no-image {
	grid-template-columns: 1fr;
	height: auto;
	min-height: 460px;
}

.vivart-home-about.has-no-image .vivart-home-about-copy > div {
	max-width: 900px;
}

.vivart-home-about-copy {
	display: flex;
	align-items: center;
	padding: clamp(50px, 6vw, 110px);
}

.vivart-home-about-copy > div {
	max-width: 620px;
}

.vivart-home-about-copy h2 {
	margin: 0 0 26px;
	line-height: 1;
	color: inherit;
}

.vivart-home-about-copy p {
	margin: 0 0 20px;
	line-height: 1.65;
}

.vivart-home-about-copy .vivart-home-outline-link {
	margin-top: 14px;
}

.vivart-home-about-image {
	position: relative;
	min-height: 0;
	overflow: hidden;
	background: var(--vivart-home-media);
	line-height: 0;
}

.vivart-home-about-image img {
	position: absolute;
	inset: -2px;
	display: block;
	width: calc(100% + 4px);
	max-width: none;
	height: calc(100% + 4px);
	margin: 0;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 900px) {
	.vivart-new-arrivals-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vivart-promo-grid {
		grid-template-columns: 1fr;
	}

	.vivart-promo-card {
		min-height: 620px;
	}

	.vivart-home-product-card.is-carousel-card {
		flex-basis: calc((100% - 22px) / 2);
	}

	.vivart-products-carousel-track::after {
		flex-basis: 54%;
	}
}

@media (max-width: 767px) {
	.vivart-home-products-section {
		padding: 62px 14px 74px;
	}

	.vivart-home-section-header {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 24px;
	}

	.vivart-home-outline-link {
		min-height: 44px;
	}

	.vivart-new-arrivals-grid {
		gap: 12px;
		row-gap: 38px;
	}

	.vivart-promo-grid {
		padding: 64px 14px;
	}

	.vivart-promo-card {
		min-height: 470px;
	}

	.vivart-home-product-card.is-carousel-card {
		flex-basis: 82%;
	}

	.vivart-products-carousel-track::after {
		flex-basis: 20%;
	}

	.vivart-products-carousel-footer {
		margin-top: 34px;
	}

	.vivart-home-banner {
		height: 620px;
	}

	.vivart-home-banner::after {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 72%);
	}

	.vivart-home-banner-copy {
		padding: 42px 20px;
	}

	.vivart-brand-quote {
		padding: 50px 18px 80px;
	}

	.vivart-brand-quote blockquote p {
		font-size: clamp(38px, 12vw, 58px);
		line-height: 1.08;
	}

	.vivart-home-about {
		grid-template-columns: 1fr;
		height: auto;
		min-height: 0;
	}

	.vivart-home-about-copy {
		padding: 70px 20px;
	}

	.vivart-home-about-image {
		min-height: 0;
		aspect-ratio: 1 / 1;
	}
}

.vivart-home-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.vivart-home-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.vivart-collection-slide,
	.vivart-collection-product-image,
	.vivart-collection-button,
	.vivart-collection-controls button,
	.vivart-home-product-image img,
	.vivart-promo-card-media img,
	.vivart-promo-card > img,
	.vivart-promo-overlay a,
	.vivart-products-carousel-controls button,
	.vivart-home-reveal {
		transition: none;
	}

	.vivart-home-reveal {
		opacity: 1;
		transform: none;
	}
}
