:root {
	/* Palette Colors */
	--color-light-brown: #A78873;
	--color-orange: #E29C6B;
	--color-dark-grey-blue: #697D85;
	--color-black: #000000;
	--color-dark-brown: #5C5954;
	--color-white: #ffffff;
	--color-light-grey: #E1E1E1;
	--color-pale-brown: #F3EDE4;
	/* border color */
	--color-mid-grey: #D9D9D9;
	/* grey d9d9d9 */
	--color-light-sand: #E3DED2;
	--color-sand-bg: #EBE6DE;
	--color-dark-brown-2: #695649;
	--color-related-bg: #F2ECE3;
	--color-card-hover-bg: #EBE3D8;
	--color-border-beige: #D6CCBE;
	--color-pagination-dots: #b9b5a9;
	--color-bg-light: #FAF7F1;
	--nathan-color-loader-bg: #695649;
	--nathan-color-loader-stroke: #FAF7F1;

	/* Font Families */
	--font-cormorant: 'Cormorant Garamond', serif;
	--font-lato: 'Lato', sans-serif;

	/* H1 Variables */
	--h1-font-family: var(--font-cormorant);
	--h1-font-weight: 500;
	--h1-font-size: min(max(45px, calc(2.8125rem + (60 - 45) * ((100vw - 390px) / (1440 - 390)))), 60px);
	--h1-line-height: min(max(52px, calc(3.25rem + (58 - 52) * ((100vw - 390px) / (1440 - 390)))), 58px);
	--h1-letter-spacing: min(max(0.03em, calc(0.03em + (0.05 - 0.03) * ((100vw - 390px) / (1440 - 390)))), 0.05em);
	--h1-text-transform: capitalize;
	--h1-color: var(--color-black);

	/* H2 Variables */
	--h2-font-family: var(--font-cormorant);
	--h2-font-weight: 500;
	--h2-font-size: min(max(36px, calc(2.25rem + (50 - 36) * ((100vw - 390px) / (1440 - 390)))), 50px);
	--h2-line-height: min(max(42px, calc(2.625rem + (58 - 42) * ((100vw - 390px) / (1440 - 390)))), 58px);
	--h2-letter-spacing: min(max(0.03em, calc(0.03em + (0.05 - 0.03) * ((100vw - 390px) / (1440 - 390)))), 0.05em);
	--h2-text-transform: capitalize;
	--h2-color: var(--color-black);

	/* H3 Variables */
	--h3-font-family: var(--font-cormorant);
	--h3-font-weight: 400;
	--h3-font-size: 36px;
	--h3-line-height: 42px;
	--h3-letter-spacing: 0.03em;
	--h3-color: var(--color-black);

	/* H4 Variables */
	--h4-font-family: var(--font-cormorant);
	--h4-font-weight: 400;
	--h4-font-size: 24px;
	--h4-line-height: 30px;
	--h4-letter-spacing: 0.03em;
	--h4-color: var(--color-black);

	/* Body Variables */
	--body-font-family: var(--font-lato);
	--body-font-weight: 400;
	--body-font-size: 16px;
	--body-line-height: 22px;
	--body-letter-spacing: 0;
	--body-color: var(--color-dark-brown);

	/* H5 / Lead-in Variables */
	--h5-font-family: var(--font-lato);
	--h5-font-weight: 400;
	--h5-font-size: 18px;
	--h5-line-height: 24px;
	--h5-letter-spacing: 0;
	--h5-color: var(--color-black);

	/* Button Variables */
	--btn-font-family: var(--font-lato);
	--btn-font-weight: 700;
	--btn-font-size: 14px;
	--btn-line-height: 22px;
	--btn-letter-spacing: 0;
	--btn-text-transform: uppercase;

	/* Border Styles */
	--border-color: var(--color-light-grey);

	/* Link Variables */
	--link-color: var(--color-orange);

	/* Remark Variables */
	--remark-font-family: var(--font-lato);
	--remark-font-weight: 400;
	--remark-font-size: 14px;
	--remark-line-height: 100%;
	--remark-letter-spacing: 0;
}

@media (max-width: 767px) {
	:root {
		--h2-font-weight: 400;
	}
}

/* Language Specific Font Overrides */
html[lang*="zh-hant"] body,
body.lang-tc {
	--font-cormorant: 'Noto Sans TC', sans-serif;
	--font-lato: 'Noto Sans TC', sans-serif;
}

html[lang*="zh-hans"] body,
body.lang-sc {
	--font-cormorant: 'Noto Sans SC', sans-serif;
	--font-lato: 'Noto Sans SC', sans-serif;
}

.entry-content p:not(:last-child),
.entry-content blockquote:not(:last-child),
.entry-content pre:not(:last-child),
.entry-content address:not(:last-child) {
	margin-bottom: var(--body-line-height);
}

.entry-content :is(p, blockquote, pre, address) a:not(.button):not(.btn):not(.button-secondary):not(.btn-secondary) {
	color: var(--color-orange);
}

/* CSS Rules calling variables */

h1,
.h1 {
	font-family: var(--h1-font-family);
	font-weight: var(--h1-font-weight);
	font-size: var(--h1-font-size);
	line-height: var(--h1-line-height);
	letter-spacing: var(--h1-letter-spacing);
	text-transform: var(--h1-text-transform);
	color: var(--h1-color);
}

h2,
.h2 {
	font-family: var(--h2-font-family);
	font-weight: var(--h2-font-weight);
	font-size: var(--h2-font-size);
	line-height: var(--h2-line-height);
	letter-spacing: var(--h2-letter-spacing);
	text-transform: var(--h2-text-transform);
	color: var(--h2-color);
}

h3,
.h3 {
	font-family: var(--h3-font-family);
	font-weight: var(--h3-font-weight);
	font-size: var(--h3-font-size);
	line-height: var(--h3-line-height);
	letter-spacing: var(--h3-letter-spacing);
	color: var(--h3-color);
}

h4,
.h4 {
	font-family: var(--h4-font-family);
	font-weight: var(--h4-font-weight);
	font-size: var(--h4-font-size);
	line-height: var(--h4-line-height);
	letter-spacing: var(--h4-letter-spacing);
	color: var(--h4-color);
}

body {
	background-color: #FAF7F1;
}

body,
p,
.body-text {
	font-family: var(--body-font-family);
	font-weight: var(--body-font-weight);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	letter-spacing: var(--body-letter-spacing);
	color: var(--body-color);
}

p:not(:last-child) {
	margin-bottom: var(--body-line-height);
}

ul,
ol {
	font-family: var(--body-font-family);
	font-weight: var(--body-font-weight);
	font-size: var(--body-font-size);
	line-height: 30px;
	letter-spacing: var(--body-letter-spacing);
	color: var(--body-color);
	margin-top: 0;
	margin-bottom: 20px;
	margin-left: 17px;
	padding-left: 10px;
}

ul li::marker,
ol li::marker {
	margin-right: 10px;
}

h5,
.h5,
.lead-in {
	font-family: var(--h5-font-family);
	font-weight: var(--h5-font-weight);
	font-size: var(--h5-font-size);
	line-height: var(--h5-line-height);
	letter-spacing: var(--h5-letter-spacing);
	color: var(--h5-color);
}

.remark,
.desktop-remark {
	font-family: var(--remark-font-family);
	font-weight: var(--remark-font-weight);
	font-style: normal;
	font-size: var(--remark-font-size);
	leading-trim: none;
	line-height: var(--remark-line-height);
	letter-spacing: var(--remark-letter-spacing);
}

button,
.btn,
.button,
input[type="button"],
input[type="submit"] {
	font-family: var(--btn-font-family);
	font-weight: var(--btn-font-weight);
	font-size: var(--btn-font-size);
	line-height: var(--btn-line-height);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	border-radius: 4.8px;

	/* Nathan Hotel custom button styles */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 15.5px 27px;
	gap: 16px;
	background-color: var(--color-orange);
	color: var(--color-white);
	border: 1.8px solid var(--color-orange);
	text-decoration: none;
	cursor: pointer;
	transition: background-color 295ms cubic-bezier(.455, .03, .515, .955),
		color 295ms cubic-bezier(.455, .03, .515, .955),
		border-color 295ms cubic-bezier(.455, .03, .515, .955);
	--bevel-clippath: 0 0, 89.22% 0, 100% 38.18%, 100% 100%, 10.78% 100%, 0 61.82%;
}

/* Arrow Slide Effect using CSS Multi-mask */
button::after,
.button::after,
.btn::after,
.button-secondary::after,
.btn-secondary::after {
	content: "";
	display: inline-block;
	width: 17px;
	height: 13px;
	background-color: currentColor;
	-webkit-mask-image: url('../images/button-arrow.svg'), url('../images/button-arrow.svg');
	mask-image: url('../images/button-arrow.svg'), url('../images/button-arrow.svg');
	-webkit-mask-size: 17px 13px;
	mask-size: 17px 13px;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: 0 50%, -24px 50%;
	mask-position: 0 50%, -24px 50%;
	transition: mask-position 0.65s cubic-bezier(0.2, 0.75, 0.5, 1), -webkit-mask-position 0.65s cubic-bezier(0.2, 0.75, 0.5, 1);
	flex-shrink: 0;
}

button:hover::after,
.button:hover::after,
.btn:hover::after,
button:focus::after,
.button:focus::after,
.btn:focus::after,
.button-secondary:hover::after,
.btn-secondary:hover::after,
.button-secondary:focus::after,
.btn-secondary:focus::after {
	-webkit-mask-position: 24px 50%, 0 50%;
	mask-position: 24px 50%, 0 50%;
}

/* Back Button Variant (Arrow Slide Left Effect) */
button.is-back::after,
.button.is-back::after,
.btn.is-back::after,
.button-secondary.is-back::after,
.btn-secondary.is-back::after {
	display: none;
}

button.is-back::before,
.button.is-back::before,
.btn.is-back::before,
.button-secondary.is-back::before,
.btn-secondary.is-back::before {
	content: "";
	display: inline-block;
	width: 17px;
	height: 13px;
	background-color: currentColor;
	-webkit-mask-image: url('../images/button-arrow.svg'), url('../images/button-arrow.svg');
	mask-image: url('../images/button-arrow.svg'), url('../images/button-arrow.svg');
	-webkit-mask-size: 17px 13px;
	mask-size: 17px 13px;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: 0 50%, -24px 50%;
	mask-position: 0 50%, -24px 50%;
	transition: mask-position 0.65s cubic-bezier(0.2, 0.75, 0.5, 1), -webkit-mask-position 0.65s cubic-bezier(0.2, 0.75, 0.5, 1);
	flex-shrink: 0;
	transform: rotate(180deg);
}

button.is-back:hover::before,
.button.is-back:hover::before,
.btn.is-back:hover::before,
button.is-back:focus::before,
.button.is-back:focus::before,
.btn.is-back:focus::before,
.button-secondary.is-back:hover::before,
.btn-secondary.is-back:hover::before,
.button-secondary.is-back:focus::before,
.btn-secondary.is-back:focus::before {
	-webkit-mask-position: 24px 50%, 0 50%;
	mask-position: 24px 50%, 0 50%;
}

/* Hover effect for default primary button */
button:not(.button-secondary):not(.is-secondary):not(.button-outline-white):not(.is-outline-white):not(.button-outline-orange):not(.is-outline-orange):not(.swiper-nav-btn):hover,
.button:not(.button-secondary):not(.is-secondary):not(.button-outline-white):not(.is-outline-white):not(.button-outline-orange):not(.is-outline-orange):not(.swiper-nav-btn):hover,
.btn:not(.button-secondary):not(.is-secondary):not(.button-outline-white):not(.is-outline-white):not(.button-outline-orange):not(.is-outline-orange):not(.swiper-nav-btn):hover {
	background-color: var(--color-light-brown);
	border-color: var(--color-light-brown);
	color: var(--color-white);
}

/* White Outline Primary Button variant */
.button-outline-white,
.button.is-outline-white,
.btn-outline-white {
	background-color: transparent !important;
	border-color: var(--color-white) !important;
	color: var(--color-white) !important;
}

.button-outline-white:hover,
.button.is-outline-white:hover,
.btn-outline-white:hover,
.button-outline-white:focus,
.button.is-outline-white:focus,
.btn-outline-white:focus {
	--bevel-outline-color: var(--color-light-brown) !important;
	background-color: var(--color-light-brown) !important;
	border-color: var(--color-light-brown) !important;
	color: var(--color-white) !important;
}

/* Orange Outline Primary Button variant */
.button-outline-orange,
.button.is-outline-orange,
.btn-outline-orange {
	background-color: transparent !important;
	border-color: var(--color-orange) !important;
	color: var(--color-orange) !important;
}

.button-outline-orange:hover,
.button.is-outline-orange:hover,
.btn-outline-orange:hover,
.button-outline-orange:focus,
.button.is-outline-orange:focus,
.btn-outline-orange:focus {
	--bevel-outline-color: var(--color-orange) !important;
	background-color: var(--color-orange) !important;
	border-color: var(--color-orange) !important;
	color: var(--color-white) !important;
}

/* Ensure border remains transparent on hover/focus to prevent double borders with SVG outline */
.bevel.bevel-outline:hover,
.bevel.bevel-outline:focus,
.bevel.bevel-outline:focus-within {
	border-color: transparent !important;
}

/* Secondary Button (No border, no padding, slide hover underline) */
.button-secondary,
.button.is-secondary,
.btn-secondary {
	background-color: transparent !important;
	border: none !important;
	padding: 0 !important;
	width: auto !important;
	height: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	clip-path: none !important;
	border-radius: 0 !important;
	display: inline-flex;
	align-items: center;
	gap: 16px;
	position: relative;
	text-decoration: none;
	cursor: pointer;
	color: var(--color-dark-brown) !important;
	font-family: var(--btn-font-family);
	font-weight: var(--btn-font-weight);
	font-size: var(--btn-font-size);
	line-height: var(--btn-line-height);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
}

/* Underline slide effect for Secondary Button disabled */
/*
.button-secondary::before,
.button.is-secondary::before,
.btn-secondary::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.5, 1);
	transform: scaleX(0);
	transform-origin: right;
}

.button-secondary:hover::before,
.button.is-secondary:hover::before,
.btn-secondary:hover::before,
.button-secondary:focus::before,
.button.is-secondary:focus::before,
.btn-secondary:focus::before {
	transform: scaleX(1);
	transform-origin: left;
}
*/

/* Secondary Button Back Variant (Arrow on left, Underline effect on bottom) */
.button-secondary.is-back::before,
.button.is-secondary.is-back::before,
.btn-secondary.is-back::before {
	position: relative;
	bottom: auto;
	left: auto;
	display: inline-block;
	transform-origin: center;
	transform: rotate(180deg) !important;
}

.button-secondary.is-back:hover::before,
.button.is-secondary.is-back:hover::before,
.btn-secondary.is-back:hover::before,
.button-secondary.is-back:focus::before,
.button.is-secondary.is-back:focus::before,
.btn-secondary.is-back:focus::before {
	transform: rotate(180deg) !important;
}

/* Underline slide effect for Secondary Button Back Variant disabled */
/*
.button-secondary.is-back::after,
.button.is-secondary.is-back::after,
.btn-secondary.is-back::after {
	display: block;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	-webkit-mask-image: none;
	mask-image: none;
	transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.5, 1);
	transform: scaleX(0);
	transform-origin: right;
}

.button-secondary.is-back:hover::after,
.button.is-secondary.is-back:hover::after,
.btn-secondary.is-back:hover::after,
.button-secondary.is-back:focus::after,
.button.is-secondary.is-back:focus::after,
.btn-secondary.is-back:focus::after {
	transform: scaleX(1);
	transform-origin: left;
}
*/

/* Helper color classes for Links and Secondary Buttons */
.is-orange,
.color-orange {
	color: var(--color-orange) !important;
}

.is-light-brown,
.color-light-brown {
	color: var(--color-light-brown) !important;
}

.is-dark-brown,
.color-dark-brown {
	color: var(--color-dark-brown) !important;
}

.is-white,
.color-white {
	color: var(--color-white) !important;
}

.is-black,
.color-black {
	color: var(--color-black) !important;
}

.is-dark-grey-blue,
.color-dark-grey-blue {
	color: var(--color-dark-grey-blue) !important;
}

.is-light-grey,
.color-light-grey {
	color: var(--color-light-grey) !important;
}

.is-mid-grey,
.color-mid-grey {
	color: var(--color-mid-grey) !important;
}

/* Normal Link style (Underlined by default, color transition) */
a:not(.button):not(.btn):not(.button-secondary):not(.btn-secondary) {
	color: var(--color-dark-brown);
	text-decoration: none !important;
	background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
	background-repeat: no-repeat;
	padding-bottom: 2px;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	display: inline;
	transition: color 295ms cubic-bezier(.455, .03, .515, .955),
		background-size 0.55s cubic-bezier(0.2, 0.75, 0.5, 1);
}

/* Case 1: Underline appears on hover (applies to default and .link-hover-underline) */
a:not(.button):not(.btn):not(.button-secondary):not(.btn-secondary):not(.link-with-underline),
a.link-hover-underline:not(.button):not(.btn):not(.button-secondary):not(.btn-secondary) {
	background-size: 0% 1px;
	background-position: 100% 100%;
}

a:not(.button):not(.btn):not(.button-secondary):not(.btn-secondary):not(.link-with-underline):hover,
a:not(.button):not(.btn):not(.button-secondary):not(.btn-secondary):not(.link-with-underline):focus,
a.link-hover-underline:not(.button):not(.btn):not(.button-secondary):not(.btn-secondary):hover,
a.link-hover-underline:not(.button):not(.btn):not(.button-secondary):not(.btn-secondary):focus {
	color: var(--color-orange);
	background-size: 100% 1px;
	background-position: 0 100%;
}

/* Case 2: Underlined by default, underline disappears on hover (applies to .link-with-underline) */
a.link-with-underline:not(.button):not(.btn):not(.button-secondary):not(.btn-secondary) {
	background-size: 100% 1px;
	background-position: 0 100%;
}

a.link-with-underline:not(.button):not(.btn):not(.button-secondary):not(.btn-secondary):hover {
	color: var(--color-orange);
	background-size: 0% 1px;
	background-position: 100% 100%;
}

/* Keep underline for active tabs/links on hover */
a.link-with-underline.is-active,
a.link-with-underline.is-active:hover {
	background-size: 100% 1px !important;
	background-position: 0 100% !important;
}



.site-preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--nathan-color-loader-bg);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.6s ease, visibility 0.6s ease;
	opacity: 1;
	visibility: visible;
}

.site-preloader.fade-out {
	opacity: 0;
	visibility: hidden;
}

.site-preloader .loader-inner {
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-preloader svg {
	overflow: visible;
}

.site-preloader svg path {
	transform-box: fill-box;
	transform-origin: center;
}

.site-preloader .loader-path-1 {
	transform: translateY(-50%);
}

.site-preloader .loader-path-3 {
	transform: translateY(50%);
}

/* Home Preloader Specific Styles */
.site-preloader-home {
	background-color: var(--color-light-brown);
	transition: background-color 0.1s ease;
}

/* Only transition wrapper background to transparent when reveal starts */
.site-preloader-home.start-reveal {
	background-color: transparent;
}

.home-loader-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

.bg-rect-white {
	opacity: 0;
	transition: opacity 0.8s ease;
}

.site-preloader-home.start-reveal .bg-rect-white {
	opacity: 1;
}

.loader-home-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	transition: opacity 0.8s ease;
	opacity: 1;
}

.loading-home-svg {
	width: clamp(287.55px, 73.73vw, 421px);
	height: auto;
	aspect-ratio: 421 / 683;
}

.loading-home-svg path {
	stroke-dasharray: 1020px;
	stroke-dashoffset: 1020px;
}

.site-preloader-home.start-drawing .loading-home-svg path {
	stroke-dashoffset: 0 !important;
	transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-preloader-home.start-reveal .loader-home-inner {
	opacity: 0;
}

.site-preloader-home .mask-hole-group {
	transform-origin: 210.5px 341.5px;
	/* Centered and scaled with --mask-scale-factor dynamically computed by JS */
	transform: translate(var(--mask-dx, 0px), var(--mask-dy, 0px)) scale(var(--mask-scale-factor, 1));
}

.site-preloader-home .mask-hole-poly {
	fill: #ffffff;
	transition: fill 0.8s ease;
}

/* Transition mask polygon to black to open the hole */
.site-preloader-home.start-reveal .mask-hole-poly {
	fill: #000000;
}

.site-preloader-home.start-zoom .mask-hole-group {
	transform: translate(var(--mask-dx, 0px), var(--mask-dy, 0px)) scale(calc(var(--mask-scale-factor, 1) * 15));
	transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.site-preloader-home.loader-hidden {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}


/* =====================================================================
   Bevel Effect (Auto clip-path polygon, border-radius)
   ===================================================================== */
.bevel {
	position: relative;
	overflow: hidden;
	clip-path: var(--bevel-flat, none);
	transition: clip-path 0.5s cubic-bezier(.65, 0, .35, 1);
}

.bevel:hover,
.bevel:focus,
.bevel:focus-within,
.card:hover .bevel,
.card:focus-within .bevel {
	clip-path: var(--bevel-active, none);
	-webkit-clip-path: var(--bevel-active,none);
}

.bevel.bevel-static {
	clip-path: var(--bevel-active, none);
	-webkit-clip-path: var(--bevel-active, none);
}

/* Bevel Outline Support */
.bevel-outline-svg {
	position: absolute;
	top: var(--bevel-outline-offset, 0);
	left: var(--bevel-outline-offset, 0);
	width: var(--bevel-outline-svg-width, 100%);
	height: var(--bevel-outline-svg-height, 100%);
	overflow: visible;
	pointer-events: none;
}

.bevel-outline-path {
	fill: none;
	stroke: var(--bevel-outline-color, currentColor);
	stroke-width: var(--bevel-outline-width, 0);
	vector-effect: non-scaling-stroke;
	d: var(--bevel-flat, none);
	transition: d 0.5s cubic-bezier(.65, 0, .35, 1), stroke 0.3s ease;
}

.bevel:hover .bevel-outline-path,
.bevel:focus .bevel-outline-path,
.bevel:focus-within .bevel-outline-path,
.card:hover .bevel-outline-path,
.card:focus-within .bevel-outline-path {
	d: var(--bevel-active, none);
}

.bevel.bevel-static .bevel-outline-path {
	d: var(--bevel-active, none);
}

@media (prefers-reduced-motion: reduce) {

	.bevel,
	.bevel-outline-path {
		transition: none !important;
	}
}

/* =====================================================================
   Container & Layout Rules (Page, Post Default max-width 1440px)
   ===================================================================== */
.container {
	max-width: 1416px;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	box-sizing: border-box;
}

/* Reset max-width restriction inside .container to allow it to expand to 1440px */
.container .entry-content>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
.container .entry-header,
.container .entry-footer,
.container .comments-area {
	max-width: 100% !important;
}

/* =====================================================================
   Forms & Inputs Styles
   ===================================================================== */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
.site textarea,
.site select {
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	letter-spacing: var(--body-letter-spacing);
	font-weight: var(--body-font-weight);
	color: var(--color-black);
	background-color: transparent;
	border: none;
	border-bottom: 1px solid var(--color-light-grey);
	border-radius: 0;
	padding-left: 4px;
	padding-bottom: 10px;
	padding-top: 10px;
	box-shadow: none;
	transition: border-color 0.25s ease, color 0.25s ease;
	width: 100%;
	box-sizing: border-box;
}

/* Placeholder Styling */
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
input[type="date"]::placeholder,
input[type="month"]::placeholder,
input[type="week"]::placeholder,
input[type="time"]::placeholder,
input[type="datetime"]::placeholder,
input[type="datetime-local"]::placeholder,
.site textarea::placeholder {
	color: var(--color-dark-brown);
	opacity: 1;
	/* Firefox fix */
}

/* Webkit placeholder color */
input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
.site textarea::-webkit-input-placeholder {
	color: var(--color-dark-brown);
}

/* Focus and Active States */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
.site textarea:focus,
.site select:focus {
	border-bottom-color: var(--color-orange);
	outline: none;
}

/* Textarea default height (4.5 lines of text) */
.site textarea {
	height: 99px;
	min-height: 99px;
	resize: vertical;
}

/* Form spacing (Row Gap) */
.form-row:not(:last-child),
.form-group:not(:last-child),
.wpcf7-form p:not(:last-child),
.comment-form p:not(:last-child) {
	margin-top: 0;
	margin-bottom: 30px;
}

.form-gap {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

@media (min-width: 768px) {

	.form-row:not(:last-child),
	.form-group:not(:last-child),
	.wpcf7-form p:not(:last-child),
	.comment-form p:not(:last-child) {
		margin-bottom: 50px;
	}

	.form-gap {
		gap: 50px;
	}
}

/* Required Asterisk */
.required,
.wpcf7-required,
span.required,
span.wpcf7-required {
	color: var(--color-orange) !important;
}

/* Custom File Upload Styling */
.nathan-file-wrapper {
	position: relative;
	width: 100%;
	display: block;
	box-sizing: border-box;
}

/* Hide real input but keep it on top to capture click */
.nathan-file-wrapper input[type="file"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
	margin: 0;
	padding: 0;
}

/* Label styling mimicking the default inputs */
.nathan-file-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	letter-spacing: var(--body-letter-spacing);
	font-weight: var(--body-font-weight);
	color: var(--color-dark-brown);
	/* placeholder color */
	background-color: transparent;
	border-bottom: 1px solid var(--color-light-grey);
	padding-left: 4px;
	padding-bottom: 10px;
	padding-top: 10px;
	box-sizing: border-box;
	width: 100%;
	transition: border-color 0.25s ease;
	pointer-events: none;
	/* click passes through to the input file below */
}

/* Hover/Focus border effect */
.nathan-file-wrapper:hover .nathan-file-label,
.nathan-file-wrapper input[type="file"]:focus+.nathan-file-label {
	border-bottom-color: var(--color-orange);
}

/* File upload styles for chosen files */
.nathan-file-chosen {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.nathan-file-wrapper.has-file .nathan-file-chosen {
	gap: 30px;
}

.nathan-file-name {
	display: none;
	font-style: italic;
	color: var(--color-light-brown);
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	letter-spacing: var(--body-letter-spacing);
}

.nathan-file-wrapper.has-file .nathan-file-name {
	display: inline-block;
}

.nathan-file-icon {
	color: var(--color-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask-image: url('../images/export.svg');
	mask-image: url('../images/export.svg');
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

/* Mobile styles for file upload when file is uploaded */
@media (max-width: 767px) {
	.nathan-file-wrapper.has-file .nathan-file-placeholder {
		display: none;
	}

	.nathan-file-wrapper.has-file .nathan-file-chosen {
		width: 100%;
		justify-content: space-between;
		gap: 0;
	}
}

/* Custom Input Wrapper for Required Placeholder */
.nathan-input-wrapper {
	position: relative;
	width: 100%;
	display: block;
	box-sizing: border-box;
}

/* Simulated Placeholder Label for required inputs */
.nathan-placeholder-label {
	position: absolute;
	left: 4px;
	top: 10px;
	bottom: auto;
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	letter-spacing: var(--body-letter-spacing);
	font-weight: var(--body-font-weight);
	color: var(--color-dark-brown);
	/* placeholder color */
	pointer-events: none;
	/* click passes through to the input below */
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 1;
}

.nathan-input-wrapper textarea+.nathan-placeholder-label {
	top: 10px;
	bottom: auto;
}

/* Hide simulated placeholder when input is focused or has a value */
.nathan-input-wrapper.is-focused .nathan-placeholder-label,
.nathan-input-wrapper.has-value .nathan-placeholder-label {
	opacity: 0;
	visibility: hidden;
}

/* ==========================================================================
   Swiper Navigation Buttons & Pagination
   ========================================================================== */
/* Container wrapper for variation with pagination */
.swiper-nav-wrapper {
	display: inline-flex;
	align-items: center;
	gap: 30px;
}

/* Default Swiper button */
.swiper-nav-btn,
.swiper-nav-btn:hover {
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid currentColor;
	background-color: transparent !important;
	background: transparent !important;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
	z-index: 20;
	overflow: hidden;
}

/* Background circle expanding from scale(0) to fill button on hover */
.swiper-nav-btn::after,
.swiper-nav-btn.swiper-button-prev::after,
.swiper-nav-btn.swiper-button-next::after {
	content: "" !important;
	font-family: inherit !important;
	font-size: 0 !important;
	line-height: 0 !important;
	background-image: none !important;
	-webkit-mask-image: none !important;
	mask-image: none !important;
	display: block !important;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: var(--color-orange);
	transform: scale(0);
	visibility: hidden;
	transition: transform 0.35s ease, visibility 0.35s ease;
	z-index: 1;
	pointer-events: none;
}

.swiper-nav-btn:hover::after,
.swiper-nav-btn.swiper-button-prev:hover::after,
.swiper-nav-btn.swiper-button-next:hover::after {
	transform: scale(1.05);
	visibility: visible;
}

.swiper-button-disabled {
	opacity: 0.3 !important;
	pointer-events: none;
}


/* Draw Chevron arrow using CSS Mask */
.swiper-nav-btn::before {
	content: "";
	display: block;
	position: relative;
	z-index: 2;
	width: 9px;
	height: 16px;
	background-color: var(--color-orange);
	-webkit-mask-image: url('../images/next-icon-white.svg');
	mask-image: url('../images/next-icon-white.svg');
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	transition: background-color 0.3s ease;
}

/* Prev button with flipped arrow */
.swiper-nav-btn.prev-btn::before,
.swiper-nav-btn.swiper-button-prev::before {
	transform: scaleX(-1);
}

/* Arrow icon color transition on hover (no transform transition) */
.swiper-nav-btn:hover::before,
.swiper-nav-btn.swiper-button-prev:hover::before,
.swiper-nav-btn.swiper-button-next:hover::before {
	background-color: var(--color-white);
}

/* --- Variant 1: White, hover orange --- */
.swiper-nav-btn.is-white {
	color: var(--color-white);
	border-color: rgba(255, 255, 255, 0.4);
	opacity: 0.8;
}

.swiper-nav-btn.is-white::before {
	background-color: var(--color-white);
}

.swiper-nav-btn.is-white::after {
	background-color: var(--color-orange);
}

.swiper-nav-btn.is-white:hover {
	color: var(--color-orange);
	border-color: var(--color-orange);
	opacity: 1;
}

.swiper-nav-btn.is-white:hover::before {
	background-color: var(--color-white);
}

/* --- Variant 2: Default orange --- */
.swiper-nav-btn.is-orange {
	color: var(--color-orange);
	border-color: var(--color-orange);
	opacity: 1;
}

.swiper-nav-btn.is-orange::after {
	background-color: var(--color-orange);
}

.swiper-nav-btn.is-orange:hover {
	border-color: var(--color-orange);
}

/* --- Style Pagination Fraction --- */
.swiper-pagination-fraction {
	font-family: var(--h5-font-family);
	font-size: var(--h5-font-size);
	line-height: var(--h5-line-height);
	font-weight: var(--h5-font-weight);
	color: var(--color-dark-brown) !important;
	letter-spacing: var(--h5-letter-spacing);
	position: static !important;
	/* Override absolute positioning of swiper */
	width: auto !important;
	/* Override 100% width */
	display: inline-block;
	user-select: none;
}




/* ============================================================
   Prevent horizontal scroll caused by parallax decoration layers
   (.global-bg-layer) that are translateX-animated via GSAP.
   overflow-x: clip on both html + body prevents horizontal scroll
   without breaking CSS position: sticky on child elements.
   ============================================================ */
html,
body {
	overflow-x: clip;
}

:root {
	--global--admin-bar--height: 0px;
}

body.admin-bar {
	--global--admin-bar--height: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar {
		--global--admin-bar--height: 46px;
	}
}

/* ============================================================
   Parallax background layer — will-change hint for GPU compositing
   Applied globally so any page using .global-bg-layer benefits
   ============================================================ */
.global-bg-layer {
	will-change: transform;
}

/* ============================================================
   Lenis Smooth Scroll Support
   ============================================================ */
html.lenis,
html.lenis body {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	scroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-scrolling iframe {
	pointer-events: none;
}

/* ============================================================
   Image & Block Scroll Parallax (GSAP ScrollTrigger)
   ============================================================ */
.image-card {
	position: relative;
	overflow: hidden;
}

.has-scroll-parallax {
	will-change: transform;
	transform-style: preserve-3d;
}

/* ============================================================
   Default Page and 404 Page Styles
   ============================================================ */
.default-page-container,
.error-404-container {
	display: flex;
	flex-direction: column;
	padding-top: min(max(50px, calc(3.75rem + (50 - 60) * ((100vw - 390px) / (1440 - 390)))), 60px);
}

.error-404-container {
	padding-bottom: min(max(200px, calc(12.5rem + (439 - 200) * ((100vw - 390px) / (1440 - 390)))), 439px);
}

.default-page-container {
	padding-bottom: min(max(180px, calc(11.25rem + (199 - 180) * ((100vw - 390px) / (1440 - 390)))), 199px)
}

.default-page__back,
.error-404__back {
	display: flex;
	margin-bottom: 50px;
}

.default-page__back .button.is-back,
.error-404__back .button.is-back {
	margin: 0;
}

.error404 main p {
	font-family: var(--h5-font-family);
	font-weight: var(--h5-font-weight);
	font-size: var(--h5-font-size);
	line-height: var(--h5-line-height);
	letter-spacing: var(--h5-letter-spacing);
}

.default-page__title,
.error-404__title {
	margin-top: 0;
	margin-bottom: 30px;
}

.default-page__content {
	max-width: 700px;
}

/* Desktop Styles */
@media only screen and (min-width: 768px) {

	.default-page__back,
	.error-404__back {
		margin-bottom: 50px;
	}

	.default-page__title,
	.error-404__title {
		margin-bottom: 50px;
	}
}

/* ============================================================
   Shared Pagination Component (nathan-pagination)
   Shared across: Offers, Career, Recognitions, Room, Press
   ============================================================ */
.nathan-pagination-wrapper {
	margin-top: 100px;
	display: flex;
	justify-content: center;
}

.nathan-pagination {
	display: flex;
	gap: 16px;
	list-style: none;
	padding: 0;
	margin: 0;
	align-items: center;
}

.nathan-pagination .page-numbers {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	border-radius: 5px;
	font-size: 18px;
	text-decoration: none;
	background-color: rgba(255, 255, 255);
	background-image: none !important;
	opacity: 0.3;
	border: none;
	transition: all 0.3s ease !important;
	cursor: pointer;
	padding-bottom: 0 !important;
}

.nathan-pagination .page-numbers.current {
	opacity: 1;
	cursor: default;
}

.nathan-pagination a.page-numbers:hover {
	opacity: 1;
}

.nathan-pagination .page-numbers.dots {
	background-color: transparent;
	border-color: transparent;
	cursor: default;
	color: #b9b5a9;
}

/* Pagination Arrows */
.nathan-pagination .page-numbers.prev,
.nathan-pagination .page-numbers.next {
	background-color: transparent;
	min-width: auto;
	width: auto;
	height: 38px;
	padding: 0 15px;
	box-shadow: none !important;
	opacity: 1;
	margin: 0 14px;
}

.nathan-pagination .page-numbers img {
	width: 17px;
	height: 13px;
	display: inline-block;
	vertical-align: middle;
}

.nathan-pagination .arrow-prev {
	transform: rotate(180deg);
}

.nathan-pagination .page-numbers.prev.disabled,
.nathan-pagination .page-numbers.next.disabled {
	pointer-events: none;
	opacity: 0.3;
}

.nathan-pagination .page-numbers.prev:hover:not(.disabled),
.nathan-pagination .page-numbers.next:hover:not(.disabled) {
	opacity: 0.7;
}

@media (max-width: 767px) {
	.nathan-pagination-wrapper {
		margin-top: 50px;
	}

	.nathan-pagination .page-numbers.prev,
	.nathan-pagination .page-numbers.next {
		margin: 0;
	}
}

/* --- Chinese Language Font Overrides --- */

/* Simplified Chinese (SC) */
:root:lang(zh-CN),
:root:lang(zh-Hans),
html[lang="zh-CN"],
html[lang^="zh-Hans"] {
	--font-cormorant: 'Noto Sans SC', sans-serif;
	--font-lato: 'Noto Sans SC', sans-serif;
	--global--font-primary: 'Noto Sans SC', sans-serif;
	--global--font-secondary: 'Noto Sans SC', sans-serif;
	--h1-font-family: 'Noto Sans SC', sans-serif;
	--h2-font-family: 'Noto Sans SC', sans-serif;
	--h3-font-family: 'Noto Sans SC', sans-serif;
	--h4-font-family: 'Noto Sans SC', sans-serif;
	--body-font-family: 'Noto Sans SC', sans-serif;
	--h5-font-family: 'Noto Sans SC', sans-serif;
	--btn-font-family: 'Noto Sans SC', sans-serif;
}

/* Traditional Chinese (TC) */
:root:lang(zh-TW),
:root:lang(zh-HK),
:root:lang(zh-Hant),
html[lang="zh-TW"],
html[lang="zh-HK"],
html[lang^="zh-Hant"] {
	--font-cormorant: 'Noto Sans TC', sans-serif;
	--font-lato: 'Noto Sans TC', sans-serif;
	--global--font-primary: 'Noto Sans TC', sans-serif;
	--global--font-secondary: 'Noto Sans TC', sans-serif;
	--h1-font-family: 'Noto Sans TC', sans-serif;
	--h2-font-family: 'Noto Sans TC', sans-serif;
	--h3-font-family: 'Noto Sans TC', sans-serif;
	--h4-font-family: 'Noto Sans TC', sans-serif;
	--body-font-family: 'Noto Sans TC', sans-serif;
	--h5-font-family: 'Noto Sans TC', sans-serif;
	--btn-font-family: 'Noto Sans TC', sans-serif;
}

/* Apply direct fallback to primary text tags to prevent inheritance issues */
:root:lang(zh-CN) body,
:root:lang(zh-CN) h1,
:root:lang(zh-CN) h2,
:root:lang(zh-CN) h3,
:root:lang(zh-CN) h4,
:root:lang(zh-CN) h5,
:root:lang(zh-CN) h6,
:root:lang(zh-CN) input,
:root:lang(zh-CN) button,
:root:lang(zh-CN) select,
:root:lang(zh-CN) textarea,
:root:lang(zh-Hans) body,
:root:lang(zh-Hans) h1,
:root:lang(zh-Hans) h2,
:root:lang(zh-Hans) h3,
:root:lang(zh-Hans) h4,
:root:lang(zh-Hans) h5,
:root:lang(zh-Hans) h6,
:root:lang(zh-Hans) input,
:root:lang(zh-Hans) button,
:root:lang(zh-Hans) select,
:root:lang(zh-Hans) textarea,
html[lang="zh-CN"] body,
html[lang="zh-CN"] h1,
html[lang="zh-CN"] h2,
html[lang="zh-CN"] h3,
html[lang="zh-CN"] h4,
html[lang="zh-CN"] h5,
html[lang="zh-CN"] h6,
html[lang="zh-CN"] input,
html[lang="zh-CN"] button,
html[lang="zh-CN"] select,
html[lang="zh-CN"] textarea,
html[lang^="zh-Hans"] body,
html[lang^="zh-Hans"] h1,
html[lang^="zh-Hans"] h2,
html[lang^="zh-Hans"] h3,
html[lang^="zh-Hans"] h4,
html[lang^="zh-Hans"] h5,
html[lang^="zh-Hans"] h6,
html[lang^="zh-Hans"] input,
html[lang^="zh-Hans"] button,
html[lang^="zh-Hans"] select,
html[lang^="zh-Hans"] textarea {
	font-family: 'Noto Sans SC', sans-serif;
}

:root:lang(zh-TW) body,
:root:lang(zh-TW) h1,
:root:lang(zh-TW) h2,
:root:lang(zh-TW) h3,
:root:lang(zh-TW) h4,
:root:lang(zh-TW) h5,
:root:lang(zh-TW) h6,
:root:lang(zh-TW) input,
:root:lang(zh-TW) button,
:root:lang(zh-TW) select,
:root:lang(zh-TW) textarea,
:root:lang(zh-HK) body,
:root:lang(zh-HK) h1,
:root:lang(zh-HK) h2,
:root:lang(zh-HK) h3,
:root:lang(zh-HK) h4,
:root:lang(zh-HK) h5,
:root:lang(zh-HK) h6,
:root:lang(zh-HK) input,
:root:lang(zh-HK) button,
:root:lang(zh-HK) select,
:root:lang(zh-HK) textarea,
:root:lang(zh-Hant) body,
:root:lang(zh-Hant) h1,
:root:lang(zh-Hant) h2,
:root:lang(zh-Hant) h3,
:root:lang(zh-Hant) h4,
:root:lang(zh-Hant) h5,
:root:lang(zh-Hant) h6,
:root:lang(zh-Hant) input,
:root:lang(zh-Hant) button,
:root:lang(zh-Hant) select,
:root:lang(zh-Hant) textarea,
html[lang="zh-TW"] body,
html[lang="zh-TW"] h1,
html[lang="zh-TW"] h2,
html[lang="zh-TW"] h3,
html[lang="zh-TW"] h4,
html[lang="zh-TW"] h5,
html[lang="zh-TW"] h6,
html[lang="zh-TW"] input,
html[lang="zh-TW"] button,
html[lang="zh-TW"] select,
html[lang="zh-TW"] textarea,
html[lang="zh-HK"] body,
html[lang="zh-HK"] h1,
html[lang="zh-HK"] h2,
html[lang="zh-HK"] h3,
html[lang="zh-HK"] h4,
html[lang="zh-HK"] h5,
html[lang="zh-HK"] h6,
html[lang="zh-HK"] input,
html[lang="zh-HK"] button,
html[lang="zh-HK"] select,
html[lang="zh-HK"] textarea,
html[lang^="zh-Hant"] body,
html[lang^="zh-Hant"] h1,
html[lang^="zh-Hant"] h2,
html[lang^="zh-Hant"] h3,
html[lang^="zh-Hant"] h4,
html[lang^="zh-Hant"] h5,
html[lang^="zh-Hant"] h6,
html[lang^="zh-Hant"] input,
html[lang^="zh-Hant"] button,
html[lang^="zh-Hant"] select,
html[lang^="zh-Hant"] textarea {
	font-family: 'Noto Sans TC', sans-serif;
}

/* =====================================================================
   Global Shared Section: Related Offers (.offer-detail__related)
   ===================================================================== */
.offer-detail__related {
	padding: 100px 0 160px;
	background-color: var(--color-white);
	width: 100%;
}

.related-header {
	display: flex;
	justify-content: space-between;
	align-items: start;
	margin-bottom: 40px;
}

.related-title {
	margin: 0;
	font-family: var(--heading-font-family, serif);
}

.related-view-all {
	transition: color 0.3s ease;
}

@media (min-width: 768px) {
	.related-offers-swiper {
		overflow: visible !important;
	}

	.related-offers-swiper .offers-grid {
		display: grid !important;
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 80px 20.5px !important;
		transform: none !important;
		width: 100% !important;
		height: auto !important;
	}

	.related-offers-swiper .swiper-slide {
		width: auto !important;
		height: auto !important;
		flex-shrink: 1 !important;
	}

	.related-swiper-controls {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.offer-detail__related {
		padding: 60px 0 80px;
	}

	.related-offers-swiper {
		overflow: hidden;
		position: relative;
	}

	.related-offers-swiper .offers-grid {
		display: flex !important;
		grid-template-columns: none !important;
		gap: 0 !important;
	}

	.related-offers-swiper .swiper-slide {
		height: auto !important;
	}

	.related-swiper-controls {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-top: 40px;
	}

	.related-swiper-pagination {
		position: relative !important;
		width: 57% !important;
		height: 3px !important;
		background-color: #E1E1E1 !important;
		overflow: hidden;
	}

	.related-swiper-pagination .swiper-pagination-progressbar-fill {
		background-color: var(--color-orange) !important;
	}

	.related-swiper-buttons {
		display: flex;
		align-items: center;
		gap: 20px;
	}
}

/**
 * General Banner Styles (Migrated from global.css)
 */
.general-banner {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 340px;
	/* Mobile height */
}

/* Background image using <picture> and <img> */
.general-banner__bg,
.general-banner__bg img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

/* Overlays: Solid (20% opacity) + Linear Gradient (40% opacity) */
.general-banner__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-image:
		linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%),
		linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

/* Content wrapper */
.general-banner .container {
	position: relative;
	z-index: 3;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	box-sizing: border-box;
	padding-bottom: 47px;
	/* Mobile title spacing from bottom */
}

.general-banner__title {
	color: var(--color-white, #ffffff);
	margin: 0;
	text-transform: uppercase;
	font-family: var(--h1-font-family);
	font-size: var(--h1-font-size);
	line-height: var(--h1-line-height);
	font-weight: var(--h1-font-weight);
	letter-spacing: var(--h1-letter-spacing);
}

/* Desktop layout rules */
@media only screen and (min-width: 822px) {
	.general-banner {
		height: 400px;
		/* Desktop height */
	}

	.general-banner .container {
		padding-bottom: 62px;
		/* Desktop title spacing from bottom */
	}
}

/**
 * AJAX Filter Loader and Spinner Styles (Migrated from global.css)
 */
.ajax-filter-grid-loading {
	opacity: 0.4 !important;
	pointer-events: none !important;
}

.ajax-filter-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ajax-filter-spinner {
	width: 40px;
	height: 40px;
	border: 3px solid rgba(167, 136, 115, 0.2);
	border-radius: 50%;
	border-top-color: var(--color-light-brown, #a78873);
	animation: ajax-filter-spin 0.8s linear infinite;
}

@keyframes ajax-filter-spin {
	to {
		transform: rotate(360deg);
	}
}

.grecaptcha-badge {
	right: -100% !important;
	transition: right 0.3s ease;
}

.grecaptcha-badge:hover {
	right: 0 !important;
}