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

/* CSS Variables */
:root {
	--single-line-body-base-font-family: "Montserrat", sans-serif;
	--single-line-body-base-font-weight: 400;
	--single-line-body-base-font-size: 16px;
	--single-line-body-base-letter-spacing: 0px;
	--single-line-body-base-line-height: 100%;
	--single-line-body-base-font-style: normal;
}

@font-face {
	font-family: "TOP_LUXURY-Regular";
	src: url("../fonts/TOPLUXURY.otf") format("opentype");
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat.ttf") format("truetype");
}

img {
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	backface-visibility: hidden;
	/* transform: translateZ(0); */
	-webkit-backface-visibility: hidden;
	/* -webkit-transform: translateZ(0); */
}

body {
	font-family: var(--single-line-body-base-font-family), sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
	-webkit-overflow-scrolling: auto;
}

/* Ensure Montserrat is the default font for all paragraphs and text elements */
p,
span,
div,
li,
td,
th,
a,
input,
textarea,
select,
button,
label {
	font-family: var(--single-line-body-base-font-family), sans-serif;
}

/* Override any elements that might have different fonts */
.nav-link,
.btn-appointment,
.btn-explore {
	font-family: var(--single-line-body-base-font-family), sans-serif;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.header {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: linear-gradient(0deg,
			rgba(49, 48, 50, 0) 0%,
			rgba(49, 48, 50, 0.3) 37%,
			rgba(49, 48, 50, 1) 100%);
	/* padding: 20px 0; */
	transition: all 0.6s ease-in-out;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.navbar {
	position: relative;
	top: 0px;
	left: 0px;
	right: 0px;
	background: white;
	z-index: 1000;
	padding: 2px 0px;
}

.nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0 20px;
}

.hamburger-menu {
	display: flex;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
	padding-left: 26px;
	min-width: 191px;
}

.hamburger-menu span {
	width: 25px;
	height: 1.6px;
	margin-top: 2px;
	border-radius: 24px;
	background: #000000;
	transition: 0.3s;
}

.logo img {
	height: 70px;
	width: auto;
	object-fit: contain;
}

.nav-icons {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-right: 0;
	justify-content: flex-end;
	width: auto;
	padding-right: 26px;
}

.nav-icons button,
.nav-icons a {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-icons button:hover {
	color: #e6a791;
}

.nav-links {
	display: flex;
	gap: 40px;
}

.nav-link {
	color: white;
	text-decoration: none;
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 1px;
	transition: color 0.6s ease-in-out;
}

.nav-link:hover {
	color: #f0f0f0;
}

.logo-default {
	display: inline-block;
	height: 140px;
	vertical-align: middle;
	transition: all 0.6s ease-in-out;
}

.logo-scrolled {
	display: none;
	height: 80px;
	vertical-align: middle;
	transition: all 0.6s ease-in-out;
}

.scrolled .logo-default {
	display: none;
}

.scrolled .logo-scrolled {
	display: inline-block;
}


.nav-icons {
	display: flex;
	align-items: center;
	gap: 30px;
}

.icons {
	display: flex;
	gap: 15px;
}

.icon {
	width: 20px;
	height: 20px;
	cursor: pointer;
	transition: all 0.6s ease-in-out;
}

.icon:hover {
	transform: scale(1.1);
}

.nav-icons button:hover svg path,
.nav-icons button:hover svg line,
.nav-icons button:hover svg circle,
.nav-icons a:hover svg path,
.nav-icons a:hover svg line,
.nav-icons a:hover svg circle {
	stroke: #f7b44f;
	stroke-width: 2;
	transition-duration: 0.6s;
}

.nav-icons button svg path,
.nav-icons button svg line,
.nav-icons button svg circle,
.nav-icons a svg path,
.nav-icons a svg line,
.nav-icons a svg circle {
	transition-duration: 0.6s;
}

/* FiboSearch icon in header: keep it aligned with other nav icons */
.nav-icons .dgwt-wcas-search-wrapp {
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-icons .dgwt-wcas-search-wrapp form {
	margin: 0;
}

.nav-icons .dgwt-wcas-search-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Hero Section */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	max-height: 913px;
}

.hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 116%;
	height: 116%;
	object-fit: cover;
	z-index: 1;
	image-rendering: -webkit-optimize-contrast;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0deg,
			rgba(49, 48, 50, 0) 100%,
			rgba(49, 48, 50, 0.3) 30%,
			rgba(49, 48, 50, 1) 0%);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
}

.hero-title {
	font-family: "TOP_LUXURY-Regular", serif;
	font-size: clamp(2rem, 5vw, 53px);
	color: #ffffff;
	font-weight: 200;
	margin-left: 6vw;
	max-width: 492px;
	line-height: 1.2;
	margin-top: 18%;
	max-height: 245px;
}

/* Responsive Hero Section */

@media (max-width: 1200px) {
	.hero-title {
		max-width: 200px;
	}
}

@media (max-width: 900px) {
	.hero-title {
		max-width: 200px;
	}

	.hamburger-menu {
		min-width: 100px;
	}
}


@media (max-width: 768px) {
	.hero {
		height: auto;
		min-height: 0;
		aspect-ratio: 1 / 0.93;
		align-items: flex-end;
	}

	.hero-image {
		width: 140%;
		height: 100%;
		left: 50%;
		transform: translateX(-50%);
		object-fit: cover;
		object-position: center center;
	}

	.hero::before {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.55) 100%);
	}

	.hero-content {
		width: 100%;
		padding: 0 18px 20px;
	}

	.hero-title {
		margin-left: 0;
		max-width: 300px;
		text-align: start;
		color: #ffffff;
		font-size: clamp(1.05rem, 4.2vw, 1.35rem);
		line-height: 1.15;
		padding: 0;
		margin-top: 0;
		max-height: none;
	}

	.hamburger-menu {
		min-width: auto;
	}
}

/* About Section */
.about {
	padding: 80px 0px 0;
	text-align: center;
	background: white;
}

.about-icon {
	margin-bottom: 48px;
}

.about-icon img {
	width: 66px;
	height: 70px;
}

.home .about-text {
	margin: 0 auto;
	margin-bottom: 0;
	font-size: 15px;
	color: #373b3b;
	line-height: 28px;
	max-width: 485px;
	font-family: var(--single-line-body-base-font-family);
	font-weight: 500;
}

/* Collection Sections */
.collection-section,
.collection-section-2,
.presence-section {
	min-height: 100vh;
	padding: 80px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
}

/* Overlapping Collection Sections */
.collection-section,
.collection-section-2 {
	position: sticky;
	top: 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
}

/* ── Sticky wrapper ── */
.sticky-sections-wrapper {
	position: relative;
	height: 300vh;
	isolation: isolate;
	z-index: 1;
}


.presence-section {
	position: sticky;
	min-height: 100vh;
	display: flex;
	top: 0;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
}

/* Simple z-index baseline management */
.collection-section {
	position: sticky;
	top: 0;
	z-index: 1;
}

.collection-section-2 {
	position: sticky;
	top: 0;
	z-index: 2;
}

.presence-section {
	position: relative;
	z-index: 3;
}

/* Sections after collections should be above sticky sections */
.product-grid-section {
	position: relative;
	z-index: 3;
}

.category-section {
	position: relative;
	z-index: 3;
}

/* Footer should be above everything */
.footer {
	position: relative;
	z-index: 0;
}

.collection-section {
	background: url("../images/model-03.webp") center/cover;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
}

.collection-section-2 {
	background: url("../images/image-3.jpg") center/cover;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
}

.presence-section {
	background: url("../images/model-01.webp") center/cover;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
}


.collection-section::before,
.collection-section-2::before,
.presence-section::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: linear-gradient(180deg,
			rgba(49, 48, 50, 0) 0%,
			rgba(49, 48, 50, 0.3) 100%,
			rgba(49, 48, 50, 1) 100%);
	pointer-events: none;
	z-index: 0;
}

.collection-content,
.collection-content-2,
.presence-content {
	margin: auto;
	position: relative;
	z-index: 1;
}

.presence-content {
	left: 28%;
}

.collection-content {
	right: 28%;
}

.collection-title,
.presence-title {
	font-family: "TOP_LUXURY-Regular", serif;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	margin-bottom: 16px;
	font-weight: normal;
}

.btn-explore,
.btn-appointment {
	background: transparent;
	border: none;
	color: white;
	font-family: var(--single-line-body-base-font-family), sans-serif;
	font-size: 16px;
	cursor: pointer;
	padding: 10px 0;
}

/* Product Grid Section */
.product-grid-section {
	padding: 0;
	background: #f6f6f6;
}

.grid-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	width: 100%;
	overflow: hidden;
	height: 800px;
}

.grid-column-products {
	height: 100%;
	min-height: 0;
}

.grid-column-products .grid-item,
.grid-item.featured-product {
	height: 100%;
	min-height: 0;
}

.grid-item.featured-product a {
	display: block;
	height: 100%;
}

.grid-item {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 400px;
	background: radial-gradient(circle at center, #eaeaea 0%, #e9e9e9 100%);
	background: #fff;
	/* temporary till i can edit images and renable this radial-gradient */
}

.grid-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	backface-visibility: hidden;
	transform: scale(1);
	display: block;
}

.overlay-item img {
	object-fit: cover;
}

.grid-column {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.grid-column-large {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
}

.overlay-item {
	position: relative;
	grid-row: 1 / -1;
	height: 100%;
}

.grid-column-large .overlay-item {
	height: 100%;
	flex: 1 1 auto;
	min-height: 0;
}

.overlay-item a {
	display: block;
	height: 100%;
}

.overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg,
			rgba(49, 48, 50, 0) 0%,
			rgba(49, 48, 50, 0.8) 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	padding: 28px 20px 34px;
	text-align: center;
	color: white;
}

.product-overlay h4 {
	display: none;
}

.overlay-title {
	font-family: "TOP_LUXURY-Regular", serif;
	font-size: 2rem;
	margin-bottom: 0;
	font-weight: normal;
}

@media (max-width: 1024px) {

	.collection-content,
	.collection-content-2,
	.presence-content {
		margin: auto;
		padding-top: 90%;
		z-index: 1;
		padding-left: 10%;
	}

	#collection-section-3 .collection-content,
	.collection-content-2,
	.presence-content {
		padding-right: 10%;
		padding-left: 0%;
	}

	.collection-section-2::before,
	.presence-section::before {
		background: linear-gradient(179deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
		;
	}

	.grid-layout {
		height: 640px;
	}
}

/* Mobile Normal Flow for Sticky Sections when $show_sticky_section_on_phone is false */
@media (max-width: 768px) {
	.sticky-sections-wrapper.no-sticky-mobile {
		height: auto !important;
		position: relative !important;
		isolation: auto !important;
		display: flex !important;
		flex-direction: column !important;
	}

	.sticky-sections-wrapper.no-sticky-mobile .collection-section,
	.sticky-sections-wrapper.no-sticky-mobile .collection-section-2,
	.sticky-sections-wrapper.no-sticky-mobile .presence-section {
		position: relative !important;
		top: auto !important;
		z-index: 1 !important;
		min-height: auto !important;
		height: auto !important;
		width: 100% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		padding: 35px 20px !important;
		background-position: center center !important;
		background-size: cover !important;
	}

	/* Aspect ratios to display horizontal images as-is without side cropping on mobile */
	.sticky-sections-wrapper.no-sticky-mobile .collection-section {
		aspect-ratio: 4 / 3;
	}

	.sticky-sections-wrapper.no-sticky-mobile .collection-section-2 {
		aspect-ratio: 16 / 9;
	}

	.sticky-sections-wrapper.no-sticky-mobile .presence-section {
		aspect-ratio: 3 / 2;
	}

	/* Reset content padding and positioning for normal flow */
	.sticky-sections-wrapper.no-sticky-mobile .collection-content,
	.sticky-sections-wrapper.no-sticky-mobile .collection-content-2,
	.sticky-sections-wrapper.no-sticky-mobile .presence-content,
	.sticky-sections-wrapper.no-sticky-mobile #collection-section-3 .collection-content {
		position: relative !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		bottom: auto !important;
		margin: auto !important;
		padding: 0 !important;
		text-align: center !important;
		max-width: 90% !important;
		z-index: 2 !important;
	}

	/* Soften gradient overlays so key elements of horizontal images are clearly visible */
	.sticky-sections-wrapper.no-sticky-mobile .collection-section::before,
	.sticky-sections-wrapper.no-sticky-mobile .collection-section-2::before,
	.sticky-sections-wrapper.no-sticky-mobile .presence-section::before {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.45) 100%) !important;
	}

	/* Smaller typography so text doesn't cover key elements of the image */
	.sticky-sections-wrapper.no-sticky-mobile .collection-title,
	.sticky-sections-wrapper.no-sticky-mobile .presence-title {
		font-size: clamp(0.95rem, 3.8vw, 1.2rem) !important;
		margin-bottom: 6px !important;
		line-height: 1.25 !important;
		max-width: 100% !important;
		letter-spacing: 1px !important;
	}

	.sticky-sections-wrapper.no-sticky-mobile .btn-explore {
		font-size: 12px !important;
		padding: 4px 0 !important;
		letter-spacing: 0.5px !important;
	}
}

/* Category Section */
.category-section {
	padding: 100px 0 120px 0;
	/* Made section taller */
	background: #fff;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(-50vw + 50%);
	box-sizing: border-box;
}

.section-title {
	font-family: "TOP_LUXURY-Regular", serif;
	font-size: 2.8rem;
	text-align: center;
	margin-bottom: 80px;
	/* Increased spacing */
	font-weight: normal;
	text-transform: uppercase;
	padding: 0 20px;
}

.category-grid {
	display: block;
	/* Changed from grid to allow Owl Carousel to handle layout */
	padding: 0 60px;
	/* Increased padding for better full-width experience */
	max-width: none !important;
	/* Override any max-width constraints */
	width: 100vw !important;
	/* Ensure full viewport width */
	margin-left: calc(-50vw + 50%);
	/* Full width hack */
	position: relative;
	/* Removed conflicting left/right positioning */
}

.category-item {
	text-align: center;
	padding: 0 10px;
	/* Reduced padding for tighter spacing */
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.category-item>a {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.category-title-wrap {
	display: block;
	padding-top: 10px;
}

.category-image-container {
	/* background: #e0e0e0; */
	overflow: hidden;
	margin-bottom: 20px;
	aspect-ratio: 2/3;
}

.category-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	backface-visibility: hidden;
	/* transform: translateZ(0); */
	transition: transform 0.3s ease;
}

.category-item:hover img {
	transform: scale(1.02);
	/* Subtle hover effect */
}

.category-item h3.category-name {
	font-family: var(--single-line-body-base-font-family), sans-serif;
	font-size: 17px;
	font-weight: normal;
	color: black;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.15;
}

.featured-name {
	font-family: var(--single-line-body-base-font-family), sans-serif;
	font-size: 22px;
}

/* Splide category carousel (front page) */
.dp-category-splide {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(-50vw + 50%);
	padding: 0 60px;
	box-sizing: border-box;
	--dp-category-dots-offset: 10px;
}

.dp-category-splide .splide__track {
	padding: 10px 0 20px;
}

.dp-category-splide .splide__list {
	align-items: center;
}

.dp-category-splide .splide__slide {
	opacity: 0.45;
	transform: scale(0.85);
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.dp-category-splide .splide__slide.is-active {
	opacity: 1;
	transform: scale(1.05);
	z-index: 2;
}

.dp-category-splide .splide__slide .category-image-container {
	transition: margin-bottom 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Greyscale non-active slides; keep active slide colorful */
.dp-category-splide .category-image-container img {
	filter: grayscale(100%);
	transition: filter 0.25s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.dp-category-splide .splide__slide.is-active .category-image-container img {
	filter: none;
}

/* Make the centered slide feel "longer" */
.dp-category-splide .splide__slide.is-active .category-image-container {
	margin-bottom: 28px;
}

.dp-category-splide .splide__slide.is-active .category-image-container img {
	transform: scaleY(1.06);
}

.dp-category-splide .splide__pagination,
.dp-category-splide__dots {
	position: static;
	margin-top: 8px;
	gap: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0 20px;
	list-style: none;
	visibility: visible;
	opacity: 1;
	transform: translateX(var(--dp-category-dots-offset, 0px));
}

.dp-category-splide .splide__pagination__page,
.dp-category-splide__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #4A4D60;
	opacity: 1;
	transform: none;
	transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
	border: 0;
	padding: 0;
	cursor: pointer;
}

.dp-category-splide .splide__pagination__page.is-active,
.dp-category-splide__dot.is-active {
	background: #E6A791;
	transform: scale(1.3);
	opacity: 1;
	box-shadow: 0 2px 8px rgba(230, 167, 145, 0.4);
}

/* Arrows (desktop + mobile) */
.dp-category-splide .splide__arrow {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(0, 0, 0, 0.18);
	opacity: 1;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.dp-category-splide .splide__arrow svg {
	fill: #000;
}

.dp-category-splide .splide__arrow--prev {
	left: 12px;
}

.dp-category-splide .splide__arrow--next {
	right: 12px;
}

/* Keep title always below image (including 2-line labels) */
.dp-category-splide .category-title-wrap {
	padding-top: 10px;
	min-height: 2.3em;
}

.dp-category-splide .category-item h3.category-name {
	margin: 0;
	min-height: 2.3em;
}

.dp-category-splide .splide__slide.is-active .category-title-wrap {
	padding-top: 14px;
}

@media (max-width: 768px) {
	.dp-category-splide {
		padding: 0 20px;
	}

	.dp-category-splide {
		--dp-category-dots-offset: 0px;
	}

	/* Avoid slide scaling on mobile (Splide track clips overflow) */
	.dp-category-splide .splide__slide {
		opacity: 0.85;
		transform: none;
	}

	.dp-category-splide .splide__slide.is-active {
		opacity: 1;
		transform: none;
	}

	/* Ensure the label sits clearly outside the image box on mobile */
	.dp-category-splide .category-image-container {
		margin-bottom: 14px;
	}

	.dp-category-splide .splide__slide.is-active .category-image-container {
		margin-bottom: 22px;
	}

	.dp-category-splide .category-title-wrap {
		padding-top: 12px;
	}

	.dp-category-splide .splide__slide.is-active .category-title-wrap {
		padding-top: 16px;
	}

	.dp-category-splide .splide__arrow--prev {
		left: 6px;
	}

	.dp-category-splide .splide__arrow--next {
		right: 6px;
	}
}

/* Footer Z-Index Hierarchy - Normal Sections */
/* Services Section */
.services-section {
	padding: 80px 0;
	background: white;
	font-family: var(--single-line-body-base-font-family), sans-serif;
	position: relative;
	z-index: 10;
	/* Highest footer section */
}

.services-title {
	font-size: 21px;
	text-align: center;
	margin-bottom: 60px;
	font-weight: normal;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	text-align: center;
}

.service-item img {
	width: 60px;
	height: 60px;
	margin-bottom: 20px;
}

.service-item h3 {
	font-size: 15px;
	font-weight: normal;
}

/* Experience Section - carousel background (slides cover whole section) */
.experience-section {
	min-height: 100vh;
	background: #ffffff;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 10;
	/* Second highest footer section */
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	width: 100%;
	overflow: hidden;
}

.experience-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	display: flex;
	justify-content: flex-end;
	position: relative;
	/* ensure text sits above carousel */
	z-index: 2;
}

.experience-text {
	max-width: 400px;
	color: black;
}

.experience-title {
	font-family: "TOP_LUXURY-Regular", serif;
	font-size: 2.8rem;
	margin-bottom: 40px;
	margin-left: 120px;
	font-weight: normal;
	line-height: 1.2;
}

.btn-appointment {
	color: #4a4d60;
	border: 1px solid #4a4d60;
	padding: 10px 20px;
	margin-left: 120px;
	background: transparent;
	text-decoration: none;
	font-family: var(--single-line-body-base-font-family), sans-serif;
	font-size: 18px;
	transition-duration: 0.6s;
}

.btn-appointment:hover {
	background: gray;
	color: white;
	transition-duration: 0.6s;
}

/* Newsletter Section - Normal section */
.newsletter-section {
	background: white;
	position: relative;
	z-index: 10;
	/* Higher z-index than footer-container */
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.newsletter-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	max-width: full;
	margin: 0 auto;
}

.newsletter-text {
	padding: 80px 40px;
	width: 100%;
	max-width: 700px;
	grid-column: 1;
	justify-self: center;
	margin-left: 50px;
}

.newsletter-image {
	grid-column: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.newsletter-title {
	font-size: 2rem;
	font-family: var(--single-line-body-base-font-family), sans-serif;
	margin-bottom: 30px;
	line-height: 1.4;
}

.newsletter-description {
	font-size: 17px;
	line-height: 1.6;
	margin-bottom: 40px;
	font-family: var(--single-line-body-base-font-family), sans-serif;
	max-width: 400px;
	color: #666;
}

.newsletter-form {
	padding: 0 2px;
	position: relative;
}

.email-input {
	width: 100%;
	border: none;
	border-bottom: 1px solid #4a4d60;
	background: transparent;
	padding: 10px 0;
	font-size: 15px;
	color: #4a4d60;
	font-family: var(--single-line-body-base-font-family), sans-serif;
	transition: border-color 0.3s ease;
}

.email-input::placeholder {
	color: #d9d9d9;
}

.email-input:focus {
	outline: none;
	border-bottom-color: #000;
	box-shadow: none;
}

.email-input:focus-visible {
	outline: none;
	border-bottom-color: #000;
	box-shadow: none;
}

/* Newsletter Form Expansion Styles */
.newsletter-form-expanded {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
	margin-top: 0;
}

.newsletter-form-expanded.is-expanded {
	max-height: 600px;
	opacity: 1;
	margin-top: 30px;
}

/* Form Row Styles */
.form-row {
	margin-bottom: 25px;
}

/* Two Column Form Row */
.form-row-two-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

/* Three Column Form Row */
.form-row-three-columns {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

.form-column {
	display: flex;
	flex-direction: column;
}

/* Centered Submit Row */
.submit-row {
	display: flex;
	justify-content: center;
	text-align: center;
}

.form-label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #D2D2D2;
	margin-bottom: 10px;
	font-family: var(--single-line-body-base-font-family), sans-serif;
}

/* Radio Button Styles */
.radio-group {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.radio-option {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 14px;
	color: #4a4d60;
	font-family: var(--single-line-body-base-font-family), sans-serif;
}

.radio-option input[type="radio"] {
	margin-right: 8px;
	appearance: none;
	width: 16px;
	height: 16px;
	border: 2px solid #4a4d60;
	border-radius: 50%;
	position: relative;
	cursor: pointer;
	transition: all 0.2s ease;
}

.radio-option input[type="radio"]:checked {
	background-color: #4a4d60;
	border-color: #4a4d60;
}

.radio-option input[type="radio"]:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 6px;
	height: 6px;
	background-color: white;
	border-radius: 50%;
}

.radio-option input[type="radio"]:focus {
	outline: none;
	box-shadow: none;
}

.radio-label {
	user-select: none;
}

/* Name Input Styles */
.name-input {
	width: 100%;
	border: none;
	border-bottom: 1px solid #4a4d60;
	background: transparent;
	padding: 10px 0;
	font-size: 15px;
	color: #4a4d60;
	font-family: var(--single-line-body-base-font-family), sans-serif;
	transition: border-color 0.3s ease;
}

.name-input:focus {
	outline: none;
	border-bottom-color: #000;
	box-shadow: none;
}

.name-input:focus-visible {
	outline: none;
	border-bottom-color: #000;
	box-shadow: none;
}

.name-input::placeholder {
	color: #d9d9d9;
}

/* Country Dropdown Styles */
.country-select {
	width: 100%;
	border: none;
	border-bottom: 1px solid #4a4d60;
	background: transparent;
	padding: 10px 0;
	font-size: 15px;
	color: #4a4d60;
	font-family: var(--single-line-body-base-font-family), sans-serif;
	transition: border-color 0.3s ease;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a4d60' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 20px;
	padding-right: 30px;
}

.country-select:focus {
	outline: none;
	border-bottom-color: #000;
	box-shadow: none;
}

.country-select:focus-visible {
	outline: none;
	border-bottom-color: #000;
	box-shadow: none;
}

/* Checkbox Styles */
.checkbox-label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	font-size: 12px;
	color: #D2D2D2;
	font-family: var(--single-line-body-base-font-family), sans-serif;
	line-height: 1.5;
	margin-bottom: 15px;
}

.checkbox-label input[type="checkbox"] {
	margin-right: 10px;
	margin-top: 2px;
	appearance: none;
	width: 14px;
	height: 14px;
	border: 1px solid #4a4d60;
	position: relative;
	cursor: pointer;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked {
	background-color: #4a4d60;
	border-color: #4a4d60;
}

.checkbox-label input[type="checkbox"]:checked::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 10px;
	font-weight: bold;
}

.checkbox-label input[type="checkbox"]:focus {
	outline: none;
	box-shadow: none;
}

.checkbox-text {
	flex: 1;
	user-select: none;
	border: none;
	outline: none;
	color: #000;
}

.checkbox-text strong {
	font-weight: 600;
}

.privacy-consent {
	margin-bottom: 20px;
}

.optional-consent {
	border-top: 1px solid #e0e0e0;
	padding-top: 20px;
}

/* Submit Button Styles */
.newsletter-submit {
	background: #4a4d60 !important;
	color: white !important;
	border: none;
	padding: 12px 40px;
	font-size: 15px;
	font-family: var(--single-line-body-base-font-family), sans-serif;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
	margin: 20px auto 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
	min-height: 44px;
	min-width: 150px;
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
}

.newsletter-submit:hover {
	background: #000 !important;
	/* transform: translateY(-1px); */
}

.newsletter-submit:focus {
	outline: none;
	box-shadow: none;
}

.newsletter-submit:focus-visible {
	outline: none !important;
	box-shadow: none !important;
}


/* Enhanced Email Input Focus State */
.newsletter-form.email-focused .newsletter-form-expanded {
	max-height: 600px;
	opacity: 1;
	margin-top: 30px;
}

/* Newsletter Form Messages */
.newsletter-message {
	margin-top: 20px;
	padding: 12px 15px;
	border-radius: 4px;
	font-size: 14px;
	font-family: var(--single-line-body-base-font-family), sans-serif;
	line-height: 1.4;
	animation: fadeInUp 0.3s ease-out;
}

.newsletter-error {
	background-color: #fee;
	color: #c33;
	border: 1px solid #fcc;
}

.newsletter-success {
	background-color: #efe;
	color: #3c3;
	border: 1px solid #cfc;
}

.newsletter-ninja-form {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Styles for Form Fields */
@media (max-width: 1024px) {
	.form-row-three-columns {
		grid-template-columns: 1fr;
		gap: 15px;
	}
}

@media (max-width: 768px) {
	.newsletter-submit {
		width: 100%;
		padding: 15px;
		margin: 20px auto 0;
		display: block;
	}

	.radio-group {
		flex-direction: column;
		gap: 15px;
	}

	.newsletter-form-expanded.is-expanded {
		max-height: 800px !important;
	}

	.form-row {
		margin-bottom: 20px;
	}

	.submit-row {
		display: flex !important;
		justify-content: center;
		padding: 20px 0;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.form-row-two-columns {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.form-row-three-columns {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.newsletter-submit {
		width: 100%;
		padding: 15px;
		margin: 20px auto 0;
	}

	.checkbox-label {
		font-size: 11px;
		line-height: 1.4;
	}

	.checkbox-text {
		padding-left: 5px;
	}

	.privacy-consent {
		margin-bottom: 20px;
	}

	.optional-consent {
		margin-bottom: 20px;
	}
}

@media (max-width: 480px) {
	.checkbox-label {
		font-size: 10px;
		line-height: 1.3;
	}

	.country-select {
		font-size: 14px;
	}

	.form-row {
		margin-bottom: 15px;
	}

	.submit-row {
		display: flex !important;
		justify-content: center;
		padding: 20px 0;
	}

	.newsletter-submit {
		width: 100% !important;
		padding: 15px 20px !important;
		display: block !important;
	}
}

.newsletter-image img {
	width: 50%;
	height: 50%;
	opacity: 0.05;
	display: block;
	margin: 0 auto;
	object-fit: cover;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	backface-visibility: hidden;
	/* transform: translateZ(0); */
}

/* Footer */
.footer {
	padding: 0px;
}

/* Footer Container - Only sticky element in footer (bottom sticky) */
.footer-container {
	background: #f6f6f6;
	padding: 32px 20px;
	position: sticky;
	bottom: 0;
	z-index: -1;
	/* Lowest z-index - appears under normal footer sections */
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	margin-bottom: 40px;
}

.footer-right-section {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: center;
	align-items: center;
}

.footer-logo {
	width: 275px;
}

.contact-info p {
	font-weight: 500;
	margin-bottom: 10px;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
}

.contact-info a {
	color: black;
	text-decoration: underline;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}

.social-icons {
	display: flex;
	gap: 15px;
}

.social-icons img {
	width: 18px;
	height: 17px;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	font-family: var(--single-line-body-base-font-family), sans-serif;
}

.footer-column h4 {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 20px;
}

.store-locator h4 {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #333333;
	font-family: "Montserrat", Helvetica;
}

.footer-column ul {
	list-style: none;
}

.footer-column li {
	margin-bottom: 15px;
}

.footer-column a {
	color: #535555;
	text-decoration: underline;
	font-size: 13px;
	line-height: 2;
}

.store-locator h4 {
	font-size: 14px;
	font-weight: 500;
	color: #4a4d60;
	margin-bottom: 10px;
}

/* Store Locator Form Styles */
.store-locator-form {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.store-country-select {
	flex: 1;
	border: none;
	border-bottom: 1px solid #4a4d60;
	background: transparent;
	padding: 10px 0;
	font-size: 15px;
	color: #4a4d60;
	font-family: var(--single-line-body-base-font-family), sans-serif;
	transition: border-color 0.3s ease;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a4d60' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 20px;
	padding-right: 30px;
}

.store-country-select:focus {
	outline: none;
	border-bottom-color: #000;
	box-shadow: none;
}

.store-country-select:focus-visible {
	outline: none;
	border-bottom-color: #000;
	box-shadow: none;
}

.store-country-select option {
	background: white;
	color: #4a4d60;
}

.store-locator-submit {
	background: transparent;
	border: none;
	color: #4a4d60;
	cursor: pointer;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease, color 0.2s ease;
	min-width: 44px;
	height: 44px;
}

.store-locator-submit:hover {
	transform: translateX(2px);
	color: #000;
}

.store-locator-submit:focus {
	outline: none;
	color: #000;
}

.store-locator-submit:focus-visible {
	outline: none;
	color: #000;
}

.store-locator-submit svg {
	transition: transform 0.2s ease;
}

.store-locator-submit:hover svg {
	transform: translateX(2px);
}

.store-locator p {
	font-size: 14px;
	color: #4a4d60;
	opacity: 0.7;
}

.footer-bottom {
	text-align: center;
	padding-top: 40px;
	border-top: 1px solid #ddd;
}

.footer-bottom p {
	font-size: 14px;
	color: #4a4d60;
	opacity: 0.7;
}

.contact-mobile {
	display: none;
	align-content: center;
	font-family: var(--single-line-body-base-font-family), sans-serif;
	font-size: 12px;
	flex-wrap: wrap;
	gap: 30px;
	align-items: flex-end;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.nav {
		flex-direction: column;
		gap: 20px;
	}

	.mobile-hide {
		display: none !important;
	}

	.nav-links {
		gap: 20px;
	}

	.grid-layout {
		height: auto;
	}

	.category-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-links {
		grid-template-columns: repeat(2, 1fr);
	}

	.newsletter-content {
		grid-template-columns: 1fr;
	}

	.newsletter-text {
		grid-column: 1 / -1;
		justify-self: stretch;
	}

	.newsletter-image {
		grid-column: 1 / -1;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.store-locator-form {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.store-country-select {
		width: 100%;
	}

	.store-locator-submit {
		align-self: flex-end;
	}
}

@media (max-width: 768px) {
	.mobile-hide {
		display: none !important;
	}

	.contact-mobile {
		display: flex;
		justify-content: space-between;
	}

	.nav-content {
		display: grid;
		grid-template-columns: 1fr 2fr 1fr;
		align-items: center;
		padding: 0 10px;
	}

	.hamburger-menu {
		justify-self: start;
	}

	.logo {
		justify-content: center;
		display: flex;
	}

	.nav-icons {
		justify-self: end;
		width: 100%;
		justify-content: flex-end;
		margin-right: 0;
	}

	.cart-btn {
		display: flex !important;
		visibility: visible !important;
	}

	.logo img {
		max-height: 65px;
		width: auto;
	}

	.nav-icons .nav-link {
		display: none;
	}

	.hero {
		height: auto;
	}

	.grid-layout {
		grid-template-columns: 1fr;
		height: auto;
	}

	.grid-column-products .grid-item,
	.grid-item.featured-product {
		height: 420px;
	}

	.grid-item.large {
		height: auto;
		aspect-ratio: 3 / 2;
	}

	.grid-column-large {
		grid-column: 1;
	}

	.overlay {
		padding: 22px 16px 26px;
		gap: 10px;
	}

	.grid-item.large .overlay {
		padding: 16px 12px;
		gap: 6px;
	}

	.overlay-title {
		font-size: 1.4rem;
	}

	.grid-item.large .overlay-title {
		font-size: clamp(0.95rem, 3.8vw, 1.2rem);
	}

	.category-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.experience-content {
		justify-content: start;
		text-align: start;
	}

	.experience-title {
		font-size: 2rem;
		max-width: 100px;
		margin-left: 0;
	}

	.btn-appointment {
		margin-left: 0;
	}

	/* Newsletter responsive styles */
	.newsletter-content {
		grid-template-columns: 1fr;
		padding: 0 20px;
	}

	.newsletter-text {
		grid-column: 1;
		margin-left: 0;
		padding: 40px 20px;
	}

	.newsletter-image {
		display: none !important;
	}

	.newsletter-title {
		font-size: 30px;
		font-weight: 400;
		margin-bottom: 20px;
	}

	.newsletter-description {
		font-size: 16px;
		margin-bottom: 30px;
		max-width: 100%;
	}

	.social-icons {
		gap: 18px;
	}

	.collection-title,
	.presence-title {
		font-size: 1.5rem;
	}

	.presence-title {
		max-width: 200px;
	}

}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero-title {
		font-size: clamp(1rem, 4.1vw, 1.25rem);
		max-width: 280px;
	}

	.hamburger-menu {
		min-width: auto;
	}

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

	.newsletter-text {
		padding: 30px 18px;
	}

	.newsletter-title {
		font-size: 1.5rem;
		text-align: left;
		max-width: 175px;
	}

	.newsletter-description {
		font-size: 15px;
		text-align: left;
	}

	.experience-title {
		font-size: 44px;
		line-height: initial;
		margin-left: 0;
	}
}

/* Fullscreen menu */
.fullscreen-menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #ffffff;
	z-index: 3000;
	transform: translateX(-100%);
	transition: transform 1.6s ease;
	display: flex;
	flex-direction: column;
}

.is-menu-open .fullscreen-menu {
	transform: translateX(0);
}

.menu-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, .35);
	z-index: 2500;
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, visibility .2s ease;
}

.is-menu-open .menu-backdrop {
	opacity: 1;
	visibility: visible;
}

.menu-header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 16px 24px;
}

.menu-close {
	background: none;
	display: flex;
	border: none;
	color: #4a4d60;
	cursor: pointer;
	font-weight: 500;
	font-family: 'Montserrat';
	align-content: center;
	align-items: center;
	padding-left: 18px;
	gap: 5px;
}

.menu-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	flex: 1;
	min-height: 0;
}

.menu-left {
	padding: 24px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.menu-right {
	position: relative;
	background: url('../images/model-01.webp') center/cover !important;
}

.menu-right .menu-hero {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

.menu-nav {
	margin-top: 8px;
}

.menu-list {
	list-style: none;
	padding: 0;
}

.menu-list>li {
	padding: 10px 0;
}

.menu-list a {
	color: #1c1c1c;
	text-decoration: none;
	font-size: 14px;
}

.menu-list .menu-item-has-children>a {
	font-weight: 600;
}

.menu-bottom-links {
	margin-top: auto;
	padding-top: 24px;
	padding-bottom: env(safe-area-inset-bottom);
	display: grid;
	gap: 12px;
}

.menu-bottom-links a {
	color: #989898;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	font-family: 'Montserrat';
}

@media (max-width: 1024px) {
	.menu-layout {
		grid-template-columns: 1fr;
	}

	.menu-right {
		display: none;
	}
}

.fullscreen-menu .menu-layout {
	position: relative;
	flex: 1;
	min-height: 0;
	display: grid;
	grid-template-columns: 1fr min(652px, 40%);
	align-items: stretch;
}

@media (max-width: 1024px) {
	.fullscreen-menu .menu-layout {
		grid-template-columns: 1fr;
	}
}

/* Pin the right panel to the top of the viewport so its background starts under the browser top (covers header area) */
.menu-right {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	min-height: 100vh;
	max-width: 652px;
	min-width: 40vw;
	width: 100%;
	background-image: url('../images/ham-image.jpg');
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 10000;
}

/* Ensure the left panel content is not hidden behind the fixed right panel when the menu opens */
.is-menu-open .menu-left {
	/* reserve space for the fixed right panel */
	margin-right: 652px;
}

.menu-right .menu-hero {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	padding: 40px;
	box-sizing: border-box;
}

.arrow {
	left: 12px;
	display: inline;
	position: relative;
	top: 2px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.submenu a:hover .arrow,
.menu-links a:hover .arrow {
	opacity: 10;
	visibility: visible;
}

@media (max-width: 1024px) {
	.menu-layout {
		grid-template-columns: 1fr;
	}

	.menu-right {
		display: none;
		position: static;
		background-attachment: scroll;
	}
}

.is-menu-open .menu-left {
	/* reserve space for the fixed right panel */
	margin-right: 0px;
}

.row-links {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 2rem 1rem;
}

/* For mobile responsiveness: stack vertically on small screens */
@media (max-width: 600px) {
	.row-links {
		flex-direction: column;
		align-items: stretch;
	}
}

.row-links {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 2rem 1rem;
}

@media (max-width: 600px) {
	.row-links {
		flex-direction: column;
		align-items: stretch;
	}
}

/* Menu card */
.menu {
	width: 100%;
	max-width: 420px;
	background: linear-gradient(180deg, var(--card), #06101a);
	border-radius: var(--radius);
	padding: 14px;
	overflow: visible;
	--menu-panel-duration: 0.75s;
	--menu-panel-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* hide the checkboxes visually but keep them available to CSS */
.menu input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	height: 0;
	width: 0;
}

.menu-hero a {
	color: white;
	position: relative;
	top: 80px;
	text-decoration: underline;
	text-underline-offset: 2px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
}

/* Top-level links look like anchors */
.top-link {
	display: block;
	text-decoration: none;
	color: var(--text);
	font-weight: 600;
	padding: 12px 14px;
	border-radius: 8px;
	margin: 6px 0;
	transition: background .18s, transform .12s;
	cursor: pointer;
}

.top-link:hover {
	background: rgba(255, 255, 255, 0.03);
	transform: translateY(-1px);
}

/* label wrapping the first <a> will act as the toggle control */
.top-label {
	display: block;
	cursor: pointer;
}

.top-label .top-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.caret {
	font-size: 15px;
	color: #000000;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	padding: 12px 14px;
	transform-origin: center;
	transition: color var(--menu-panel-duration) var(--menu-panel-ease);
	position: relative;
	text-decoration: underline;
	text-underline-offset: 2px;
	text-transform: uppercase;
}

/* Add plus icon */
.caret::before {
	content: url('../images/plus-icon.svg');
	position: absolute;
	right: -77px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	font-weight: bold;
	transition: opacity var(--menu-panel-duration) ease, transform var(--menu-panel-duration) var(--menu-panel-ease);
}

/* Change to minus icon when menu is open */
.menu>input:checked+label.top-label .caret::before {
	content: url('../images/minus-icon.svg');
}

/* Shop caret position only */
#m1+label.top-label .caret::before {
	right: -140px;
}

.sub-toggle .caret {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 15px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #989898;
	padding: 10px 14px;
	text-decoration: none;
	text-transform: none;
	position: relative;
}

.sub-toggle .caret::before {
	content: url('../images/plus-icon.svg');
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.submenu input:checked+label.sub-toggle .caret::before,
.subsubmenu input:checked+label.sub-toggle .caret::before {
	content: url('../images/minus-icon.svg');
}

.sub-toggle-section .caret {
	padding-left: 24px;
	font-size: 14px;
}

/* SUBMENU - initially collapsed */
.submenu {
	overflow: hidden;
	max-height: 0;
	padding-top: 0;
	transition:
		max-height var(--menu-panel-duration) var(--menu-panel-ease),
		opacity var(--menu-panel-duration) ease,
		padding-top var(--menu-panel-duration) var(--menu-panel-ease);
	opacity: 0;
}

.submenu a {
	display: block;
	text-decoration: none;
	font-size: 15px;
	font-family: 'Montserrat', sans-serif;
	color: #989898;
	font-weight: 500;
	padding: 10px 14px;
	border-radius: 8px;
	background-color: transparent;
	transition: color 0.4s ease, background-color 0.4s ease;
}

.submenu a:hover {
	color: #000000;
	background: rgba(255, 255, 255, 0.02);
}

/* nested sub-submenu (level 3+) */
.subsubmenu {
	overflow: hidden;
	max-height: 0;
	padding-top: 0;
	transition:
		max-height var(--menu-panel-duration) var(--menu-panel-ease),
		opacity var(--menu-panel-duration) ease,
		padding-top var(--menu-panel-duration) var(--menu-panel-ease);
	opacity: 0;
	padding-left: 10px;
}

.menu-links {
	padding-left: 14px;
	overflow: hidden;
}

.menu-links a {
	display: block;
	text-decoration: none;
	font-size: 15px;
	font-family: 'Montserrat', sans-serif;
	color: #989898;
	font-weight: 500;
	padding: 10px 14px 10px 16px;
	border-radius: 8px;
	background-color: transparent;
	transition: color 0.4s ease, background-color 0.4s ease;
}

.menu-links a:hover {
	color: #000000;
	background: rgba(255, 255, 255, 0.02);
}

/* When top-level checkbox is checked, open submenu */
.menu>input:checked+label.top-label+.submenu {
	max-height: min(70vh, 720px);
	opacity: 1;
	padding-top: 12px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

#m3:checked+label.top-label+.submenu {
	max-height: min(60vh, 520px);
	opacity: 1;
	padding-top: 12px;
}

.menu>input:checked+label.top-label>.caret,
#m3:checked+label.top-label .caret,
.submenu input:checked+label.sub-toggle .caret,
.subsubmenu input:checked+label.sub-toggle .caret {
	color: #000000;
}

/* nested checkbox toggles inside submenu panels */
.submenu input[type="checkbox"],
.subsubmenu input[type="checkbox"] {
	display: none;
}

.submenu label.sub-toggle,
.subsubmenu label.sub-toggle {
	display: block;
	border-radius: 8px;
	cursor: pointer;
	margin: 2px 0;
}

.submenu label.sub-toggle:hover,
.subsubmenu label.sub-toggle:hover {
	background: rgba(255, 255, 255, 0.02);
}

.submenu label.sub-toggle:hover .caret,
.subsubmenu label.sub-toggle:hover .caret {
	color: #000000;
}

.submenu input:checked+label.sub-toggle+.subsubmenu {
	max-height: min(55vh, 560px);
	opacity: 1;
	padding-top: 8px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.subsubmenu input:checked+label.sub-toggle+.subsubmenu.menu-links {
	max-height: min(40vh, 360px);
	opacity: 1;
	padding-top: 8px;
	overflow: hidden;
}

/* Hide scrollbars on accordion panels (scroll still works where enabled) */
.menu :is(.submenu, .subsubmenu) {
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.menu :is(.submenu, .subsubmenu)::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.shop-gender-panel {
	padding-left: 4px;
}

/* second and third top links (simple anchors) */
.top-static {
	display: block;
	font-size: 15px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	text-decoration: none;
	color: #000000;
	padding: 12px 14px 2px 14px;
	border-radius: 8px;
	margin: 8px 0;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.top-static:hover {
	background: rgba(255, 255, 255, 0.03);
}

.link-2 {
	padding-top: 20px;
}

/* small responsive tweaks */
@media (max-width:480px) {
	.menu {
		max-width: 100%;
		padding: 10px;
		border-radius: 10px;
	}

	.top-link,
	.top-static,
	.submenu a,
	.submenu label.sub-toggle {
		font-size: 0.95rem;
	}

	.caret {
		font-size: 0.95rem;
		font-family: var(--single-line-body-base-font-family), sans-serif;
		padding: 12px 14px;
	}
}

@media (min-width:900px) {
	.menu {
		max-width: 520px;
	}
}

/* Marquee Section */
.marquee-section {
	overflow: hidden;
	padding: 130px 0;
}

.marquee-container {
	display: flex;
	flex-direction: column;
	gap: 53px;
}

.marquee-line {
	font-family: "TOP_LUXURY-Regular", serif;
	font-size: 40px;
	color: #989898;
	text-transform: uppercase;
	white-space: nowrap;
	display: flex;
	width: max-content;
	will-change: transform;
	line-height: 1;
}

.marquee-content {
	display: inline-block;
	flex: 0 0 auto;
	padding-right: 3rem;
}

@keyframes marquee-scroll-left {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

@keyframes marquee-scroll-right {
	from {
		transform: translate3d(-50%, 0, 0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}



/* Scoped to fullscreen menu to override theme defaults */
.fullscreen-menu .menu-layout {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	padding-right: min(652px, 40vw);
}

.fullscreen-menu .menu-left {
	flex: 0 0 40%;
	max-width: 350px;
	padding-right: 12px;
	overflow: visible
}

.fullscreen-menu .menu-left .links-column {
	flex: 0 0 48%;
	max-width: 300px;
	overflow-y: auto
}

.fullscreen-menu .menu-left .panels-column {
	flex: 1;
	min-width: 320px;
	overflow: visible
}

.fullscreen-menu .menu-left .menu-left-panels {
	position: relative;
	padding: 6px 6px
}

.fullscreen-menu .menu-right-panels {
	position: relative;
	min-height: clamp(420px, 62vh, 760px);
}

/* Panels hidden by default across the fullscreen menu; use .visible to show */
.fullscreen-menu .menu-panel {
	display: block !important;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(12px);
	transition:
		opacity .22s ease,
		transform .22s ease,
		visibility 0s linear .22s;
	position: absolute;
	inset: 0;
	width: 100%;
	z-index: 9999;
	background: #fff;
	padding: 12px;
	border-radius: 6px;
}

.menu-middle {
	flex: 1 1 0;
	min-width: 0;
	max-width: calc(60vw - 374px);
}

.fullscreen-menu .menu-panel.visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
	transition:
		opacity .22s ease,
		transform .22s ease,
		visibility 0s;
}

.fullscreen-menu .product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 1fr;
	gap: 12px;
	align-items: start;
	max-height: 80vh;
}

.fullscreen-menu .menu-left .menu-product {
	display: block;
	text-decoration: none;
	color: inherit
}

.fullscreen-menu .menu-left .menu-product img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	display: block;
	border-radius: 6px
}

.fullscreen-menu .menu-left .mp-title {
	font-size: 13px;
	margin-top: 8px
}

.fullscreen-menu .menu-left .mp-price {
	font-size: 13px;
	color: #777
}

.fullscreen-menu .menu-left .panel-empty {
	padding: 24px;
	color: #666
}

@media (max-width:1024px) {
	.fullscreen-menu .menu-layout {
		padding-right: 0;
	}

	.menu-middle {
		max-width: none;
	}
}

@media (max-width:900px) {
	.fullscreen-menu .menu-left {
		display: block
	}

	.fullscreen-menu .panels-column {
		display: none
	}
}

.product-grid a {
	min-width: 10vw;
	max-width: 200px;
}

/* Experience section carousel (3 slides) - fade loop */
.experience-section {
	position: relative;
	overflow: hidden
}

.experience-section .experience-content {
	position: relative;
	z-index: 2
}

.experience-carousel {
	position: absolute;
	inset: 0;
	z-index: 1
}

.experience-carousel .carousel-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0;
	animation: experience-fade 18s infinite linear
}

.experience-carousel .carousel-slide:nth-child(1) {
	animation-delay: 0s
}

.experience-carousel .carousel-slide:nth-child(2) {
	animation-delay: 6s
}

.experience-carousel .carousel-slide:nth-child(3) {
	animation-delay: 12s
}

@keyframes experience-fade {
	0% {
		opacity: 0
	}

	5% {
		opacity: 1
	}

	30% {
		opacity: 1
	}

	35% {
		opacity: 0
	}

	100% {
		opacity: 0
	}
}

/* Small visual adjustments for content over images */
.experience-section .experience-text {
	position: relative;
	color: #111
}

.experience-section .btn-appointment {
	z-index: 3
}

/* Pin bottom links to viewport bottom-left when fullscreen menu is open */
.fullscreen-menu .menu-bottom-links {
	position: fixed;
	left: 24px;
	bottom: calc(24px + env(safe-area-inset-bottom, 0px));
	z-index: 10050;
	background: rgba(255, 255, 255, 0.98);
	padding: 10px 12px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fullscreen-menu .menu-bottom-links a {
	display: block;
	text-decoration: none;
	font-weight: 500
}

.fullscreen-menu .menu-bottom-links a:hover {
	color: #1c1c1c
}

/* Keep pinned on mobile too, with inset spacing and responsive width */
@media (max-width:900px) {
	.fullscreen-menu .menu-bottom-links {
		left: 12px;
		right: 12px;
		bottom: calc(12px + env(safe-area-inset-bottom, 0px));
		border-radius: 10px;
		padding: 10px 14px;
		background: rgba(255, 255, 255, 0.96);
	}
}

/* Ensure the links column (scroll area) has room for the fixed controls */
.fullscreen-menu .menu-left .links-column {
	padding-bottom: 120px
}

@media (max-width: 768px) {
	.menu-close {
		padding-left: 0px;
	}
}
