/**
 * HT Commerce — main stylesheet
 * Design: editorial fashion, lavender + charcoal, pill CTAs, soft shadows
 */

:root {
	--ht-color-bg: #f9f9fb;
	--ht-color-surface: #ffffff;
	--ht-color-ink: #1a1a1a;
	--ht-color-muted: #5c5c66;
	--ht-color-lavender: #e8e6f4;
	--ht-color-lavender-deep: #c9b8e8;
	--ht-color-accent: #7c5cbf;
	--ht-color-cta: #ff7a00;
	--ht-color-cta-hover: #e56d00;
	--ht-color-success: #2d9d78;
	--ht-radius-pill: 999px;
	--ht-radius-card: 18px;
	--ht-radius-arch: 120px 120px 0 0;
	--ht-shadow-soft: 0 18px 45px rgba(26, 26, 26, 0.08);
	--ht-shadow-card: 0 12px 32px rgba(26, 26, 26, 0.06);
	--ht-font-display: "Playfair Display", Georgia, "Times New Roman", serif;
	--ht-font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--ht-max: 1200px;
	--ht-header-h: 88px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--ht-font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--ht-color-ink);
	background: var(--ht-color-bg);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--ht-color-accent);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
	color: var(--ht-color-ink);
}

.ht-container {
	width: min(100% - 2rem, var(--ht-max));
	margin-inline: auto;
}

.ht-skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.ht-skip-link:focus {
	position: fixed;
	left: 1rem;
	top: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	background: var(--ht-color-ink);
	color: #fff;
	z-index: 100000;
}

/* ---------- Top notice ---------- */
.ht-top-notice {
	background: linear-gradient(90deg, var(--ht-color-lavender-deep), var(--ht-color-lavender));
	color: var(--ht-color-ink);
	font-size: 0.8125rem;
	text-align: center;
	padding: 0.5rem 1rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ht-top-notice strong {
	font-weight: 700;
}

/* ---------- Header ---------- */
.ht-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(249, 249, 251, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.ht-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--ht-header-h);
	padding-block: 0.75rem;
}

.ht-logo {
	font-family: var(--ht-font-display);
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--ht-color-ink);
}

.ht-logo:hover {
	color: var(--ht-color-accent);
}

.ht-logo img {
	max-height: 48px;
	width: auto;
}

.ht-nav-toggle {
	display: none;
	background: var(--ht-color-surface);
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: var(--ht-radius-pill);
	padding: 0.5rem 0.85rem;
	font: inherit;
	cursor: pointer;
}

.ht-nav {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.ht-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	align-items: center;
}

.ht-nav a {
	color: var(--ht-color-ink);
	font-size: 0.9375rem;
	font-weight: 500;
}

.ht-nav a:hover,
.ht-nav .current-menu-item > a {
	color: var(--ht-color-accent);
}

.ht-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.ht-header-search-wrap .ht-header-search {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: var(--ht-radius-pill);
	padding: 0.2rem 0.35rem 0.2rem 0.85rem;
	background: var(--ht-color-surface);
}

.ht-header-search-wrap input[type="search"] {
	border: none;
	outline: none;
	min-width: 100px;
	max-width: 200px;
	font: inherit;
	background: transparent;
}

.ht-header-search-wrap .ht-btn {
	box-shadow: none;
}

.ht-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--ht-radius-pill);
	border: 1px solid rgba(26, 26, 26, 0.1);
	background: var(--ht-color-surface);
	color: var(--ht-color-ink);
	position: relative;
}

.ht-icon-btn:hover {
	border-color: var(--ht-color-accent);
	color: var(--ht-color-accent);
}

.ht-cart-count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: var(--ht-radius-pill);
	background: var(--ht-color-cta);
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
}

/* ---------- Buttons ---------- */
.ht-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.75rem;
	border-radius: var(--ht-radius-pill);
	font-family: var(--ht-font-body);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ht-btn--primary {
	background: linear-gradient(135deg, var(--ht-color-lavender-deep), var(--ht-color-accent));
	color: #fff;
	box-shadow: 0 8px 24px rgba(124, 92, 191, 0.35);
}

.ht-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(124, 92, 191, 0.4);
	color: #fff;
}

.ht-btn--cta {
	background: var(--ht-color-cta);
	color: #fff;
	box-shadow: 0 8px 24px rgba(255, 122, 0, 0.35);
}

.ht-btn--cta:hover {
	background: var(--ht-color-cta-hover);
	color: #fff;
	transform: translateY(-2px);
}

.ht-btn--ghost {
	background: transparent;
	border: 1px solid rgba(26, 26, 26, 0.15);
	color: var(--ht-color-ink);
}

.ht-btn--ghost:hover {
	border-color: var(--ht-color-accent);
	color: var(--ht-color-accent);
}

/* ---------- Hero ---------- */
.ht-hero {
	position: relative;
	padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
	overflow: hidden;
}

.ht-hero__bg-shape {
	position: absolute;
	width: min(55vw, 520px);
	height: min(55vw, 520px);
	background: linear-gradient(145deg, var(--ht-color-lavender), var(--ht-color-lavender-deep));
	opacity: 0.55;
	border-radius: 32% 68% 45% 55% / 40% 35% 65% 60%;
	top: -10%;
	right: -5%;
	z-index: 0;
	pointer-events: none;
}

.ht-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 2rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.ht-hero__kicker {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--ht-color-muted);
	margin-bottom: 1rem;
}

.ht-hero__title {
	font-family: var(--ht-font-display);
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	line-height: 1.1;
	margin: 0 0 1.25rem;
	font-weight: 700;
}

.ht-hero__lead {
	font-size: 1.0625rem;
	color: var(--ht-color-muted);
	max-width: 34ch;
	margin-bottom: 1.75rem;
}

.ht-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.ht-hero__visual {
	position: relative;
}

.ht-hero__img-wrap {
	position: relative;
	border-radius: var(--ht-radius-card);
	overflow: hidden;
	box-shadow: none;
	background: transparent;
}

.ht-hero__img-wrap img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
}

.ht-hero__badge {
	position: absolute;
	bottom: 1.25rem;
	left: 1.25rem;
	background: rgba(255, 255, 255, 0.95);
	padding: 0.75rem 1rem;
	border-radius: var(--ht-radius-card);
	font-size: 0.8125rem;
	box-shadow: var(--ht-shadow-card);
	max-width: 220px;
}

@media (min-width: 961px) {
	/* Desktop hero: fill the first viewport with balanced copy and image blocks. */
	.ht-hero {
		padding: clamp(1.25rem, 2.2vw, 2rem) 0;
		min-height: calc(100svh - var(--ht-header-h) - 36px);
	}

	.ht-hero .ht-container {
		width: min(100% - 4.5rem, var(--ht-max));
	}

	.ht-hero__grid {
		height: 100%;
		width: 100%;
		align-items: stretch;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: clamp(2rem, 4vw, 4rem);
	}

	.ht-hero__copy {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding-block: 0.25rem;
		max-width: 560px;
	}

	.ht-hero__visual {
		display: flex;
		align-items: center;
	}

	.ht-hero__img-wrap {
		width: 100%;
		height: min(72svh, 760px);
		background: transparent;
	}

	.ht-hero__img-wrap img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center bottom;
	}

	.ht-hero__title {
		font-size: clamp(2.45rem, 4.8vw, 4.1rem);
		line-height: 1.06;
	}

	.ht-hero__lead {
		max-width: 40ch;
		font-size: 1.05rem;
	}
}

/* ---------- Trust strip ---------- */
.ht-trust {
	padding: 2.5rem 0;
	background: var(--ht-color-surface);
	border-block: 1px solid rgba(26, 26, 26, 0.06);
}

.ht-trust__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.ht-trust__card {
	padding: 1.5rem;
	border-radius: var(--ht-radius-card);
	text-align: center;
}

.ht-trust__card--a {
	background: #e8f5ef;
}
.ht-trust__card--b {
	background: #fff4e6;
}
.ht-trust__card--c {
	background: #e8f0ff;
}

.ht-trust__icon {
	font-size: 1.75rem;
	margin-bottom: 0.5rem;
	min-height: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ht-trust__icon-img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.ht-trust__emoji {
	font-size: 1.75rem;
	line-height: 1;
}

.ht-trust__title {
	font-weight: 700;
	margin: 0 0 0.35rem;
	font-size: 1rem;
}

.ht-trust__text {
	margin: 0;
	font-size: 0.875rem;
	color: var(--ht-color-muted);
}

/* ---------- Why choose us (4 pillars) — home + About template ---------- */
.ht-why--home {
	padding: clamp(2rem, 4vw, 2.75rem) 0;
	background: linear-gradient(180deg, rgba(250, 248, 255, 0.65) 0%, var(--ht-color-surface) 100%);
	border-block: 1px solid rgba(26, 26, 26, 0.06);
}

.ht-why--about {
	margin-top: clamp(2rem, 5vw, 3.25rem);
	padding: clamp(1.75rem, 3vw, 2.5rem);
	background: var(--ht-color-surface);
	border-radius: var(--ht-radius-card);
	border: 1px solid rgba(26, 26, 26, 0.07);
	box-shadow: var(--ht-shadow-soft);
}

.ht-why--about .ht-why__head {
	margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.ht-why__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(0.85rem, 2vw, 1.35rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.ht-why__card {
	position: relative;
	padding: 1.25rem 1rem 1.35rem;
	border-radius: var(--ht-radius-card);
	text-align: center;
	border: 1px solid rgba(26, 26, 26, 0.06);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ht-why__card:hover {
	transform: translateY(-2px);
	box-shadow: var(--ht-shadow-card);
}

.ht-why__card--a {
	background: linear-gradient(160deg, #e8f5ef 0%, #dff3e8 100%);
}
.ht-why__card--b {
	background: linear-gradient(160deg, #fff4e6 0%, #ffe8cc 100%);
}
.ht-why__card--c {
	background: linear-gradient(160deg, #e8f0ff 0%, #dce6ff 100%);
}
.ht-why__card--d {
	background: linear-gradient(160deg, #f3edff 0%, #e8ddff 100%);
}

.ht-why__icon {
	width: 3.25rem;
	height: 3.25rem;
	margin: 0 auto 0.65rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 1px 3px rgba(26, 26, 26, 0.08);
}

.ht-why__icon-img {
	width: 1.65rem;
	height: 1.65rem;
	object-fit: contain;
}

.ht-why__emoji {
	font-size: 1.5rem;
	line-height: 1;
	display: block;
}

.ht-why__title {
	font-weight: 700;
	margin: 0 0 0.35rem;
	font-size: 0.98rem;
	letter-spacing: -0.01em;
}

.ht-why__text {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--ht-color-muted);
}

/* ---------- Testimonials ---------- */
.ht-testimonials {
	padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.ht-testimonials--home {
	background: linear-gradient(180deg, rgba(250, 248, 255, 0.9) 0%, var(--ht-color-surface) 55%);
	border-block: 1px solid rgba(26, 26, 26, 0.06);
}

.ht-testimonials--about {
	margin-top: clamp(1.75rem, 4vw, 2.75rem);
	padding-bottom: 0;
}

.ht-testimonials__head {
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.ht-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: clamp(1rem, 2.5vw, 1.35rem);
	align-items: stretch;
}

.ht-testimonial {
	margin: 0;
	padding: 1.35rem 1.3rem 1.45rem;
	background: var(--ht-color-surface);
	border-radius: var(--ht-radius-card);
	border: 1px solid rgba(26, 26, 26, 0.07);
	box-shadow: var(--ht-shadow-soft);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ht-testimonial:hover {
	box-shadow: var(--ht-shadow-card);
	transform: translateY(-2px);
}

.ht-testimonial__stars {
	display: block;
	margin: 0 0 0.65rem;
	font-size: 1rem;
	line-height: 1;
	letter-spacing: 0.12em;
	color: #c9a227;
}

.ht-testimonial__star {
	opacity: 0.35;
}

.ht-testimonial__star.is-on {
	opacity: 1;
}

.ht-testimonial__quote {
	margin: 0 0 1rem;
	font-size: 1.02rem;
	font-style: italic;
	line-height: 1.55;
	color: var(--ht-color-ink);
}

.ht-testimonial__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.65rem;
	font-size: 0.875rem;
	color: var(--ht-color-muted);
}

.ht-testimonial__name {
	font-style: normal;
	font-weight: 700;
	color: var(--ht-color-ink);
}

.ht-testimonial__role {
	font-style: normal;
}

/* ---------- Section headings ---------- */
.ht-section-head {
	text-align: center;
	margin-bottom: 2.5rem;
}

.ht-section-head h2 {
	font-family: var(--ht-font-display);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin: 0 0 0.5rem;
}

.ht-section-head p {
	margin: 0;
	color: var(--ht-color-muted);
	font-size: 1rem;
}

/* ---------- Categories ---------- */
.ht-cats {
	padding: clamp(3rem, 6vw, 5rem) 0;
}

.ht-cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 1rem;
}

.ht-cat-card {
	display: block;
	border-radius: var(--ht-radius-card);
	overflow: hidden;
	background: var(--ht-color-lavender);
	position: relative;
	aspect-ratio: 3/4;
	box-shadow: var(--ht-shadow-card);
	transition: transform 0.25s ease;
}

.ht-cat-card:hover {
	transform: translateY(-4px);
}

.ht-cat-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ht-cat-card__label {
	position: absolute;
	inset: auto 0 0 0;
	padding: 1rem;
	background: linear-gradient(transparent, rgba(26, 26, 26, 0.75));
	color: #fff;
	font-weight: 600;
	font-size: 0.9375rem;
}

/* ---------- Products grid (home + archive) ---------- */
.ht-products {
	padding: clamp(2rem, 5vw, 4rem) 0;
}

.ht-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
}

.ht-product-card {
	background: var(--ht-color-surface);
	border-radius: var(--ht-radius-card);
	overflow: hidden;
	box-shadow: var(--ht-shadow-card);
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
	position: relative;
}

.ht-product-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--ht-shadow-soft);
}

.ht-product-card__img-wrap {
	position: relative;
}

.ht-product-card__img {
	position: relative;
	display: block;
	background: #f0eef8;
	aspect-ratio: 3/4;
	overflow: hidden;
}

.ht-product-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ht-wishlist-btn {
	position: absolute;
	right: 0.65rem;
	bottom: 0.65rem;
	width: 40px;
	height: 40px;
	border-radius: var(--ht-radius-pill);
	border: 1px solid rgba(26, 26, 26, 0.1);
	background: rgba(255, 255, 255, 0.95);
	color: var(--ht-color-ink);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--ht-shadow-card);
	transition: transform 0.2s ease, color 0.2s ease;
	z-index: 2;
}

.ht-wishlist-btn:hover {
	transform: scale(1.05);
	color: var(--ht-color-accent);
}

.ht-wishlist-btn[aria-pressed="true"] {
	color: #c41e3a;
	border-color: rgba(196, 30, 58, 0.35);
}

.ht-wishlist--single {
	position: static;
	margin-left: 0.75rem;
	vertical-align: middle;
}

.ht-single-product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.ht-wishlist-count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: var(--ht-radius-pill);
	background: var(--ht-color-accent);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
}

.ht-wishlist-link {
	position: relative;
}

.ht-products--tint {
	background: linear-gradient(180deg, transparent, rgba(232, 230, 244, 0.5));
	padding-top: 3rem;
}

.ht-promo-wrap {
	margin-top: 2rem;
	margin-bottom: 0;
}

.ht-product-card__badge {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background: var(--ht-color-cta);
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.35rem 0.65rem;
	border-radius: var(--ht-radius-pill);
}

.ht-product-card__body {
	padding: 1.1rem 1.25rem 1.35rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.ht-product-card__title {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 0.35rem;
	line-height: 1.35;
}

.ht-product-card__title a {
	color: var(--ht-color-ink);
}

.ht-product-card__title a:hover {
	color: var(--ht-color-accent);
}

.ht-product-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-top: auto;
}

.ht-price {
	font-weight: 700;
	font-size: 1.05rem;
}

.ht-price del {
	color: var(--ht-color-muted);
	font-weight: 500;
	font-size: 0.9rem;
	margin-right: 0.35rem;
}

.ht-stars {
	color: #f5b301;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
}

/* ---------- Promo banner ---------- */
.ht-promo {
	margin: 2rem 0 0;
	padding: clamp(2rem, 5vw, 3rem);
	border-radius: var(--ht-radius-card);
	background: linear-gradient(120deg, #ffd8c4, #ffe8dc);
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1.5rem;
	align-items: center;
	box-shadow: var(--ht-shadow-card);
}

.ht-promo h3 {
	font-family: var(--ht-font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin: 0 0 0.5rem;
}

.ht-promo p {
	margin: 0;
	color: var(--ht-color-muted);
}

/* ---------- Footer CTA (conversion, before site footer) ---------- */
.ht-footer-cta {
	margin-top: 0;
	padding: clamp(2.75rem, 6vw, 4.5rem) 0;
	background: linear-gradient(
		125deg,
		var(--ht-color-accent) 0%,
		#5b4499 42%,
		#2a1f4a 100%
	);
	color: #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ht-footer-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(255, 255, 255, 0.12), transparent 55%);
	pointer-events: none;
}

.ht-footer-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 40rem;
	margin-inline: auto;
}

.ht-footer-cta--home {
	margin-top: clamp(1.5rem, 4vw, 3rem);
}

.ht-footer-cta--about {
	margin-top: clamp(2rem, 5vw, 3.5rem);
}

.ht-footer-cta__title {
	font-family: var(--ht-font-display);
	font-size: clamp(1.65rem, 3.8vw, 2.4rem);
	line-height: 1.15;
	margin: 0 0 0.75rem;
	color: #fff;
	letter-spacing: -0.02em;
}

.ht-footer-cta__sub {
	margin: 0 auto 1.5rem;
	max-width: 36ch;
	font-size: 1.02rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.9);
}

.ht-footer-cta__btn {
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
	font-size: 1rem;
	padding: 0.85rem 1.75rem;
}

.ht-footer-cta__btn:hover {
	box-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
	transform: translateY(-1px);
}

/* ---------- Updates & WhatsApp (before footer CTA) ---------- */
.ht-connect {
	padding: clamp(2.25rem, 4vw, 3.25rem) 0;
	background: var(--ht-color-bg);
	border-block: 1px solid rgba(26, 26, 26, 0.05);
}

.ht-connect--home {
	margin-top: clamp(1.25rem, 3vw, 2.5rem);
}

.ht-connect--about {
	margin-top: clamp(1.25rem, 3vw, 2rem);
}

/* Customizer only: show where WhatsApp will appear when phone is missing */
.ht-connect--customizer-preview {
	background: rgba(248, 250, 252, 0.95);
	border-block: 1px dashed rgba(37, 211, 102, 0.35);
}

.ht-connect__card--preview-note {
	background: rgba(232, 250, 243, 0.65);
	border-style: dashed;
}

.ht-connect__preview-text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--ht-color-muted);
}

.ht-connect__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
	gap: clamp(1rem, 2.5vw, 1.5rem);
	align-items: stretch;
}

.ht-connect__grid--single {
	max-width: 36rem;
	margin-inline: auto;
	grid-template-columns: 1fr;
}

.ht-connect__card {
	padding: clamp(1.35rem, 3vw, 1.75rem);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 244, 236, 0.45) 100%);
	border-radius: var(--ht-radius-card);
	border: 1px solid rgba(255, 122, 0, 0.12);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.65rem;
}

.ht-connect__card--whatsapp {
	background: linear-gradient(165deg, #e8faf3 0%, rgba(255, 252, 248, 0.95) 100%);
	border-color: rgba(37, 211, 102, 0.22);
}

.ht-connect__title {
	font-family: var(--ht-font-display);
	font-size: clamp(1.2rem, 2.4vw, 1.45rem);
	margin: 0;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.ht-connect__sub {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--ht-color-muted);
	flex: 1;
}

.ht-connect__btn {
	margin-top: 0.25rem;
	align-self: flex-start;
}

.ht-connect__btn--wa {
	border-color: #128c7e;
	color: #075e54;
	background: rgba(255, 255, 255, 0.85);
}

.ht-connect__btn--wa:hover {
	background: #25d366;
	border-color: #25d366;
	color: #fff;
}

/* ---------- Blog teaser ---------- */
.ht-blog {
	padding: clamp(3rem, 6vw, 5rem) 0;
}

.ht-blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.ht-blog-card {
	background: var(--ht-color-surface);
	border-radius: var(--ht-radius-card);
	overflow: hidden;
	box-shadow: var(--ht-shadow-card);
}

.ht-blog-card__img {
	aspect-ratio: 16/10;
	overflow: hidden;
	background: var(--ht-color-lavender);
}

.ht-blog-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ht-blog-card__body {
	padding: 1.25rem;
}

.ht-blog-card__body h3 {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
}

/* ---------- Page layouts ---------- */
.ht-page-hero {
	padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
	text-align: center;
	background: linear-gradient(180deg, var(--ht-color-lavender) 0%, var(--ht-color-bg) 100%);
}

.ht-page-hero h1 {
	font-family: var(--ht-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 0 0 0.75rem;
}

.ht-page-hero p {
	margin: 0 auto;
	max-width: 52ch;
	color: var(--ht-color-muted);
}

/* About: compact intro so story + image fit above the fold (like home hero intent) */
.ht-page-hero--about {
	padding: clamp(1rem, 2.5vw, 1.75rem) 0 clamp(0.75rem, 1.5vw, 1.25rem);
	background: linear-gradient(180deg, rgba(232, 230, 244, 0.85) 0%, var(--ht-color-bg) 92%);
}

.ht-page-hero--about h1 {
	font-size: clamp(1.6rem, 3.2vw, 2.25rem);
	margin-bottom: 0.45rem;
	line-height: 1.15;
}

.ht-page-hero--about p {
	font-size: 0.9375rem;
	line-height: 1.45;
	max-width: 42ch;
}

.ht-content {
	padding: 2rem 0 4rem;
}

.ht-content.ht-about-body {
	padding-top: clamp(0.5rem, 1.2vw, 0.9rem);
}

.ht-content .ht-container {
	max-width: 720px;
}

.ht-content--wide .ht-container {
	max-width: var(--ht-max);
}

.ht-prose > * + * {
	margin-top: 1.25rem;
}

/* About template */
.ht-about-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: start;
	margin-bottom: 2rem;
}

.ht-about-split__visual {
	border-radius: var(--ht-radius-card);
	overflow: hidden;
	background: linear-gradient(145deg, var(--ht-color-lavender), rgba(232, 230, 244, 0.6));
	box-shadow: var(--ht-shadow-soft);
	max-height: min(36svh, 340px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ht-about-split__img {
	display: block;
	width: 100%;
	height: min(36svh, 340px);
	object-fit: cover;
	object-position: center;
	border-radius: 0;
	box-shadow: none;
}

.ht-about-split__visual .ht-about-split__img[src$=".svg"] {
	object-fit: contain;
	padding: 0.75rem;
	height: min(32svh, 300px);
}

@media (min-width: 961px) {
	.ht-about-split {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
		align-items: start;
	}
}

@media (max-width: 960px) {
	.ht-about-split__visual {
		max-height: min(32svh, 280px);
	}

	.ht-about-split__img {
		height: min(32svh, 280px);
	}

	.ht-about-split__visual .ht-about-split__img[src$=".svg"] {
		height: min(28svh, 240px);
	}
}

/* Contact */
.ht-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 2.5rem;
	align-items: start;
}

.ht-contact-card {
	background: var(--ht-color-surface);
	padding: 2rem;
	border-radius: var(--ht-radius-card);
	box-shadow: var(--ht-shadow-card);
}

.ht-contact-map {
	margin-top: 1.5rem;
	border-radius: var(--ht-radius-card);
	overflow: hidden;
	box-shadow: var(--ht-shadow-card);
	background: var(--ht-color-lavender);
}

.ht-contact-map iframe {
	display: block;
	width: 100%;
	min-height: 260px;
	height: 300px;
	border: 0;
}

.ht-form label {
	display: block;
	font-weight: 600;
	font-size: 0.875rem;
	margin-bottom: 0.35rem;
}

.ht-form input,
.ht-form textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border-radius: 12px;
	border: 1px solid rgba(26, 26, 26, 0.12);
	font: inherit;
	margin-bottom: 1rem;
	background: #fff;
}

.ht-form textarea {
	min-height: 160px;
	resize: vertical;
}

.ht-alert {
	padding: 1rem 1.25rem;
	border-radius: 12px;
	margin-bottom: 1rem;
}

.ht-alert--ok {
	background: #e8f5ef;
	color: #1b5e3a;
}

.ht-alert--err {
	background: #fdecea;
	color: #8c1d18;
}

/* ---------- Footer ---------- */
.ht-footer {
	background: #14141a;
	color: rgba(255, 255, 255, 0.85);
	padding: 3.5rem 0 2rem;
	margin-top: auto;
}

.ht-footer a {
	color: rgba(255, 255, 255, 0.85);
}

.ht-footer a:hover {
	color: #fff;
}

.ht-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.ht-footer__brand .ht-logo {
	color: #fff;
	margin-bottom: 0.75rem;
	display: inline-block;
}

.ht-footer .custom-logo-link img,
.ht-footer-logo .custom-logo-link img {
	max-height: 40px;
	width: auto;
}

.ht-footer h4 {
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 1rem;
	color: rgba(255, 255, 255, 0.55);
}

.ht-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ht-footer li {
	margin-bottom: 0.5rem;
}

.ht-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1.5rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.55);
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
}

/* ---------- WooCommerce integration ---------- */
.woocommerce .ht-main,
.ht-shop-wrap {
	padding-bottom: 4rem;
}

.ht-shop-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 2rem;
	align-items: start;
	margin-top: 1.5rem;
}

.ht-shop-sidebar {
	background: var(--ht-color-surface);
	border-radius: var(--ht-radius-card);
	padding: 1.5rem;
	box-shadow: var(--ht-shadow-card);
	position: sticky;
	top: calc(var(--ht-header-h) + 1rem);
}

.ht-shop-sidebar .widget-title {
	font-family: var(--ht-font-display);
	font-size: 1.15rem;
	margin: 0 0 1rem;
}

.ht-shop-sidebar .widget {
	margin-bottom: 1.75rem;
}

.ht-shop-sidebar .widget:last-child {
	margin-bottom: 0;
}

.ht-shop-filters {
	display: grid;
	gap: 1rem;
}

.ht-filter-group {
	border: 0;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

.ht-filter-group legend {
	font-weight: 700;
	font-size: 0.9rem;
	margin-bottom: 0.35rem;
}

.ht-filter-group label {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.9rem;
	cursor: pointer;
}

.ht-filter-group input[type="checkbox"] {
	margin: 0;
}

.ht-price-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
}

.ht-price-fields input {
	width: 100%;
	padding: 0.45rem 0.55rem;
	border-radius: 10px;
	border: 1px solid rgba(26, 26, 26, 0.15);
	font: inherit;
}

.ht-shop-sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ht-shop-sidebar li {
	margin-bottom: 0.5rem;
}

.ht-shop-sidebar a {
	color: var(--ht-color-ink);
}

.ht-shop-sidebar .count {
	color: var(--ht-color-muted);
	font-size: 0.85rem;
}

.woocommerce-result-count,
.woocommerce-ordering {
	margin-bottom: 1rem;
}

.woocommerce .woocommerce-ordering select {
	padding: 0.5rem 2rem 0.5rem 0.75rem;
	border-radius: var(--ht-radius-pill);
	border: 1px solid rgba(26, 26, 26, 0.12);
	font: inherit;
}

.ht-shop-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

/* WooCommerce product loop list */
.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none !important;
}

.woocommerce ul.products li.product {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}

/* Single product */
.ht-single-product {
	/* Keep portrait product shots within the viewport (desktop + tablet). */
	--ht-pdp-gallery-max-h: min(72vh, 720px);
	padding: 2rem 0 4rem;
}

@media (max-width: 900px) {
	.ht-single-product {
		--ht-pdp-gallery-max-h: min(56vh, 480px);
	}
}

.ht-single-product .woocommerce div.product {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: start;
}

@media (max-width: 900px) {
	.ht-single-product .woocommerce div.product {
		grid-template-columns: 1fr;
	}
}

.ht-single-product .woocommerce-product-gallery {
	border-radius: var(--ht-radius-card);
	overflow: visible;
	box-shadow: var(--ht-shadow-card);
	background: rgba(250, 250, 252, 0.6);
}

/* Flexslider viewport: Woo sets inline height from full image — cap it (thumbs stay below) */
.ht-single-product .woocommerce-product-gallery .flex-viewport {
	max-height: var(--ht-pdp-gallery-max-h) !important;
	overflow: hidden;
	border-radius: var(--ht-radius-card);
}

.ht-single-product .woocommerce-product-gallery .flex-viewport .slides {
	display: flex;
	align-items: center;
}

.ht-single-product .woocommerce-product-gallery .flex-viewport li {
	display: flex !important;
	align-items: center;
	justify-content: center;
}

.ht-single-product .woocommerce-product-gallery__image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ht-single-product .woocommerce-product-gallery__image img,
.ht-single-product .woocommerce-product-gallery .flex-viewport img {
	max-height: var(--ht-pdp-gallery-max-h);
	width: auto !important;
	max-width: 100% !important;
	height: auto !important;
	object-fit: contain;
	object-position: center;
	display: block;
	margin-inline: auto;
}

.ht-single-product .woocommerce-product-gallery__image a {
	display: flex;
	align-items: center;
	justify-content: center;
	max-height: var(--ht-pdp-gallery-max-h);
}

.ht-single-product .summary {
	padding-left: clamp(0rem, 3vw, 2rem);
}

.ht-single-product .product_title {
	font-family: var(--ht-font-display);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.ht-single-product .price {
	font-size: 1.5rem;
	color: var(--ht-color-ink);
	font-weight: 700;
}

.ht-single-product .woocommerce-variation-add-to-cart .button,
.ht-single-product .single_add_to_cart_button {
	background: var(--ht-color-cta) !important;
	color: #fff !important;
	border-radius: var(--ht-radius-pill) !important;
	padding: 0.9rem 2rem !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.ht-single-product .single_add_to_cart_button:hover {
	background: var(--ht-color-cta-hover) !important;
}

.woocommerce div.product form.cart .button {
	line-height: 1.2;
}

.ht-single-product table.variations select {
	padding: 0.5rem 1rem;
	border-radius: 12px;
	border: 1px solid rgba(26, 26, 26, 0.15);
}

.ht-single-product .woocommerce-tabs {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.ht-single-product .woocommerce-tabs ul.tabs {
	padding-left: 0;
}

.ht-single-product .related.products {
	margin-top: 3rem;
}

.ht-single-product .related.products > h2 {
	font-family: var(--ht-font-display);
	font-size: 1.75rem;
}

/* Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-radius: 12px;
	border-top: none !important;
}

/* Breadcrumb */
.woocommerce-breadcrumb {
	font-size: 0.875rem;
	color: var(--ht-color-muted);
	margin-bottom: 1rem;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
	border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: none;
	margin: 0 0.2rem;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	border-radius: var(--ht-radius-pill);
	padding: 0.5rem 0.85rem;
	min-width: auto;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--ht-color-accent);
	color: #fff;
}

/* Cart / checkout base */
.woocommerce table.shop_table {
	border-radius: var(--ht-radius-card);
	overflow: hidden;
	border: 1px solid rgba(26, 26, 26, 0.08) !important;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	border-radius: var(--ht-radius-pill);
	font-weight: 600;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt {
	background: var(--ht-color-cta);
	color: #fff;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
	background: var(--ht-color-cta-hover);
	color: #fff;
}

/* ---------- Mobile nav ---------- */
@media (max-width: 960px) {
	.ht-hero__grid {
		grid-template-columns: 1fr;
	}

	.ht-trust__grid {
		grid-template-columns: 1fr;
	}

	.ht-why__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ht-promo {
		grid-template-columns: 1fr;
	}

	.ht-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.ht-shop-layout {
		grid-template-columns: 1fr;
	}

	.ht-shop-sidebar {
		position: static;
	}

	.ht-about-split,
	.ht-contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 960px) {
	.ht-header-search-wrap {
		display: none;
	}
}

@media (max-width: 782px) {
	.ht-nav-toggle {
		display: inline-flex;
	}

	.ht-nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(320px, 88vw);
		background: var(--ht-color-surface);
		flex-direction: column;
		align-items: stretch;
		padding: 5rem 1.5rem 2rem;
		box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
		transform: translateX(100%);
		transition: transform 0.3s ease;
		z-index: 2000;
	}

	.ht-nav.is-open {
		transform: translateX(0);
	}

	.ht-nav ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.ht-nav a {
		display: block;
		padding: 0.65rem 0;
		font-size: 1.05rem;
	}

	.ht-nav-overlay {
		display: none;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.4);
		z-index: 1999;
	}

	.ht-nav-overlay.is-visible {
		display: block;
	}

	.ht-footer__grid {
		grid-template-columns: 1fr;
	}
}

/* Screen reader text */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
