/*
Theme Name: EMOTIVE
Template: twentytwentyfive
*/

/* =========================
   EMOTIVE HEADER
========================= */

.emotive-site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	width: 100%;
}

/* Announcement bar */

.emotive-announcement {
	overflow: hidden;
	background: #E8DED1;
	color: #1F1F1C;
	border-bottom: 1px solid rgba(31, 31, 28, 0.08);
	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
}

.emotive-announcement-track {
	display: flex;
	align-items: center;
	gap: 42px;
	width: max-content;
	padding: 9px 0;
	animation: emotive-marquee 22s linear infinite;
}

.emotive-announcement:hover .emotive-announcement-track {
	animation-play-state: paused;
}

.emotive-announcement a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@keyframes emotive-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* Main header */

.emotive-header-main {
	background: rgba(243, 238, 231, 0.96);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(31, 31, 28, 0.08);
}

.emotive-header-inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 28px;
	min-height: 78px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 32px;
}

/* Logo */

.emotive-logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.emotive-logo img {
	display: block;
	width: 165px;
	height: auto;
	max-height: 46px;
	object-fit: contain;
}

/* Navigation */

.emotive-main-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 500;
}

.emotive-main-nav > a,
.emotive-nav-item > a {
	color: #1F1F1C;
	text-decoration: none;
	position: relative;
	padding: 28px 0;
}

.emotive-main-nav > a::after,
.emotive-nav-item > a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 21px;
	height: 1px;
	background: #1F1F1C;
	transition: right 220ms ease;
}

.emotive-main-nav > a:hover::after,
.emotive-nav-item > a:hover::after {
	right: 0;
}

/* Dropdowns */

.emotive-nav-item {
	position: relative;
}

.emotive-dropdown {
	position: absolute;
	top: calc(100% - 1px);
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	min-width: 220px;
	background: #FAF8F4;
	border: 1px solid rgba(31, 31, 28, 0.08);
	border-radius: 18px;
	padding: 20px;
	box-shadow: 0 18px 45px rgba(31, 31, 28, 0.10);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 180ms ease,
		transform 180ms ease,
		visibility 180ms ease;
}

.emotive-has-dropdown:hover .emotive-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.emotive-shop-dropdown {
	display: grid;
	grid-template-columns: repeat(2, minmax(180px, 1fr));
	gap: 32px;
	min-width: 470px;
}

.emotive-dropdown-column {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.emotive-dropdown-title {
	margin-bottom: 5px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6B6964;
}

.emotive-dropdown a {
	display: block;
	color: #1F1F1C;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.4;
	padding: 4px 0;
}

.emotive-dropdown a:hover {
	color: #6F7558;
}

/* Header actions */

.emotive-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
}

.emotive-header-icon,
.emotive-mobile-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #1F1F1C;
	cursor: pointer;
	text-decoration: none;
}

.emotive-header-icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.emotive-header-icon:hover {
	color: #6F7558;
}

.emotive-cart-toggle {
	position: relative;
}

.emotive-cart-count {
	position: absolute;
	top: -1px;
	right: -2px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	background: #1F1F1C;
	color: #FAF8F4;
	font-size: 9px;
	line-height: 1;
}

/* Mobile menu icon */

.emotive-mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
}

.emotive-mobile-menu-toggle span {
	display: block;
	width: 21px;
	height: 1.5px;
	background: #1F1F1C;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
	.emotive-header-inner {
		grid-template-columns: auto 1fr auto;
		padding: 0 22px;
		min-height: 72px;
	}

	.emotive-main-nav {
		gap: 20px;
	}

	.emotive-logo img {
		width: 145px;
	}
}

@media (max-width: 900px) {
	.emotive-header-inner {
		display: flex;
		justify-content: space-between;
	}

	.emotive-main-nav {
		display: none;
	}

	.emotive-mobile-menu-toggle {
		display: inline-flex;
	}

	.emotive-header-actions {
		gap: 10px;
	}

	.emotive-logo img {
		width: 135px;
	}
}

@media (max-width: 600px) {
	.emotive-announcement {
		font-size: 10px;
	}

	.emotive-announcement-track {
		gap: 28px;
		padding: 8px 0;
	}

	.emotive-header-inner {
		padding: 0 16px;
		min-height: 66px;
	}

	.emotive-logo img {
		width: 125px;
	}

	.emotive-header-icon {
		width: 32px;
		height: 32px;
	}

	.emotive-header-icon svg {
		width: 19px;
		height: 19px;
	}

	.emotive-header-actions > .emotive-header-icon:nth-of-type(3) {
		display: none;
	}
}
/* =========================
   EMOTIVE HOMEPAGE HERO
========================= */

.emotive-home {
	margin: 0;
	padding: 0;
}

.emotive-hero {
	position: relative;
	width: 100%;
	min-height: calc(100vh - 110px);
	overflow: hidden;
	background: #1F1F1C;
}

.emotive-hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.emotive-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(20, 20, 18, 0.58) 0%,
		rgba(20, 20, 18, 0.28) 42%,
		rgba(20, 20, 18, 0.05) 72%
	);
}

.emotive-hero-content {
	position: relative;
	z-index: 2;
	min-height: calc(100vh - 110px);
	max-width: 1440px;
	margin: 0 auto;
	padding: 72px 32px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	color: #FAF8F4;
}

.emotive-hero-content h1 {
	margin: 0 0 18px;
	max-width: 760px;
	color: #FAF8F4;
	font-family: Manrope, sans-serif;
	font-size: clamp(48px, 6.2vw, 92px);
	font-weight: 600;
	line-height: 0.98;
	letter-spacing: -0.045em;
}

.emotive-hero-content p {
	margin: 0;
	max-width: 540px;
	color: rgba(250, 248, 244, 0.92);
	font-family: Inter, sans-serif;
	font-size: clamp(17px, 1.6vw, 22px);
	font-weight: 400;
	line-height: 1.5;
}

.emotive-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.emotive-hero-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 24px;
	border: 1px solid rgba(250, 248, 244, 0.85);
	border-radius: 999px;
	color: #FAF8F4;
	background: rgba(20, 20, 18, 0.08);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	text-decoration: none;
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 600;
	transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.emotive-hero-button:hover {
	background: #FAF8F4;
	color: #1F1F1C;
	border-color: #FAF8F4;
	transform: translateY(-1px);
}

@media (max-width: 900px) {
	.emotive-hero,
	.emotive-hero-content {
		min-height: calc(100svh - 100px);
	}

	.emotive-hero-content {
		padding: 56px 22px;
	}

	.emotive-hero-overlay {
		background: linear-gradient(
			0deg,
			rgba(20, 20, 18, 0.68) 0%,
			rgba(20, 20, 18, 0.20) 65%,
			rgba(20, 20, 18, 0.08) 100%
		);
	}
}

@media (max-width: 600px) {
	.emotive-hero,
	.emotive-hero-content {
		min-height: calc(100svh - 95px);
	}

	.emotive-hero-content {
		padding: 42px 18px;
	}

	.emotive-hero-content h1 {
		font-size: clamp(42px, 13vw, 62px);
		max-width: 95%;
	}

	.emotive-hero-content p {
		max-width: 92%;
		font-size: 16px;
	}

	.emotive-hero-actions {
		width: 100%;
		gap: 10px;
	}

	.emotive-hero-button {
		flex: 1 1 auto;
		padding-left: 18px;
		padding-right: 18px;
	}
}

/* =========================
   EMOTIVE BRAND INTRO
========================= */

.emotive-intro {
	position: relative;
	min-height: 760px;
	overflow: hidden;
	background: #F3EEE7;
}

.emotive-intro-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.emotive-intro::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(243, 238, 231, 0.96) 0%,
		rgba(243, 238, 231, 0.90) 28%,
		rgba(243, 238, 231, 0.45) 50%,
		rgba(243, 238, 231, 0.05) 72%
	);
}

.emotive-intro-content {
	position: relative;
	z-index: 2;
	max-width: 1440px;
	margin: 0 auto;
	min-height: 760px;
	padding: 90px 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.emotive-intro-eyebrow {
	margin-bottom: 18px;
	color: #6F7558;
	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.emotive-intro-content h2 {
	margin: 0 0 22px;
	max-width: 620px;
	color: #1F1F1C;
	font-family: Manrope, sans-serif;
	font-size: clamp(42px, 5vw, 72px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.04em;
}

.emotive-intro-content p {
	margin: 0;
	max-width: 560px;
	color: #3E3D39;
	font-family: Inter, sans-serif;
	font-size: clamp(17px, 1.5vw, 21px);
	line-height: 1.65;
}

@media (max-width: 900px) {
	.emotive-intro,
	.emotive-intro-content {
		min-height: 680px;
	}

	.emotive-intro::after {
		background: linear-gradient(
			0deg,
			rgba(243, 238, 231, 0.94) 0%,
			rgba(243, 238, 231, 0.72) 52%,
			rgba(243, 238, 231, 0.10) 100%
		);
	}

	.emotive-intro-content {
		justify-content: flex-end;
		padding: 60px 22px;
	}
}

@media (max-width: 600px) {
	.emotive-intro,
	.emotive-intro-content {
		min-height: 620px;
	}

	.emotive-intro-content {
		padding: 44px 18px;
	}

	.emotive-intro-content h2 {
		font-size: clamp(38px, 11vw, 54px);
	}

	.emotive-intro-content p {
		font-size: 16px;
	}
}


/* =========================
   EMOTIVE LIFESTYLE PANELS
========================= */

.emotive-lifestyle {
	background: #F3EEE7;
	padding: 110px 0 120px;
	overflow: hidden;
}

.emotive-lifestyle-heading {
	max-width: 1440px;
	margin: 0 auto 48px;
	padding: 0 32px;
}

.emotive-lifestyle-heading > span {
	display: block;
	margin-bottom: 14px;
	color: #6F7558;
	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.emotive-lifestyle-heading h2 {
	max-width: 800px;
	margin: 0;
	color: #1F1F1C;
	font-family: Manrope, sans-serif;
	font-size: clamp(38px, 4.5vw, 68px);
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.emotive-lifestyle-grid {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.emotive-lifestyle-card {
	position: relative;
	min-height: 680px;
	overflow: hidden;
	border-radius: 24px;
	background: #1F1F1C;
	color: #FAF8F4;
	text-decoration: none;
}

.emotive-lifestyle-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 650ms cubic-bezier(.2,.65,.3,1);
}

.emotive-lifestyle-card:hover img {
	transform: scale(1.035);
}

.emotive-lifestyle-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			0deg,
			rgba(18,18,16,.72) 0%,
			rgba(18,18,16,.28) 45%,
			rgba(18,18,16,.04) 75%
		);
}

.emotive-lifestyle-copy {
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 34px;
}

.emotive-lifestyle-copy > span {
	display: block;
	margin-bottom: 10px;
	font-family: Inter, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.emotive-lifestyle-copy h3 {
	margin: 0 0 14px;
	color: #FAF8F4;
	font-family: Manrope, sans-serif;
	font-size: clamp(28px, 2.5vw, 42px);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -.03em;
}

.emotive-lifestyle-copy p {
	max-width: 390px;
	margin: 0 0 22px;
	color: rgba(250,248,244,.9);
	font-family: Inter, sans-serif;
	font-size: 15px;
	line-height: 1.55;
}

.emotive-lifestyle-copy strong {
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 600;
}

@media (max-width: 1000px) {

	.emotive-lifestyle {
		padding: 80px 0 90px;
	}

	.emotive-lifestyle-grid {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 0 22px;
	}

	.emotive-lifestyle-heading {
		padding: 0 22px;
	}

	.emotive-lifestyle-card {
		min-height: 620px;
	}
}

@media (max-width: 600px) {

	.emotive-lifestyle {
		padding: 65px 0 70px;
	}

	.emotive-lifestyle-heading {
		margin-bottom: 32px;
		padding: 0 18px;
	}

	.emotive-lifestyle-grid {
		padding: 0 14px;
	}

	.emotive-lifestyle-card {
		min-height: 520px;
		border-radius: 16px;
	}

	.emotive-lifestyle-copy {
		padding: 24px;
	}

	.emotive-lifestyle-copy p {
		font-size: 14px;
	}
}


/* =========================
   EMOTIVE SHOP YOUR WAY
========================= */

.emotive-shop-way {
	background: #F3EEE7;
	padding: 110px 0 120px;
	overflow: hidden;
}

.emotive-shop-way-heading {
	max-width: 1440px;
	margin: 0 auto 48px;
	padding: 0 32px;
}

.emotive-shop-way-heading > span {
	display: block;
	margin-bottom: 14px;
	color: #6F7558;
	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.emotive-shop-way-heading h2 {
	margin: 0 0 18px;
	color: #1F1F1C;
	font-family: Manrope, sans-serif;
	font-size: clamp(42px, 4.8vw, 72px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -.04em;
}

.emotive-shop-way-heading p {
	max-width: 720px;
	margin: 0;
	color: #4A4945;
	font-family: Inter, sans-serif;
	font-size: 17px;
	line-height: 1.65;
}

.emotive-bundle-track {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	padding: 0 32px 18px;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	overscroll-behavior-x: contain;
	-webkit-overflow-scrolling: touch;
}

.emotive-bundle-track::-webkit-scrollbar {
	display: none;
}

.emotive-bundle-card {
	position: relative;
	flex: 0 0 min(34vw, 470px);
	min-width: 360px;
	height: 620px;
	overflow: hidden;
	border-radius: 24px;
	background: #1F1F1C;
	color: #FAF8F4;
	text-decoration: none;
	scroll-snap-align: start;
}

.emotive-bundle-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 650ms cubic-bezier(.2,.65,.3,1);
}

.emotive-bundle-card:hover img {
	transform: scale(1.04);
}

.emotive-bundle-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			0deg,
			rgba(18,18,16,.76) 0%,
			rgba(18,18,16,.30) 42%,
			rgba(18,18,16,.04) 72%
		);
}

.emotive-bundle-copy {
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 32px;
}

.emotive-bundle-copy > span {
	display: block;
	margin-bottom: 9px;
	font-family: Inter, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.emotive-bundle-copy h3 {
	margin: 0 0 12px;
	color: #FAF8F4;
	font-family: Manrope, sans-serif;
	font-size: clamp(30px, 2.6vw, 44px);
	font-weight: 600;
	line-height: 1.04;
	letter-spacing: -.03em;
}

.emotive-bundle-copy p {
	max-width: 360px;
	margin: 0 0 20px;
	color: rgba(250,248,244,.90);
	font-family: Inter, sans-serif;
	font-size: 15px;
	line-height: 1.55;
}

.emotive-bundle-copy strong {
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 600;
}

.emotive-bundle-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
}

.emotive-bundle-dots span {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(31,31,28,.25);
	transition: width 200ms ease, background 200ms ease;
}

.emotive-bundle-dots span.is-active {
	width: 24px;
	background: #1F1F1C;
}

@media (max-width: 1000px) {

	.emotive-shop-way {
		padding: 85px 0 95px;
	}

	.emotive-shop-way-heading {
		padding: 0 22px;
	}

	.emotive-bundle-track {
		padding-left: 22px;
		padding-right: 22px;
	}

	.emotive-bundle-card {
		flex-basis: 58vw;
		min-width: 320px;
		height: 580px;
	}
}

@media (max-width: 600px) {

	.emotive-shop-way {
		padding: 68px 0 78px;
	}

	.emotive-shop-way-heading {
		padding: 0 18px;
		margin-bottom: 32px;
	}

	.emotive-shop-way-heading p {
		font-size: 16px;
	}

	.emotive-bundle-track {
		gap: 12px;
		padding-left: 14px;
		padding-right: 14px;
	}

	.emotive-bundle-card {
		flex-basis: 86vw;
		min-width: 0;
		height: 520px;
		border-radius: 16px;
	}

	.emotive-bundle-copy {
		padding: 24px;
	}

	.emotive-bundle-copy p {
		font-size: 14px;
	}
}


/* =========================
   EMOTIVE A LA CARTE
========================= */

.emotive-alacarte {
	background: #F3EEE7;
	padding: 0 32px 120px;
}

.emotive-alacarte-card {
	position: relative;
	display: block;
	max-width: 1436px;
	height: 620px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 24px;
	background: #1F1F1C;
	color: #FAF8F4;
	text-decoration: none;
}

.emotive-alacarte-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 750ms cubic-bezier(.2,.65,.3,1);
}

.emotive-alacarte-card:hover img {
	transform: scale(1.04);
}

.emotive-alacarte-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(18,18,16,.68) 0%,
			rgba(18,18,16,.26) 46%,
			rgba(18,18,16,.04) 76%
		);
}

.emotive-alacarte-copy {
	position: absolute;
	z-index: 2;
	left: 0;
	bottom: 0;
	max-width: 720px;
	padding: 52px;
	transition: transform 280ms ease;
}

.emotive-alacarte-card:hover .emotive-alacarte-copy {
	transform: translateY(-5px);
}

.emotive-alacarte-copy > span {
	display: block;
	margin-bottom: 14px;
	font-family: Inter, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.emotive-alacarte-copy h2 {
	margin: 0 0 12px;
	color: #FAF8F4;
	font-family: Manrope, sans-serif;
	font-size: clamp(48px, 6vw, 88px);
	font-weight: 600;
	line-height: .96;
	letter-spacing: -.045em;
}

.emotive-alacarte-copy p {
	margin: 0 0 22px;
	color: rgba(250,248,244,.92);
	font-family: Inter, sans-serif;
	font-size: clamp(18px, 1.8vw, 24px);
	line-height: 1.5;
}

.emotive-alacarte-copy strong {
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 600;
}

@media (max-width: 900px) {

	.emotive-alacarte {
		padding: 0 22px 90px;
	}

	.emotive-alacarte-card {
		height: 560px;
	}

	.emotive-alacarte-overlay {
		background:
			linear-gradient(
				0deg,
				rgba(18,18,16,.72) 0%,
				rgba(18,18,16,.24) 65%,
				rgba(18,18,16,.04) 100%
			);
	}

	.emotive-alacarte-copy {
		padding: 36px;
	}
}

@media (max-width: 600px) {

	.emotive-alacarte {
		padding: 0 14px 72px;
	}

	.emotive-alacarte-card {
		height: 500px;
		border-radius: 16px;
	}

	.emotive-alacarte-copy {
		padding: 24px;
	}

	.emotive-alacarte-copy h2 {
		font-size: clamp(44px, 14vw, 64px);
	}
}


/* =========================
   EMOTIVE FOOTER
========================= */

.emotive-footer {
	background: #1F1F1C;
	color: #FAF8F4;
	padding: 90px 32px 28px;
}

.emotive-footer a {
	color: inherit;
	text-decoration: none;
}

.emotive-footer-newsletter {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 80px;
	align-items: start;
}

.emotive-footer-newsletter-copy > span {
	display: block;
	margin-bottom: 14px;
	color: #C8C2B8;
	font-family: Inter, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.emotive-footer-newsletter-copy h2 {
	margin: 0 0 18px;
	max-width: 580px;
	color: #FAF8F4;
	font-family: Manrope, sans-serif;
	font-size: clamp(38px, 4.2vw, 64px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -.04em;
}

.emotive-footer-newsletter-copy p {
	max-width: 600px;
	margin: 0;
	color: rgba(250,248,244,.72);
	font-family: Inter, sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

.emotive-footer-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.emotive-footer-fields {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.emotive-footer-fields input,
.emotive-footer-fields select {
	width: 100%;
	min-height: 50px;
	box-sizing: border-box;
	padding: 0 14px;
	border: 1px solid rgba(250,248,244,.22);
	border-radius: 12px;
	background: rgba(250,248,244,.04);
	color: #FAF8F4;
	font-family: Inter, sans-serif;
	font-size: 14px;
	outline: none;
}

.emotive-footer-fields input::placeholder {
	color: rgba(250,248,244,.55);
}

.emotive-footer-fields select option {
	color: #1F1F1C;
}

.emotive-footer-fields input:focus,
.emotive-footer-fields select:focus {
	border-color: rgba(250,248,244,.62);
}

.emotive-footer-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: rgba(250,248,244,.65);
	font-family: Inter, sans-serif;
	font-size: 12px;
	line-height: 1.5;
}

.emotive-footer-consent input {
	margin-top: 3px;
}

.emotive-footer-form button {
	align-self: flex-start;
	min-height: 48px;
	padding: 0 24px;
	border: 1px solid #FAF8F4;
	border-radius: 999px;
	background: #FAF8F4;
	color: #1F1F1C;
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.emotive-footer-form button:hover {
	background: transparent;
	color: #FAF8F4;
}

.emotive-footer-divider {
	max-width: 1440px;
	height: 1px;
	margin: 70px auto 50px;
	background: rgba(250,248,244,.12);
}

.emotive-footer-grid {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 60px;
}

.emotive-footer-brand strong {
	font-family: Manrope, sans-serif;
	font-size: 24px;
	letter-spacing: -.02em;
}

.emotive-footer-brand p {
	margin: 10px 0 0;
	color: rgba(250,248,244,.58);
	font-family: Inter, sans-serif;
	font-size: 14px;
}

.emotive-footer-column {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.emotive-footer-column > span {
	margin-bottom: 6px;
	color: rgba(250,248,244,.52);
	font-family: Inter, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.emotive-footer-column a {
	font-family: Inter, sans-serif;
	font-size: 14px;
	color: rgba(250,248,244,.88);
}

.emotive-footer-column a:hover,
.emotive-footer-social a:hover {
	color: #C8C2B8;
}

.emotive-footer-bottom {
	max-width: 1440px;
	margin: 58px auto 0;
	padding-top: 24px;
	border-top: 1px solid rgba(250,248,244,.10);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	color: rgba(250,248,244,.48);
	font-family: Inter, sans-serif;
	font-size: 12px;
}

.emotive-footer-social {
	display: flex;
	gap: 18px;
}

@media (max-width: 900px) {

	.emotive-footer {
		padding: 70px 22px 24px;
	}

	.emotive-footer-newsletter {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.emotive-footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 42px;
	}
}

@media (max-width: 600px) {

	.emotive-footer {
		padding: 58px 18px 22px;
	}

	.emotive-footer-fields {
		grid-template-columns: 1fr;
	}

	.emotive-footer-divider {
		margin: 50px auto 36px;
	}

	.emotive-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px 24px;
	}

	.emotive-footer-brand {
		grid-column: 1 / -1;
	}

	.emotive-footer-bottom {
		margin-top: 42px;
		flex-direction: column;
		align-items: flex-start;
	}
}


/* =========================
   EMOTIVE EMBLA CAROUSEL
========================= */

.emotive-bundle-carousel {
	position: relative;
}

.emotive-bundle-track {
	overflow: hidden;
	padding: 0 32px;
	scroll-snap-type: none;
	overscroll-behavior: auto;
}

.emotive-bundle-container {
	display: flex;
	gap: 18px;
	touch-action: pan-y pinch-zoom;
}

.emotive-bundle-card {
	flex: 0 0 calc((100vw - 100px) / 2.7);
	min-width: 0;
	scroll-snap-align: none;
}

.emotive-bundle-arrow {
	position: absolute;
	z-index: 5;
	top: 50%;
	width: 48px;
	height: 48px;
	margin-top: -24px;
	border: 1px solid rgba(31,31,28,.12);
	border-radius: 999px;
	background: rgba(250,248,244,.94);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #1F1F1C;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 8px 28px rgba(31,31,28,.10);
	transition:
		transform 180ms ease,
		background 180ms ease;
}

.emotive-bundle-arrow:hover {
	transform: scale(1.06);
	background: #FAF8F4;
}

.emotive-bundle-arrow span {
	font-size: 21px;
	line-height: 1;
}

.emotive-bundle-prev {
	left: 14px;
}

.emotive-bundle-next {
	right: 14px;
}

.emotive-bundle-dots span {
	cursor: pointer;
}

@media (min-width: 1500px) {

	.emotive-bundle-card {
		flex-basis: 520px;
	}

}

@media (max-width: 1000px) {

	.emotive-bundle-track {
		padding: 0 22px;
	}

	.emotive-bundle-container {
		gap: 16px;
	}

	.emotive-bundle-card {
		flex-basis: 58vw;
	}

	.emotive-bundle-prev {
		left: 8px;
	}

	.emotive-bundle-next {
		right: 8px;
	}
}

@media (max-width: 600px) {

	.emotive-bundle-track {
		padding: 0 14px;
	}

	.emotive-bundle-container {
		gap: 12px;
	}

	.emotive-bundle-card {
		flex-basis: 86vw;
	}

	.emotive-bundle-arrow {
		display: none;
	}
}


/* =========================
   EMOTIVE HORIZONTAL STORY
========================= */

.emotive-horizontal-story {
	position: relative;
	background: #F3EEE7;
	overflow: hidden;
}

.emotive-horizontal-heading {
	position: absolute;
	z-index: 10;
	top: 46px;
	left: max(32px, calc((100vw - 1440px) / 2 + 32px));
	max-width: 700px;
	pointer-events: none;
}

.emotive-horizontal-heading > span {
	display: block;
	margin-bottom: 12px;
	color: #6F7558;
	font-family: Inter, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.emotive-horizontal-heading h2 {
	margin: 0;
	color: #1F1F1C;
	font-family: Manrope, sans-serif;
	font-size: clamp(38px, 4vw, 64px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -.04em;
}

.emotive-horizontal-viewport {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.emotive-horizontal-track {
	display: flex;
	align-items: center;
	gap: 7vw;
	width: max-content;
	padding:
		150px
		max(7vw, calc((100vw - 1440px) / 2 + 32px))
		48px;
	will-change: transform;
}

.emotive-horizontal-panel {
	position: relative;
	flex: 0 0 82vw;
	height: min(72vh, 760px);
	overflow: hidden;
	border-radius: 26px;
	background: #1F1F1C;
	color: #FAF8F4;
	text-decoration: none;
	box-shadow: 0 24px 70px rgba(31,31,28,.12);
}

.emotive-horizontal-panel img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 700ms cubic-bezier(.2,.65,.3,1);
}

.emotive-horizontal-panel:hover img {
	transform: scale(1.025);
}

.emotive-horizontal-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			0deg,
			rgba(15,15,14,.72) 0%,
			rgba(15,15,14,.26) 48%,
			rgba(15,15,14,.03) 76%
		);
}

.emotive-horizontal-copy {
	position: absolute;
	z-index: 2;
	left: 0;
	bottom: 0;
	max-width: 720px;
	padding: clamp(28px, 4vw, 62px);
}

.emotive-horizontal-copy > span {
	display: block;
	margin-bottom: 10px;
	font-family: Inter, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.emotive-horizontal-copy h3 {
	margin: 0 0 14px;
	color: #FAF8F4;
	font-family: Manrope, sans-serif;
	font-size: clamp(42px, 5vw, 82px);
	font-weight: 600;
	line-height: .98;
	letter-spacing: -.045em;
}

.emotive-horizontal-copy p {
	max-width: 560px;
	margin: 0 0 22px;
	color: rgba(250,248,244,.90);
	font-family: Inter, sans-serif;
	font-size: clamp(15px, 1.35vw, 19px);
	line-height: 1.55;
}

.emotive-horizontal-copy strong {
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 600;
}

@media (min-width: 1500px) {

	.emotive-horizontal-panel {
		flex-basis: 76vw;
	}
}

@media (max-width: 900px) {

	.emotive-horizontal-story {
		padding: 72px 0 78px;
		overflow: visible;
	}

	.emotive-horizontal-heading {
		position: relative;
		top: auto;
		left: auto;
		padding: 0 22px;
		margin-bottom: 34px;
	}

	.emotive-horizontal-viewport {
		height: auto;
		overflow: visible;
		display: block;
	}

	.emotive-horizontal-track {
		width: auto;
		padding: 0 22px;
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;
		transform: none !important;
	}

	.emotive-horizontal-panel {
		width: 100%;
		height: 620px;
		flex: none;
	}

}

@media (max-width: 600px) {

	.emotive-horizontal-story {
		padding: 58px 0 66px;
	}

	.emotive-horizontal-heading {
		padding: 0 18px;
	}

	.emotive-horizontal-track {
		padding: 0 14px;
		gap: 12px;
	}

	.emotive-horizontal-panel {
		height: 520px;
		border-radius: 16px;
	}

	.emotive-horizontal-copy {
		padding: 24px;
	}

	.emotive-horizontal-copy h3 {
		font-size: clamp(38px, 12vw, 56px);
	}

	.emotive-horizontal-copy p {
		font-size: 14px;
	}
}


/* =========================
   EMOTIVE MOBILE DRAWER
========================= */

body.emotive-menu-open {
	overflow: hidden;
}

.emotive-mobile-drawer {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(31,31,28,.32);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 220ms ease,
		visibility 220ms ease;
}

.emotive-mobile-drawer.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.emotive-mobile-drawer-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(90vw, 430px);
	height: 100%;
	background: #F3EEE7;
	padding: 22px 22px 30px;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 300ms cubic-bezier(.2,.7,.2,1);
	box-shadow: -20px 0 60px rgba(31,31,28,.14);
}

.emotive-mobile-drawer.is-open .emotive-mobile-drawer-panel {
	transform: translateX(0);
}

.emotive-mobile-drawer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(31,31,28,.10);
}

.emotive-mobile-drawer-top > span {
	font-family: Inter, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
}

.emotive-mobile-menu-close {
	border: 0;
	background: transparent;
	color: #1F1F1C;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.emotive-mobile-nav {
	display: flex;
	flex-direction: column;
	padding: 18px 0;
}

.emotive-mobile-nav > a,
.emotive-mobile-nav summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	border-bottom: 1px solid rgba(31,31,28,.08);
	color: #1F1F1C;
	font-family: Manrope, sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.1;
	text-decoration: none;
	cursor: pointer;
	list-style: none;
}

.emotive-mobile-nav summary::-webkit-details-marker {
	display: none;
}

.emotive-mobile-nav summary::after {
	content: "+";
	font-family: Inter, sans-serif;
	font-size: 22px;
	font-weight: 400;
}

.emotive-mobile-nav details[open] summary::after {
	content: "−";
}

.emotive-mobile-subnav {
	display: flex;
	flex-direction: column;
	padding: 8px 0 14px 16px;
}

.emotive-mobile-subnav a {
	padding: 9px 0;
	color: #4A4945;
	font-family: Inter, sans-serif;
	font-size: 14px;
	text-decoration: none;
}

.emotive-mobile-drawer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 16px;
	padding-top: 20px;
	border-top: 1px solid rgba(31,31,28,.10);
}

.emotive-mobile-drawer-links a {
	color: #1F1F1C;
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

@media (min-width: 901px) {
	.emotive-mobile-drawer {
		display: none;
	}
}


/* =========================
   EMOTIVE SEARCH OVERLAY
========================= */

body.emotive-search-open {
	overflow: hidden;
}

.emotive-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 3000;
	background: rgba(243,238,231,.98);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 220ms ease,
		visibility 220ms ease;
}

.emotive-search-overlay.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.emotive-search-overlay-inner {
	max-width: 1440px;
	height: 100%;
	margin: 0 auto;
	padding: 28px 32px 60px;
	overflow-y: auto;
}

.emotive-search-overlay-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(31,31,28,.10);
}

.emotive-search-overlay-top > span {
	font-family: Inter, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
}

.emotive-search-close {
	border: 0;
	background: transparent;
	color: #1F1F1C;
	font-size: 36px;
	line-height: 1;
	cursor: pointer;
}

.emotive-search-content {
	max-width: 980px;
	margin: 90px auto 0;
}

.emotive-search-content h2 {
	margin: 0 0 34px;
	color: #1F1F1C;
	font-family: Manrope, sans-serif;
	font-size: clamp(42px, 5vw, 76px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -.04em;
}

.emotive-search-box {
	margin-bottom: 36px;
}

.emotive-search-box .dgwt-wcas-search-wrapp {
	max-width: none;
	width: 100%;
}

.emotive-search-box .dgwt-wcas-search-input {
	min-height: 64px !important;
	border: 0 !important;
	border-bottom: 1px solid rgba(31,31,28,.30) !important;
	border-radius: 0 !important;
	background: transparent !important;
	padding-left: 0 !important;
	padding-right: 52px !important;
	color: #1F1F1C !important;
	font-family: Inter, sans-serif !important;
	font-size: 22px !important;
	box-shadow: none !important;
}

.emotive-search-box .dgwt-wcas-search-input::placeholder {
	color: rgba(31,31,28,.45) !important;
}

.emotive-search-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.emotive-search-links > span {
	margin-right: 8px;
	color: #6B6964;
	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 600;
}

.emotive-search-links a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 14px;
	border: 1px solid rgba(31,31,28,.14);
	border-radius: 999px;
	color: #1F1F1C;
	background: rgba(250,248,244,.45);
	font-family: Inter, sans-serif;
	font-size: 13px;
	text-decoration: none;
}

.emotive-search-links a:hover {
	background: #1F1F1C;
	color: #FAF8F4;
}

@media (max-width: 600px) {

	.emotive-search-overlay-inner {
		padding: 22px 18px 40px;
	}

	.emotive-search-content {
		margin-top: 58px;
	}

	.emotive-search-box .dgwt-wcas-search-input {
		font-size: 18px !important;
	}
}

/* Hide FiboSearch magnifier once user starts typing */
.emotive-search-box .dgwt-wcas-search-input:not(:placeholder-shown) ~ .dgwt-wcas-search-submit,
.emotive-search-box .dgwt-wcas-search-input:not(:placeholder-shown) + .dgwt-wcas-search-submit,
.emotive-search-box .dgwt-wcas-search-input:not(:placeholder-shown) ~ .dgwt-wcas-ico-magnifier,
.emotive-search-box .dgwt-wcas-search-input:not(:placeholder-shown) + .dgwt-wcas-ico-magnifier {
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

/* Smooth transition */
.emotive-search-box .dgwt-wcas-search-submit,
.emotive-search-box .dgwt-wcas-ico-magnifier {
	transition: opacity 160ms ease, visibility 160ms ease;
}



/* =========================
   EMOTIVE FIBOSEARCH POLISH
========================= */

/* Hide magnifier while search field is active */
.emotive-search-box .dgwt-wcas-search-form:focus-within .dgwt-wcas-search-submit,
.emotive-search-box .dgwt-wcas-search-form:focus-within .dgwt-wcas-ico-magnifier,
.emotive-search-box .dgwt-wcas-search-form:focus-within button[type="submit"] {
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

/* Keep the transition smooth */
.emotive-search-box .dgwt-wcas-search-submit,
.emotive-search-box .dgwt-wcas-ico-magnifier,
.emotive-search-box button[type="submit"] {
	transition: opacity 160ms ease, visibility 160ms ease !important;
}


/* Live results container */
.dgwt-wcas-suggestions-wrapp {
	background: rgba(243, 238, 231, 0.96) !important;
	backdrop-filter: blur(18px) !important;
	-webkit-backdrop-filter: blur(18px) !important;

	border: 1px solid rgba(31, 31, 28, 0.10) !important;
	border-radius: 18px !important;

	box-shadow: 0 20px 55px rgba(31, 31, 28, 0.10) !important;

	overflow: hidden !important;
}


/* Individual search result */
.dgwt-wcas-suggestion {
	background: transparent !important;
	border-bottom: 1px solid rgba(31, 31, 28, 0.07) !important;
	padding-top: 12px !important;
	padding-bottom: 12px !important;

	transition:
		background 160ms ease,
		color 160ms ease !important;
}


/* Remove final divider */
.dgwt-wcas-suggestion:last-child {
	border-bottom: 0 !important;
}


/* Hover / selected result */
.dgwt-wcas-suggestion:hover,
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-selected {
	background: rgba(232, 222, 209, 0.72) !important;
}


/* Product names */
.dgwt-wcas-st-title,
.dgwt-wcas-sp {
	color: #1F1F1C !important;
	font-family: Inter, sans-serif !important;
}


/* Secondary text / SKU / descriptions */
.dgwt-wcas-st-desc,
.dgwt-wcas-st-more,
.dgwt-wcas-meta {
	color: #6B6964 !important;
}


/* Product image area */
.dgwt-wcas-si {
	background: transparent !important;
}


/* "View all results" row */
.dgwt-wcas-suggestion-more {
	background: rgba(232, 222, 209, 0.50) !important;
	color: #1F1F1C !important;
	font-family: Inter, sans-serif !important;
	font-weight: 600 !important;
}


/* Details panel if FiboSearch opens one */
.dgwt-wcas-details-wrapp {
	background: rgba(243, 238, 231, 0.97) !important;
	backdrop-filter: blur(18px) !important;
	-webkit-backdrop-filter: blur(18px) !important;

	border: 1px solid rgba(31, 31, 28, 0.10) !important;
	border-radius: 18px !important;

	box-shadow: 0 20px 55px rgba(31, 31, 28, 0.10) !important;
}


/* Keep dropdown visually connected to EMOTIVE */
.dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp,
.dgwt-wcas-open .dgwt-wcas-suggestions-wrapp {
	background: rgba(243, 238, 231, 0.96) !important;
}



/* =========================
   EMOTIVE MINI CART DRAWER
========================= */

body.emotive-cart-open {
	overflow: hidden;
}

.emotive-cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 3500;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 220ms ease,
		visibility 220ms ease;
}

.emotive-cart-drawer.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.emotive-cart-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(31,31,28,.35);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.emotive-cart-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(92vw, 460px);
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #F3EEE7;
	box-shadow: -24px 0 70px rgba(31,31,28,.15);
	transform: translateX(100%);
	transition: transform 320ms cubic-bezier(.2,.7,.2,1);
	overflow: hidden;
}

.emotive-cart-drawer.is-open .emotive-cart-panel {
	transform: translateX(0);
}

.emotive-cart-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding: 28px 28px 24px;
	border-bottom: 1px solid rgba(31,31,28,.10);
}

.emotive-cart-header span {
	display: block;
	margin-bottom: 8px;
	color: #6F7558;
	font-family: Inter, sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .16em;
}

.emotive-cart-header h2 {
	margin: 0;
	color: #1F1F1C;
	font-family: Manrope, sans-serif;
	font-size: 30px;
	font-weight: 600;
	letter-spacing: -.03em;
}

.emotive-cart-close {
	border: 0;
	background: transparent;
	color: #1F1F1C;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.emotive-cart-content {
	flex: 1;
	overflow-y: auto;
	padding: 24px 28px 30px;
}

.emotive-cart-content .woocommerce-mini-cart {
	margin: 0;
	padding: 0;
	list-style: none;
}

.emotive-cart-content .woocommerce-mini-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 82px 1fr;
	gap: 16px;
	padding: 0 0 22px;
	margin: 0 0 22px;
	border-bottom: 1px solid rgba(31,31,28,.09);
}

.emotive-cart-content .woocommerce-mini-cart-item img {
	width: 82px;
	height: 96px;
	object-fit: cover;
	border-radius: 12px;
}

.emotive-cart-content .woocommerce-mini-cart-item > a:not(.remove) {
	color: #1F1F1C;
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	line-height: 1.4;
}

.emotive-cart-content .woocommerce-mini-cart-item .quantity {
	display: block;
	margin-top: 8px;
	color: #6B6964;
	font-family: Inter, sans-serif;
	font-size: 13px;
}

.emotive-cart-content .remove_from_cart_button {
	position: absolute;
	top: 0;
	right: 0;
	color: #6B6964 !important;
	font-size: 20px !important;
	text-decoration: none;
}

.emotive-cart-content .woocommerce-mini-cart__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 24px 0 18px;
	padding-top: 20px;
	border-top: 1px solid rgba(31,31,28,.12);
	color: #1F1F1C;
	font-family: Inter, sans-serif;
	font-size: 15px;
}

.emotive-cart-content .woocommerce-mini-cart__buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 0;
}

.emotive-cart-content .woocommerce-mini-cart__buttons .button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid #1F1F1C;
	background: transparent;
	color: #1F1F1C;
	font-family: Inter, sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.emotive-cart-content .woocommerce-mini-cart__buttons .checkout {
	background: #1F1F1C;
	color: #FAF8F4;
}

.emotive-cart-content .woocommerce-mini-cart__empty-message {
	margin: 40px 0;
	color: #6B6964;
	font-family: Inter, sans-serif;
	font-size: 15px;
	text-align: center;
}

@media (max-width: 600px) {

	.emotive-cart-panel {
		width: 100%;
	}

	.emotive-cart-header {
		padding: 22px 18px 20px;
	}

	.emotive-cart-content {
		padding: 20px 18px 24px;
	}
}


/* =========================
   EMOTIVE WISHLIST
========================= */

/* Add-to-wishlist buttons */

.adfy-wl-add-to-wishlist,
.adfy-wl-btn,
.addonify_wishlist-save-for-later {
	font-family: Inter, sans-serif !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	color: #1F1F1C !important;

	background: rgba(250,248,244,.88) !important;

	border: 1px solid rgba(31,31,28,.14) !important;
	border-radius: 999px !important;

	box-shadow: none !important;

	transition:
		background 180ms ease,
		color 180ms ease,
		border-color 180ms ease,
		transform 180ms ease !important;
}

.adfy-wl-add-to-wishlist:hover,
.adfy-wl-btn:hover,
.addonify_wishlist-save-for-later:hover {
	background: #1F1F1C !important;
	color: #FAF8F4 !important;
	border-color: #1F1F1C !important;
	transform: translateY(-1px);
}


/* Single product wishlist area */

.adfy-wl-single-add-to-wislist-wrapper {
	margin-top: 16px !important;
}


/* Wishlist page */

body.page-id-91 {
	background: #F3EEE7;
}

body.page-id-91 main {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 32px;
	padding-right: 32px;
}


/* Wishlist table */

body.page-id-91 .adfy-wl-table-head {
	background: transparent !important;
	color: #1F1F1C !important;

	font-family: Inter, sans-serif !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: .08em !important;
	text-transform: uppercase !important;

	border-bottom: 1px solid rgba(31,31,28,.12) !important;
}


/* Toolbar */

body.page-id-91 .adfy-wl-table-toolbars {
	background: transparent !important;
	border: 0 !important;
	margin-bottom: 24px !important;
}


/* Wishlist buttons */

body.page-id-91 .adfy-wl-table-btn,
body.page-id-91 .adfy-wl-modal-btn,
body.page-id-91 .adfy-wl-wishlist-page-link-btn {
	min-height: 44px !important;
	padding: 10px 18px !important;

	border-radius: 999px !important;
	border: 1px solid #1F1F1C !important;

	background: #1F1F1C !important;
	color: #FAF8F4 !important;

	font-family: Inter, sans-serif !important;
	font-size: 13px !important;
	font-weight: 600 !important;

	box-shadow: none !important;
}


/* Notices */

.adfy-wl-notice {
	background: #E8DED1 !important;
	color: #1F1F1C !important;

	border: 0 !important;
	border-radius: 12px !important;

	font-family: Inter, sans-serif !important;
}


/* Addonify modal / sidebar */

.adfy-wl-ssc-header,
.adfy-wl-ssc-body,
.adfy-wl-ssc-footer,
.adfy-wl-sidebar-wl-items {
	background: #F3EEE7 !important;
	color: #1F1F1C !important;
}

.adfy-wl-sidebar-title {
	font-family: Manrope, sans-serif !important;
	font-weight: 600 !important;
	color: #1F1F1C !important;
}


/* Icons */

.adfy-wl-btn-icon {
	color: inherit !important;
}


/* Wishlist count badge */

.adfy_wishlist-icon-items-count {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;

	min-width: 16px;
	height: 16px;

	padding: 0 4px;

	border-radius: 999px;

	background: #1F1F1C !important;
	color: #FAF8F4 !important;

	font-family: Inter, sans-serif !important;
	font-size: 9px !important;
	line-height: 1 !important;
}


@media (max-width: 600px) {

	body.page-id-91 main {
		padding-left: 16px;
		padding-right: 16px;
	}

}


/* =========================
   EMOTIVE HERO HEADER OVERLAY
========================= */

/* Homepage only: place header on top of hero */
body.home .emotive-site-header {
	position: absolute !important;
	top: 42px !important;
	left: 0;
	right: 0;
	z-index: 1200;
	background: transparent !important;
}

/* If logged in to WordPress */
body.home.admin-bar .emotive-site-header {
	top: 74px !important;
}

/* Make the header sit lower and feel premium */
body.home .emotive-header-inner {
	max-width: 1440px;
	margin: 18px auto 0;
	padding: 16px 28px;
	border-radius: 22px;

	background: rgba(20, 20, 18, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.18);

	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);

	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

/* Dynamic font styling for top menu text */
body.home .emotive-site-header nav a,
body.home .emotive-site-header .emotive-main-nav a,
body.home .emotive-site-header .emotive-header-actions a,
body.home .emotive-site-header .emotive-header-actions button,
body.home .emotive-site-header .emotive-mobile-menu-toggle {
	color: #FAF8F4 !important;
	font-family: Manrope, sans-serif !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

/* Icons */
body.home .emotive-site-header svg,
body.home .emotive-site-header .emotive-header-icon,
body.home .emotive-site-header .emotive-mobile-menu-toggle,
body.home .emotive-site-header .emotive-cart-toggle,
body.home .emotive-site-header .emotive-search-toggle {
	color: #FAF8F4 !important;
	fill: #FAF8F4 !important;
	stroke: #FAF8F4 !important;
}

/* Cart badge */
body.home .emotive-site-header .emotive-cart-count {
	background: #FAF8F4 !important;
	color: #1F1F1C !important;
}

/* Logo on hero */
body.home .emotive-logo img {
	filter: brightness(0) invert(1);
	opacity: 0.96;
}

/* Mobile */
@media (max-width: 900px) {

	body.home .emotive-site-header {
		top: 42px !important;
	}

	body.home.admin-bar .emotive-site-header {
		top: 58px !important;
	}

	body.home .emotive-header-inner {
		margin: 10px 16px 0;
		padding: 14px 18px;
		border-radius: 16px;
	}

	body.home .emotive-site-header nav a,
	body.home .emotive-site-header .emotive-main-nav a,
	body.home .emotive-site-header .emotive-header-actions a,
	body.home .emotive-site-header .emotive-header-actions button,
	body.home .emotive-site-header .emotive-mobile-menu-toggle {
		font-size: 14px !important;
	}
}



/* =========================
   EMOTIVE CLEAN HERO NAV
========================= */

/* Keep announcement bar at very top */
body.home .emotive-announcement {
	position: relative;
	z-index: 1300;
}

/* Header overlays hero below announcement */
body.home .emotive-site-header {
	position: absolute !important;
	top: 42px !important;
	left: 0;
	right: 0;
	z-index: 1200;
	background: transparent !important;
}

/* Remove the glass/rounded banner */
body.home .emotive-header-main {
	background: transparent !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	border: 0 !important;
	box-shadow: none !important;
}

/* Keep only content floating over hero */
body.home .emotive-header-inner {
	max-width: 1440px;
	margin: 0 auto !important;
	padding: 24px 32px !important;

	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;

	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;

	box-shadow: none !important;
}

/* Navigation text */
body.home .emotive-main-nav > a,
body.home .emotive-nav-item > a {
	color: #FAF8F4 !important;
	font-family: Manrope, sans-serif !important;
	font-size: 15px !important;
	font-weight: 650 !important;
	letter-spacing: 0.015em !important;
	text-shadow: 0 1px 10px rgba(0,0,0,.40);
}

/* Underline hover */
body.home .emotive-main-nav > a::after,
body.home .emotive-nav-item > a::after {
	background: #FAF8F4 !important;
}

/* Icons */
body.home .emotive-header-icon,
body.home .emotive-mobile-menu-toggle {
	color: #FAF8F4 !important;
	text-shadow: 0 1px 10px rgba(0,0,0,.40);
}

body.home .emotive-header-icon svg {
	stroke: #FAF8F4 !important;
	fill: none !important;
}

/* White logo over hero */
body.home .emotive-logo img {
	filter: brightness(0) invert(1);
	opacity: 1;
}

/* Keep cart badge readable */
body.home .emotive-cart-count {
	background: #FAF8F4 !important;
	color: #1F1F1C !important;
}

/* Dropdowns remain readable */
body.home .emotive-dropdown {
	background: rgba(250,248,244,.98) !important;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

/* Mobile */
@media (max-width: 900px) {

	body.home .emotive-site-header {
		top: 42px !important;
	}

	body.home .emotive-header-inner {
		padding: 18px !important;
	}

}


/* =========================
   EMOTIVE HEADER POSITION FIX
   Announcement above hero,
   navigation overlays hero
========================= */

/* Entire header wrapper stays in normal page flow */
body.home .emotive-site-header {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	z-index: 1200;
	background: transparent !important;
}

/* Announcement bar occupies its own row ABOVE the hero */
body.home .emotive-announcement {
	position: relative !important;
	top: auto !important;
	z-index: 1300;
	width: 100%;
	background: #E8DED1 !important;
	color: #1F1F1C !important;
}

/* Only the navigation overlays the hero */
body.home .emotive-header-main {
	position: absolute !important;
	top: 100% !important;
	left: 0;
	right: 0;
	width: 100%;

	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;

	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

/* Navigation contents float directly on image */
body.home .emotive-header-inner {
	max-width: 1440px;
	margin: 0 auto !important;
	padding: 24px 32px !important;

	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;

	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

/* Remove previous logged-in positioning override */
body.home.admin-bar .emotive-site-header {
	top: auto !important;
}

@media (max-width: 900px) {

	body.home .emotive-site-header,
	body.home.admin-bar .emotive-site-header {
		top: auto !important;
	}

	body.home .emotive-header-inner {
		padding: 18px !important;
	}

}

/* =========================
   EMOTIVE HEADER ALIGNMENT FIX
========================= */

body.home .emotive-header-inner {
	display: grid !important;
	grid-template-columns: 1fr auto !important;
	align-items: center !important;
	gap: 24px !important;
}

/* Navigation left aligned */
body.home .emotive-main-nav {
	justify-content: flex-start !important;
	margin: 0 !important;
}

/* Icons remain on the right */
body.home .emotive-header-actions {
	justify-content: flex-end !important;
}

/* Keep the whole header content aligned with page content */
body.home .emotive-header-inner {
	padding-left: 32px !important;
	padding-right: 32px !important;
}

@media (max-width: 900px) {

	body.home .emotive-header-inner {
		display: flex !important;
		justify-content: space-between !important;
		padding-left: 18px !important;
		padding-right: 18px !important;
	}

}

/* EMOTIVE header nav font size */
body.home .emotive-main-nav > a,
body.home .emotive-nav-item > a {
	font-size: 16px !important;
}


/* =========================
   EMOTIVE INTRO CLEANUP
========================= */

/* Keep the important part of the lifestyle image on the right */
.emotive-intro-image {
	object-position: 68% center !important;
}

/* Completely clean the text area on the left */
.emotive-intro::after {
	background: linear-gradient(
		90deg,
		#F3EEE7 0%,
		#F3EEE7 40%,
		rgba(243,238,231,.98) 48%,
		rgba(243,238,231,.78) 58%,
		rgba(243,238,231,.22) 72%,
		rgba(243,238,231,.02) 82%
	) !important;
}

/* Refine actual website text */
.emotive-intro-content {
	padding-left: max(32px, calc((100vw - 1240px) / 2)) !important;
}

.emotive-intro-content h2 {
	max-width: 520px !important;
	font-size: clamp(44px, 4.7vw, 68px) !important;
	line-height: .98 !important;
}

.emotive-intro-content p {
	max-width: 520px !important;
	font-size: 18px !important;
	line-height: 1.65 !important;
}

/* Tablet/mobile */
@media (max-width: 900px) {

	.emotive-intro-image {
		object-position: 68% center !important;
	}

	.emotive-intro::after {
		background: linear-gradient(
			0deg,
			#F3EEE7 0%,
			rgba(243,238,231,.98) 38%,
			rgba(243,238,231,.72) 58%,
			rgba(243,238,231,.08) 82%
		) !important;
	}

}


/* Move intro content closer to left edge */
.emotive-intro-content {
	padding-left: 42px !important;
	padding-right: 32px !important;
}

@media (max-width: 900px) {
	.emotive-intro-content {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
}

@media (max-width: 600px) {
	.emotive-intro-content {
		padding-left: 18px !important;
		padding-right: 18px !important;
	}
}




/* =========================
   EMOTIVE LIFESTYLE FINAL
========================= */

.emotive-horizontal-panel {
	position: relative;
	flex: 0 0 78vw !important;
	aspect-ratio: 1376 / 768 !important;
	height: auto !important;
	overflow: hidden;
	border-radius: 26px;
	background: #1F1F1C;
}

.emotive-horizontal-panel img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;

	/*
	 * The new Flow and Swell images are already 1376x768
	 * with the complete original photograph inside them.
	 */
	object-fit: contain !important;
	object-position: center center !important;

	background: #1F1F1C;
	display: block;
}

@media (min-width: 1500px) {
	.emotive-horizontal-panel {
		flex-basis: 76vw !important;
	}
}

@media (max-width: 900px) {

	.emotive-horizontal-panel {
		width: 100% !important;
		flex: none !important;
		aspect-ratio: 1376 / 768 !important;
		height: auto !important;
	}

}


/* =========================
   EMOTIVE HORIZONTAL PANEL OVERLAP
========================= */

/* Remove visible gap */
.emotive-horizontal-track {
	gap: 0 !important;
}

/* Keep panels touching */
.emotive-horizontal-panel {
	margin-right: 0 !important;
	position: relative;
}

/* Make the middle VOLT panel overlap both sides slightly (~2mm ≈ 8px) */
.emotive-horizontal-panel:nth-child(2) {
	margin-left: -8px !important;
	margin-right: -8px !important;
	z-index: 5 !important;
}

/* Keep side panels under the middle panel */
.emotive-horizontal-panel:nth-child(1),
.emotive-horizontal-panel:nth-child(3) {
	z-index: 1 !important;
}



/* =========================
   EMOTIVE BUNDLE CARDS FINAL
========================= */

/* Keep existing card dimensions */
.emotive-bundle-card {
	height: 620px !important;
}

/*
 * Images have already been prepared to the card ratio.
 * Entire original artwork is contained within each file.
 */
.emotive-bundle-card img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center center !important;
}

/* Make desktop arrows slightly clearer */
.emotive-bundle-arrow {
	display: flex !important;
	width: 52px !important;
	height: 52px !important;
	background: rgba(250,248,244,.94) !important;
	color: #1F1F1C !important;
}

/* Keep arrows outside the main image content where possible */
.emotive-bundle-prev {
	left: 14px !important;
}

.emotive-bundle-next {
	right: 14px !important;
}

@media (max-width: 600px) {

	/* Mobile uses swipe rather than arrows */
	.emotive-bundle-arrow {
		display: none !important;
	}

	.emotive-bundle-card {
		height: 520px !important;
	}

}

/* Ensure both bundle carousel arrows are visible */
.emotive-bundle-carousel {
	position: relative !important;
}

.emotive-bundle-prev,
.emotive-bundle-next {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	z-index: 20 !important;
}

.emotive-bundle-prev {
	left: 18px !important;
}

.emotive-bundle-next {
	right: 18px !important;
}

.emotive-bundle-arrow span {
	display: block !important;
	font-size: 24px !important;
	line-height: 1 !important;
}

@media (max-width: 600px) {
	.emotive-bundle-prev,
	.emotive-bundle-next {
		display: none !important;
	}
}


/* =========================
   EMOTIVE BUNDLE CONTROLS FIX
========================= */

.emotive-bundle-carousel {
	position: relative !important;
	width: 100% !important;
	max-width: 100vw !important;
	overflow: visible !important;
}

/* Make sure both arrows stay INSIDE the visible screen */
.emotive-bundle-arrow {
	position: absolute !important;
	top: 50% !important;
	width: 52px !important;
	height: 52px !important;
	margin: 0 !important;
	transform: translateY(-50%) !important;
	z-index: 100 !important;

	display: flex !important;
	align-items: center !important;
	justify-content: center !important;

	border-radius: 50% !important;
	background: rgba(250,248,244,.96) !important;
	color: #1F1F1C !important;
	border: 1px solid rgba(31,31,28,.12) !important;

	box-shadow: 0 6px 24px rgba(31,31,28,.14) !important;
}

/* Left */
.emotive-bundle-prev {
	left: 20px !important;
	right: auto !important;
}

/* Right */
.emotive-bundle-next {
	right: 20px !important;
	left: auto !important;
}

/* Arrow character */
.emotive-bundle-arrow span {
	display: block !important;
	color: #1F1F1C !important;
	font-size: 25px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
}

/* Bring navigation dots closer to cards */
.emotive-bundle-dots {
	margin-top: 6px !important;
	transform: translateY(-12px) !important;
}

/* Keep dots centred */
.emotive-bundle-dots {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
}

@media (max-width: 600px) {

	/* Mobile stays swipe-based */
	.emotive-bundle-prev,
	.emotive-bundle-next {
		display: none !important;
	}

	.emotive-bundle-dots {
		margin-top: 8px !important;
		transform: translateY(-6px) !important;
	}
}


/* =========================
   EMOTIVE BUNDLE ARROW FORCE FIX
========================= */

.emotive-bundle-carousel {
	position: relative !important;
	overflow: visible !important;
}

/* Track can stay clipped for carousel movement */
.emotive-bundle-track {
	position: relative !important;
	z-index: 1 !important;
	overflow: hidden !important;
}

/* Force arrows over everything */
.emotive-bundle-prev,
.emotive-bundle-next {
	position: absolute !important;
	top: 50% !important;

	width: 54px !important;
	height: 54px !important;

	display: flex !important;
	align-items: center !important;
	justify-content: center !important;

	z-index: 9999 !important;
	pointer-events: auto !important;

	background: #FAF8F4 !important;
	color: #1F1F1C !important;

	border: 1px solid rgba(31,31,28,.18) !important;
	border-radius: 50% !important;

	box-shadow: 0 8px 30px rgba(31,31,28,.18) !important;

	transform: translateY(-50%) !important;

	opacity: 1 !important;
	visibility: visible !important;
}

/* Left arrow */
.emotive-bundle-prev {
	left: 26px !important;
	right: auto !important;
}

/* Right arrow */
.emotive-bundle-next {
	right: 26px !important;
	left: auto !important;
}

/* Make arrow symbols impossible to miss */
.emotive-bundle-prev span,
.emotive-bundle-next span {
	display: block !important;
	color: #1F1F1C !important;
	font-size: 26px !important;
	font-weight: 500 !important;
	line-height: 1 !important;
}

/* Pull dots up closer to cards */
.emotive-bundle-dots {
	margin-top: 0 !important;
	transform: translateY(-22px) !important;
	position: relative !important;
	z-index: 20 !important;
}

@media (max-width: 600px) {
	.emotive-bundle-prev,
	.emotive-bundle-next {
		display: none !important;
	}

	.emotive-bundle-dots {
		transform: translateY(-10px) !important;
	}
}


/* =========================
   EMOTIVE BUNDLE CAROUSEL CLEANUP
========================= */

/* Remove arrows completely */
.emotive-bundle-prev,
.emotive-bundle-next,
.emotive-bundle-arrow {
	display: none !important;
}

/* Keep carousel inside page */
.emotive-bundle-carousel {
	max-width: 1440px !important;
	margin: 0 auto !important;
	overflow: hidden !important;
}

/* Keep track aligned to page edges */
.emotive-bundle-track {
	padding-left: 32px !important;
	padding-right: 32px !important;
	overflow: hidden !important;
	box-sizing: border-box !important;
}

/* Keep cards within visible area */
.emotive-bundle-card {
	flex: 0 0 calc((100% - 36px) / 3) !important;
	max-width: calc((100% - 36px) / 3) !important;
	min-width: 0 !important;
}

/* Bring dots closer to cards */
.emotive-bundle-dots {
	margin-top: 6px !important;
	transform: translateY(-10px) !important;
}

@media (max-width: 1000px) {

	.emotive-bundle-track {
		padding-left: 22px !important;
		padding-right: 22px !important;
	}

	.emotive-bundle-card {
		flex: 0 0 calc((100% - 16px) / 2) !important;
		max-width: calc((100% - 16px) / 2) !important;
	}

}

@media (max-width: 600px) {

	.emotive-bundle-track {
		padding-left: 14px !important;
		padding-right: 14px !important;
	}

	.emotive-bundle-card {
		flex: 0 0 86% !important;
		max-width: 86% !important;
	}

	.emotive-bundle-dots {
		transform: translateY(-6px) !important;
	}

}



/* =========================
   EMOTIVE BUNDLE GRID FINAL
========================= */

/* Remove carousel controls */
.emotive-bundle-arrow,
.emotive-bundle-prev,
.emotive-bundle-next,
.emotive-bundle-dots {
	display: none !important;
}


/* Keep section contained */
.emotive-bundle-carousel {
	width: 100% !important;
	max-width: 1440px !important;
	margin: 0 auto !important;
	overflow: visible !important;
}


/* No clipping / no carousel viewport */
.emotive-bundle-track {
	width: 100% !important;
	overflow: visible !important;
	padding: 0 32px !important;
	box-sizing: border-box !important;
}


/* Four cards in a normal grid */
.emotive-bundle-container {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 18px !important;

	width: 100% !important;

	transform: none !important;
	translate: none !important;

	touch-action: auto !important;
}


/* Reset all old carousel sizing */
.emotive-bundle-card {
	position: relative !important;

	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;

	flex: none !important;

	height: auto !important;
	aspect-ratio: 1200 / 1583 !important;

	border-radius: 22px !important;
	overflow: hidden !important;

	background: #1F1F1C !important;

	scroll-snap-align: none !important;
}


/* Show the complete prepared bundle image */
.emotive-bundle-card img {
	position: absolute !important;
	inset: 0 !important;

	width: 100% !important;
	height: 100% !important;

	object-fit: contain !important;
	object-position: center center !important;

	background: #1F1F1C !important;

	transform: none !important;
}


/* Keep hover subtle */
.emotive-bundle-card:hover img {
	transform: scale(1.015) !important;
}


/* Tablet */
@media (max-width: 1050px) {

	.emotive-bundle-track {
		padding-left: 22px !important;
		padding-right: 22px !important;
	}

	.emotive-bundle-container {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 16px !important;
	}

}


/* Mobile */
@media (max-width: 600px) {

	.emotive-bundle-track {
		padding-left: 14px !important;
		padding-right: 14px !important;
	}

	.emotive-bundle-container {
		grid-template-columns: 1fr !important;
		gap: 14px !important;
	}

	.emotive-bundle-card {
		border-radius: 16px !important;
	}

}


/* =========================
   EMOTIVE SHOP YOUR WAY FULL WIDTH
========================= */

/* Use almost the entire page width */
.emotive-shop-way {
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* Move heading toward the left edge */
.emotive-shop-way-heading {
	max-width: none !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 28px !important;
	padding-right: 28px !important;
	box-sizing: border-box !important;
}

/* Let bundle area stretch nearly edge-to-edge */
.emotive-bundle-carousel {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
}

/* Small edge margin only */
.emotive-bundle-track {
	width: 100% !important;
	padding-left: 20px !important;
	padding-right: 20px !important;
	box-sizing: border-box !important;
}

/* Four large cards across desktop */
.emotive-bundle-container {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 16px !important;
	width: 100% !important;
}

/* Larger cards */
.emotive-bundle-card {
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	aspect-ratio: 0.79 / 1 !important;
}

/* Slightly larger card text */
.emotive-bundle-copy {
	padding: 28px !important;
}

.emotive-bundle-copy h3 {
	font-size: clamp(34px, 2.4vw, 48px) !important;
}

/* Tablet */
@media (max-width: 1050px) {

	.emotive-shop-way-heading {
		padding-left: 22px !important;
		padding-right: 22px !important;
	}

	.emotive-bundle-track {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	.emotive-bundle-container {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 14px !important;
	}
}

/* Mobile */
@media (max-width: 600px) {

	.emotive-shop-way-heading {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	.emotive-bundle-track {
		padding-left: 12px !important;
		padding-right: 12px !important;
	}

	.emotive-bundle-container {
		grid-template-columns: 1fr !important;
	}

}

/* Align Shop Your Way heading with section above */
.emotive-shop-way-heading {
	padding-left: 42px !important;
	padding-right: 42px !important;
}

@media (max-width: 900px) {
	.emotive-shop-way-heading {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
}

@media (max-width: 600px) {
	.emotive-shop-way-heading {
		padding-left: 18px !important;
		padding-right: 18px !important;
	}
}

/* Align Shop Your Way heading exactly with horizontal story heading */
.emotive-shop-way-heading {
	padding-left: max(32px, calc((100vw - 1440px) / 2 + 32px)) !important;
	padding-right: max(32px, calc((100vw - 1440px) / 2 + 32px)) !important;
}

@media (max-width: 900px) {
	.emotive-shop-way-heading {
		padding-left: 22px !important;
		padding-right: 22px !important;
	}
}

@media (max-width: 600px) {
	.emotive-shop-way-heading {
		padding-left: 18px !important;
		padding-right: 18px !important;
	}
}

/* =========================
   EMOTIVE A LA CARTE FULL WIDTH
========================= */

.emotive-alacarte {
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.emotive-alacarte-card {
	max-width: none !important;
	width: calc(100% - 32px) !important;
	margin-left: 16px !important;
	margin-right: 16px !important;
	height: 620px !important;
}

@media (max-width: 900px) {
	.emotive-alacarte-card {
		width: calc(100% - 24px) !important;
		margin-left: 12px !important;
		margin-right: 12px !important;
	}
}

@media (max-width: 600px) {
	.emotive-alacarte-card {
		width: calc(100% - 16px) !important;
		margin-left: 8px !important;
		margin-right: 8px !important;
	}
}


/* =========================
   EMOTIVE A LA CARTE FULL IMAGE
========================= */

.emotive-alacarte-card {
	height: auto !important;
	aspect-ratio: 16 / 7 !important;
}

/* Show the full À La Carte image */
.emotive-alacarte-card img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	object-position: center center !important;
	background: #1F1F1C !important;
}

/* Keep text overlay in place */
.emotive-alacarte-copy {
	z-index: 3 !important;
}

/* Mobile */
@media (max-width: 900px) {
	.emotive-alacarte-card {
		aspect-ratio: 16 / 9 !important;
	}
}



/* =========================
   EMOTIVE PRODUCT PAGE
========================= */

.emotive-product-page {
	background: #F3EEE7;
	color: #1F1F1C;
	padding: 0 0 100px;
}

.emotive-product-shell {
	max-width: 1500px;
	margin: 0 auto;
	padding: 46px 32px 0;
}


/* Breadcrumbs */

.emotive-product-page .wc-block-breadcrumbs {
	margin-bottom: 30px;
	color: #77736C;
	font-family: Inter, sans-serif;
	font-size: 12px;
}

.emotive-product-page .wc-block-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}


/* Main product layout */

.emotive-product-main {
	display: grid !important;
	grid-template-columns: minmax(0, 1.25fr) minmax(400px, .75fr) !important;
	gap: clamp(50px, 6vw, 100px) !important;
	align-items: start !important;
}


/* Gallery */

.emotive-product-gallery {
	width: 100% !important;
}

.emotive-product-gallery img {
	border-radius: 18px !important;
}

.emotive-product-gallery .woocommerce-product-gallery {
	width: 100% !important;
}

.emotive-product-gallery .woocommerce-product-gallery__wrapper {
	margin: 0 !important;
}


/* Product summary */

.emotive-product-summary {
	position: relative;
}

.emotive-product-summary-inner {
	position: sticky;
	top: 120px;
}


/* Category eyebrow */

.emotive-product-category {
	margin: 0 0 14px !important;
	color: #6F7558 !important;

	font-family: Inter, sans-serif !important;
	font-size: 11px !important;
	font-weight: 700 !important;

	letter-spacing: .14em !important;
	text-transform: uppercase !important;
}

.emotive-product-category a {
	color: inherit !important;
	text-decoration: none !important;
}


/* Product title */

.emotive-product-title {
	margin: 0 0 18px !important;

	color: #1F1F1C !important;

	font-family: Manrope, sans-serif !important;
	font-size: clamp(42px, 4.2vw, 68px) !important;
	font-weight: 600 !important;

	line-height: .98 !important;
	letter-spacing: -.045em !important;
}


/* Rating */

.emotive-product-summary .wc-block-components-product-rating {
	margin-bottom: 18px !important;
}


/* Price */

.emotive-product-price {
	margin: 0 0 24px !important;
}

.emotive-product-price,
.emotive-product-price .wc-block-components-product-price {
	color: #1F1F1C !important;

	font-family: Inter, sans-serif !important;
	font-size: 24px !important;
	font-weight: 600 !important;
}


/* Short description */

.emotive-product-excerpt {
	max-width: 580px;

	color: #4A4945;

	font-family: Inter, sans-serif !important;
	font-size: 16px !important;
	line-height: 1.7 !important;
}


/* Divider */

.emotive-product-divider {
	margin: 28px 0 !important;

	border-color: rgba(31,31,28,.12) !important;
}


/* Variation labels */

.emotive-product-summary table.variations {
	width: 100% !important;
	margin-bottom: 24px !important;
}

.emotive-product-summary table.variations th,
.emotive-product-summary table.variations td {
	display: block !important;
	width: 100% !important;

	padding: 0 !important;
}

.emotive-product-summary table.variations th {
	margin-bottom: 8px;
}

.emotive-product-summary table.variations label {
	color: #1F1F1C;

	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 700;

	letter-spacing: .05em;
	text-transform: uppercase;
}


/* Selects */

.emotive-product-summary select {
	width: 100% !important;
	min-height: 52px !important;

	padding: 0 16px !important;

	border: 1px solid rgba(31,31,28,.18) !important;
	border-radius: 12px !important;

	background: #FAF8F4 !important;
	color: #1F1F1C !important;

	font-family: Inter, sans-serif !important;
	font-size: 14px !important;
}


/* Quantity */

.emotive-product-summary .quantity input {
	min-height: 52px !important;
	border-radius: 12px !important;

	border: 1px solid rgba(31,31,28,.18) !important;

	background: #FAF8F4 !important;
}


/* Add to cart button */

.emotive-product-summary .single_add_to_cart_button,
.emotive-product-summary button[type="submit"] {
	min-height: 54px !important;

	padding: 14px 30px !important;

	border: 1px solid #1F1F1C !important;
	border-radius: 999px !important;

	background: #1F1F1C !important;
	color: #FAF8F4 !important;

	font-family: Inter, sans-serif !important;
	font-size: 14px !important;
	font-weight: 600 !important;

	cursor: pointer !important;

	transition:
		background 180ms ease,
		color 180ms ease,
		transform 180ms ease !important;
}

.emotive-product-summary .single_add_to_cart_button:hover,
.emotive-product-summary button[type="submit"]:hover {
	background: #6F7558 !important;
	border-color: #6F7558 !important;

	transform: translateY(-1px);
}


/* Wishlist */

.emotive-product-summary .adfy-wl-single-add-to-wislist-wrapper {
	margin-top: 14px !important;
}

.emotive-product-summary .adfy-wl-add-to-wishlist {
	width: 100% !important;
	min-height: 48px !important;

	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}


/* Benefits */

.emotive-product-benefits {
	margin-top: 28px;
	padding: 20px 0;

	border-top: 1px solid rgba(31,31,28,.10);
	border-bottom: 1px solid rgba(31,31,28,.10);
}

.emotive-product-benefits p {
	margin: 6px 0;

	color: #4A4945;

	font-family: Inter, sans-serif;
	font-size: 13px;
}


/* Metadata */

.emotive-product-meta {
	margin-top: 24px;

	color: #77736C;

	font-family: Inter, sans-serif;
	font-size: 12px;
}

.emotive-product-meta a {
	color: inherit;
}


/* Product details */

.emotive-product-details {
	margin-top: 100px;
	padding-top: 60px;

	border-top: 1px solid rgba(31,31,28,.12);
}

.emotive-product-details h2 {
	font-family: Manrope, sans-serif !important;
	font-weight: 600 !important;
}


/* Related products */

.emotive-related-products {
	margin-top: 100px;
	padding-top: 60px;

	border-top: 1px solid rgba(31,31,28,.12);
}

.emotive-related-products h2 {
	font-family: Manrope, sans-serif !important;
	font-size: clamp(32px, 3vw, 48px) !important;
	font-weight: 600 !important;

	letter-spacing: -.03em !important;
}


/* Tablet */

@media (max-width: 1000px) {

	.emotive-product-main {
		grid-template-columns: 1fr !important;
		gap: 48px !important;
	}

	.emotive-product-summary-inner {
		position: static !important;
	}

}


/* Mobile */

@media (max-width: 600px) {

	.emotive-product-shell {
		padding: 28px 16px 0;
	}

	.emotive-product-title {
		font-size: clamp(36px, 11vw, 52px) !important;
	}

	.emotive-product-details,
	.emotive-related-products {
		margin-top: 70px;
		padding-top: 40px;
	}

}

/* =========================
   EMOTIVE DARK PRODUCT THEME
========================= */

.emotive-product-page {
	background: #1F1F1C !important;
	color: #F5F1EA !important;
}

.emotive-product-shell {
	color: #F5F1EA !important;
}


/* Breadcrumbs */

.emotive-product-page .wc-block-breadcrumbs,
.emotive-product-page .wc-block-breadcrumbs a {
	color: #A9A49B !important;
}


/* Title */

.emotive-product-title {
	color: #F5F1EA !important;
}


/* Category */

.emotive-product-category,
.emotive-product-category a {
	color: #9AA17C !important;
}


/* Price */

.emotive-product-price,
.emotive-product-price .wc-block-components-product-price,
.emotive-product-price .woocommerce-Price-amount {
	color: #F5F1EA !important;
}


/* Description */

.emotive-product-excerpt,
.emotive-product-excerpt p {
	color: #C7C1B7 !important;
}


/* Dividers */

.emotive-product-divider,
.emotive-product-details,
.emotive-related-products {
	border-color: rgba(245,241,234,.12) !important;
}


/* Gallery area */

.emotive-product-gallery {
	background: #272823 !important;
	border-radius: 20px !important;
	padding: 18px !important;
	box-sizing: border-box !important;
}


/* Variation labels */

.emotive-product-summary table.variations label {
	color: #F5F1EA !important;
}


/* Selects */

.emotive-product-summary select {
	background: #292A25 !important;
	color: #F5F1EA !important;

	border: 1px solid rgba(245,241,234,.18) !important;
}

.emotive-product-summary select option {
	background: #292A25 !important;
	color: #F5F1EA !important;
}


/* Quantity */

.emotive-product-summary .quantity input {
	background: #292A25 !important;
	color: #F5F1EA !important;

	border: 1px solid rgba(245,241,234,.18) !important;
}


/* Add to cart */

.emotive-product-summary .single_add_to_cart_button,
.emotive-product-summary button[type="submit"] {
	background: #F1ECE4 !important;
	color: #1F1F1C !important;

	border-color: #F1ECE4 !important;
}

.emotive-product-summary .single_add_to_cart_button:hover,
.emotive-product-summary button[type="submit"]:hover {
	background: #8A9070 !important;
	color: #FAF8F4 !important;

	border-color: #8A9070 !important;
}


/* Benefits */

.emotive-product-benefits {
	border-top-color: rgba(245,241,234,.12) !important;
	border-bottom-color: rgba(245,241,234,.12) !important;
}

.emotive-product-benefits p {
	color: #C7C1B7 !important;
}


/* Product meta */

.emotive-product-meta,
.emotive-product-meta a {
	color: #918D85 !important;
}


/* Product details */

.emotive-product-details,
.emotive-product-details p,
.emotive-product-details li,
.emotive-product-details td,
.emotive-product-details th {
	color: #C7C1B7 !important;
}

.emotive-product-details h2,
.emotive-product-details h3 {
	color: #F5F1EA !important;
}


/* Product tabs */

.emotive-product-page .wc-tabs li a,
.emotive-product-page .woocommerce-tabs li a {
	color: #BDB7AE !important;
}

.emotive-product-page .wc-tabs li.active a,
.emotive-product-page .woocommerce-tabs li.active a {
	color: #F5F1EA !important;
}


/* Related products */

.emotive-related-products h2,
.emotive-related-products .wc-block-grid__product-title,
.emotive-related-products .woocommerce-loop-product__title {
	color: #F5F1EA !important;
}


/* Wishlist */

.emotive-product-summary .adfy-wl-add-to-wishlist {
	color: #F5F1EA !important;
	border-color: rgba(245,241,234,.20) !important;
}


/* Links */

.emotive-product-page a {
	text-decoration-color: rgba(245,241,234,.35);
}

