/**
 * HALINK C8 â€” Spa layout (Dola Spa 100% visual match)
 * Colors: navy #0f172a Â· terracotta var(--hl-primary) Â· cream #f1f5f9 Â· Lora titles
 */

/* ---------- Section titles ---------- */
.hl-section__header {
	text-align: center;
	max-width: none;
	margin: 0 auto 30px;
}

.hl-section__header::after {
	display: none; /* replaced by title.png ornament */
}

.hl-section__title {
	font-family: var(--hl-font-display);
	font-size: clamp(1.75rem, 1.2rem + 2.2vw, 3.125rem);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.01em;
	text-transform: none;
	color: var(--hl-ink);
	margin: 0 0 0.5rem;
}

.hl-section__title-ornament {
	display: block;
	margin: 0.35rem auto 0;
	width: min(320px, 70%);
	height: auto;
}

.hl-section__desc {
	margin-top: 0.75rem;
	color: var(--hl-text-muted);
	font-size: 1rem;
}

/* ---------- Hero ---------- */
.hl-hero.hl-section--pad-md,
.hl-hero {
	padding: 0 !important;
	margin-bottom: var(--hl-section-gap);
}

.hl-hero__slide { position: relative; }
.hl-hero__media { display: block; line-height: 0; }

.hl-hero__caption {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background: linear-gradient(90deg, rgba(240, 239, 235, 0.78) 0%, rgba(240, 239, 235, 0.35) 40%, transparent 68%);
	pointer-events: none;
}

.hl-hero__caption .hl-container {
	width: 100%;
}

.hl-hero__caption-inner {
	pointer-events: auto;
	max-width: 28rem;
	margin-inline: 0 auto;
	padding-block: 2rem;
	text-align: left;
}

.hl-hero__eyebrow { display: none; }

.hl-hero__title {
	margin: 0 0 0.5rem;
	font-family: var(--hl-font-display);
	font-size: clamp(2.5rem, 1.5rem + 4.5vw, 5rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--hl-ink);
}

.hl-hero__text {
	margin: 0 0 1rem;
	font-size: clamp(1rem, 0.95rem + 0.4vw, 1.25rem);
	line-height: 1.5;
	color: var(--hl-text);
	white-space: pre-line;
}

.hl-hero__cta,
.hl-hero .hl-btn {
	border-radius: var(--hl-radius-cta);
	background: var(--hl-primary);
	border-color: var(--hl-primary);
	color: #fff;
	padding: 8px 30px;
	font-family: var(--hl-font-display);
	font-size: 20px;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
}

.hl-hero__cta:hover,
.hl-hero .hl-btn:hover {
	background: var(--hl-primary-dark);
	border-color: var(--hl-primary-dark);
	color: #fff;
}

.hl-hero__img {
	max-height: min(78vh, 720px);
	min-height: 280px;
	width: 100%;
	object-fit: cover;
}

.hl-hero__pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #fff;
	opacity: 0.55;
}

.hl-hero__pagination .swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--hl-secondary);
}

.hl-hero__nav {
	width: 36px !important;
	height: 36px !important;
	margin-top: 0 !important;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(233, 233, 233, 0.85);
	border: 0;
	border-radius: 10px 5px;
	color: #0f172a;
	z-index: 5;
}

.hl-hero__nav::after {
	font-size: 14px !important;
	font-weight: 700;
	color: #0f172a;
}

.hl-hero__nav:hover {
	background: #0f172a;
}

.hl-hero__nav:hover::after {
	color: #fff;
}

.hl-hero__nav--prev,
.hl-hero__slider .swiper-button-prev {
	left: 16px;
}

.hl-hero__nav--next,
.hl-hero__slider .swiper-button-next {
	right: 16px;
}

@media (max-width: 991.98px) {
	#halink-hero .hl-hero__img {
		max-height: none;
		min-height: 0;
		object-fit: contain;
	}
}

@media (max-width: 767px) {
	.hl-hero__caption {
		background: linear-gradient(180deg, transparent 10%, rgba(240, 239, 235, 0.94) 65%);
		align-items: flex-end;
	}

	.hl-hero__nav {
		width: 30px !important;
		height: 30px !important;
	}

	.hl-hero__nav--prev,
	.hl-hero__slider .swiper-button-prev {
		left: 8px;
	}

	.hl-hero__nav--next,
	.hl-hero__slider .swiper-button-next {
		right: 8px;
	}
}

/* ---------- Policy strip ---------- */
.hl-policy {
	background: transparent;
	padding-top: 0 !important;
	margin-top: -1.25rem;
	margin-bottom: var(--hl-section-gap);
	position: relative;
	z-index: 2;
}

.hl-policy .hl-container {
	background: var(--hl-primary);
	border-radius: 20px;
	padding: 30px;
}

.hl-policy__list,
.hl-policy__grid {
	display: grid;
	gap: 1rem 1.5rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.hl-policy__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.65rem;
	color: #fff;
	background: transparent;
	border: 0;
	padding: 0.25rem;
}

.hl-policy__icon,
.hl-policy__icon--placeholder {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.08);
}

.hl-policy__icon img { width: 40px; height: 40px; object-fit: contain; }

.hl-policy__title {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	font-family: var(--hl-font-display);
}

.hl-policy__text { color: rgba(255, 255, 255, 0.82); font-size: 0.875rem; }

@media (max-width: 991px) {
	.hl-policy__list,
	.hl-policy__grid,
	.hl-policy__list.hl-grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem 1rem;
	}

	.hl-policy .hl-container {
		padding: 1.5rem 1.25rem;
	}
}

@media (max-width: 575px) {
	.hl-policy__list,
	.hl-policy__grid,
	.hl-policy__list.hl-grid--4 {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.hl-policy .hl-container {
		padding: 1.15rem 1rem;
		border-radius: 14px;
	}

	.hl-policy__item {
		flex-direction: row;
		align-items: flex-start;
		text-align: left;
		gap: 0.85rem;
		padding: 0.35rem 0;
	}

	.hl-policy__icon,
	.hl-policy__icon--placeholder {
		width: 48px;
		height: 48px;
		flex-shrink: 0;
	}

	.hl-policy__icon img {
		width: 32px;
		height: 32px;
	}

	.hl-policy__title {
		font-size: 0.95rem;
		display: block;
		margin-bottom: 0.2rem;
	}

	.hl-policy__text {
		margin: 0;
		font-size: 0.8125rem;
		line-height: 1.45;
	}
}

/* ---------- About page (editor content) ---------- */
.hl-about-page-content {
	background: transparent;
}

.hl-about-page-content__inner {
	max-width: 48rem;
	margin-inline: auto;
}

.hl-about-page-content__body {
	color: var(--hl-text, #3a3a3a);
	font-family: var(--hl-font-body);
	font-size: 1.0625rem;
	line-height: 1.75;
	text-align: justify;
}

.hl-about-page-content__body > *:first-child {
	margin-top: 0;
}

.hl-about-page-content__body h2,
.hl-about-page-content__body h3 {
	font-family: var(--hl-font-display);
	color: var(--hl-navy, #0f172a);
	font-weight: 700;
	line-height: 1.25;
	margin: 2rem 0 0.85rem;
}

.hl-about-page-content__body h2 {
	font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem);
	text-align: center;
}

.hl-about-page-content__body h3 {
	font-size: clamp(1.2rem, 1rem + 0.8vw, 1.45rem);
	text-align: center;
}

.hl-about-page-content__body p {
	margin: 0 0 1rem;
}

.hl-about-page-content__body ul,
.hl-about-page-content__body ol {
	margin: 0 0 1.25rem;
	padding-left: 1.25rem;
}

.hl-about-page-content__body li {
	margin-bottom: 0.45rem;
}

.hl-about-page-content__body strong {
	color: var(--hl-navy, #0f172a);
	font-weight: 600;
}

.hl-about-page-content__body hr {
	border: 0;
	border-top: 1px solid rgba(18, 31, 56, 0.12);
	margin: 2rem auto;
	max-width: 8rem;
}

.hl-about-page-content__body a {
	color: var(--hl-terracotta, var(--hl-primary));
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

/* ---------- About ---------- */
.hl-about {
	background: transparent;
	margin-bottom: var(--hl-section-gap);
}

.hl-about__grid,
.hl-about__layout {
	display: grid;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.hl-about__media { text-align: center; }

.hl-about__media img,
.hl-about__image {
	border-radius: 0;
	width: 100%;
	height: auto;
	box-shadow: none;
}

.hl-about__title {
	font-family: var(--hl-font-display);
	font-size: clamp(1.75rem, 1.1rem + 2.4vw, 3.125rem);
	font-weight: 700;
	line-height: 1.4;
	color: var(--hl-ink);
	margin: 0 0 0.75rem;
	text-align: left;
}

.hl-about .hl-section__header {
	text-align: left;
	margin: 0 0 1rem;
}

.hl-about .hl-section__title-ornament { margin-left: 0; }

.hl-about__desc {
	color: var(--hl-text);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.hl-about__features {
	list-style: none;
	padding: 0;
	margin: 1.25rem 0 1.5rem;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1.25rem;
}

.hl-about__feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--hl-ink);
	min-width: 0;
}

.hl-about__feature-text {
	min-width: 0;
	flex: 1 1 auto;
	line-height: 1.4;
}

.hl-about__feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	object-fit: contain;
	flex-shrink: 0;
	background: var(--hl-primary);
	min-width: 60px;
    padding: 10px;
    border-radius: 20px 5px 20px 5px;
}

.hl-about__btn {
	display: inline-block;
	margin: 0.5rem 0 0;
	padding: 8px 30px;
	border-radius: 20px 5px 20px 5px;
	background: #0f172a;
	color: #fff !important;
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s ease;
}

.hl-about__btn:hover {
	background: var(--hl-primary);
	color: #fff !important;
}

.hl-about__cta {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 1.25rem;
	margin-top: 1.875rem;
	background: transparent;
	border: 0;
	padding: 0;
	border-radius: 0;
	font-weight: 700;
	justify-content: flex-start;
}

.hl-about__cta-icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
}

.hl-about__cta-icon svg {
	width: 50px;
	height: 50px;
	display: block;
}

.hl-about__cta-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.15rem;
	flex: 1 1 auto;
	min-width: 0;
}

.hl-about__cta-label {
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.4;
	color: #0f172a;
}

.hl-about__phone {
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-size: clamp(1.5rem, 1.2rem + 1vw, 1.875rem);
	font-weight: 700;
	line-height: 1.25;
	color: var(--hl-primary);
	text-decoration: none;
}

.hl-about__phone:hover {
	color: #0f172a;
}

@media (max-width: 991px) {
	.hl-about__grid,
	.hl-about__layout,
	.hl-about__grid.hl-grid--2 {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.hl-about__media {
		max-width: 28rem;
		margin-inline: auto;
	}

	.hl-about__title {
		font-size: clamp(1.5rem, 1.1rem + 2vw, 2.25rem);
	}
}

@media (max-width: 767px) {
	.hl-about__features,
	.hl-about__features.hl-grid--2 {
		grid-template-columns: 1fr;
		gap: 0.85rem;
	}

	.hl-about__feature {
		font-size: 0.9rem;
	}

	.hl-about__feature-icon {
		min-width: 52px;
		width: 52px;
		height: 52px;
		padding: 8px;
		object-fit: contain;
	}

	.hl-about__cta {
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 0.85rem;
		align-items: center;
	}

	.hl-about__cta-label {
		font-size: 0.875rem;
	}

	.hl-about__phone {
		font-size: clamp(1.35rem, 5vw, 1.75rem);
		word-break: break-word;
	}

	.hl-about__btn {
		width: 100%;
		text-align: center;
		box-sizing: border-box;
	}
}

/* ---------- Services (Dola masked cards + slider) ---------- */
.hl-services {
	--hl-svc-mask: url("../images/ser-mask-img.png");
	background: transparent;
	margin-bottom: var(--hl-section-gap);
}

.hl-services__slider {
	position: relative;
	padding: 0 2rem;
	overflow: hidden;
}

.hl-services__slider .swiper-button-prev,
.hl-services__slider .swiper-button-next {
	width: 34px;
	height: 34px;
	margin-top: 0;
	top: 42%;
	background: rgba(233, 233, 233, 0.9);
	border: 0;
	border-radius: 10px 5px;
	color: #0f172a;
}

.hl-services__slider .swiper-button-prev:after,
.hl-services__slider .swiper-button-next:after {
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
}

.hl-services__slider .swiper-button-prev:hover,
.hl-services__slider .swiper-button-next:hover {
	background: #0f172a;
}

.hl-services__slider .swiper-button-prev:hover:after,
.hl-services__slider .swiper-button-next:hover:after {
	color: #fff;
}

.hl-services__slider .swiper-button-prev {
	left: 0;
}

.hl-services__slider .swiper-button-next {
	right: 0;
}

.hl-services__slider .swiper-slide {
	height: auto;
}

.hl-service-card {
	background: #fff;
	border: 0;
	box-shadow: 0 2px 14px rgba(18, 31, 56, 0.06);
	border-radius: 30px 10px;
	text-align: center;
	padding: 0;
	height: 100%;
	overflow: hidden;
}

.hl-service-card:hover {
	transform: none;
	box-shadow: 0 4px 18px rgba(18, 31, 56, 0.1);
}

.hl-service-card__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px 10px 1.15rem;
	height: 100%;
}

.hl-service-card__image {
	position: relative;
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
	aspect-ratio: auto;
	padding-bottom: 100%;
	margin: 0 0 0.75rem;
	overflow: hidden;
	border-radius: 20px;
	background: #fff;
	-webkit-mask-image: var(--hl-svc-mask);
	mask-image: var(--hl-svc-mask);
	-webkit-mask-position: center center;
	mask-position: center center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.hl-service-card__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transform: scale(1);
	transition: transform 1s ease;
}

.hl-service-card:hover .hl-service-card__img {
	transform: scale(1.1);
}

.hl-service-card__title {
	font-family: var(--hl-font-display);
	font-size: clamp(1.05rem, 1.5vw, 1.35rem);
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 0.45rem;
	line-height: 1.3;
}

.hl-service-card__title a {
	color: inherit;
	text-decoration: none;
}

.hl-service-card__title a:hover {
	color: var(--hl-primary);
}

.hl-service-card__desc {
	font-size: 0.875rem;
	line-height: 1.55;
	color: #555;
	margin: 0 0 0.65rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex-grow: 1;
}

.hl-service-card__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: baseline;
	gap: 0.25rem 0.75rem;
	list-style: none;
	margin: 0 0 0.85rem;
	padding: 0;
	width: 100%;
	font-size: 0.95rem;
	font-weight: 700;
	color: #0f172a;
}

.hl-service-card__meta-label {
	font-weight: 700;
	color: #0f172a;
}

.hl-service-card__meta b {
	color: var(--hl-primary);
	font-weight: 700;
}

.hl-service-card__btn {
	display: inline-block;
	margin-top: auto;
	padding: 8px 28px;
	background: #0f172a;
	color: #fff !important;
	border-radius: 20px 5px 20px 5px;
	font-family: var(--hl-font-display);
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
}

.hl-service-card__btn:hover {
	background: var(--hl-primary);
	color: #fff !important;
}

@media (max-width: 767px) {
	.hl-services__slider {
		padding: 0 1.5rem;
	}

	.hl-service-card {
		border-radius: 15px 5px;
	}

	.hl-service-card__title {
		font-size: 1.1rem;
	}

	.hl-service-card__meta {
		font-size: 0.85rem;
	}
}

/* ---------- Products (home slider) ---------- */
.hl-products {
	background: transparent;
	margin-bottom: var(--hl-section-gap);
}

.hl-products__slider {
	position: relative;
	padding: 0;
	overflow: hidden;
}

.hl-products__slider .swiper-slide {
	height: auto;
}

.hl-products__slider .swiper-button-prev,
.hl-products__slider .swiper-button-next {
	width: 34px;
	height: 34px;
	margin-top: 0;
	top: 38%;
	background: rgba(233, 233, 233, 0.92);
	border: 0;
	border-radius: 10px 5px;
	color: #0f172a;
}

.hl-products__slider .swiper-button-prev:after,
.hl-products__slider .swiper-button-next:after {
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
}

.hl-products__slider .swiper-button-prev:hover,
.hl-products__slider .swiper-button-next:hover {
	background: #0f172a;
}

.hl-products__slider .swiper-button-prev:hover:after,
.hl-products__slider .swiper-button-next:hover:after {
	color: #fff;
}

.hl-products__slider .swiper-button-prev { left: 0; }
.hl-products__slider .swiper-button-next { right: 0; }

.hl-hp-card {
	height: 100%;
	margin: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.hl-hp-card__inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 10px;
	background: #fff;
	border-radius: 30px 10px;
	text-align: center;
	box-shadow: 0 2px 14px rgba(18, 31, 56, 0.05);
}

.hl-hp-card__thumb {
	position: relative;
	margin-bottom: 0.75rem;
}

.hl-hp-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	padding-bottom: 100%;
	background: #fff;
	border-radius: 50px 10px 10px 10px;
}

.hl-hp-card__img,
.hl-hp-card__ph {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	object-fit: contain;
	transition: transform 0.45s ease, opacity 0.3s ease;
}

.hl-hp-card__ph {
	background: #f3f1ec;
}

.hl-hp-card:hover .hl-hp-card__img {
	transform: scale(1.05);
}

.hl-hp-card__actions {
	position: absolute;
	left: 50%;
	bottom: 14px;
	z-index: 3;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 10px);
	transition: all 0.3s ease;
}

.hl-hp-card:hover .hl-hp-card__actions,
.hl-hp-card:focus-within .hl-hp-card__actions {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.hl-hp-card__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #0f172a;
	color: #fff !important;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(18, 31, 56, 0.2);
	transition: background 0.2s ease, transform 0.2s ease;
}

.hl-hp-card__action:hover,
.hl-hp-card__action.is-active {
	background: var(--hl-primary);
	color: #fff !important;
}

.hl-hp-card__action.is-loading {
	opacity: 0.65;
	pointer-events: none;
}

.hl-hp-card__body {
	padding: 0 0.35rem 0.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.hl-hp-card__title {
	margin: 0 0 0.45rem;
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
	color: #0f172a;
}

.hl-hp-card__title a {
	color: inherit;
	text-decoration: none;
}

.hl-hp-card__title a:hover {
	color: var(--hl-primary);
}

.hl-hp-card__price {
	margin-top: auto;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--hl-primary);
}

.hl-hp-card__price del {
	margin-right: 0.35rem;
	color: #999;
	font-size: 0.85rem;
	font-weight: 400;
}

.hl-hp-card__price ins {
	text-decoration: none;
	color: var(--hl-primary);
}

/* Legacy grid card (other widgets) */
.hl-product-card {
	border-radius: 12px;
	border: 0;
	background: var(--hl-bg-elevated);
	box-shadow: var(--hl-shadow-sm);
	overflow: hidden;
	text-align: center;
}

.hl-product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--hl-shadow);
}

.hl-product-card__media { overflow: hidden; }
.hl-product-card__img { transition: transform 0.45s ease; }
.hl-product-card:hover .hl-product-card__img { transform: scale(1.05); }

.hl-product-card__title {
	font-family: var(--hl-font-display);
	font-size: 1rem;
	color: var(--hl-ink);
}

.hl-product-card__price {
	color: var(--price);
	font-size: 1.05rem;
	font-weight: 700;
}

/* Quick view modal */
.hl-qv-modal {
	position: fixed;
	inset: 0;
	z-index: 100050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.hl-qv-modal[hidden] {
	display: none !important;
}

.hl-qv-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(18, 31, 56, 0.55);
}

.hl-qv-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(920px, 100%);
	max-height: min(90vh, 720px);
	overflow: auto;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.hl-qv-modal__body {
	min-height: 180px;
}

.hl-qv-modal__loading {
	padding: 3rem 1.5rem;
	text-align: center;
	color: #666;
}

.hl-qv {
	position: relative;
	padding: 1.5rem;
}

.hl-qv__close {
	position: absolute;
	top: 10px;
	right: 12px;
	z-index: 2;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: #f1f5f9;
	color: #0f172a;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.hl-qv__close:hover {
	background: #0f172a;
	color: #fff;
}

.hl-qv__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: 1.5rem;
	align-items: start;
}

.hl-qv__media {
	border-radius: 12px;
	overflow: hidden;
	background: #f7f5f0;
	aspect-ratio: 1;
}

.hl-qv__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hl-qv__title {
	margin: 0 0 0.65rem;
	padding-right: 2rem;
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-size: 1.5rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.3;
}

.hl-qv__price {
	margin-bottom: 1rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--hl-primary);
}

.hl-qv__desc {
	margin-bottom: 1.25rem;
	font-size: 0.95rem;
	line-height: 1.65;
	color: #555;
}

.hl-qv__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.hl-qv__cart,
.hl-qv__detail {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 22px;
	border-radius: 8px;
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-weight: 600;
	text-decoration: none;
	border: 0;
	cursor: pointer;
}

.hl-qv__cart {
	background: var(--hl-primary);
	color: #fff !important;
}

.hl-qv__cart:hover {
	background: #0f172a;
}

.hl-qv__detail {
	background: #0f172a;
	color: #fff !important;
}

.hl-qv__detail:hover {
	background: var(--hl-primary);
}

body.hl-qv-open {
	overflow: hidden;
}

@media (max-width: 767px) {
	.hl-products__slider {
		padding: 0;
	}

	.hl-hp-card__inner {
		border-radius: 15px 5px;
	}

	.hl-hp-card__media {
		border-radius: 25px 5px 5px 5px;
	}

	.hl-qv__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 991px) {
	.hl-hp-card__actions {
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto;
		transform: translate(-50%, 0) !important;
	}
}

/* ---------- Flash / promo ---------- */
.hl-flashsale {
	background: transparent;
	margin-bottom: var(--hl-section-gap);
}

.hl-flashsale .hl-products__slider {
	margin-top: 0.25rem;
}

.hl-flashsale .hl-countdown {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	margin: 0;
}

.hl-countdown__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 3.5rem;
	padding: 0.45rem 0.65rem;
	border-radius: 0.65rem;
	border: 1px solid rgba(184, 154, 90, 0.35);
	background: #fff;
}

.hl-countdown__num {
	font-family: var(--hl-font-display);
	font-size: clamp(1.15rem, 1.5vw, 1.45rem);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	line-height: 1.1;
	color: var(--hl-gold);
}

.hl-countdown__label {
	margin-top: 0.15rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-muted);
}

.hl-promo__bg {
	border-radius: 16px;
	overflow: hidden;
	min-height: 220px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	position: relative;
}

.hl-promo__bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(18, 31, 56, calc(var(--hl-overlay, 0.35)));
}

.hl-promo__inner {
	position: relative;
	z-index: 1;
	color: #fff;
	padding-block: 2.5rem;
}

.hl-promo .hl-section__title { color: #fff; }
.hl-promo .hl-section__title-ornament { filter: brightness(2); }

/* ---------- Why hub & spoke ---------- */
.hl-why {
	background: transparent;
	margin-bottom: var(--hl-section-gap);
	position: relative;
	overflow: visible;
}

.hl-why::before { display: none; }

.hl-why__hub {
	position: relative;
	z-index: 0;
	display: grid;
	grid-template-columns: 1fr minmax(160px, 220px) 1fr;
	gap: 1.5rem 1rem;
	align-items: center;
}

@media (min-width: 991px) {
	.hl-why__hub::before,
	.hl-why__hub::after {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 50%;
		height: 100%;
		border-radius: 0 200px 200px 0;
		background-image: linear-gradient(to right, #f1f5f9 0%, var(--hl-primary) 400%);
		z-index: -1;
		pointer-events: none;
	}

	.hl-why__hub::after {
		left: auto;
		right: 0;
		border-radius: 200px 0 0 200px;
		background-image: linear-gradient(to left, #f1f5f9 0%, var(--hl-primary) 400%);
	}
}

.hl-why__col {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.hl-why__item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.hl-why__item--left { text-align: right; flex-direction: row; }
.hl-why__item--right { text-align: left; flex-direction: row; }

.hl-why__content { flex: 1; }

.hl-why__title {
	display: block;
	font-family: var(--hl-font-display);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--hl-ink);
	margin-bottom: 0.35rem;
}

.hl-why__desc {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--hl-text-muted);
}

.hl-why__icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	  width: 80px;
    min-width: 80px;
    height: 80px;
    background: var(--hl-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 15px;
    position: relative
}

.hl-why__icon img {
	width: 64px;
	height: 64px;
	object-fit: contain;
}
.hl-why__icon:before {
    content: "";
    position: absolute;
    top: calc(var(--border-gap, 5px) / -1);
    right: calc(var(--border-gap, 5px) / -1);
    bottom: calc(var(--border-gap, 5px) / -1);
    left: calc(var(--border-gap, 5px) / -1);
    border: 1px dashed var(--hl-primary);
    border-radius: inherit;
    transition: all ease 0.4s;
    animation: spin 30s linear infinite;
}

.hl-why__icon {
    padding: 15px;
}
.hl-why__dot {
	display: block;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--hl-secondary);
}

.hl-why__center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hl-why__center-img {
	width: 100%;
	max-width: 220px;
	height: auto;
	object-fit: contain;
}

@media (max-width: 991px) {
	.hl-why__hub {
		grid-template-columns: 1fr;
	}
	.hl-why__center { display: none; }
	.hl-why__item--left { text-align: left; flex-direction: row-reverse; }
}

/* ---------- Video (Dịch vụ tốt nhất) ---------- */
.hl-video {
	background: transparent;
	margin-bottom: var(--hl-section-gap);
}

.hl-video__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: clamp(1.5rem, 3vw, 3rem);
	align-items: center;
}

.hl-video__title {
	margin: 0 0 0.5rem;
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-size: clamp(1.75rem, 1.3rem + 1.6vw, 3.125rem);
	font-weight: 700;
	line-height: 1.2;
	color: #0f172a;
}

.hl-video__subtitle {
	margin: 0 0 1rem;
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-size: clamp(1rem, 0.92rem + 0.35vw, 1.25rem);
	font-weight: 700;
	line-height: 1.4;
	color: #0f172a;
}

.hl-video__desc {
	margin: 0 0 1.5rem;
	font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.125rem);
	line-height: 1.65;
	color: #0f172a;
}

.hl-video__desc p {
	margin: 0 0 0.75rem;
}

.hl-video__desc p:last-child {
	margin-bottom: 0;
}

.hl-video__stats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.hl-video__stat-num {
	display: block;
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-size: clamp(1.75rem, 1.3rem + 1.5vw, 3.125rem);
	font-weight: 700;
	line-height: 1.1;
	color: var(--hl-primary);
}

.hl-video__stat-label {
	display: block;
	margin-top: 0.25rem;
	font-size: clamp(0.875rem, 0.82rem + 0.2vw, 1.25rem);
	font-weight: 500;
	color: #0f172a;
}

.hl-video__thumb {
	position: relative;
	overflow: hidden;
	border-radius: 30px 10px;
	background: #e8e6e1;
	aspect-ratio: 16 / 10;
}

.hl-video__poster {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}

.hl-video__play {
	position: absolute;
	inset: 0;
	z-index: 2;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #0f172a;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease;
}

.hl-video__play::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: 50%;
	background: #0f172a;
	animation: hl-pulse-border 1.5s ease-out infinite;
}

.hl-video__play:hover,
.hl-video__play:focus-visible {
	background: var(--hl-primary);
	outline: none;
}

.hl-video__play:hover::before,
.hl-video__play:focus-visible::before {
	background: var(--hl-primary);
}

.hl-video__play svg {
	width: 40px;
	height: 40px;
	margin-left: 4px;
}

@keyframes hl-pulse-border {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.55);
		opacity: 0;
	}
}

/* Video popup modal */
.hl-video-modal {
	position: fixed;
	inset: 0;
	z-index: 100060;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.hl-video-modal[hidden] {
	display: none !important;
}

.hl-video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(18, 31, 56, 0.72);
}

.hl-video-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hl-video-modal__close {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: #0f172a;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
}

.hl-video-modal__close:hover {
	background: var(--hl-primary);
	color: #fff;
}

.hl-video-modal__frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
}

.hl-video-modal__frame iframe,
.hl-video-modal__frame video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

body.hl-video-open {
	overflow: hidden;
}

@media (max-width: 991px) {
	.hl-video__grid {
		grid-template-columns: 1fr;
	}

	.hl-video__thumb {
		border-radius: 15px 5px;
	}

	.hl-video__play {
		width: 64px;
		height: 64px;
	}

	.hl-video__play svg {
		width: 28px;
		height: 28px;
	}

	.hl-video__stat-num {
		font-size: 1.625rem;
	}
}

/* ---------- Reviews (terracotta cards) ---------- */
.hl-reviews {
	background: transparent;
	margin-bottom: var(--hl-section-gap);
}

.hl-reviews .block-background,
.hl-reviews > .hl-container {
	/* keep cream */
}

.hl-review-card {
	background: var(--hl-secondary);
	border-radius: 20px;
	padding: 1.25rem 1.35rem 1.5rem;
	color: #fff;
	height: 100%;
	min-height: 260px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hl-review-card__avatar-wrap {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.hl-review-card__avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(255, 255, 255, 0.35);
}

.hl-review-card__name {
	margin: 0;
	font-family: var(--hl-font-display);
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	font-style: normal;
}

.hl-review-card__role {
	display: block;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.85);
}

.hl-review-card__content { flex: 1; }

.hl-review-card__text {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: #fff;
}

.hl-reviews .swiper-pagination-bullet-active {
	background: var(--hl-primary);
}

/* ---------- Team (oval portraits + slider) ---------- */
.hl-team {
	background: transparent;
	margin-bottom: var(--hl-section-gap);
}

.hl-team__slider {
	position: relative;
	padding: 0 2rem;
	overflow: hidden;
}

.hl-team__slider .swiper-slide {
	height: auto;
}

.hl-team__slider .swiper-button-prev,
.hl-team__slider .swiper-button-next {
	width: 34px;
	height: 34px;
	margin-top: 0;
	top: 38%;
	background: rgba(233, 233, 233, 0.92);
	border: 0;
	border-radius: 10px 5px;
	color: #0f172a;
}

.hl-team__slider .swiper-button-prev:after,
.hl-team__slider .swiper-button-next:after {
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
}

.hl-team__slider .swiper-button-prev:hover,
.hl-team__slider .swiper-button-next:hover {
	background: #0f172a;
}

.hl-team__slider .swiper-button-prev:hover:after,
.hl-team__slider .swiper-button-next:hover:after {
	color: #fff;
}

.hl-team__slider .swiper-button-prev { left: 0; }
.hl-team__slider .swiper-button-next { right: 0; }

.hl-team__card {
	text-align: center;
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0.35rem;
}

.hl-team__thumb {
	position: relative;
	display: block;
	width: 100%;
	max-width: 296px;
	margin: 0 auto;
	padding-bottom: 140%;
	overflow: hidden;
	background: #e3d8d0;
	border-radius: 9999px;
	outline: 0.5px solid rgba(154, 86, 58, 0.4);
	outline-offset: 5px;
}

.hl-team__thumb::before,
.hl-team__thumb::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 0;
	height: 100%;
	background: var(--hl-primary);
	opacity: 0.12;
	transition: width 0.4s ease;
	pointer-events: none;
}

.hl-team__thumb::after {
	left: auto;
	right: 0;
	top: auto;
	bottom: 0;
}

.hl-team__card:hover .hl-team__thumb::before,
.hl-team__card:hover .hl-team__thumb::after {
	width: 50%;
}

.hl-team__photo,
.hl-team__ph {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: contain;
	object-position: center bottom;
	transform: scale(1);
	transition: transform 0.4s ease;
}

.hl-team__ph {
	background: #e3d8d0;
}

.hl-team__card:hover .hl-team__photo {
	transform: scale(1.05);
}

.hl-team__name {
	margin: 1.25rem 0 0.3rem;
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.35rem);
	font-weight: 700;
	line-height: 1.3;
	color: #0f172a;
}

.hl-team__role {
	margin: 0;
	font-family: var(--hl-font-body, "Be Vietnam Pro", sans-serif);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
	color: #0f172a;
}

@media (max-width: 767px) {
	.hl-team__slider {
		padding: 0 1.75rem;
	}

	.hl-team__name {
		font-size: 1.05rem;
	}

	.hl-team__role {
		font-size: 0.9rem;
	}
}

/* ---------- Blog / news cards + home slider ---------- */
.hl-blog {
	background: transparent;
	margin-bottom: var(--hl-section-gap);
}

.hl-blog__slider {
	position: relative;
	padding: 0 2rem;
	overflow: hidden;
}

.hl-blog__slider .swiper-slide {
	height: auto;
}

.hl-blog__slider .swiper-button-prev,
.hl-blog__slider .swiper-button-next {
	width: 34px;
	height: 34px;
	margin-top: 0;
	top: 42%;
	background: rgba(233, 233, 233, 0.92);
	border: 0;
	border-radius: 50%;
	color: #0f172a;
}

.hl-blog__slider .swiper-button-prev:after,
.hl-blog__slider .swiper-button-next:after {
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
}

.hl-blog__slider .swiper-button-prev:hover,
.hl-blog__slider .swiper-button-next:hover {
	background: #0f172a;
}

.hl-blog__slider .swiper-button-prev:hover:after,
.hl-blog__slider .swiper-button-next:hover:after {
	color: #fff;
}

.hl-blog__slider .swiper-button-prev { left: 0; }
.hl-blog__slider .swiper-button-next { right: 0; }

/* Shared news card (home + category) */
.hl-news-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin: 0;
	padding: 12px;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 14px rgba(18, 31, 56, 0.05);
}

.hl-news-card__media {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	background: #e8e6e1;
}

.hl-news-card__thumb {
	display: block;
	position: relative;
	padding-bottom: 62%;
	overflow: hidden;
}

.hl-news-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.hl-news-card:hover .hl-news-card__img {
	transform: scale(1.04);
}

.hl-news-card__badge {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	padding: 4px 16px 6px;
	background: #0f172a;
	border-radius: 0 16px 0 0;
	color: #fff;
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-size: 1.65rem;
	font-weight: 700;
	line-height: 1.15;
	text-align: center;
}

.hl-news-card__badge b {
	display: block;
	font-family: var(--hl-font-body, "Be Vietnam Pro", sans-serif);
	font-size: 0.8rem;
	font-weight: 600;
}

.hl-news-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 0.85rem 0.15rem 0.25rem;
}

.hl-news-card__title {
	margin: 0 0 0.45rem;
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
}

.hl-news-card__title a {
	color: #0f172a;
	text-decoration: none;
}

.hl-news-card__title a:hover {
	color: var(--hl-primary);
}

.hl-news-card__excerpt {
	margin: 0 0 0.75rem;
	font-size: 0.9rem;
	line-height: 1.55;
	color: #666;
}

.hl-news-card__more {
	display: inline-flex;
	align-items: center;
	margin-top: auto;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #0f172a;
	text-decoration: none;
}

.hl-news-card__more:hover {
	color: var(--hl-primary);
}

@media (max-width: 767px) {
	.hl-blog__slider {
		padding: 0 1.75rem;
	}
}

/* ---------- Instagram (Follow mosaic + slider) ---------- */
.hl-instagram {
	background: transparent;
	margin-bottom: var(--hl-section-gap);
}

.hl-instagram__slider {
	position: relative;
	padding: 0 2.75rem;
	overflow: hidden;
}

.hl-instagram__slider .swiper-slide {
	height: auto;
}

.hl-instagram__mosaic {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1.35fr;
	grid-template-rows: repeat(2, minmax(160px, 1fr));
	gap: 0.85rem;
	min-height: clamp(320px, 42vw, 460px);
}

.hl-instagram__item {
	position: relative;
	display: block;
	overflow: hidden;
	height: 100%;
	min-height: 0;
	border-radius: 18px;
	background: #e8e6e1;
}

.hl-instagram__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.hl-instagram__item:hover .hl-instagram__img {
	transform: scale(1.05);
}

.hl-instagram__item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(18, 31, 56, 0.35);
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}

.hl-instagram__item:hover::after {
	opacity: 1;
}

.hl-instagram__slider .swiper-button-prev,
.hl-instagram__slider .swiper-button-next {
	width: 44px;
	height: 44px;
	margin-top: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #0f172a;
	border: 0;
	border-radius: 50%;
	color: #fff;
	box-shadow: 0 4px 14px rgba(18, 31, 56, 0.2);
}

.hl-instagram__slider .swiper-button-prev:after,
.hl-instagram__slider .swiper-button-next:after {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.hl-instagram__slider .swiper-button-prev:hover,
.hl-instagram__slider .swiper-button-next:hover {
	background: var(--hl-primary);
}

.hl-instagram__slider .swiper-button-prev { left: 0; }
.hl-instagram__slider .swiper-button-next { right: 0; }

.hl-instagram__slider .swiper-button-disabled {
	opacity: 0.35;
	pointer-events: none;
}

@media (max-width: 991px) {
	.hl-instagram__mosaic {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: none;
		min-height: 0;
	}

	.hl-instagram__item {
		aspect-ratio: 1;
	}
}

@media (max-width: 575px) {
	.hl-instagram__slider {
		padding: 0 2.25rem;
	}

	.hl-instagram__mosaic {
		grid-template-columns: 1fr;
		gap: 0.65rem;
	}

	.hl-instagram__slider .swiper-button-prev,
	.hl-instagram__slider .swiper-button-next {
		width: 36px;
		height: 36px;
	}
}

/* ---------- Buttons global spa shape ---------- */
.hl-btn,
.btn {
	border-radius: var(--hl-radius-cta);
	font-family: var(--hl-font-display);
	text-transform: none;
	letter-spacing: 0;
}

.hl-btn--primary,
.btn-primary {
	background: var(--hl-primary);
	border-color: var(--hl-primary);
}

.hl-btn--secondary,
.btn-secondary {
	background: var(--hl-secondary);
	border-color: var(--hl-secondary);
}

/* ---------- Booking (Đặt lịch trải nghiệm) ---------- */
.hl-booking {
	background: transparent;
	margin-bottom: var(--hl-section-gap);
	padding: 0;
}

.hl-booking.hl-section--pad-sm,
.hl-booking.hl-section--pad-md,
.hl-booking.hl-section--pad-lg {
	padding-block: 0;
}

.hl-booking__band {
	background: linear-gradient(135deg, #0f172a 0%, #1c2d4f 55%, #243a5c 100%);
	padding: clamp(2.5rem, 4vw, 4rem) 0;
	border-radius: 0;
}

.hl-booking__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
	gap: clamp(1.5rem, 3vw, 3rem);
	align-items: center;
}

.hl-booking__brand {
	margin: 0 0 0.65rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #e8b89a;
}

.hl-booking__title {
	margin: 0 0 0.85rem;
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-size: clamp(1.6rem, 1.25rem + 1.4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
}

.hl-booking__subtitle,
.hl-booking__desc {
	margin: 0;
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
}

.hl-booking__desc {
	margin-top: 0.85rem;
}

.hl-booking__desc p {
	margin: 0 0 0.5rem;
}

.hl-booking__panel {
	background: #fff;
	border-radius: 24px 10px;
	padding: clamp(1.35rem, 2vw, 2rem);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hl-booking__form-title {
	margin: 0 0 0.4rem;
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-size: clamp(1.15rem, 1rem + 0.5vw, 1.35rem);
	font-weight: 700;
	color: #0f172a;
}

.hl-booking__form-intro {
	margin: 0 0 1.25rem;
	font-size: 0.925rem;
	line-height: 1.55;
	color: #666;
}

.hl-booking__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
	margin-bottom: 0.85rem;
}

.hl-booking__field {
	margin: 0;
}

.hl-booking__field--full {
	margin-bottom: 1rem;
}

.hl-booking__field input,
.hl-booking__field select,
.hl-booking__field textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid #e2ddd6;
	border-radius: 999px;
	background: #f7f5f1;
	font: inherit;
	font-size: 0.95rem;
	color: #0f172a;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hl-booking__field textarea {
	border-radius: 16px;
	min-height: 96px;
	resize: vertical;
}

.hl-booking__field input:focus,
.hl-booking__field select:focus,
.hl-booking__field textarea:focus {
	outline: none;
	background: #fff;
	border-color: var(--hl-primary);
	box-shadow: 0 0 0 3px rgba(154, 86, 58, 0.15);
}

.hl-booking__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.85rem 1.5rem;
	border: 0;
	border-radius: 20px 5px;
	background: #0f172a;
	color: #fff;
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.hl-booking__submit:hover {
	background: var(--hl-primary);
}

.hl-booking__form.is-loading .hl-booking__submit {
	opacity: 0.7;
	pointer-events: none;
}

.hl-booking__msg {
	margin: 0.85rem 0 0;
	padding: 0.75rem 1rem;
	border-radius: 10px;
	font-size: 0.925rem;
	line-height: 1.45;
}

.hl-booking__msg.is-success {
	background: #e8f5ee;
	color: #1a6b3c;
}

.hl-booking__msg.is-error {
	background: #fdeeee;
	color: #a12828;
}

@media (max-width: 991px) {
	.hl-booking__grid {
		grid-template-columns: 1fr;
	}

	.hl-booking__intro {
		text-align: center;
	}
}

@media (max-width: 575px) {
	.hl-booking__row {
		grid-template-columns: 1fr;
	}

	.hl-booking__panel {
		border-radius: 16px 8px;
		padding: 1.15rem;
	}
}

.hl-faq__list {
	max-width: 52rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 40px;
}

.hl-faq__item {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(18, 31, 56, 0.05);
}

.hl-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 1rem 1.25rem;
	border: 0;
	background: transparent;
	cursor: pointer;
	text-align: left;
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.4;
	color: #0f172a;
}

.hl-faq__question:hover,
.hl-faq__item.is-open .hl-faq__question {
	color: var(--hl-primary);
}

.hl-faq__icon {
	flex-shrink: 0;
	position: relative;
	width: 22px;
	height: 22px;
}

.hl-faq__icon::before,
.hl-faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: currentColor;
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.hl-faq__icon::before {
	width: 14px;
	height: 2px;
}

.hl-faq__icon::after {
	width: 2px;
	height: 14px;
}

.hl-faq__item.is-open .hl-faq__icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg);
}

.hl-faq__answer {
	padding: 0 1.25rem 1.15rem;
	font-size: 0.95rem;
	line-height: 1.65;
	color: #555;
}

.hl-faq__answer p {
	margin: 0 0 0.65rem;
}

.hl-faq__answer p:last-child {
	margin-bottom: 0;
}

.hl-faq__answer[hidden] {
	display: none !important;
}

.hl-process__step {
	border-radius: 16px;
}

/* ---------- Partners (Đối tác đồng hành) ---------- */
.hl-partners {
	background: transparent;
	margin-bottom: var(--hl-section-gap);
}

.hl-partners__slider {
	position: relative;
	padding: 0 2.5rem;
	overflow: hidden;
}

.hl-partners__slider .swiper-slide {
	height: auto;
}

.hl-partners__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1rem;
}

.hl-partners__card {
	height: 100%;
	margin: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.hl-partners__link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 110px;
	padding: 1.1rem 1.25rem;
	background: #fff;
	border: 1px solid rgba(18, 31, 56, 0.06);
	border-radius: 18px 6px;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(18, 31, 56, 0.05);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.hl-partners__link:hover {
	border-color: rgba(154, 86, 58, 0.35);
	box-shadow: 0 10px 24px rgba(18, 31, 56, 0.1);
	transform: translateY(-3px);
}

.hl-partners__logo {
	display: block;
	max-width: 100%;
	max-height: 56px;
	width: auto;
	height: auto;
	margin: 0 auto;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.72;
	transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.hl-partners__link:hover .hl-partners__logo {
	filter: none;
	opacity: 1;
	transform: scale(1.04);
}

.hl-partners__name {
	font-family: var(--hl-font-display, Lora, Georgia, serif);
	font-size: 1rem;
	font-weight: 700;
	color: #0f172a;
	text-align: center;
}

.hl-partners__slider .swiper-button-prev,
.hl-partners__slider .swiper-button-next {
	width: 36px;
	height: 36px;
	margin-top: 0;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(233, 233, 233, 0.95);
	border: 0;
	border-radius: 10px 5px;
	color: #0f172a;
}

.hl-partners__slider .swiper-button-prev:after,
.hl-partners__slider .swiper-button-next:after {
	font-size: 13px;
	font-weight: 700;
	color: #0f172a;
}

.hl-partners__slider .swiper-button-prev:hover,
.hl-partners__slider .swiper-button-next:hover {
	background: #0f172a;
}

.hl-partners__slider .swiper-button-prev:hover:after,
.hl-partners__slider .swiper-button-next:hover:after {
	color: #fff;
}

.hl-partners__slider .swiper-button-prev { left: 0; }
.hl-partners__slider .swiper-button-next { right: 0; }

@media (max-width: 991px) {
	.hl-partners__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.hl-partners__slider {
		padding: 0 2rem;
	}

	.hl-partners__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hl-partners__link {
		min-height: 96px;
		padding: 0.9rem;
	}

	.hl-partners__logo {
		max-height: 44px;
	}
}

/* ---------- Gallery (Không gian HALINK Spa) ---------- */
.hl-gallery {
	background: transparent;
	margin-bottom: var(--hl-section-gap);
}

.hl-gallery__slider {
	position: relative;
	padding: 0;
	overflow: hidden;
}

.hl-gallery__slider .swiper-slide {
	height: auto;
}

.hl-gallery__item {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 24px 8px;
	background: #e8e6e1;
	aspect-ratio: 4 / 3;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(18, 31, 56, 0.08);
}

.hl-gallery__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.hl-gallery__item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(18, 31, 56, 0.45) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.hl-gallery__zoom {
	position: absolute;
	inset: 0;
	z-index: 2;
	margin: auto;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #0f172a;
	opacity: 0;
	transform: scale(0.85);
	transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
	pointer-events: none;
}

.hl-gallery__zoom::before,
.hl-gallery__zoom::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: #fff;
	transform: translate(-50%, -50%);
}

.hl-gallery__zoom::before {
	width: 16px;
	height: 2px;
}

.hl-gallery__zoom::after {
	width: 2px;
	height: 16px;
}

.hl-gallery__item:hover .hl-gallery__img {
	transform: scale(1.06);
}

.hl-gallery__item:hover::after,
.hl-gallery__item:hover .hl-gallery__zoom {
	opacity: 1;
}

.hl-gallery__item:hover .hl-gallery__zoom {
	transform: scale(1);
	background: var(--hl-primary);
}

.hl-gallery__slider .swiper-button-prev,
.hl-gallery__slider .swiper-button-next {
	width: 42px;
	height: 42px;
	margin-top: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #0f172a;
	border: 0;
	border-radius: 50%;
	color: #fff;
	box-shadow: 0 6px 16px rgba(18, 31, 56, 0.2);
}

.hl-gallery__slider .swiper-button-prev:after,
.hl-gallery__slider .swiper-button-next:after {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.hl-gallery__slider .swiper-button-prev:hover,
.hl-gallery__slider .swiper-button-next:hover {
	background: var(--hl-primary);
}

.hl-gallery__slider .swiper-button-prev { left: 0; }
.hl-gallery__slider .swiper-button-next { right: 0; }

/* Mosaic layout */
.hl-gallery__mosaic {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1.35fr;
	grid-template-rows: repeat(2, minmax(160px, 1fr));
	gap: 0.85rem;
	min-height: clamp(320px, 42vw, 460px);
}

.hl-gallery__item--mosaic {
	height: 100%;
	min-height: 0;
	aspect-ratio: auto;
	border-radius: 18px;
}

/* Lightbox */
.hl-gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100070;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.hl-gallery-lightbox[hidden] {
	display: none !important;
}

.hl-gallery-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(18, 31, 56, 0.78);
}

.hl-gallery-lightbox__dialog {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	max-height: 90vh;
	border-radius: 14px;
	overflow: hidden;
	background: #000;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hl-gallery-lightbox__close {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	z-index: 2;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: #0f172a;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
}

.hl-gallery-lightbox__close:hover {
	background: var(--hl-primary);
	color: #fff;
}

.hl-gallery-lightbox__img {
	display: block;
	width: 100%;
	max-height: 90vh;
	object-fit: contain;
	background: #111;
}

body.hl-gallery-open {
	overflow: hidden;
}

@media (max-width: 991px) {
	.hl-gallery__mosaic {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: none;
		min-height: 0;
	}

	.hl-gallery__item--mosaic {
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 575px) {
	.hl-gallery__slider {
		padding: 0;
	}

	.hl-gallery__mosaic {
		grid-template-columns: 1fr;
	}

	.hl-gallery__slider .swiper-button-prev,
	.hl-gallery__slider .swiper-button-next {
		width: 34px;
		height: 34px;
	}
}


/* ===== Luxury Spa — About / Contact page content ===== */
.hl-page--about,
.hl-page--contact {
	background: var(--hl-bg);
}

.hl-about-page-content {
	padding: clamp(2rem, 4vw, 3rem) 0;
}

.hl-about-page-content__inner {
	max-width: 52rem;
	margin: 0 auto;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	background: #fff;
	border: 1px solid var(--hl-border, #ddd4c6);
	border-radius: 1rem;
}

.hl-about-page-content__body {
	font-family: var(--hl-font);
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--hl-text);
}

.hl-about-page-content__body h2,
.hl-about-page-content__body h3 {
	font-family: var(--hl-font-display);
	font-weight: 500;
	color: var(--hl-ink, #1c2218);
}

.hl-about-page-content__body a {
	color: var(--hl-primary);
}
