.hc-product-page,
.hc-category-page {
	--hc-accent: #e6b84a;
	--hc-ink: #121212;
	--hc-muted: #6f6f6f;
	--hc-line: #e9e5de;
	--hc-bg: #faf8f4;
	color: var(--hc-ink);
	font-family: inherit;
}

/* Final interaction polish: gallery fades, thumb movement, and reference color swatches. */
.hc-product-info .hc-color-picker {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 2px 0 6px;
}

.hc-product-info .hc-color-swatch {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	min-width: 38px;
	min-height: 38px;
	padding: 4px;
	border: 0 !important;
	border-radius: 999px;
	background: transparent !important;
	box-shadow: none !important;
	outline: 0;
	appearance: none;
	cursor: pointer;
	transition: transform 180ms ease;
}

.hc-product-info .hc-color-swatch:before {
	content: "";
	position: absolute;
	inset: 0;
	border: 2px solid transparent;
	border-radius: inherit;
	transition: border-color 180ms ease, transform 180ms ease;
	pointer-events: none;
}

.hc-product-info .hc-color-swatch.is-active:before {
	border-color: #222;
}

.hc-product-info .hc-color-swatch span,
.hc-product-info .hc-color-swatch img {
	position: relative;
	z-index: 1;
	width: 30px;
	height: 30px;
	display: block;
	border-radius: 999px;
	object-fit: cover;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
	transition: transform 180ms ease, filter 180ms ease;
}

.hc-product-info .hc-color-swatch:hover {
	transform: translateY(-1px);
}

.hc-product-info .hc-color-swatch:hover span,
.hc-product-info .hc-color-swatch:hover img {
	transform: scale(1.04);
}

.hc-main-image img {
	transition: opacity 280ms ease, transform 280ms ease, filter 280ms ease;
	will-change: opacity, transform;
}

.hc-main-image img.is-fading {
	opacity: 0;
	filter: blur(2px);
	transform: scale(1.015);
}

.hc-thumbnail {
	transition: border-color 200ms ease, box-shadow 200ms ease, opacity 200ms ease, transform 200ms ease;
}

.hc-thumbnail img {
	transition: transform 240ms ease, filter 240ms ease;
}

.hc-thumbnail:hover {
	transform: translateY(-1px);
}

.hc-thumbnail:hover img,
.hc-thumbnail.is-active img {
	transform: scale(1.035);
}

.hc-gallery-nav,
.hc-gallery-zoom,
.hc-cta-button,
.hc-qty-control button {
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.hc-gallery-nav:hover {
	transform: translateY(-50%) scale(1.03);
}

.hc-gallery-zoom:hover {
	background: rgba(0, 0, 0, 0.75);
	transform: translateY(-50%) scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
	.hc-product-page *,
	.hc-product-page *:before,
	.hc-product-page *:after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}

.hc-product-page {
	max-width: 1220px;
	margin: 0 auto;
	padding: 48px 22px 120px;
}

.hc-product-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	gap: 46px;
	align-items: start;
}

.hc-main-image {
	aspect-ratio: 4 / 3;
	background: var(--hc-bg);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 22px 60px rgba(20, 18, 15, 0.08);
}

.hc-main-image img,
.hc-product-card-image img,
.hc-category-card img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.hc-image-placeholder {
	display: grid;
	min-height: 220px;
	place-items: center;
	background: #f3f0ea;
	color: var(--hc-muted);
}

.hc-thumbnails {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	margin-top: 16px;
}

.hc-thumbnail {
	aspect-ratio: 1 / 1;
	border: 2px solid transparent;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	padding: 0;
	cursor: pointer;
}

.hc-thumbnail.is-active {
	border-color: var(--hc-accent);
}

.hc-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hc-product-info h1 {
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1.02;
	margin: 0 0 18px;
	letter-spacing: 0;
}

.hc-short-description {
	font-size: 18px;
	color: var(--hc-muted);
	line-height: 1.65;
	margin-bottom: 34px;
}

.hc-config-section {
	border-top: 1px solid var(--hc-line);
	padding-top: 26px;
	margin-top: 26px;
}

.hc-config-section h2,
.hc-filter-sidebar h2 {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 18px;
}

.hc-color-picker {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hc-color-swatch {
	width: 46px;
	height: 46px;
	border-radius: 999px;
	border: 2px solid #ddd8ce;
	background: #fff;
	padding: 4px;
	cursor: pointer;
}

.hc-color-swatch span,
.hc-color-swatch img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 999px;
	object-fit: cover;
}

.hc-color-swatch.is-active {
	border-color: var(--hc-ink);
	box-shadow: 0 0 0 4px rgba(230, 184, 74, 0.22);
}

.hc-variation-list {
	display: grid;
	gap: 14px;
}

.hc-variation-row {
	display: grid;
	grid-template-columns: 76px 1fr auto;
	gap: 16px;
	align-items: center;
	padding: 14px;
	border: 1px solid var(--hc-line);
	border-radius: 18px;
	background: #fff;
}

.hc-variation-image {
	width: 76px;
	aspect-ratio: 1 / 1;
	border-radius: 12px;
	background: var(--hc-bg);
	overflow: hidden;
}

.hc-variation-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hc-variation-meta {
	display: grid;
	gap: 4px;
}

.hc-variation-meta span,
.hc-product-card-body p,
.hc-sticky-total-bar strong {
	color: var(--hc-accent);
	font-weight: 700;
}

.hc-qty-control {
	display: grid;
	grid-template-columns: 36px 48px 36px;
	border: 1px solid var(--hc-line);
	border-radius: 999px;
	overflow: hidden;
}

.hc-qty-control button,
.hc-qty-control input {
	height: 38px;
	border: 0;
	background: #fff;
	text-align: center;
	color: var(--hc-ink);
}

.hc-qty-control button {
	cursor: pointer;
	font-size: 20px;
}

.hc-qty-control input {
	appearance: textfield;
	border-left: 1px solid var(--hc-line);
	border-right: 1px solid var(--hc-line);
}

.hc-product-description {
	margin-top: 60px;
	padding-top: 42px;
	border-top: 1px solid var(--hc-line);
	font-size: 17px;
	line-height: 1.75;
}

.hc-sticky-total-bar {
	position: fixed;
	z-index: 50;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	width: min(920px, calc(100% - 28px));
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 16px 14px 22px;
	border: 1px solid rgba(18, 18, 18, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 55px rgba(15, 12, 8, 0.18);
	backdrop-filter: blur(14px);
}

.hc-sticky-total-bar span {
	display: block;
	font-size: 13px;
	color: var(--hc-muted);
}

.hc-sticky-total-bar strong {
	font-size: 24px;
}

.hc-cta-button,
.hc-price-filter button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 999px;
	background: #111;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	border: 0;
	cursor: pointer;
}

.hc-category-page {
	max-width: 1220px;
	margin: 0 auto;
	padding: 42px 22px 70px;
}

.hc-category-hero {
	position: relative;
	display: grid;
	min-height: 330px;
	place-items: center;
	margin-bottom: 42px;
	border-radius: 26px;
	overflow: hidden;
	background: linear-gradient(135deg, #2b2925, #5b5347);
	background-size: cover;
	background-position: center;
	color: #fff;
	text-align: center;
}

.hc-category-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.36);
}

.hc-category-hero > * {
	position: relative;
	z-index: 1;
}

.hc-category-hero h1 {
	margin: 0 0 12px;
	font-size: clamp(34px, 6vw, 64px);
	letter-spacing: 0;
}

.hc-category-hero p {
	max-width: 640px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.6;
}

.hc-back-link {
	position: absolute;
	top: 20px;
	left: 20px;
	color: #fff;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 999px;
	padding: 8px 14px;
}

.hc-archive-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 34px;
	align-items: start;
}

.hc-filter-sidebar {
	display: grid;
	gap: 22px;
	position: sticky;
	top: 24px;
}

.hc-price-filter,
.hc-category-filter,
.hc-catalog-promo {
	border: 0;
	border-radius: 16px;
	padding: 24px;
	background: #fff;
	box-shadow: 0 14px 35px rgba(15, 12, 8, 0.06);
}

.hc-price-filter h2,
.hc-category-filter h2 {
	margin: 0 0 18px;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 600;
	font-style: normal;
	line-height: 1.35;
	letter-spacing: 0;
	text-transform: none;
}

.hc-price-filter label {
	display: grid;
	gap: 6px;
	margin-bottom: 12px;
	color: var(--hc-muted);
	font-family: "Open Sans", sans-serif;
	font-size: 12px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.35;
}

.hc-price-filter input,
.hc-archive-toolbar select {
	width: 100%;
	border: 0;
	border-radius: 8px;
	padding: 16px 8px 16px 16px;
	background: #f4f4f4;
	color: #00613d;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.35;
}

.hc-category-filter {
	display: grid;
	gap: 10px;
}

.hc-category-filter a {
	display: flex;
	justify-content: space-between;
	color: var(--hc-ink);
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.35;
	text-decoration: none;
}

.hc-catalog-promo {
	position: relative;
	min-height: 128px;
	display: flex;
	align-items: flex-start;
	overflow: hidden;
	background-image: url("/wp-content/uploads/2026/05/751cbce1d0ac645933495bc0ad6e9845e3de4c7a-1.jpg");
	background-position: center;
	background-size: cover;
	color: #fff;
	text-decoration: none;
}

.hc-catalog-promo:before {
	content: "";
	position: absolute;
	inset: 0;
	background: #00000085;
}

.hc-catalog-promo h3 {
	position: relative;
	z-index: 1;
	max-width: 190px;
	margin: 0;
	color: #fff;
	font-family: Raleway, sans-serif;
	font-size: 28px;
	font-weight: 600;
	font-style: normal;
	line-height: 1.1;
}

.hc-archive-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}

.hc-archive-toolbar p {
	margin: 0;
	color: var(--hc-muted);
}

.hc-product-grid,
.hc-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.hc-pagination {
	margin-top: 34px;
}

.hc-pagination ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hc-pagination a,
.hc-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border: 1px solid var(--hc-line);
	border-radius: 0;
	background: #fff;
	color: var(--hc-ink);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hc-pagination a:hover,
.hc-pagination a:focus-visible,
.hc-pagination .current {
	border-color: #0b0b0b;
	background: #0b0b0b;
	color: #fff;
}

.hc-product-card,
.hc-category-card {
	display: block;
	overflow: hidden;
	border: 1px solid var(--hc-line);
	border-radius: 20px;
	background: #fff;
	color: var(--hc-ink);
	text-decoration: none;
	box-shadow: 0 14px 36px rgba(18, 16, 12, 0.07);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.hc-product-card:hover,
.hc-category-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 48px rgba(18, 16, 12, 0.11);
}

.hc-product-card-image {
	aspect-ratio: 4 / 3;
	background: var(--hc-bg);
}

.hc-product-card-body {
	padding: 18px;
}

.hc-product-card-main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: start;
}

.hc-product-card-body h3 {
	margin: 0 0 8px;
	font-size: 20px;
}

.hc-product-card-body p {
	margin: 0;
	text-align: right;
	white-space: nowrap;
}

.hc-product-card-colors {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.hc-product-card-color {
	width: 28px;
	height: 28px;
	display: inline-block;
	border-radius: 999px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.hc-category-grid {
	max-width: 1220px;
	margin: 0 auto;
}

.hc-category-card {
	position: relative;
	aspect-ratio: 4 / 3;
}

.hc-category-card:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.04));
	z-index: 1;
}

.hc-category-card span {
	position: absolute;
	z-index: 2;
	left: 18px;
	right: 18px;
	bottom: 18px;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
}

.hc-empty-note {
	color: var(--hc-muted);
}

@media (max-width: 900px) {
	.hc-product-layout,
	.hc-archive-layout {
		grid-template-columns: 1fr;
	}

	.hc-product-grid,
	.hc-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hc-filter-sidebar {
		position: static;
	}
}

@media (max-width: 640px) {
	.hc-product-page,
	.hc-category-page {
		padding-left: 16px;
		padding-right: 16px;
	}

	.hc-thumbnails {
		grid-template-columns: repeat(4, 1fr);
	}

	.hc-variation-row {
		grid-template-columns: 62px 1fr;
	}

	.hc-qty-control {
		grid-column: 1 / -1;
		justify-self: stretch;
		grid-template-columns: 1fr 1.2fr 1fr;
	}

	.hc-sticky-total-bar {
		border-radius: 24px;
		align-items: stretch;
		flex-direction: column;
	}

	.hc-cta-button {
		width: 100%;
	}

	.hc-category-hero {
		min-height: 260px;
	}

	.hc-archive-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.hc-product-grid,
	.hc-category-grid {
		grid-template-columns: 1fr;
	}
}

/* Single product layout inspired by a showroom configurator. */
.hc-product-page {
	max-width: none;
	margin: 0;
	padding: 0;
	background: transparent;
}

.hc-product-layout,
.hc-product-details {
	width: 100%;
	margin: 0;
}

.hc-product-layout {
	grid-template-columns: minmax(0, 448px) minmax(320px, 448px);
	gap: 18px;
	justify-content: center;
	align-items: start;
}

.hc-product-gallery {
	min-width: 0;
}

.hc-main-image {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: 0;
	background: #e7e4dd;
	box-shadow: none;
}

.hc-gallery-zoom {
	position: absolute;
	top: -20px;
	right: 12px;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 999px;
	background: rgba(23, 23, 23, 0.72);
	cursor: pointer;
}

.hc-gallery-zoom:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	width: 9px;
	height: 9px;
	border: 2px solid #fff;
	border-radius: 999px;
}

.hc-gallery-zoom:after {
	content: "";
	position: absolute;
	top: 21px;
	left: 21px;
	width: 8px;
	height: 2px;
	background: #fff;
	transform: rotate(45deg);
	transform-origin: left center;
}

.hc-thumbnail-shell {
	position: relative;
	margin-top: 36px;
}

.hc-thumbnails {
	display: flex;
	gap: 7px;
	margin-top: 0;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.hc-thumbnails::-webkit-scrollbar {
	display: none;
}

.hc-thumbnail {
	flex: 0 0 106px;
	width: 106px;
	height: 108px;
	aspect-ratio: auto;
	border: 2px solid transparent;
	border-radius: 0;
	background: #ddd;
}

.hc-thumbnail.is-active {
	border-color: #1c9bb3;
}

.hc-gallery-nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 28px;
	height: 44px;
	border: 0;
	background: rgba(0, 0, 0, 0.38);
	color: #fff;
	font-size: 30px;
	line-height: 1;
	transform: translateY(-50%);
	cursor: pointer;
}

.hc-gallery-nav-prev {
	left: 0;
}

.hc-gallery-nav-next {
	right: 0;
}

.hc-product-info {
	padding-left: 0;
}

.hc-product-info h1 {
	font-size: 28px;
	line-height: 1.16;
	margin: -28px 0 14px;
	font-weight: 500;
}

.hc-short-description {
	margin-bottom: 38px;
	color: #111;
	font-size: 14px;
	line-height: 1.55;
}

.hc-config-section {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.hc-config-section + .hc-config-section {
	margin-top: 24px;
}

.hc-config-section h2 {
	margin: 0 0 13px;
	color: #666;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hc-color-picker {
	gap: 10px;
	margin-bottom: 22px;
}

.hc-color-swatch {
	width: 29px;
	height: 29px;
	padding: 2px;
	border: 1px solid transparent;
	box-shadow: none;
}

.hc-color-swatch.is-active {
	border-color: #111;
	box-shadow: none;
}

.hc-variation-list {
	gap: 0;
	max-width: 244px;
}

.hc-variation-row {
	grid-template-columns: 72px 1fr auto;
	gap: 12px;
	min-height: 95px;
	padding: 12px 0;
	border: 0;
	border-bottom: 1px solid #e5e5e5;
	border-radius: 0;
	background: transparent;
}

.hc-variation-image {
	width: 72px;
	height: 56px;
	border-radius: 0;
	background: #ddd;
}

.hc-variation-meta strong {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
}

.hc-variation-meta span {
	color: #111;
	font-size: 12px;
	font-weight: 500;
}

.hc-qty-control {
	grid-template-columns: 28px 41px 28px;
	gap: 6px;
	border: 0;
	border-radius: 0;
	overflow: visible;
}

.hc-qty-control button,
.hc-qty-control input {
	width: 28px;
	height: 25px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fff;
	font-size: 17px;
	font-weight: 700;
	line-height: 1;
}

.hc-qty-control input {
	width: 41px;
	font-size: 13px;
	font-weight: 400;
}

.hc-sticky-total-bar {
	position: static;
	left: auto;
	bottom: auto;
	transform: none;
	width: 100%;
	max-width: 448px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 58px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.hc-sticky-total-bar span {
	display: none;
}

.hc-sticky-total-bar strong {
	color: var(--hc-accent);
	font-size: 22px;
	font-weight: 700;
}

.hc-cta-button {
	min-height: 47px;
	padding: 0 11px 0 18px;
	gap: 12px;
	border-radius: 999px;
	background: #000;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	white-space: nowrap;
}

.hc-cta-button:after {
	content: "";
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background:
		linear-gradient(#111, #111) 50% 58% / 12px 2px no-repeat,
		linear-gradient(#111, #111) 50% 42% / 12px 2px no-repeat,
		linear-gradient(#111, #111) 36% 31% / 2px 5px no-repeat,
		linear-gradient(#111, #111) 64% 31% / 2px 5px no-repeat,
		#fff;
}

.hc-product-details {
	margin-top: 92px;
	padding: 0 0 52px;
	border: 0;
}

.hc-product-details h2 {
	margin: 0 0 22px;
	font-size: 22px;
	font-weight: 500;
}

.hc-product-detail-tab {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-left: 14px;
	padding-bottom: 9px;
	border-bottom: 2px solid #00796f;
	color: #00796f;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.hc-product-detail-tab:before {
	content: "";
	width: 17px;
	height: 17px;
	background:
		linear-gradient(45deg, transparent 35%, #00796f 35% 45%, transparent 45% 55%, #00796f 55% 65%, transparent 65%),
		linear-gradient(-45deg, transparent 35%, #00796f 35% 45%, transparent 45% 55%, #00796f 55% 65%, transparent 65%);
}

.hc-product-description {
	margin-top: 12px;
	padding: 19px 18px;
	border: 0;
	border-radius: 0 0 12px 12px;
	background: #fff;
	font-size: 14px;
	line-height: 1.7;
}

.hc-product-description > :first-child {
	margin-top: 0;
}

.hc-product-description > :last-child {
	margin-bottom: 0;
}

.hc-product-info h1 {
	color: #010101;
	font-family: Raleway, sans-serif;
	font-size: 32px;
	font-weight: 500;
	font-style: normal;
	line-height: 1.18;
}

.hc-short-description,
.hc-short-description p,
.hc-product-description,
.hc-product-description p,
.hc-product-description li {
	color: #010101;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.7;
	opacity: 0.8;
}

.hc-config-section h2 {
	color: #010101;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 600;
	font-style: normal;
	line-height: 1.35;
	letter-spacing: 0;
	text-transform: none;
}

.hc-product-details h2 {
	color: #010101;
	font-family: Raleway, sans-serif;
	font-size: 24px;
	font-weight: 500;
	font-style: normal;
	line-height: 1.25;
}

.hc-product-detail-tab {
	gap: 9px;
	padding: 0 16px 16px 16px;
	border-bottom: 3px solid #00613d;
	color: #00613d;
	font-family: "Open Sans", sans-serif;
	font-size: 18px;
	font-weight: 600;
	font-style: normal;
	line-height: 1.2;
	text-transform: none;
}

.hc-product-detail-tab:before {
	content: none;
}

.hc-product-detail-tab svg {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
}

.hc-sticky-total-bar strong,
.hc-sticky-total-bar [data-hc-total] {
	color: #e0b052;
	font-family: "Open Sans", sans-serif;
	font-size: 40px;
	font-weight: 700;
	font-style: normal;
	line-height: 1.1;
}

.hc-product-similar {
	margin: 0;
	padding: 30px 0 58px;
	background: transparent;
}

.hc-product-similar h2 {
	max-width: none;
	margin: 0 0 28px;
	font-size: 38px;
	font-weight: 400;
	line-height: 1.15;
}

.hc-product-similar .hc-product-grid {
	max-width: none;
	margin: 0;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.hc-product-similar .hc-product-card {
	border: 0;
	border-radius: 12px;
	box-shadow: none;
}

.hc-product-similar .hc-product-card-image {
	margin: 16px 16px 0;
	aspect-ratio: 1 / 1;
}

.hc-product-similar .hc-product-card-body {
	padding: 16px 14px 28px;
	text-align: center;
}

.hc-product-similar .hc-product-card-body h3 {
	font-size: 14px;
	font-weight: 600;
}

.hc-product-similar .hc-product-card-body p {
	font-size: 13px;
}

@media (max-width: 980px) {
	.hc-product-layout,
	.hc-product-details {
		width: 100%;
	}

	.hc-product-layout {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.hc-product-info h1 {
		margin-top: 0;
	}

	.hc-variation-list,
	.hc-sticky-total-bar {
		max-width: none;
	}

	.hc-product-similar .hc-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hc-pagination a,
	.hc-pagination span {
		min-width: 38px;
		height: 38px;
		padding: 0 12px;
		font-size: 13px;
	}
}

@media (max-width: 640px) {
	.hc-product-page {
		padding-top: 24px;
	}

	.hc-product-layout,
	.hc-product-details {
		width: calc(100% - 28px);
	}

	.hc-thumbnail-shell {
		margin-top: 18px;
	}

	.hc-thumbnail {
		flex-basis: 84px;
		width: 84px;
		height: 84px;
	}

	.hc-variation-row {
		grid-template-columns: 64px 1fr auto;
		gap: 10px;
	}

	.hc-variation-image {
		width: 64px;
		height: 52px;
	}

	.hc-qty-control {
		grid-column: auto;
		grid-template-columns: 28px 38px 28px;
	}

	.hc-sticky-total-bar {
		margin-top: 34px;
	}

	.hc-sticky-total-bar strong {
		font-size: 20px;
	}

	.hc-cta-button {
		width: auto;
		font-size: 14px;
	}

	.hc-product-details {
		margin-top: 58px;
	}

	.hc-product-similar {
		padding-left: 14px;
		padding-right: 14px;
	}

	.hc-product-similar h2 {
		font-size: 32px;
	}

	.hc-product-similar .hc-product-grid {
		grid-template-columns: 1fr;
	}
}

/* Final interaction polish: gallery fades, thumb movement, and reference color swatches. */
.hc-product-info .hc-color-picker {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 2px 0 6px;
}

.hc-product-info .hc-color-swatch {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	min-width: 38px;
	min-height: 38px;
	padding: 4px;
	border: 0 !important;
	border-radius: 999px;
	background: transparent !important;
	box-shadow: none !important;
	outline: 0;
	appearance: none;
	cursor: pointer;
	transition: transform 180ms ease;
}

.hc-product-info .hc-color-swatch:before {
	content: "";
	position: absolute;
	inset: 0;
	border: 2px solid transparent;
	border-radius: inherit;
	transition: border-color 180ms ease, transform 180ms ease;
	pointer-events: none;
}

.hc-product-info .hc-color-swatch.is-active:before {
	border-color: #222;
}

.hc-product-info .hc-color-swatch span,
.hc-product-info .hc-color-swatch img {
	position: relative;
	z-index: 1;
	width: 30px;
	height: 30px;
	display: block;
	border-radius: 999px;
	object-fit: cover;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
	transition: transform 180ms ease, filter 180ms ease;
}

.hc-product-info .hc-color-swatch:hover {
	transform: translateY(-1px);
}

.hc-product-info .hc-color-swatch:hover span,
.hc-product-info .hc-color-swatch:hover img {
	transform: scale(1.04);
}

.hc-main-image img {
	transition: opacity 280ms ease, transform 280ms ease, filter 280ms ease;
	will-change: opacity, transform;
}

.hc-main-image img.is-fading {
	opacity: 0;
	filter: blur(2px);
	transform: scale(1.015);
}

.hc-thumbnail {
	transition: border-color 200ms ease, box-shadow 200ms ease, opacity 200ms ease, transform 200ms ease;
}

.hc-thumbnail img {
	transition: transform 240ms ease, filter 240ms ease;
}

.hc-thumbnail:hover {
	transform: translateY(-1px);
}

.hc-thumbnail:hover img,
.hc-thumbnail.is-active img {
	transform: scale(1.035);
}

.hc-gallery-nav,
.hc-gallery-zoom,
.hc-cta-button,
.hc-qty-control button {
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.hc-gallery-nav:hover {
	transform: translateY(-50%) scale(1.03);
}

.hc-gallery-zoom:hover {
	background: rgba(0, 0, 0, 0.75);
	transform: translateY(-50%) scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
	.hc-product-page *,
	.hc-product-page *:before,
	.hc-product-page *:after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}

/* Color swatches: match the reference Woo/Elementor selector. */
.hc-product-info .hc-color-picker {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 2px 0 6px;
}

.hc-product-info .hc-color-swatch {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	min-width: 38px;
	min-height: 38px;
	padding: 4px;
	border: 0 !important;
	border-radius: 999px;
	background: transparent !important;
	box-shadow: none !important;
	outline: 0;
	appearance: none;
	cursor: pointer;
}

.hc-product-info .hc-color-swatch:before {
	content: "";
	position: absolute;
	inset: 0;
	border: 2px solid transparent;
	border-radius: inherit;
	pointer-events: none;
}

.hc-product-info .hc-color-swatch.is-active:before {
	border-color: #222;
}

.hc-product-info .hc-color-swatch span,
.hc-product-info .hc-color-swatch img {
	position: relative;
	z-index: 1;
	width: 30px;
	height: 30px;
	display: block;
	border-radius: 999px;
	object-fit: cover;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.hc-product-info .hc-color-swatch:hover {
	transform: none;
}

/* Elementor/Woo reference-style single product. */

.hc-product-page {
	--hc-gallery-width: 600px;
	--hc-summary-width: 448px;
	--hc-gold: #e0b052;
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: transparent;
	color: #010101;
	font-family: "Raleway", "Open Sans", Arial, sans-serif;
}

.hc-product-page *,
.hc-product-page *:before,
.hc-product-page *:after {
	box-sizing: border-box;
}

.hc-product-layout {
	width: 100%;
	margin: 0;
	display: grid;
	grid-template-columns: minmax(0, var(--hc-gallery-width)) minmax(340px, var(--hc-summary-width));
	column-gap: 42px;
	row-gap: 36px;
	justify-content: start;
	align-items: flex-start;
}

.hc-product-gallery {
	width: 100%;
	max-width: none;
	min-width: 0;
}

.hc-main-image {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	border: 0 !important;
	border-radius: 0;
	outline: 0 !important;
	background: #e6e2da;
	box-shadow: none;
	overflow: hidden;
}

.hc-main-image img {
	width: 100%;
	height: 100%;
	display: block;
	border: 0 !important;
	outline: 0 !important;
	object-fit: cover;
	transition: opacity 280ms ease, transform 280ms ease, filter 280ms ease;
	will-change: opacity, transform;
}

.hc-main-image img.is-fading {
	opacity: 0;
	filter: blur(2px);
	transform: scale(1.015);
}

.hc-gallery-zoom {
	position: absolute;
	top: 0;
	right: 15px;
	width: 31px;
	height: 31px;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.58);
	cursor: pointer;
	transform: translateY(-50%);
	transition: background-color 180ms ease, transform 180ms ease;
}

.hc-gallery-zoom:hover {
	background: rgba(0, 0, 0, 0.75);
	transform: translateY(-50%) scale(1.04);
}

.hc-gallery-zoom:before {
	content: "";
	position: absolute;
	top: 9px;
	left: 9px;
	width: 9px;
	height: 9px;
	border: 2px solid #fff;
	border-radius: 999px;
}

.hc-gallery-zoom:after {
	content: "";
	position: absolute;
	top: 20px;
	left: 20px;
	width: 8px;
	height: 2px;
	background: #fff;
	transform: rotate(45deg);
	transform-origin: left center;
}

.hc-thumbnail-shell {
	position: relative;
	width: 100%;
	margin-top: 36px;
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr) 34px;
	gap: 10px;
	align-items: stretch;
	overflow: visible;
}

.hc-thumbnails {
	display: flex;
	align-items: stretch;
	gap: 6px;
	margin: 0;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	scroll-snap-type: x proximity;
}

.hc-thumbnails::-webkit-scrollbar {
	display: none;
}

.hc-thumbnail {
	position: relative;
	flex: 0 0 calc((100% - 18px) / 4);
	width: calc((100% - 18px) / 4);
	min-width: 88px;
	height: 110px;
	aspect-ratio: auto;
	padding: 0;
	border: 0 !important;
	border-radius: 0;
	background: transparent !important;
	box-shadow: none !important;
	cursor: pointer;
	overflow: hidden;
	outline: 0 !important;
	appearance: none;
	scroll-snap-align: start;
	opacity: 0.78;
	transition: opacity 200ms ease, transform 200ms ease;
}

.hc-thumbnail:after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	box-shadow: inset 0 0 0 0 transparent;
	pointer-events: none;
	transition: box-shadow 200ms ease;
}

.hc-thumbnail:focus,
.hc-thumbnail:active,
.hc-thumbnail:focus-visible {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
}

.hc-thumbnail img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 0;
	border: 0 !important;
	object-fit: cover;
	transition: transform 240ms ease, filter 240ms ease, opacity 200ms ease;
}

.hc-thumbnail.is-active:after,
.hc-thumbnail:hover:after,
.hc-thumbnail:focus-visible:after {
	box-shadow: none;
}

.hc-thumbnail:hover,
.hc-thumbnail.is-active {
	opacity: 1;
	transform: translateY(-1px);
}

.hc-thumbnail:hover img,
.hc-thumbnail.is-active img {
	transform: scale(1.035);
}

.hc-thumbnail.is-broken {
	display: none !important;
}

.hc-thumbnail.is-loading {
	opacity: 0;
	pointer-events: none;
}

.hc-gallery-nav {
	position: relative;
	top: auto;
	z-index: 3;
	width: 34px;
	height: 100%;
	min-height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0 !important;
	border-radius: 0;
	background: #0b0b0b !important;
	box-shadow: none !important;
	color: #fff !important;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	outline: 0 !important;
	transform: none;
	transition: background-color 180ms ease, transform 180ms ease;
}

.hc-gallery-nav:hover {
	background: #000 !important;
	transform: none;
}

.hc-gallery-nav:focus,
.hc-gallery-nav:active,
.hc-gallery-nav:focus-visible {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	background: #000 !important;
}

.hc-gallery-nav-prev {
	grid-column: 1;
}

.hc-gallery-nav-next {
	grid-column: 3;
}

.hc-product-info {
	width: 100%;
	max-width: none;
	padding: 0;
}

.hc-product-info h1 {
	margin: -8px 0 16px;
	color: #010101;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.18;
	letter-spacing: 0;
}

.hc-short-description {
	margin: 0 0 38px;
	color: #111;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
}

.hc-short-description p {
	margin: 0;
}

.hc-config-section {
	margin: 0 0 24px;
	padding: 0;
	border: 0;
}

.hc-config-section + .hc-config-section {
	margin-top: 0;
}

.hc-config-section h2 {
	margin: 0 0 13px;
	color: #777;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hc-color-picker {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 2px 0 6px;
}

.hc-color-swatch {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	min-width: 38px;
	min-height: 38px;
	padding: 4px;
	border: 0 !important;
	border-radius: 999px;
	background: transparent !important;
	box-shadow: none !important;
	outline: 0;
	appearance: none;
	cursor: pointer;
	transition: transform 180ms ease;
}

.hc-color-swatch:before {
	content: "";
	position: absolute;
	inset: 0;
	border: 2px solid transparent;
	border-radius: inherit;
	transition: border-color 180ms ease, transform 180ms ease;
	pointer-events: none;
}

.hc-color-swatch:hover {
	transform: translateY(-1px);
}

.hc-color-swatch.is-active:before {
	border-color: #222;
}

.hc-color-swatch span,
.hc-color-swatch img {
	position: relative;
	z-index: 1;
	width: 30px;
	height: 30px;
	display: block;
	border-radius: 999px;
	object-fit: cover;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
	transition: transform 180ms ease, filter 180ms ease;
}

.hc-color-swatch:hover span,
.hc-color-swatch:hover img {
	transform: scale(1.04);
}

.hc-variation-list {
	display: grid;
	width: 100%;
	max-width: 420px;
	gap: 0;
}

.hc-variation-row {
	display: grid;
	grid-template-columns: 90px 56px auto;
	gap: 14px;
	align-items: center;
	min-height: 105px;
	padding: 16px 0 18px;
	border: 0;
	border-bottom: 1px solid #eeeeee;
	border-radius: 0;
	background: transparent;
}

.hc-variation-image {
	width: 90px;
	height: 90px;
	border-radius: 12px;
	background: #f5f5f5;
	overflow: hidden;
}

.hc-variation-image img {
	width: 100%;
	height: 100%;
	display: block;
	cursor: zoom-in;
	object-fit: cover;
}

.hc-lightbox-open {
	overflow: hidden;
}

.hc-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	background: rgba(0, 0, 0, 0.78);
}

.hc-lightbox-dialog {
	position: relative;
	max-width: min(92vw, 1100px);
	max-height: 90vh;
}

.hc-lightbox-dialog img {
	max-width: 100%;
	max-height: 90vh;
	display: block;
	object-fit: contain;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.hc-lightbox-close {
	position: absolute;
	top: -16px;
	right: -16px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: #111;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.hc-variation-meta {
	display: block;
	min-width: 0;
}

.hc-variation-meta strong {
	display: block;
	margin-bottom: 9px;
	color: #111;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	white-space: nowrap;
}

.hc-variation-meta span {
	display: block;
	color: #111;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

.hc-qty-control {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 8px;
	border: 0;
	border-radius: 0;
	overflow: visible;
}

.hc-qty-control button,
.hc-qty-control input {
	width: 34px !important;
	height: 32px !important;
	min-width: 34px;
	padding: 0 !important;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #fff;
	color: #000;
	text-align: center;
	line-height: 30px;
}

.hc-qty-control button {
	position: relative;
	font-size: 0;
	cursor: pointer;
}

.hc-qty-control button:before,
.hc-qty-control button:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: #000;
	transform: translate(-50%, -50%);
}

.hc-qty-control button[data-hc-plus]:after {
	width: 2px;
	height: 12px;
}

.hc-qty-control input {
	width: 46px !important;
	min-width: 46px;
	font-size: 14px;
	appearance: textfield;
}

.hc-qty-control input::-webkit-outer-spin-button,
.hc-qty-control input::-webkit-inner-spin-button {
	margin: 0;
	appearance: none;
}

.hc-sticky-total-bar {
	position: static;
	width: 100%;
	max-width: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin: 54px 0 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	transform: none;
	backdrop-filter: none;
}

.hc-sticky-total-bar span {
	display: none;
}

.hc-sticky-total-bar strong {
	color: var(--hc-gold);
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
}

.hc-cta-button {
	display: inline-flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 47px;
	padding: 7px 11px 7px 19px;
	border-radius: 999px;
	background: #000;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.hc-cta-button:after {
	content: "";
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background:
		linear-gradient(#010101, #010101) 50% 62% / 14px 1.5px no-repeat,
		linear-gradient(#010101, #010101) 50% 43% / 14px 1.5px no-repeat,
		linear-gradient(#010101, #010101) 35% 27% / 1.5px 7px no-repeat,
		linear-gradient(#010101, #010101) 65% 27% / 1.5px 7px no-repeat,
		#fff;
}

.hc-product-details {
	width: 100%;
	margin: 86px 0 0;
	padding: 0 0 52px;
	border: 0;
}

.hc-product-details h2 {
	margin: 0 0 23px;
	color: #010101;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.2;
}

.hc-product-detail-tab {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-left: 14px;
	padding: 0 0 10px;
	border-bottom: 2px solid #00613d;
	color: #00613d;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.hc-product-detail-tab:before {
	content: "";
	width: 18px;
	height: 18px;
	background:
		linear-gradient(135deg, transparent 35%, #00613d 35% 45%, transparent 45% 55%, #00613d 55% 65%, transparent 65%),
		linear-gradient(45deg, transparent 35%, #00613d 35% 45%, transparent 45% 55%, #00613d 55% 65%, transparent 65%);
}

.hc-product-description {
	margin: 12px 0 0;
	padding: 19px 18px;
	border: 0;
	border-radius: 0 0 12px 12px;
	background: #fff;
	color: #111;
	font-size: 14px;
	line-height: 1.7;
}

.hc-product-description > :first-child {
	margin-top: 0;
}

.hc-product-description > :last-child {
	margin-bottom: 0;
}

.hc-product-info h1 {
	color: #010101;
	font-family: Raleway, sans-serif;
	font-size: 32px;
	font-weight: 500;
	font-style: normal;
	line-height: 1.18;
}

.hc-short-description,
.hc-short-description p,
.hc-product-description,
.hc-product-description p,
.hc-product-description li {
	color: #010101;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.7;
	opacity: 0.8;
}

.hc-config-section h2 {
	color: #010101;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 600;
	font-style: normal;
	line-height: 1.35;
	letter-spacing: 0;
	text-transform: none;
}

.hc-product-details h2 {
	color: #010101;
	font-family: Raleway, sans-serif;
	font-size: 24px;
	font-weight: 500;
	font-style: normal;
	line-height: 1.25;
}

.hc-product-detail-tab {
	gap: 9px;
	padding: 0 16px 16px 16px;
	border-bottom: 3px solid #00613d;
	color: #00613d;
	font-family: "Open Sans", sans-serif;
	font-size: 18px;
	font-weight: 600;
	font-style: normal;
	line-height: 1.2;
	text-transform: none;
}

.hc-product-detail-tab:before {
	content: none;
}

.hc-product-detail-tab svg {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
}

.hc-sticky-total-bar strong,
.hc-sticky-total-bar [data-hc-total] {
	color: #e0b052;
	font-family: "Open Sans", sans-serif;
	font-size: 40px;
	font-weight: 700;
	font-style: normal;
	line-height: 1.1;
}

.hc-product-similar {
	margin: 0;
	padding: 30px 0 58px;
	background: transparent;
}

.hc-product-similar h2 {
	width: 100%;
	margin: 0 0 28px;
	color: #010101;
	font-size: 38px;
	font-weight: 400;
	line-height: 1.15;
}

.hc-product-similar .hc-product-grid {
	width: 100%;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.hc-product-similar .hc-product-card {
	border: 0;
	border-radius: 12px;
	background: #fff;
	box-shadow: none;
	overflow: hidden;
}

.hc-product-similar .hc-product-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 26px rgba(0, 0, 0, 0.06);
}

.hc-product-similar .hc-product-card-image {
	margin: 16px 16px 0;
	aspect-ratio: 1 / 1;
	background: #eee;
}

.hc-product-similar .hc-product-card-body {
	padding: 16px 14px 28px;
	text-align: center;
}

.hc-product-similar .hc-product-card-body h3 {
	margin: 0 0 9px;
	color: #010101;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
}

.hc-product-similar .hc-product-card-body p {
	margin: 0;
	color: var(--hc-gold);
	font-size: 13px;
	font-weight: 700;
}

.hc-product-similar .hc-product-card {
	border: 1px solid var(--hc-line);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(18, 16, 12, 0.07);
}

.hc-product-similar .hc-product-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 48px rgba(18, 16, 12, 0.11);
}

.hc-product-similar .hc-product-card-image {
	margin: 0;
	aspect-ratio: 4 / 3;
	background: var(--hc-bg);
}

.hc-product-similar .hc-product-card-body {
	padding: 18px;
	text-align: left;
}

.hc-product-similar .hc-product-card-main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: start;
}

.hc-product-similar .hc-product-card-body h3 {
	margin: 0 0 8px;
	color: var(--hc-ink);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
}

.hc-product-similar .hc-product-card-body p {
	margin: 0;
	color: var(--hc-accent);
	font-size: inherit;
	font-weight: 700;
	text-align: right;
	white-space: nowrap;
}

.hc-product-similar .hc-product-card-colors {
	margin-top: 14px;
}

.hc-product-similar .hc-product-card-color {
	width: 28px;
	height: 28px;
}

@media (max-width: 1080px) {
	.hc-product-layout {
		grid-template-columns: minmax(0, 1fr);
		width: 100%;
	}

	.hc-product-gallery,
	.hc-product-info {
		max-width: none;
	}

	.hc-product-info h1 {
		margin-top: 0;
	}

	.hc-product-similar .hc-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.hc-product-page {
		padding-top: 0;
	}

	.hc-product-layout,
	.hc-product-details {
		width: 100%;
	}

	.hc-thumbnails {
		gap: 6px;
	}

	.hc-thumbnail {
		flex-basis: calc((100% - 12px) / 3);
		width: calc((100% - 12px) / 3);
		min-width: 74px;
		height: 86px;
	}

	.hc-gallery-nav {
		min-height: 86px;
	}

	.hc-variation-row {
		grid-template-columns: 72px 56px auto;
		gap: 10px;
	}

	.hc-qty-control {
		grid-column: 3;
		justify-self: end;
		margin-top: 0;
	}

	.hc-sticky-total-bar {
		align-items: flex-start;
		flex-direction: column;
		margin-top: 34px;
	}

	.hc-cta-button {
		width: auto;
	}

	.hc-product-details {
		margin-top: 56px;
	}

	.hc-product-similar {
		padding-left: 0;
		padding-right: 0;
	}

	.hc-product-similar h2 {
		font-size: 32px;
	}

	.hc-product-similar .hc-product-grid {
		grid-template-columns: 1fr;
	}
}

/* Project overrides migrated from custom CSS. */
.hc-product-page {
	margin: 0 auto;
}

.hc-pagination li .page-numbers {
	border-radius: 8px;
	overflow: hidden;
}

@media only screen and (max-width: 1024px) {
	.hc-category-page .hc-archive-layout .hc-filter-sidebar {
		order: 2;
	}
}

.hc_product-template-default #primary {
	max-width: unset;
	padding: 0;
}

.hc_product-template-default .hc-product-layout {
	padding-top: 60px !important;
}

.hc_product-template-default .hc-product-layout,
.hc_product-template-default .hc-product-details {
	max-width: 1240px;
	padding: 20px;
	margin: 0 auto;
}

.hc_product-template-default .hc-product-similar {
	background: #e0b05210;
	padding: 80px max(calc((100vw - 1200px) / 2), 20px);
}

.hc_product-template-default .hc-product-similar h2 {
	font-weight: 500;
}

.hc-gallery-zoom {
	top: 20px;
	border: unset;
}

button:hover {
	background: #24434820 !important;
}

button:focus {
	background: #24434820 !important;
}

.hc-qty-control input {
	border: 1px solid #dddddd;
	font-size: 16px;
}

.hc-price-filter input {
	border: unset;
	padding: 16px;
	border-radius: 8px;
}

.hc-rug-config {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
	gap: 16px;
	align-items: end;
}

.hc-rug-config label {
	display: grid;
	gap: 8px;
	font-family: "Open Sans", sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: rgba(1, 1, 1, 0.72);
}

.hc-rug-config select,
.hc-rug-config input {
	width: 100%;
	border: unset;
	border-radius: 8px;
	padding: 16px !important;
	background: #f4f4f4;
	color: #00613d;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	border: unset !important;
}

.hc-rug-config select:focus,
.hc-rug-config input:focus {
	outline: 2px solid rgba(0, 97, 61, 0.2);
	border-color: transparent;
}

.hc-rug-config input.is-invalid {
	outline: 2px solid rgba(207, 46, 46, 0.22);
	color: #cf2e2e;
}

.hc-rug-error {
	font-family: "Open Sans", sans-serif;
	font-size: 12px;
	line-height: 1.35;
	color: #cf2e2e;
}

.hc-sticky-total-bar small[data-hc-rug-calculation] {
	display: block;
	margin-top: 4px;
	font-family: "Open Sans", sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.35;
	color: rgba(1, 1, 1, 0.62);
}

@media (max-width: 640px) {
	.hc-rug-config {
		grid-template-columns: 1fr;
	}
}

form.hc-price-filter input {
    border: unset;
    padding: 16px;
}