/**
 * HALINK C9 — Shop archive (Luxury Spa mockup)
 * Markup: .hl-shop-hero, .hl-shop-toolbar, .hl-shop, .hl-product--shop
 */

/* ===== HERO ===== */
.hl-shop-hero {
	position: relative;
	padding: clamp(2.5rem, 5vw, 4rem) 0;
	background:
		linear-gradient(90deg, rgba(247, 243, 236, 0.96) 0%, rgba(247, 243, 236, 0.88) 42%, rgba(247, 243, 236, 0.35) 100%),
		var(--hl-shop-hero-bg) center / cover no-repeat;
	background-color: var(--hl-bg);
}

.hl-shop-hero__crumb {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	align-items: center;
	margin-bottom: 0.85rem;
	font-size: 0.86rem;
	color: var(--hl-muted);
}

.hl-shop-hero__crumb a {
	color: var(--hl-muted);
	text-decoration: none;
}

.hl-shop-hero__crumb a:hover {
	color: var(--hl-gold);
}

.hl-shop-hero__title {
	margin: 0 0 0.85rem;
	font-family: var(--hl-font-display);
	font-size: clamp(2rem, 4vw, 3.1rem);
	font-weight: 500;
	line-height: 1.15;
	color: var(--hl-ink);
}

.hl-shop-hero__text {
	margin: 0 0 1.4rem;
	max-width: 32rem;
	font-size: 1.02rem;
	line-height: 1.7;
	color: var(--hl-muted);
}

.hl-shop-hero .hl-btn--dark,
.hl-shop .hl-btn--dark,
.hl-shop-promo .hl-btn--dark {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.85rem 1.4rem;
	border: 0;
	border-radius: 0.2rem;
	background: var(--hl-primary, #2f3b28);
	color: #fff;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
}

.hl-shop-hero .hl-btn--dark:hover,
.hl-shop .hl-btn--dark:hover,
.hl-shop-promo .hl-btn--dark:hover {
	background: #1c1c1c;
	color: #fff;
}

.hl-shop-hero__media {
	overflow: hidden;
	border-radius: 0.35rem;
	box-shadow: 0 18px 40px rgba(47, 59, 40, 0.12);
}

.hl-shop-hero__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

/* ===== TOOLBAR ===== */
.hl-shop-toolbar {
	padding: 1rem 0;
	background: transparent;
	margin-top: -1.25rem;
	position: relative;
	z-index: 2;
}

.hl-shop-toolbar__form {
	display: grid;
	grid-template-columns: minmax(180px, 1.4fr) repeat(4, minmax(110px, 1fr)) auto;
	gap: 0.65rem;
	align-items: center;
	padding: 0.85rem 1rem;
	background: #fff;
	border: 1px solid var(--hl-border);
	border-radius: 0.35rem;
	box-shadow: 0 10px 28px rgba(47, 59, 40, 0.06);
}

.hl-shop-toolbar__search {
	position: relative;
	display: block;
	margin: 0;
}

.hl-shop-toolbar__search i {
	position: absolute;
	left: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--hl-muted);
	pointer-events: none;
}

.hl-shop-toolbar__search input,
.hl-shop-toolbar__select select {
	width: 100%;
	height: 2.65rem;
	border: 1px solid var(--hl-border);
	border-radius: 0.2rem;
	background: #faf8f4;
	color: var(--hl-ink);
	font-size: 0.88rem;
}

.hl-shop-toolbar__search input {
	padding: 0 0.85rem 0 2.35rem;
}

.hl-shop-toolbar__select select {
	padding: 0 2rem 0 0.75rem;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23666' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
}

.hl-shop-toolbar__views {
	display: inline-flex;
	gap: 0.35rem;
}

.hl-shop-toolbar__view {
	width: 2.65rem;
	height: 2.65rem;
	border: 1px solid var(--hl-border);
	border-radius: 0.2rem;
	background: #fff;
	color: var(--hl-muted);
	display: inline-grid;
	place-items: center;
	cursor: pointer;
}

.hl-shop-toolbar__view.is-active,
.hl-shop-toolbar__view:hover {
	background: var(--hl-primary);
	border-color: var(--hl-primary);
	color: #fff;
}

/* ===== LAYOUT ===== */
.hl-shop {
	background: var(--hl-bg);
	padding-bottom: 0;
}

.hl-shop__sidebar .widget,
.hl-shop-filters {
	padding: 1.25rem 1.2rem;
	background: #fff;
	border: 1px solid var(--hl-border);
	border-radius: 0.35rem;
	margin-bottom: 1rem;
}

.hl-shop-filters__selected {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 1rem;
	padding: 0.65rem 0.85rem;
	background: var(--hl-primary);
	border-radius: 0.25rem;
	color: #fff;
}

.hl-shop-filters__selected-title {
	font-weight: 700;
	font-size: 0.9rem;
}

.hl-shop-filters__clear {
	color: #fff;
	font-size: 0.8rem;
	text-decoration: underline;
}

.hl-shop-filters__heading,
.hl-shop__sidebar .widget-title {
	margin: 0 0 0.85rem;
	font-family: var(--hl-font-display);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--hl-ink);
}

.hl-shop-filters__group + .hl-shop-filters__group,
.hl-shop-filters__form .hl-shop-filters__group {
	margin-top: 1.35rem;
	padding-top: 1.15rem;
	border-top: 1px solid var(--hl-border);
}

.hl-shop-filters__cats,
.hl-shop-filters__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hl-shop-filters__cats a {
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.45rem 0;
	color: var(--hl-text);
	text-decoration: none;
	font-size: 0.92rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.hl-shop-filters__cats li.is-active a,
.hl-shop-filters__cats a:hover {
	color: var(--hl-gold);
}

.hl-shop-filters__cats em,
.hl-shop-filters__check em {
	font-style: normal;
	color: var(--hl-muted);
	font-size: 0.82rem;
}

.hl-shop-filters__list li {
	margin: 0 0 0.45rem;
}

.hl-shop-filters__check {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	font-size: 0.92rem;
	color: var(--hl-text);
}

.hl-shop-filters__check input {
	accent-color: var(--hl-primary);
}

.hl-shop-filters__price {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 0.4rem;
	align-items: center;
	margin-bottom: 0.75rem;
}

.hl-shop-filters__price input {
	width: 100%;
	height: 2.35rem;
	border: 1px solid var(--hl-border);
	border-radius: 0.2rem;
	padding: 0 0.55rem;
	background: #faf8f4;
	font-size: 0.88rem;
}

.hl-shop-filters__range {
	width: 100%;
	accent-color: var(--hl-primary);
}

.hl-shop-filters__submit {
	display: block;
	width: 100%;
	margin-top: 1rem;
	padding: 0.85rem 1rem;
	border: 0;
	border-radius: 0.2rem;
	background: var(--hl-primary);
	color: #fff;
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}

.hl-shop-filters__submit:hover {
	background: #1c1c1c;
}

/* Hide old sort pills — toolbar handles sort */
.hl-shop .c7-shop-sort {
	display: none;
}

/* ===== PRODUCT CARDS ===== */
.hl-shop__grid {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hl-shop__grid > .product {
	list-style: none;
}

.hl-shop .hl-product,
.hl-shop__grid .hl-product,
.hl-shop-best .hl-product,
.hl-pdp__related .hl-product {
	height: 100%;
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
}

.hl-shop .hl-product__inner,
.hl-shop-best .hl-product__inner,
.hl-pdp__related .hl-product__inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid rgba(47, 59, 40, 0.07);
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(47, 59, 40, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hl-shop .hl-product:hover .hl-product__inner,
.hl-shop-best .hl-product:hover .hl-product__inner,
.hl-pdp__related .hl-product:hover .hl-product__inner {
	transform: translateY(-3px);
	border-color: rgba(184, 154, 90, 0.4);
	box-shadow: 0 16px 36px rgba(47, 59, 40, 0.1);
}

.hl-shop .hl-product__thumb,
.hl-shop-best .hl-product__thumb {
	position: relative;
	aspect-ratio: 1;
	background: #f3efe8;
	overflow: hidden;
}

.hl-shop .hl-product__media,
.hl-shop .hl-product__img,
.hl-shop-best .hl-product__media,
.hl-shop-best .hl-product__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.hl-shop .hl-product:hover .hl-product__img,
.hl-shop-best .hl-product:hover .hl-product__img {
	transform: scale(1.04);
}

.hl-shop .hl-product__ph,
.hl-shop-best .hl-product__ph {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 180px;
	background: linear-gradient(145deg, #efeae2, #e4ddd2);
}

.hl-product__badges {
	position: absolute;
	top: 0.7rem;
	left: 0.7rem;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	pointer-events: none;
}

.hl-product__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.35rem;
	padding: 0.3rem 0.5rem;
	border-radius: 0.35rem;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #fff;
}

.hl-product__badge--sale {
	background: #c45c5c;
	color: #fff;
}

.hl-product__badge--new {
	background: var(--hl-gold);
	color: var(--hl-primary);
}

.hl-product__wish {
	position: absolute;
	top: 0.7rem;
	right: 0.7rem;
	z-index: 3;
	width: 2.15rem;
	height: 2.15rem;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--hl-ink);
	display: inline-grid;
	place-items: center;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(47, 59, 40, 0.1);
	cursor: pointer;
	transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.hl-product__wish:hover {
	color: #e67e22;
	transform: scale(1.05);
}

.hl-product__wish.is-active {
	color: #e67e22;
	background: #fff8f0;
}

.hl-product__wish.is-active .fa-heart {
	color: #e67e22;
}

.hl-shop .hl-product__body,
.hl-shop-best .hl-product__body {
	padding: 0.9rem 0.95rem 1rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	background: #fff;
}

.hl-shop .hl-product__title,
.hl-shop-best .hl-product__title {
	margin: 0 0 0.35rem;
	font-family: var(--hl-font-display);
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hl-shop .hl-product__title a,
.hl-shop-best .hl-product__title a {
	color: var(--hl-ink);
	text-decoration: none;
}

.hl-shop .hl-product__title a:hover,
.hl-shop-best .hl-product__title a:hover {
	color: var(--hl-gold);
}

.hl-product__rating {
	display: flex;
	align-items: center;
	gap: 0.15rem;
	margin-bottom: 0.55rem;
	color: var(--hl-gold);
	font-size: 0.72rem;
}

.hl-product__rating-count {
	margin-left: 0.25rem;
	color: var(--hl-muted);
	font-size: 0.72rem;
}

.hl-product__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.65rem;
	margin-top: auto;
}

.hl-shop .hl-product__price,
.hl-shop .hl-product .price,
.hl-shop-best .hl-product__price,
.hl-shop-best .hl-product .price {
	color: var(--hl-primary);
	font-weight: 700;
	font-size: 0.95rem;
	line-height: 1.35;
}

.hl-shop .hl-product__price del,
.hl-shop-best .hl-product__price del {
	color: var(--hl-muted);
	font-weight: 500;
	margin-right: 0.3rem;
	font-size: 0.82rem;
	opacity: 0.75;
}

.hl-shop .hl-product__price ins,
.hl-shop-best .hl-product__price ins {
	text-decoration: none;
	color: #c45c5c;
	font-weight: 700;
}

.hl-product__cart-btn {
	flex-shrink: 0;
	width: 2.35rem;
	height: 2.35rem;
	border: 0;
	border-radius: 50%;
	background: var(--hl-primary);
	color: #fff;
	display: inline-grid;
	place-items: center;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 6px 16px rgba(47, 59, 40, 0.16);
	transition: background 0.2s ease, transform 0.2s ease;
}

.hl-product__cart-btn:hover {
	background: var(--hl-gold);
	color: var(--hl-primary);
	transform: scale(1.05);
}

.hl-product__atc {
	display: none;
}

/* List view — override WooCommerce grid widths (25% !important) + Bootstrap row-cols */
.hl-shop__results[data-hl-shop-view="list"] .hl-shop__grid {
	display: flex !important;
	flex-direction: column !important;
	flex-wrap: nowrap !important;
	gap: 1rem;
	margin: 0 !important;
}

.hl-shop__results[data-hl-shop-view="list"] .hl-shop__grid.row {
	--bs-gutter-x: 0;
	--bs-gutter-y: 0;
}

.hl-shop__results[data-hl-shop-view="list"] .hl-shop__grid > .product,
.hl-shop__results[data-hl-shop-view="list"] .hl-shop__grid > li.product,
.hl-shop__results[data-hl-shop-view="list"] .hl-shop__grid > .col {
	flex: none !important;
	width: 100% !important;
	max-width: 100% !important;
	padding: 0 !important;
}

.hl-shop__results[data-hl-shop-view="list"] .hl-product__inner {
	display: grid;
	grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
}

.hl-shop__results[data-hl-shop-view="list"] .hl-product__thumb {
	aspect-ratio: auto;
	min-height: 180px;
	height: 100%;
}

.hl-shop__results[data-hl-shop-view="list"] .hl-product__body {
	padding: 1rem 1.15rem;
	justify-content: center;
	min-width: 0;
}

.hl-shop__results[data-hl-shop-view="list"] .hl-product__title {
	-webkit-line-clamp: 3;
	font-size: 1.02rem;
}

.hl-shop__results[data-hl-shop-view="list"] .hl-product__footer {
	margin-top: 0.65rem;
}

.hl-shop .woocommerce-pagination {
	margin-top: 2rem;
	text-align: center;
}

.hl-shop .woocommerce-pagination ul,
.hl-shop .woocommerce-pagination ul.page-numbers {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
	border: 0;
}

.hl-shop .woocommerce-pagination li {
	margin: 0;
	padding: 0;
	border: 0 !important;
	float: none !important;
	list-style: none;
}

.hl-shop .woocommerce-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.35rem;
	height: 2.35rem;
	margin: 0;
	padding: 0 0.55rem;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--hl-border);
	color: var(--hl-ink);
	text-decoration: none;
	font-weight: 600;
	line-height: 1;
}

.hl-shop .woocommerce-pagination .page-numbers.current,
.hl-shop .woocommerce-pagination .page-numbers:hover {
	background: var(--hl-primary);
	border-color: var(--hl-primary);
	color: #fff;
}

.hl-shop .woocommerce-pagination .page-numbers.dots {
	min-width: auto;
	padding: 0 0.25rem;
	border: 0;
	background: transparent;
	color: var(--hl-muted);
}

/* ===== EXTRAS ===== */
.hl-shop-promo,
.hl-shop-best,
.hl-shop-collections,
.hl-shop-trust,
.hl-shop-reviews,
.hl-shop-ig {
	padding: clamp(2rem, 4vw, 3.25rem) 0;
}

.hl-shop-promo {
	background: var(--hl-bg);
}

.hl-shop-promo__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 220px;
	padding: clamp(1.5rem, 4vw, 2.75rem);
	border-radius: 0.35rem;
	overflow: hidden;
	background-color: #efe8dc;
	background-size: cover;
	background-position: right center;
}

.hl-shop-promo__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(247, 243, 236, 0.96) 0%, rgba(247, 243, 236, 0.78) 48%, rgba(247, 243, 236, 0.2) 100%);
}

.hl-shop-promo__content,
.hl-shop-promo__badge {
	position: relative;
	z-index: 1;
}

.hl-shop-promo__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hl-gold);
}

.hl-shop-promo__title {
	margin: 0 0 1.25rem;
	max-width: 22rem;
	font-family: var(--hl-font-display);
	font-size: clamp(1.6rem, 2.5vw, 2.2rem);
	font-weight: 500;
	line-height: 1.25;
	color: var(--hl-ink);
}

.hl-shop-promo__badge {
	width: 7.5rem;
	height: 7.5rem;
	border-radius: 50%;
	background: var(--hl-primary);
	color: #fff;
	display: grid;
	place-content: center;
	text-align: center;
	flex-shrink: 0;
	line-height: 1.1;
}

.hl-shop-promo__badge span,
.hl-shop-promo__badge em {
	font-size: 0.72rem;
	font-style: normal;
	letter-spacing: 0.08em;
}

.hl-shop-promo__badge strong {
	font-family: var(--hl-font-display);
	font-size: 1.75rem;
	font-weight: 600;
}

.hl-shop-best {
	background: #fff;
}

.hl-shop-best__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.hl-shop-best__title,
.hl-shop-collections__title,
.hl-shop-reviews__title,
.hl-shop-ig__title {
	margin: 0;
	font-family: var(--hl-font-display);
	font-size: clamp(1.7rem, 2.5vw, 2.25rem);
	font-weight: 500;
	color: var(--hl-ink);
}

.hl-shop-best__all {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hl-primary);
	text-decoration: none;
}

.hl-shop-best__all:hover {
	color: var(--hl-gold);
}

.hl-shop-collections {
	background: var(--hl-bg);
}

.hl-shop-collections .hl-section__eyebrow,
.hl-shop-reviews .hl-section__eyebrow,
.hl-shop-ig .hl-section__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--hl-gold);
}

.hl-shop-collections__head {
	margin-bottom: 1.5rem;
}

.hl-shop-collections__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0.85rem;
	background: #fff;
	border: 1px solid var(--hl-border);
	border-radius: 0.35rem;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.hl-shop-collections__card:hover {
	border-color: var(--hl-gold);
	transform: translateY(-2px);
}

.hl-shop-collections__card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 0.2rem;
	margin-bottom: 0.85rem;
}

.hl-shop-collections__label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-gold);
}

.hl-shop-collections__name {
	margin: 0.25rem 0 0.65rem;
	font-family: var(--hl-font-display);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--hl-ink);
}

.hl-shop-collections__more {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--hl-primary);
}

.hl-shop-trust {
	background: #fff;
	border-top: 1px solid var(--hl-border);
	border-bottom: 1px solid var(--hl-border);
}

.hl-shop-trust .row {
	--bs-gutter-x: 1rem;
}

.hl-shop-trust__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
	text-align: center;
	padding: 0.5rem;
}

.hl-shop-trust__icon {
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(184, 154, 90, 0.45);
	display: grid;
	place-items: center;
	color: var(--hl-gold);
	font-size: 1.2rem;
}

.hl-shop-trust__text {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--hl-ink);
	line-height: 1.35;
}

.hl-shop-reviews {
	background: var(--hl-bg);
}

.hl-shop-reviews__card {
	height: 100%;
	margin: 0;
	padding: 1.35rem 1.25rem;
	background: #fff;
	border: 1px solid var(--hl-border);
	border-radius: 0.35rem;
}

.hl-shop-reviews__stars {
	margin-bottom: 0.75rem;
	color: var(--hl-gold);
	font-size: 0.85rem;
}

.hl-shop-reviews__quote {
	margin: 0 0 1.1rem;
	font-size: 0.98rem;
	line-height: 1.65;
	color: var(--hl-text);
}

.hl-shop-reviews__author {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.hl-shop-reviews__author img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
}

.hl-shop-reviews__author strong {
	font-size: 0.92rem;
	color: var(--hl-ink);
}

.hl-shop-ig {
	background: #fff;
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hl-shop-ig__item {
	display: block;
	overflow: hidden;
	border-radius: 0.25rem;
}

.hl-shop-ig__item img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.hl-shop-ig__item:hover img {
	transform: scale(1.05);
}

/* Mobile filters */
.hl-shop__filter-toggle {
	position: fixed;
	left: 1rem;
	bottom: 1.25rem;
	z-index: 40;
	display: none;
	padding: 0.75rem 1.2rem;
	border: 0;
	border-radius: 999px;
	background: var(--hl-primary);
	color: #fff;
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow: var(--hl-shadow-lg, 0 10px 30px rgba(0, 0, 0, 0.15));
}

.hl-shop__filter-overlay {
	position: fixed;
	inset: 0;
	z-index: 35;
	background: rgba(20, 28, 18, 0.45);
}

@media (max-width: 1199.98px) {
	.hl-shop-toolbar__form {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.hl-shop-toolbar__search {
		grid-column: 1 / -1;
	}

	.hl-shop-toolbar__views {
		justify-self: end;
	}
}

@media (max-width: 991.98px) {
	.hl-shop__filter-toggle {
		display: inline-flex;
	}

	.hl-shop__sidebar {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 45;
		width: min(88vw, 320px);
		height: 100%;
		overflow: auto;
		padding: 1.25rem;
		background: var(--hl-bg);
		transform: translateX(-105%);
		transition: transform 0.25s ease;
	}

	.hl-shop.is-filters-open .hl-shop__sidebar,
	.hl-shop-page.is-filters-open .hl-shop__sidebar,
	.hl-shop__sidebar.is-open {
		transform: none;
	}

	.hl-shop-hero__media {
		max-width: 420px;
	}

	.hl-shop-promo__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.hl-shop-trust .col {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width: 575.98px) {
	.hl-shop-toolbar__form {
		grid-template-columns: 1fr 1fr;
	}

	.hl-shop__results[data-hl-shop-view="list"] .hl-product__inner {
		grid-template-columns: minmax(120px, 140px) minmax(0, 1fr);
	}

	.hl-shop__results[data-hl-shop-view="list"] .hl-product__thumb {
		min-height: 140px;
	}

	.hl-shop__results[data-hl-shop-view="list"] .hl-product__body {
		padding: 0.85rem 0.9rem;
	}

	.hl-shop-trust .col {
		flex: 0 0 100%;
		max-width: 100%;
	}
}
