:root {
	--pm-surface: #f7f9fb;
	--pm-surface-dim: #d8dadc;
	--pm-surface-bright: #f7f9fb;
	--pm-surface-container-lowest: #ffffff;
	--pm-surface-container-low: #f2f4f6;
	--pm-surface-container: #eceef0;
	--pm-surface-container-high: #e6e8ea;
	--pm-surface-container-highest: #e0e3e5;
	--pm-on-surface: #191c1e;
	--pm-on-surface-variant: #3f484e;
	--pm-inverse-surface: #2d3133;
	--pm-inverse-on-surface: #eff1f3;
	--pm-outline: #6f787e;
	--pm-outline-variant: #bec8ce;
	--pm-surface-tint: #006686;
	--pm-primary: #006686;
	--pm-on-primary: #ffffff;
	--pm-primary-container: #7dd3fc;
	--pm-on-primary-container: #005b78;
	--pm-secondary: #565e74;
	--pm-on-secondary: #ffffff;
	--pm-secondary-container: #dae2fd;
	--pm-tertiary: #505f76;
	--pm-error: #ba1a1a;
	--pm-error-container: #ffdad6;
	--pm-slate-900: #0f172a;
	--pm-slate-500: #64748b;
	--pm-slate-200: #e2e8f0;
	--pm-slate-100: #f1f5f9;
	--pm-white: #ffffff;
	--pm-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
	--pm-shadow-hover: 0 18px 42px rgba(15, 23, 42, 0.08);
	--pm-radius-sm: 4px;
	--pm-radius: 8px;
	--pm-radius-md: 12px;
	--pm-radius-lg: 16px;
	--pm-radius-xl: 24px;
	--pm-container: 1280px;
	--pm-gutter: 24px;
	--pm-section-gap: 80px;
	--pm-font-body: "Inter", Arial, sans-serif;
	--pm-font-heading: "Public Sans", "Inter", Arial, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--pm-surface);
	color: var(--pm-on-surface);
	font-family: var(--pm-font-body);
	font-size: 16px;
	line-height: 24px;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--pm-primary);
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

.pm-container {
	width: min(calc(100% - 96px), var(--pm-container));
	margin-inline: auto;
}

.pm-page {
	min-height: 60vh;
	background: var(--pm-surface);
}

.pm-main {
	padding-block: 64px 80px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 16px;
	left: 16px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: var(--pm-slate-900);
	color: var(--pm-white);
	border-radius: var(--pm-radius);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: var(--pm-slate-900);
	font-family: var(--pm-font-heading);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0;
}

h1 {
	font-size: 48px;
	line-height: 56px;
}

h2 {
	font-size: 32px;
	line-height: 40px;
}

h3 {
	font-size: 24px;
	line-height: 32px;
}

p {
	margin: 0;
}

.pm-eyebrow {
	color: var(--pm-primary);
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.pm-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 6px 12px;
	border-radius: 9999px;
	background: rgba(125, 211, 252, 0.15);
	color: var(--pm-slate-900);
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
}

.pm-chip.is-active {
	background: var(--pm-primary-container);
	color: var(--pm-slate-900);
}

.pm-button,
.button,
button.button,
input.button,
.wp-element-button,
.wc-block-components-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: var(--pm-radius);
	background: var(--pm-primary-container);
	color: var(--pm-slate-900);
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pm-button:hover,
.pm-button:focus,
.button:hover,
.button:focus,
button.button:hover,
button.button:focus,
input.button:hover,
input.button:focus,
.wp-element-button:hover,
.wp-element-button:focus,
.wc-block-components-button:hover,
.wc-block-components-button:focus {
	background: #a7e4ff;
	color: var(--pm-slate-900);
	box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.22);
	transform: translateY(-1px);
}

.pm-button--ghost,
.woocommerce a.button.alt.pm-button--ghost {
	background: var(--pm-white);
	border-color: var(--pm-slate-200);
	color: var(--pm-slate-900);
}

.pm-button--ghost:hover,
.pm-button--ghost:focus {
	background: var(--pm-surface-container-low);
	border-color: var(--pm-outline-variant);
}

.pm-button svg,
.pm-text-link svg,
.pm-icon-button svg,
.pm-icon-link svg,
.button svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pm-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--pm-primary);
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
}

.pm-icon-button,
.pm-icon-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--pm-slate-200);
	border-radius: var(--pm-radius);
	background: var(--pm-white);
	color: var(--pm-slate-900);
}

.pm-icon-button:hover,
.pm-icon-button:focus,
.pm-icon-link:hover,
.pm-icon-link:focus {
	border-color: var(--pm-primary-container);
	box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.18);
	color: var(--pm-slate-900);
}

.pm-cart-count {
	position: absolute;
	top: -7px;
	right: -7px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding-inline: 6px;
	border: 2px solid var(--pm-white);
	border-radius: 9999px;
	background: var(--pm-primary-container);
	color: var(--pm-slate-900);
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
}

.pm-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid var(--pm-slate-100);
	backdrop-filter: blur(18px);
}

.pm-announcement {
	background: var(--pm-inverse-surface);
	color: var(--pm-inverse-on-surface);
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
}

.pm-announcement__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 36px;
	gap: 24px;
}

.pm-header-main__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	min-height: 80px;
	gap: 32px;
}

.pm-brand {
	display: flex;
	align-items: center;
	min-width: 0;
}

.pm-brand img {
	max-height: 56px;
	width: auto;
}

.pm-brand__text {
	color: var(--pm-slate-900);
	font-family: var(--pm-font-heading);
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
}

.pm-primary-nav {
	justify-self: center;
}

.pm-menu,
.pm-menu ul,
.pm-footer-menu,
.pm-mobile-menu__list {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pm-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 12px;
	border-radius: var(--pm-radius);
	color: var(--pm-on-surface-variant);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}

.pm-menu a:hover,
.pm-menu a:focus,
.pm-menu .current-menu-item > a,
.pm-menu .current_page_item > a {
	background: rgba(125, 211, 252, 0.15);
	color: var(--pm-slate-900);
}

.pm-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.pm-menu-toggle {
	display: none;
}

.pm-header-search {
	padding-block: 16px 24px;
	border-top: 1px solid var(--pm-slate-100);
	background: var(--pm-white);
}

.pm-search-form {
	display: flex;
	align-items: center;
	gap: 12px;
}

.pm-search-form__input,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
select,
textarea,
.select2-container .select2-selection--single {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--pm-slate-200);
	border-radius: var(--pm-radius);
	background: var(--pm-white);
	color: var(--pm-on-surface);
	font-size: 16px;
	line-height: 24px;
	outline: none;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
	min-height: 144px;
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.select2-container--focus .select2-selection--single {
	border-color: var(--pm-primary-container);
	box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.22);
}

.pm-mobile-menu {
	border-top: 1px solid var(--pm-slate-100);
	background: var(--pm-white);
}

.pm-mobile-menu .pm-container {
	padding-block: 16px 24px;
}

.pm-mobile-menu__list {
	align-items: stretch;
	flex-direction: column;
}

.pm-mobile-menu__list a {
	display: flex;
	min-height: 48px;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid var(--pm-slate-100);
	color: var(--pm-slate-900);
	font-weight: 700;
}

.pm-hero {
	padding-block: 72px 56px;
	background: linear-gradient(180deg, var(--pm-white) 0%, var(--pm-surface) 100%);
}

.pm-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
	align-items: center;
	gap: 64px;
}

.pm-hero__copy {
	display: grid;
	gap: 24px;
}

.pm-hero__lead {
	max-width: 640px;
	color: var(--pm-slate-500);
	font-size: 18px;
	line-height: 28px;
}

.pm-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}

.pm-hero__visual {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 180px;
	gap: 24px;
	align-items: stretch;
}

.pm-hero-card {
	position: relative;
	overflow: hidden;
	display: block;
	background: var(--pm-white);
	border-radius: var(--pm-radius-lg);
	box-shadow: var(--pm-shadow);
}

.pm-hero-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: var(--pm-surface-container-low);
}

.pm-hero-card--large {
	min-height: 560px;
}

.pm-hero-card--large .pm-chip {
	position: absolute;
	top: 24px;
	left: 24px;
	z-index: 2;
}

.pm-hero-card__meta {
	position: absolute;
	right: 24px;
	bottom: 24px;
	left: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 72px;
	padding: 16px;
	border-radius: var(--pm-radius-md);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--pm-shadow);
	color: var(--pm-slate-900);
	font-weight: 700;
}

.pm-hero-card__meta strong {
	white-space: nowrap;
}

.pm-hero-stack {
	display: grid;
	gap: 24px;
}

.pm-hero-card--small {
	min-height: 268px;
	padding: 12px;
}

.pm-hero-card--small img {
	height: 200px;
	border-radius: var(--pm-radius-md);
}

.pm-hero-card--small span {
	display: block;
	padding: 14px 4px 2px;
	color: var(--pm-slate-900);
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
}

.pm-placeholder-visual {
	background: linear-gradient(135deg, var(--pm-surface-container-low), var(--pm-primary-container));
}

.pm-assurance {
	padding-block: 32px;
	background: var(--pm-white);
}

.pm-assurance__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.pm-assurance__grid > div {
	display: grid;
	gap: 4px;
	min-height: 88px;
	padding: 20px 24px;
	border-radius: var(--pm-radius-lg);
	background: var(--pm-surface);
}

.pm-assurance strong {
	color: var(--pm-slate-900);
	font-size: 14px;
	line-height: 20px;
}

.pm-assurance span {
	color: var(--pm-slate-500);
	font-size: 14px;
	line-height: 20px;
}

.pm-section {
	padding-block: var(--pm-section-gap);
}

.pm-section-heading {
	display: grid;
	gap: 8px;
	margin-bottom: 32px;
}

.pm-section-heading--split {
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 24px;
}

.pm-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.pm-category-card {
	display: grid;
	gap: 8px;
	min-height: 144px;
	padding: 24px;
	border-radius: var(--pm-radius-lg);
	background: var(--pm-white);
	box-shadow: var(--pm-shadow);
}

.pm-category-card:hover,
.pm-category-card:focus {
	color: var(--pm-slate-900);
	box-shadow: var(--pm-shadow-hover);
}

.pm-category-card span {
	color: var(--pm-slate-900);
	font-family: var(--pm-font-heading);
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
}

.pm-category-card small {
	color: var(--pm-slate-500);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}

.pm-editorial-band {
	background: var(--pm-white);
}

.pm-editorial-band__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
	align-items: end;
	gap: 64px;
	padding: 48px;
	border-radius: var(--pm-radius-xl);
	background: var(--pm-surface);
}

.pm-editorial-band__grid > div {
	display: grid;
	gap: 8px;
}

.pm-editorial-band p:last-child {
	color: var(--pm-slate-500);
	font-size: 18px;
	line-height: 28px;
}

.pm-page-header,
.woocommerce-products-header {
	display: grid;
	gap: 12px;
	margin-bottom: 32px;
}

.pm-page-header p,
.woocommerce-products-header p {
	max-width: 760px;
	color: var(--pm-slate-500);
	font-size: 18px;
	line-height: 28px;
}

.pm-page-shell {
	max-width: 960px;
}

.pm-woocommerce .pm-page-shell {
	max-width: none;
}

.pm-content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 48px;
	align-items: start;
}

.pm-post-list {
	display: grid;
	gap: 24px;
}

.pm-post-card,
.pm-entry,
.pm-comments,
.pm-empty-state,
.pm-sidebar,
.pm-shop-filters,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
	border-radius: var(--pm-radius-lg);
	background: var(--pm-white);
	box-shadow: var(--pm-shadow);
}

.pm-post-card {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	overflow: hidden;
}

.pm-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pm-post-card__body {
	display: grid;
	gap: 12px;
	padding: 24px;
}

.pm-post-card__body h2 {
	font-size: 24px;
	line-height: 32px;
}

.pm-post-card__excerpt,
.pm-entry-content,
.pm-archive-description {
	color: var(--pm-on-surface-variant);
}

.pm-entry,
.pm-comments,
.pm-empty-state {
	padding: 40px;
}

.pm-entry-media {
	margin-bottom: 32px;
	overflow: hidden;
	border-radius: var(--pm-radius-lg);
}

.pm-entry-content > * + * {
	margin-top: 24px;
}

.pm-entry-content a {
	color: var(--pm-primary);
	font-weight: 700;
}

.pm-sidebar,
.pm-shop-filters {
	padding: 24px;
}

.widget + .widget {
	margin-top: 28px;
	padding-top: 28px;
	border-top: 1px solid var(--pm-slate-100);
}

.widget-title {
	margin-bottom: 16px;
	font-size: 16px;
	line-height: 24px;
}

.widget ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget a {
	color: var(--pm-on-surface-variant);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}

.pm-empty-state {
	display: grid;
	gap: 16px;
	text-align: center;
}

.pm-empty-state--large {
	max-width: 760px;
}

.pm-empty-state__actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 8px;
}

.pm-breadcrumbs {
	margin-bottom: 24px;
	color: var(--pm-slate-500);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}

.pm-breadcrumbs a {
	color: var(--pm-on-surface-variant);
}

.pm-shop-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 32px;
	margin-bottom: 24px;
}

.pm-shop-header > div {
	display: grid;
	gap: 12px;
}

.pm-category-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.pm-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 64px;
	margin-bottom: 24px;
	padding: 12px 16px;
	border-radius: var(--pm-radius-lg);
	background: var(--pm-white);
	box-shadow: var(--pm-shadow);
}

.pm-shop-toolbar__woo {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1;
	gap: 16px;
}

.woocommerce-result-count {
	margin: 0;
	color: var(--pm-slate-500);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}

.woocommerce-ordering {
	margin: 0;
}

.woocommerce-ordering select {
	min-width: 220px;
	min-height: 44px;
	font-size: 14px;
	font-weight: 600;
}

.pm-filter-toggle {
	display: none;
}

.pm-shop-layout {
	display: grid;
	gap: 32px;
}

.pm-shop-layout.has-filters {
	grid-template-columns: 292px minmax(0, 1fr);
}

.pm-shop-filters[hidden] {
	display: block !important;
}

ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pm-products-grid.columns-4,
ul.products.columns-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pm-product-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-width: 0;
	border-radius: var(--pm-radius-lg);
	background: var(--pm-white);
	box-shadow: var(--pm-shadow);
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.pm-product-card:hover,
.pm-product-card:focus-within {
	box-shadow: var(--pm-shadow-hover);
	transform: translateY(-2px);
}

.pm-product-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--pm-surface-container-low);
}

.pm-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.pm-product-card:hover .pm-product-card__media img {
	transform: scale(1.025);
}

.pm-product-card__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
}

.pm-product-card__body {
	display: grid;
	gap: 12px;
	padding: 24px;
}

.pm-product-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: var(--pm-slate-500);
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.pm-product-card__title {
	margin: 0;
	font-family: var(--pm-font-heading);
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
}

.pm-product-card__title a {
	color: var(--pm-slate-900);
}

.pm-product-card__footer {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
}

.price {
	color: var(--pm-slate-900);
	font-size: 16px;
	font-weight: 800;
	line-height: 24px;
}

.price del {
	color: var(--pm-slate-500);
	font-size: 14px;
	font-weight: 600;
}

.price ins {
	text-decoration: none;
}

.pm-product-card .button {
	min-height: 40px;
	padding: 10px 14px;
	font-size: 12px;
	line-height: 16px;
	white-space: nowrap;
}

.added_to_cart {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	color: var(--pm-primary);
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
}

.pm-product-page {
	background: var(--pm-surface);
}

.pm-single-product__top {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
	gap: 48px;
	align-items: start;
}

.pm-product-gallery-panel,
.pm-product-summary,
.woocommerce-tabs,
.related.products,
.up-sells.products {
	border-radius: var(--pm-radius-lg);
	background: var(--pm-white);
	box-shadow: var(--pm-shadow);
}

.pm-product-gallery-panel {
	position: relative;
	padding: 24px;
}

.pm-product-gallery-panel .onsale {
	position: absolute;
	top: 40px;
	left: 40px;
	z-index: 2;
}

.woocommerce-product-gallery {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}

.woocommerce-product-gallery__wrapper {
	margin: 0;
}

.woocommerce-product-gallery__image {
	overflow: hidden;
	border-radius: var(--pm-radius-lg);
	background: var(--pm-surface-container-low);
}

.woocommerce-product-gallery__image img {
	width: 100%;
}

.flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.flex-control-thumbs li {
	overflow: hidden;
	border-radius: var(--pm-radius);
	background: var(--pm-surface-container-low);
}

.pm-product-summary {
	position: sticky;
	top: 132px;
	display: grid;
	gap: 18px;
	padding: 32px;
}

.pm-product-summary .product_title {
	font-size: 32px;
	line-height: 40px;
}

.pm-product-summary .price {
	font-size: 24px;
	line-height: 32px;
}

.woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	color: var(--pm-slate-500);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}

.star-rating {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 5.7em;
	height: 1em;
	color: var(--pm-primary);
	font-family: star;
	font-size: 14px;
	line-height: 1;
}

.star-rating::before {
	content: "\73\73\73\73\73";
	color: var(--pm-outline-variant);
	float: left;
	top: 0;
	left: 0;
	position: absolute;
}

.star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em;
}

.star-rating span::before {
	content: "\53\53\53\53\53";
	top: 0;
	position: absolute;
	left: 0;
}

.woocommerce-product-details__short-description {
	color: var(--pm-on-surface-variant);
	font-size: 16px;
	line-height: 24px;
}

.cart:not(.woocommerce-cart-form__contents) {
	display: grid;
	gap: 16px;
}

.quantity {
	display: inline-flex;
	align-items: center;
}

.quantity .qty {
	width: 88px;
	text-align: center;
}

.single_add_to_cart_button,
.woocommerce button.single_add_to_cart_button {
	width: 100%;
	min-height: 56px;
	font-size: 16px;
}

.variations {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 12px;
}

.variations th,
.variations td {
	display: block;
	padding: 0;
	text-align: left;
}

.variations label {
	display: block;
	margin-bottom: 8px;
	color: var(--pm-slate-900);
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
}

.reset_variations {
	display: inline-flex;
	margin-top: 8px;
	color: var(--pm-primary);
	font-size: 14px;
	font-weight: 700;
}

.product_meta {
	display: grid;
	gap: 8px;
	padding-top: 18px;
	border-top: 1px solid var(--pm-slate-100);
	color: var(--pm-slate-500);
	font-size: 14px;
	line-height: 20px;
}

.product_meta a {
	color: var(--pm-on-surface-variant);
	font-weight: 700;
}

.pm-product-promises {
	display: grid;
	gap: 10px;
	padding-top: 18px;
	border-top: 1px solid var(--pm-slate-100);
}

.pm-product-promises div {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 32px;
	color: var(--pm-on-surface-variant);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}

.pm-product-promises svg {
	width: 18px;
	height: 18px;
	color: var(--pm-primary);
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pm-single-product__details {
	margin-top: 48px;
}

.woocommerce-tabs {
	padding: 32px;
}

.woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 24px;
	padding: 0;
	border-bottom: 1px solid var(--pm-slate-100);
	list-style: none;
}

.woocommerce-tabs ul.tabs li {
	margin: 0;
}

.woocommerce-tabs ul.tabs a {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	padding: 12px 14px;
	border-radius: var(--pm-radius) var(--pm-radius) 0 0;
	color: var(--pm-on-surface-variant);
	font-size: 14px;
	font-weight: 700;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs a:hover,
.woocommerce-tabs ul.tabs a:focus {
	background: rgba(125, 211, 252, 0.15);
	color: var(--pm-slate-900);
}

.woocommerce-Tabs-panel {
	color: var(--pm-on-surface-variant);
}

.woocommerce-Tabs-panel > * + * {
	margin-top: 16px;
}

.related.products,
.up-sells.products {
	margin-top: 32px;
	padding: 32px;
}

.related.products > h2,
.up-sells.products > h2 {
	margin-bottom: 24px;
}

.onsale {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 6px 12px;
	border-radius: 9999px;
	background: var(--pm-error-container);
	color: var(--pm-error);
	font-size: 12px;
	font-weight: 800;
	line-height: 16px;
}

.woocommerce-notices-wrapper {
	display: grid;
	gap: 12px;
	margin-bottom: 24px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.wc-block-components-notice-banner {
	padding: 16px 20px;
	border: 1px solid transparent;
	border-radius: var(--pm-radius-lg);
	background: var(--pm-white);
	box-shadow: var(--pm-shadow);
	color: var(--pm-on-surface);
	font-size: 14px;
	line-height: 20px;
}

.woocommerce-message {
	border-color: rgba(125, 211, 252, 0.45);
}

.woocommerce-info {
	border-color: var(--pm-slate-200);
}

.woocommerce-error {
	border-color: var(--pm-error-container);
	color: var(--pm-error);
	list-style-position: inside;
}

.woocommerce-message .button,
.woocommerce-info .button {
	float: right;
	min-height: 36px;
	margin-left: 16px;
	padding: 8px 12px;
}

.shop_table {
	width: 100%;
	border-collapse: collapse;
	border-radius: var(--pm-radius-lg);
	background: var(--pm-white);
	box-shadow: var(--pm-shadow);
	overflow: hidden;
}

.shop_table th,
.shop_table td {
	padding: 18px 20px;
	border-bottom: 1px solid var(--pm-slate-100);
	text-align: left;
	vertical-align: middle;
}

.shop_table th {
	color: var(--pm-slate-900);
	font-size: 12px;
	font-weight: 800;
	line-height: 16px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.shop_table td {
	color: var(--pm-on-surface-variant);
	font-size: 14px;
	line-height: 20px;
}

.shop_table tr:last-child td {
	border-bottom: 0;
}

.product-thumbnail img {
	width: 72px;
	height: 88px;
	object-fit: cover;
	border-radius: var(--pm-radius);
	background: var(--pm-surface-container-low);
}

.product-name a {
	color: var(--pm-slate-900);
	font-weight: 800;
}

.product-remove a.remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 9999px;
	background: var(--pm-surface-container-low);
	color: var(--pm-error);
	font-size: 20px;
	font-weight: 700;
}

.coupon {
	display: flex;
	gap: 12px;
}

.coupon .input-text {
	max-width: none;
}

.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content,
.woocommerce-form-login,
.woocommerce-form-register {
	padding: 32px;
	border-radius: var(--pm-radius-lg);
	background: var(--pm-white);
	box-shadow: var(--pm-shadow);
}

.cart_totals h2,
#order_review_heading,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
.woocommerce-account h2 {
	margin-bottom: 20px;
	font-size: 24px;
	line-height: 32px;
}

.cart-collaterals {
	margin-top: 32px;
}

.cart-collaterals::after,
.woocommerce::after {
	display: table;
	clear: both;
	content: "";
}

.cart_totals {
	margin-left: auto;
}

.woocommerce-cart .cart_totals {
	max-width: 640px;
}

.wc-proceed-to-checkout {
	margin-top: 20px;
}

.wc-proceed-to-checkout .checkout-button {
	width: 100%;
	min-height: 56px;
}

.woocommerce-checkout .col2-set {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 32px;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
	float: none;
	width: auto;
}

.form-row {
	margin: 0 0 16px;
}

.form-row label {
	display: block;
	margin-bottom: 8px;
	color: var(--pm-slate-900);
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
}

.required {
	color: var(--pm-error);
}

#order_review_heading {
	margin-top: 8px;
}

#payment {
	margin-top: 24px;
}

#payment ul.payment_methods {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

#payment li {
	padding: 16px;
	border: 1px solid var(--pm-slate-200);
	border-radius: var(--pm-radius);
}

#payment .place-order {
	margin-top: 20px;
}

#place_order {
	width: 100%;
	min-height: 56px;
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
	display: grid;
	gap: 24px;
	margin: 0;
}

.wc-block-cart,
.wc-block-checkout {
	display: grid;
	gap: 24px;
}

.wc-block-cart__main,
.wc-block-cart__sidebar,
.wc-block-checkout__main,
.wc-block-checkout__sidebar,
.wp-block-woocommerce-cart-order-summary-block,
.wp-block-woocommerce-checkout-order-summary-block,
.wp-block-woocommerce-checkout-fields-block {
	padding: 32px;
	border-radius: var(--pm-radius-lg);
	background: var(--pm-white);
	box-shadow: var(--pm-shadow);
}

.wc-block-cart-items,
.wc-block-components-totals-wrapper,
.wc-block-components-panel,
.wc-block-components-order-summary-item {
	border-color: var(--pm-slate-100) !important;
}

.wc-block-cart-items__row,
.wc-block-components-order-summary-item {
	padding-block: 18px !important;
}

.wc-block-components-product-name,
.wc-block-cart-item__product a {
	color: var(--pm-slate-900);
	font-weight: 800;
	text-decoration: none;
}

.wc-block-components-product-price,
.wc-block-components-totals-item__value,
.wc-block-cart-item__total-price-and-sale-badge-wrapper {
	color: var(--pm-slate-900);
	font-weight: 800;
}

.wc-block-components-product-metadata,
.wc-block-components-totals-item__label,
.wc-block-components-formatted-money-amount,
.wc-block-components-shipping-rates-control__package__description {
	color: var(--pm-slate-500);
	font-size: 14px;
	line-height: 20px;
}

.wc-block-components-quantity-selector {
	border-color: var(--pm-slate-200);
	border-radius: var(--pm-radius);
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-country-input input {
	min-height: 48px;
	border-color: var(--pm-slate-200);
	border-radius: var(--pm-radius);
}

.wc-block-components-text-input input:focus,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus {
	border-color: var(--pm-primary-container);
	box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.22);
}

.wc-block-components-sidebar-layout {
	gap: 32px;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
	padding-right: 0;
}

.wc-block-components-sidebar {
	margin-top: 0;
}

.wc-block-components-button:not(.is-link) {
	border-radius: var(--pm-radius);
	background: var(--pm-primary-container);
	color: var(--pm-slate-900);
	font-weight: 800;
	box-shadow: none;
}

.wc-block-components-button:not(.is-link):hover,
.wc-block-components-button:not(.is-link):focus {
	background: #a7e4ff;
	color: var(--pm-slate-900);
	box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.22);
}

.wc-block-components-notice-banner {
	border-color: var(--pm-slate-200);
}

.woocommerce-account .woocommerce {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 32px;
}

.woocommerce-MyAccount-navigation ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce-MyAccount-navigation a {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 10px 12px;
	border-radius: var(--pm-radius);
	color: var(--pm-on-surface-variant);
	font-size: 14px;
	font-weight: 700;
}

.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation a:focus {
	background: rgba(125, 211, 252, 0.15);
	color: var(--pm-slate-900);
}

.pm-comments {
	margin-top: 32px;
}

.pm-comment-list {
	display: grid;
	gap: 16px;
	margin: 24px 0;
	padding-left: 20px;
}

.comment-form {
	display: grid;
	gap: 16px;
}

.comment-form p {
	display: grid;
	gap: 8px;
}

.pm-site-footer {
	padding-block: 56px 32px;
	background: var(--pm-inverse-surface);
	color: var(--pm-inverse-on-surface);
}

.pm-footer-top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 48px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(239, 241, 243, 0.12);
}

.pm-footer-brand {
	display: grid;
	gap: 12px;
	max-width: 460px;
}

.pm-footer-brand .pm-brand__text {
	color: var(--pm-white);
}

.pm-footer-brand p,
.pm-footer-bottom {
	color: rgba(239, 241, 243, 0.72);
	font-size: 14px;
	line-height: 20px;
}

.pm-footer-menu {
	flex-wrap: wrap;
	justify-content: flex-end;
}

.pm-footer-menu a {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	padding: 8px 10px;
	color: var(--pm-inverse-on-surface);
	font-size: 14px;
	font-weight: 700;
}

.pm-footer-widgets {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
	padding-block: 32px;
	border-bottom: 1px solid rgba(239, 241, 243, 0.12);
}

.pm-footer-widgets .widget-title {
	color: var(--pm-white);
}

.pm-footer-widgets a,
.pm-footer-widgets p,
.pm-footer-widgets li {
	color: rgba(239, 241, 243, 0.72);
}

.pm-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 24px;
}

.navigation.pagination,
.woocommerce-pagination {
	margin-top: 32px;
}

.nav-links,
.woocommerce-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 8px 12px;
	border-radius: var(--pm-radius);
	background: var(--pm-white);
	color: var(--pm-on-surface-variant);
	font-size: 14px;
	font-weight: 700;
	box-shadow: var(--pm-shadow);
}

.page-numbers.current,
.page-numbers:hover,
.page-numbers:focus {
	background: var(--pm-primary-container);
	color: var(--pm-slate-900);
}

@media (max-width: 1180px) {
	.pm-products-grid.columns-4,
	ul.products.columns-4,
	ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.pm-hero__grid {
		grid-template-columns: 1fr;
	}

	.pm-hero__visual {
		max-width: 780px;
	}

	.pm-shop-layout.has-filters {
		grid-template-columns: 1fr;
	}

	.pm-filter-toggle {
		display: inline-flex;
	}

	.pm-shop-filters {
		display: none;
	}

	.pm-shop-filters[hidden] {
		display: none !important;
	}

	.pm-shop-filters:not([hidden]) {
		display: block !important;
	}
}

@media (max-width: 960px) {
	h1 {
		font-size: 32px;
		line-height: 40px;
	}

	h2 {
		font-size: 24px;
		line-height: 32px;
	}

	.pm-container {
		width: min(calc(100% - 32px), var(--pm-container));
	}

	.pm-main {
		padding-block: 40px 64px;
	}

	.pm-announcement__inner span:last-child {
		display: none;
	}

	.pm-header-main__inner {
		grid-template-columns: auto 1fr auto;
		min-height: 72px;
		gap: 12px;
	}

	.pm-menu-toggle {
		display: inline-flex;
	}

	.pm-primary-nav {
		display: none;
	}

	.pm-brand {
		justify-content: center;
	}

	.pm-header-actions {
		gap: 6px;
	}

	.pm-header-actions .pm-icon-link:not(.pm-cart-link) {
		display: none;
	}

	.pm-search-form {
		align-items: stretch;
		flex-direction: column;
	}

	.pm-hero {
		padding-block: 48px 40px;
	}

	.pm-hero__grid,
	.pm-hero__visual,
	.pm-editorial-band__grid,
	.pm-content-layout,
	.pm-single-product__top,
	.woocommerce-checkout .col2-set,
	.woocommerce-account .woocommerce,
	.pm-footer-top {
		grid-template-columns: 1fr;
	}

	.pm-hero-card--large {
		min-height: 440px;
	}

	.pm-hero__visual {
		grid-template-columns: 1fr;
	}

	.pm-hero-stack {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pm-assurance__grid,
	.pm-category-grid,
	ul.products,
	.pm-products-grid.columns-4,
	ul.products.columns-4,
	.pm-footer-widgets {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pm-section {
		padding-block: 56px;
	}

	.pm-section-heading--split,
	.pm-shop-header {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.pm-post-card {
		grid-template-columns: 1fr;
	}

	.pm-post-card__media img {
		aspect-ratio: 16 / 9;
	}

	.pm-product-summary {
		position: static;
	}

	.pm-shop-toolbar,
	.pm-shop-toolbar__woo {
		align-items: stretch;
		flex-direction: column;
	}

	.woocommerce-ordering select {
		width: 100%;
	}

	.cart_totals {
		max-width: none;
	}
}

@media (max-width: 640px) {
	.pm-icon-button,
	.pm-icon-link {
		width: 40px;
		height: 40px;
	}

	.pm-brand__text {
		font-size: 20px;
		line-height: 28px;
	}

	.pm-hero__copy,
	.pm-section-heading {
		gap: 16px;
	}

	.pm-hero__lead,
	.pm-editorial-band p:last-child,
	.pm-page-header p,
	.woocommerce-products-header p {
		font-size: 16px;
		line-height: 24px;
	}

	.pm-hero__actions,
	.pm-empty-state__actions,
	.pm-footer-bottom,
	.coupon {
		align-items: stretch;
		flex-direction: column;
	}

	.pm-button,
	.button,
	button.button,
	input.button,
	.wp-element-button,
	.wc-block-components-button {
		width: 100%;
	}

	.pm-hero-card--large {
		min-height: 360px;
	}

	.pm-hero-stack,
	.pm-assurance__grid,
	.pm-category-grid,
	ul.products,
	.pm-products-grid.columns-4,
	ul.products.columns-4,
	.pm-footer-widgets {
		grid-template-columns: 1fr;
	}

	.pm-editorial-band__grid,
	.pm-entry,
	.pm-comments,
	.pm-empty-state,
	.cart_totals,
	.woocommerce-checkout-review-order,
	.woocommerce-billing-fields,
	.woocommerce-shipping-fields,
	.woocommerce-additional-fields,
	.woocommerce-form-login,
	.woocommerce-form-register,
	.woocommerce-tabs,
	.related.products,
	.up-sells.products,
	.pm-product-summary,
	.pm-product-gallery-panel {
		padding: 24px;
	}

	.pm-product-card__footer {
		grid-template-columns: 1fr;
	}

	.pm-product-card .button {
		width: 100%;
	}

	.shop_table,
	.shop_table tbody,
	.shop_table tr,
	.shop_table td {
		display: block;
		width: 100%;
	}

	.shop_table thead {
		display: none;
	}

	.shop_table tr {
		padding: 16px;
		border-bottom: 1px solid var(--pm-slate-100);
	}

	.shop_table td {
		padding: 8px 0;
		border: 0;
		text-align: left !important;
	}

	.shop_table td::before {
		content: attr(data-title);
		display: block;
		margin-bottom: 4px;
		color: var(--pm-slate-500);
		font-size: 12px;
		font-weight: 800;
		line-height: 16px;
		text-transform: uppercase;
		letter-spacing: 0;
	}

	.product-remove td::before,
	.product-thumbnail::before,
	.actions::before {
		content: "";
		display: none;
	}
}

/* High-Trust Commerce storefront from the Stitch MCP design. */
:root {
	--pm-surface: #f9f9f9;
	--pm-surface-dim: #dadada;
	--pm-surface-bright: #f9f9f9;
	--pm-surface-container-lowest: #ffffff;
	--pm-surface-container-low: #f3f3f3;
	--pm-surface-container: #eeeeee;
	--pm-surface-container-high: #e8e8e8;
	--pm-surface-container-highest: #e2e2e2;
	--pm-on-surface: #1a1c1c;
	--pm-on-surface-variant: #434747;
	--pm-inverse-surface: #2f3131;
	--pm-inverse-on-surface: #f1f1f1;
	--pm-outline: #747878;
	--pm-outline-variant: #c4c7c7;
	--pm-surface-tint: #5d5f5e;
	--pm-primary: #000000;
	--pm-on-primary: #ffffff;
	--pm-primary-container: #1a1c1c;
	--pm-on-primary-container: #838484;
	--pm-secondary: #8a5100;
	--pm-on-secondary: #ffffff;
	--pm-secondary-container: #fe9800;
	--pm-tertiary: #000000;
	--pm-error: #ba1a1a;
	--pm-error-container: #ffdad6;
	--pm-slate-900: #1a1c1c;
	--pm-slate-500: #747878;
	--pm-slate-200: #e2e2e2;
	--pm-slate-100: #eeeeee;
	--pm-shadow: 0 6px 18px rgba(26, 28, 28, 0.08);
	--pm-shadow-hover: 0 18px 36px rgba(26, 28, 28, 0.16);
	--pm-radius-sm: 4px;
	--pm-radius: 8px;
	--pm-radius-md: 8px;
	--pm-radius-lg: 8px;
	--pm-radius-xl: 8px;
	--pm-container: 1440px;
	--pm-gutter: 24px;
	--pm-section-gap: 64px;
	--pm-font-body: "Public Sans", "Inter", Arial, sans-serif;
	--pm-font-heading: "Public Sans", "Inter", Arial, sans-serif;
	--ht-background: #f9f9f9;
	--ht-surface: #ffffff;
	--ht-surface-low: #f3f3f3;
	--ht-surface-container: #eeeeee;
	--ht-surface-high: #e8e8e8;
	--ht-ink: #1a1c1c;
	--ht-ink-muted: #434747;
	--ht-outline: #c4c7c7;
	--ht-header: #1a1c1c;
	--ht-on-header: #ffffff;
	--ht-header-muted: #838484;
	--ht-amber: #fe9800;
	--ht-amber-deep: #643900;
	--ht-error: #ba1a1a;
	--ht-error-soft: #ffdad6;
	--ht-container: 1440px;
	--ht-gutter: 24px;
}

body {
	background: var(--ht-background);
	color: var(--ht-ink);
	font-family: var(--pm-font-body);
}

.material-symbols-outlined {
	font-size: 24px;
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
	line-height: 1;
}

.pm-page {
	background: var(--ht-background);
}

.ht-container {
	width: min(calc(100% - 48px), var(--ht-container));
	margin-inline: auto;
}

.ht-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--ht-header);
	color: var(--ht-on-header);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.ht-header-shell {
	width: min(calc(100% - 48px), var(--ht-container));
	margin-inline: auto;
	padding-block: 12px;
}

.ht-header-main {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 48px;
}

.ht-brand-row,
.ht-header-actions,
.ht-action-link,
.ht-delivery,
.ht-subnav,
.ht-side-nav__head,
.ht-side-nav__links a,
.ht-heading-with-timer,
.ht-countdown,
.ht-rating-row,
.ht-price-row,
.ht-footer__legal {
	display: flex;
	align-items: center;
}

.ht-brand-row {
	gap: 16px;
	flex: 0 0 auto;
}

.ht-brand {
	color: var(--ht-amber);
	font-family: var(--pm-font-heading);
	font-size: 32px;
	font-weight: 900;
	line-height: 40px;
	letter-spacing: 0;
}

.ht-brand:hover,
.ht-brand:focus,
.ht-subnav a:hover,
.ht-action-link:hover,
.ht-action-link:focus {
	color: var(--ht-amber);
}

.ht-menu-button,
.ht-side-nav__head button,
.ht-hero__control,
.ht-scroll-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: inherit;
}

.ht-menu-button {
	display: none;
	width: 40px;
	height: 40px;
	padding: 0;
	color: var(--ht-on-header);
}

.ht-search {
	display: flex;
	flex: 1 1 auto;
	max-width: 672px;
	min-width: 280px;
}

.ht-search input {
	width: 100%;
	height: 44px;
	border: 0;
	border-radius: 8px 0 0 8px;
	background: var(--ht-surface);
	color: var(--ht-ink);
	padding: 10px 16px;
	outline: 0;
}

.ht-search input:focus {
	box-shadow: inset 0 0 0 2px var(--ht-amber);
}

.ht-search button {
	width: 64px;
	height: 44px;
	border: 0;
	border-radius: 0 8px 8px 0;
	background: var(--ht-amber);
	color: var(--ht-amber-deep);
	transition: background 180ms ease, transform 180ms ease;
}

.ht-search button:hover,
.ht-search button:focus,
.ht-amber-button:hover,
.ht-amber-button:focus,
.ht-newsletter__form button:hover,
.ht-newsletter__form button:focus {
	background: #ffb86f;
	color: var(--ht-amber-deep);
}

.ht-header-actions {
	gap: 24px;
	margin-left: auto;
}

.ht-delivery {
	gap: 4px;
	color: var(--ht-on-header);
}

.ht-delivery span:last-child {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.ht-delivery small {
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	font-weight: 500;
	line-height: 16px;
}

.ht-delivery strong,
.ht-action-link {
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
}

.ht-action-link {
	position: relative;
	gap: 4px;
	color: var(--ht-on-header);
	transition: color 180ms ease, opacity 180ms ease;
}

.ht-cart-count {
	position: absolute;
	top: -8px;
	left: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border: 2px solid var(--ht-header);
	border-radius: 999px;
	background: var(--ht-amber);
	color: var(--ht-amber-deep);
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
}

.ht-subnav {
	gap: 24px;
	margin-top: 8px;
	overflow-x: auto;
	scrollbar-width: none;
}

.ht-subnav::-webkit-scrollbar,
.ht-scroller::-webkit-scrollbar {
	display: none;
}

.ht-subnav a {
	flex: 0 0 auto;
	padding-bottom: 4px;
	color: var(--ht-on-header);
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 0;
	transition: color 180ms ease;
}

.ht-subnav a.is-active {
	border-bottom: 2px solid var(--ht-amber);
	color: var(--ht-amber);
}

.ht-side-nav {
	position: fixed;
	inset: 0 auto 0 0;
	z-index: 70;
	display: flex;
	width: 320px;
	max-width: calc(100vw - 40px);
	flex-direction: column;
	background: var(--ht-background);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
	transform: translateX(-105%);
	transition: transform 260ms ease;
}

.ht-side-nav.is-open {
	transform: translateX(0);
}

.ht-side-nav__head {
	gap: 16px;
	padding: 16px;
	background: var(--ht-header);
	color: var(--ht-on-header);
}

.ht-side-nav__head p {
	color: var(--ht-on-header);
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
}

.ht-side-nav__head span:not(.material-symbols-outlined) {
	color: var(--ht-header-muted);
	font-size: 12px;
	line-height: 16px;
}

.ht-side-nav__head button {
	width: 36px;
	height: 36px;
	margin-left: auto;
}

.ht-side-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: var(--ht-surface-high);
	color: var(--ht-header);
}

.ht-side-nav__links {
	flex: 1 1 auto;
	padding-block: 16px;
	overflow-y: auto;
}

.ht-side-label {
	display: block;
	margin: 0 16px 4px;
	padding-bottom: 4px;
	border-bottom: 1px solid var(--ht-outline);
	color: var(--ht-ink-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 16px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.ht-side-nav__links a {
	gap: 16px;
	padding: 12px 16px;
	color: var(--ht-ink-muted);
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	transition: background 180ms ease, color 180ms ease;
}

.ht-side-nav__links a.is-active,
.ht-side-nav__links a:hover,
.ht-side-nav__links a:focus {
	background: var(--ht-surface-high);
	color: var(--ht-header);
}

.ht-side-nav__foot {
	padding: 16px;
	border-top: 1px solid var(--ht-outline);
}

.ht-overlay {
	position: fixed;
	inset: 0;
	z-index: 60;
	border: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	pointer-events: none;
	transition: opacity 260ms ease;
}

.ht-overlay.is-visible {
	opacity: 1;
	pointer-events: auto;
}

body.ht-side-nav-open {
	overflow: hidden;
}

.ht-home {
	width: 100%;
	min-height: 60vh;
	background: var(--ht-background);
	color: var(--ht-ink);
	font-family: var(--pm-font-body);
}

.ht-home h1,
.ht-home h2,
.ht-home h3,
.ht-footer h4 {
	color: inherit;
	font-family: var(--pm-font-heading);
	letter-spacing: 0;
}

.ht-hero {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	background: var(--ht-surface-container);
}

.ht-hero > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.75);
}

.ht-hero__content {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	padding-inline: var(--ht-gutter);
	color: var(--ht-on-header);
}

.ht-hero__panel {
	width: min(100%, 672px);
	padding: 32px;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(8px);
}

.ht-hero__panel h1 {
	margin-bottom: 16px;
	color: var(--ht-on-header);
	font-size: 56px;
	font-weight: 900;
	line-height: 64px;
}

.ht-hero__panel p {
	margin-bottom: 32px;
	color: var(--ht-on-header);
	font-size: 18px;
	line-height: 28px;
}

.ht-amber-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 32px;
	border: 0;
	border-radius: 8px;
	background: var(--ht-amber);
	color: var(--ht-amber-deep);
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
	text-align: center;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.ht-hero__panel .ht-amber-button:hover,
.ht-hero__panel .ht-amber-button:focus {
	transform: scale(1.04);
}

.ht-hero__control {
	position: absolute;
	top: 50%;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.2);
	color: #ffffff;
	transform: translateY(-50%);
	transition: background 180ms ease;
}

.ht-hero__control:hover,
.ht-hero__control:focus {
	background: rgba(255, 255, 255, 0.4);
	color: #ffffff;
}

.ht-hero__control--prev {
	left: 16px;
}

.ht-hero__control--next {
	right: 16px;
}

.ht-departments,
.ht-recommended {
	padding-block: 64px;
}

.ht-department-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.ht-department-card,
.ht-offer-card,
.ht-deal-card,
.ht-recommend-card {
	border: 1px solid var(--ht-outline);
	border-radius: 8px;
	background: var(--ht-surface);
	color: var(--ht-ink);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ht-department-card {
	display: flex;
	flex-direction: column;
	padding: 32px;
}

.ht-department-card:hover,
.ht-department-card:focus,
.ht-deal-card:hover,
.ht-deal-card:focus {
	box-shadow: var(--pm-shadow-hover);
	color: var(--ht-ink);
}

.ht-department-card h2,
.ht-offer-card h2 {
	margin-bottom: 16px;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
}

.ht-department-card__image {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	margin-bottom: 16px;
	overflow: hidden;
}

.ht-department-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.ht-department-card:hover img,
.ht-department-card:focus img {
	transform: scale(1.1);
}

.ht-text-link {
	color: var(--ht-amber-deep);
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
}

.ht-text-link:hover,
.ht-text-link:focus,
.ht-section-heading > .ht-text-link:hover,
.ht-section-heading > .ht-text-link:focus {
	color: var(--ht-amber-deep);
	text-decoration: underline;
}

.ht-offer-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 32px;
	border-color: var(--ht-header);
	background: var(--ht-header);
	color: var(--ht-on-header);
}

.ht-offer-card h2 {
	color: var(--ht-amber);
}

.ht-offer-card p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	line-height: 24px;
}

.ht-offer-card__discount {
	margin-top: 16px;
	padding: 16px;
	border-radius: 8px;
	background: rgba(249, 249, 249, 0.1);
}

.ht-offer-card__discount strong {
	display: block;
	color: var(--ht-on-header);
	font-size: 48px;
	font-weight: 900;
	line-height: 56px;
}

.ht-offer-card__discount span {
	display: block;
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.ht-offer-card .ht-amber-button {
	width: 100%;
	margin-top: 16px;
}

.ht-deals {
	padding-block: 64px;
	background: var(--ht-surface-container);
}

.ht-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 32px;
}

.ht-heading-with-timer {
	gap: 16px;
}

.ht-section-heading h2,
.ht-recommended h2,
.ht-newsletter h2 {
	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
}

.ht-countdown {
	gap: 4px;
	min-height: 32px;
	padding: 4px 16px;
	border-radius: 999px;
	background: var(--ht-error-soft);
	color: #93000a;
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
}

.ht-countdown .material-symbols-outlined {
	font-size: 18px;
}

.ht-deal-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
}

.ht-deal-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 16px;
}

.ht-deal-card__media {
	position: relative;
	display: block;
	height: 160px;
	margin-bottom: 12px;
}

.ht-deal-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 180ms ease;
}

.ht-deal-card:hover img,
.ht-deal-card:focus img {
	transform: scale(1.05);
}

.ht-sale-badge {
	position: absolute;
	top: 0;
	left: 0;
	padding: 2px 12px;
	border-radius: 4px;
	background: var(--ht-error);
	color: #ffffff;
	font-size: 10px;
	font-weight: 800;
	line-height: 16px;
}

.ht-deal-card h3 {
	display: -webkit-box;
	height: 40px;
	margin-bottom: 4px;
	overflow: hidden;
	color: var(--ht-ink);
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ht-rating-row {
	gap: 4px;
	margin-bottom: 4px;
	color: rgba(26, 28, 28, 0.6);
	font-size: 12px;
	line-height: 16px;
}

.ht-rating {
	display: inline-flex;
	color: var(--ht-amber);
}

.ht-rating .material-symbols-outlined {
	font-size: 16px;
}

.ht-rating .ht-star-fill {
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 20;
}

.ht-price-row {
	gap: 4px;
	margin-top: auto;
}

.ht-price-row strong {
	color: var(--ht-header);
	font-size: 24px;
	font-weight: 800;
	line-height: 32px;
}

.ht-price-row del {
	color: rgba(26, 28, 28, 0.5);
	font-size: 12px;
	line-height: 16px;
}

.ht-recommended h2 {
	margin-bottom: 32px;
}

.ht-scroller-wrap {
	position: relative;
}

.ht-scroller {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 16px;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.ht-recommend-card {
	flex: 0 0 200px;
	padding: 8px;
}

.ht-recommend-card:hover,
.ht-recommend-card:focus {
	border-color: var(--ht-amber);
	color: var(--ht-ink);
}

.ht-recommend-card img {
	width: 100%;
	height: 128px;
	margin-bottom: 12px;
	object-fit: contain;
}

.ht-recommend-card h3 {
	overflow: hidden;
	margin-bottom: 4px;
	color: var(--ht-ink);
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ht-recommend-card strong {
	color: var(--ht-header);
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
}

.ht-scroll-button {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 40px;
	height: 40px;
	border: 1px solid var(--ht-outline);
	border-radius: 999px;
	background: #ffffff;
	color: var(--ht-ink);
	box-shadow: var(--pm-shadow);
	transform: translateY(-50%);
	transition: background 180ms ease;
}

.ht-scroll-button:hover,
.ht-scroll-button:focus {
	background: var(--ht-surface-container);
	color: var(--ht-ink);
}

.ht-scroll-button--left {
	left: -16px;
}

.ht-scroll-button--right {
	right: -16px;
}

.ht-newsletter {
	padding-block: 64px;
	background: var(--ht-header);
	color: var(--ht-on-header);
	text-align: center;
}

.ht-newsletter .ht-container {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.ht-newsletter h2 {
	margin-bottom: 8px;
	color: var(--ht-on-header);
}

.ht-newsletter p {
	width: min(100%, 576px);
	margin-bottom: 32px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 18px;
	line-height: 28px;
}

.ht-newsletter__form {
	display: flex;
	width: min(100%, 512px);
	gap: 8px;
}

.ht-newsletter__form input {
	flex: 1 1 auto;
	min-width: 0;
	height: 44px;
	border: 0;
	border-radius: 8px;
	background: #ffffff;
	color: var(--ht-header);
	padding: 10px 16px;
	outline: 0;
}

.ht-newsletter__form input:focus {
	box-shadow: inset 0 0 0 2px var(--ht-amber);
}

.ht-newsletter__form button {
	height: 44px;
	border: 0;
	border-radius: 8px;
	background: var(--ht-amber);
	color: var(--ht-amber-deep);
	padding-inline: 24px;
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
}

.ht-footer {
	padding: 64px 24px;
	background: var(--ht-header);
	color: var(--ht-on-header);
}

.ht-footer__grid {
	display: grid;
	width: min(100%, var(--ht-container));
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 64px;
	margin-inline: auto;
	margin-bottom: 64px;
}

.ht-footer h4 {
	margin-bottom: 16px;
	color: var(--ht-amber);
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
}

.ht-footer__grid a {
	display: block;
	margin-bottom: 12px;
	color: var(--ht-header-muted);
	font-size: 12px;
	font-weight: 500;
	line-height: 16px;
	transition: color 180ms ease;
}

.ht-footer__grid a:hover,
.ht-footer__grid a:focus,
.ht-footer__legal a:hover,
.ht-footer__legal a:focus {
	color: var(--ht-on-header);
	text-decoration: underline;
}

.ht-footer__brand {
	width: min(100%, var(--ht-container));
	margin-inline: auto;
	padding-top: 32px;
	border-top: 1px solid var(--ht-outline);
	color: var(--ht-on-header);
	font-size: 24px;
	font-weight: 800;
	line-height: 32px;
	text-align: center;
}

.ht-footer__legal {
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 16px;
}

.ht-footer__legal a,
.ht-footer__copy {
	color: var(--ht-header-muted);
	font-size: 12px;
	line-height: 16px;
}

.ht-footer__copy {
	margin-top: 16px;
	text-align: center;
}

@media (max-width: 1180px) {
	.ht-header-main {
		gap: 16px;
	}

	.ht-delivery {
		display: none;
	}

	.ht-department-grid,
	.ht-deal-grid,
	.ht-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	:root {
		--ht-gutter: 16px;
	}

	.ht-header-shell {
		width: min(calc(100% - 32px), var(--ht-container));
	}

	.ht-container {
		width: min(calc(100% - 32px), var(--ht-container));
	}

	.ht-header-main {
		justify-content: space-between;
		min-height: 48px;
	}

	.ht-brand {
		font-size: 24px;
		line-height: 32px;
	}

	.ht-menu-button {
		display: inline-flex;
	}

	.ht-search,
	.ht-subnav,
	.ht-header-actions .ht-action-link span:last-child {
		display: none;
	}

	.ht-header-actions {
		gap: 12px;
		margin-left: 0;
	}

	.ht-hero {
		height: 300px;
	}

	.ht-hero__panel {
		width: min(100%, 520px);
		padding: 24px;
	}

	.ht-hero__panel h1 {
		font-size: 34px;
		line-height: 42px;
	}

	.ht-hero__panel p {
		margin-bottom: 20px;
		font-size: 16px;
		line-height: 24px;
	}

	.ht-hero__control {
		width: 40px;
		height: 40px;
	}

	.ht-departments,
	.ht-recommended,
	.ht-deals,
	.ht-newsletter,
	.ht-footer {
		padding-block: 48px;
	}

	.ht-department-grid,
	.ht-footer__grid {
		grid-template-columns: 1fr;
	}

	.ht-deal-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.ht-department-card,
	.ht-offer-card {
		padding: 24px;
	}

	.ht-offer-card__discount strong {
		font-size: 34px;
		line-height: 42px;
	}

	.ht-section-heading,
	.ht-heading-with-timer {
		align-items: flex-start;
		flex-direction: column;
	}

	.ht-section-heading h2,
	.ht-recommended h2,
	.ht-newsletter h2 {
		font-size: 28px;
		line-height: 36px;
	}

	.ht-price-row strong {
		font-size: 20px;
		line-height: 28px;
	}

	.ht-scroll-button--left {
		left: 0;
	}

	.ht-scroll-button--right {
		right: 0;
	}

	.ht-newsletter__form {
		flex-direction: column;
	}

	.ht-newsletter__form button {
		width: 100%;
	}

	.ht-footer__grid {
		gap: 24px;
		margin-bottom: 40px;
	}
}

@media (max-width: 420px) {
	.ht-header-shell,
	.ht-container {
		width: min(calc(100% - 24px), var(--ht-container));
	}

	.ht-brand {
		font-size: 22px;
		line-height: 30px;
	}

	.ht-header-actions {
		gap: 6px;
	}

	.ht-hero__panel {
		padding: 18px;
	}

	.ht-hero__panel h1 {
		font-size: 30px;
		line-height: 36px;
	}

	.ht-amber-button {
		width: 100%;
		padding-inline: 16px;
	}

	.ht-deal-card {
		padding: 12px;
	}

	.ht-deal-card__media {
		height: 132px;
	}
}

.ht-catalog {
	padding-block: 32px 80px;
	background: var(--ht-background);
}

.ht-catalog__layout {
	display: flex;
	align-items: flex-start;
	gap: 32px;
}

.ht-catalog-sidebar {
	position: sticky;
	top: 128px;
	display: flex;
	flex: 0 0 256px;
	flex-direction: column;
	gap: 40px;
}

.ht-catalog-sidebar h3 {
	margin-bottom: 16px;
	color: var(--ht-ink);
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
}

.ht-catalog-sidebar ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.ht-catalog-sidebar a,
.ht-catalog-sidebar label,
.ht-filter-rating,
.ht-filter-links {
	color: var(--ht-ink-muted);
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.ht-catalog-sidebar a:hover,
.ht-catalog-sidebar a:focus,
.ht-catalog-sidebar a.is-active,
.ht-filter-rating:hover,
.ht-filter-rating:focus {
	color: var(--ht-header);
}

.ht-catalog-sidebar a.is-active {
	font-weight: 800;
}

.ht-filter-rating,
.ht-filter-links,
.ht-catalog-sidebar label {
	display: flex;
}

.ht-filter-rating {
	align-items: center;
	gap: 4px;
	margin-bottom: 12px;
}

.ht-filter-rating .ht-rating .material-symbols-outlined {
	font-size: 16px;
}

.ht-filter-links {
	flex-direction: column;
	gap: 12px;
	margin-bottom: 16px;
}

.ht-price-filter {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ht-price-filter input {
	width: 64px;
	height: 32px;
	border: 1px solid var(--ht-outline);
	border-radius: 4px;
	background: var(--ht-surface);
	color: var(--ht-ink);
	padding: 6px 8px;
	font-size: 12px;
	line-height: 16px;
}

.ht-price-filter button {
	height: 32px;
	border: 1px solid var(--ht-outline);
	border-radius: 4px;
	background: var(--ht-surface-high);
	color: var(--ht-ink);
	padding-inline: 12px;
	font-size: 12px;
	font-weight: 800;
	line-height: 16px;
}

.ht-catalog-sidebar label {
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	cursor: pointer;
}

.ht-catalog-sidebar input[type="checkbox"] {
	width: 16px;
	height: 16px;
	accent-color: var(--ht-amber);
}

.ht-catalog-results {
	flex: 1 1 auto;
	min-width: 0;
}

.ht-catalog-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
	padding: 16px;
	border: 1px solid var(--ht-outline);
	border-radius: 8px;
	background: var(--ht-surface);
	box-shadow: var(--pm-shadow);
}

.ht-filter-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	border: 1px solid var(--ht-outline);
	border-radius: 8px;
	background: var(--ht-surface);
	color: var(--ht-ink);
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
}

.ht-result-count {
	color: var(--ht-ink);
	font-size: 16px;
	line-height: 24px;
}

.ht-result-count strong,
.ht-result-count span {
	font-weight: 800;
}

.ht-result-count span {
	color: var(--ht-amber-deep);
}

.ht-sort {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--ht-ink-muted);
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.ht-sort .woocommerce-ordering {
	margin: 0;
}

.ht-sort select,
.woocommerce-ordering select {
	height: 36px;
	border: 0;
	border-radius: 8px;
	background: var(--ht-surface-low);
	color: var(--ht-ink);
	padding: 6px 32px 6px 12px;
	font-size: 14px;
	line-height: 20px;
}

.ht-catalog-product-grid ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.ht-catalog-product-grid ul.products::before,
.ht-catalog-product-grid ul.products::after,
.ht-product-related ul.products::before,
.ht-product-related ul.products::after {
	content: none !important;
	display: none !important;
}

ul.products li.product.ht-catalog-card,
.related.products ul.products li.product.ht-catalog-card {
	display: flex;
	float: none !important;
	overflow: hidden;
	width: auto !important;
	min-width: 0;
	flex-direction: column;
	margin: 0 !important;
	border: 1px solid var(--ht-outline);
	border-radius: 8px;
	background: var(--ht-surface);
	box-shadow: var(--pm-shadow);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

ul.products li.product.ht-catalog-card:hover,
ul.products li.product.ht-catalog-card:focus-within {
	border-color: var(--ht-amber);
	box-shadow: var(--pm-shadow-hover);
	transform: translateY(-4px);
}

.ht-catalog-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #ffffff;
	padding: 32px;
}

.ht-catalog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
	transition: transform 180ms ease;
}

.ht-catalog-card:hover .ht-catalog-card__media img {
	transform: scale(1.05);
}

.ht-catalog-card__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 4px 8px;
	border-radius: 4px;
	background: var(--ht-amber);
	color: var(--ht-amber-deep);
	font-size: 12px;
	font-weight: 800;
	line-height: 16px;
}

.ht-catalog-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 12px;
	padding: 16px;
}

.ht-catalog-card__title {
	display: -webkit-box;
	min-height: 48px;
	margin: 0;
	overflow: hidden;
	color: var(--ht-ink);
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ht-catalog-card__title a {
	color: inherit;
}

.ht-catalog-card__title a:hover,
.ht-catalog-card__title a:focus {
	color: var(--ht-amber-deep);
}

.ht-catalog-card__rating {
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--ht-amber-deep);
	font-size: 12px;
	line-height: 16px;
}

.ht-catalog-card__price,
.ht-product-price,
.ht-product-buybox__price {
	color: var(--ht-header);
	font-size: 28px;
	font-weight: 800;
	line-height: 32px;
}

.ht-catalog-card__price del,
.ht-product-price del,
.ht-product-buybox__price del {
	display: block;
	color: rgba(26, 28, 28, 0.55);
	font-size: 12px;
	font-weight: 500;
	line-height: 16px;
}

.ht-catalog-card__price ins,
.ht-product-price ins,
.ht-product-buybox__price ins {
	text-decoration: none;
}

.ht-catalog-card__delivery {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: auto;
	padding-top: 8px;
	border-top: 1px solid var(--ht-surface-container);
	color: var(--ht-ink-muted);
	font-size: 12px;
	line-height: 16px;
}

.ht-catalog-card__delivery .material-symbols-outlined {
	float: left;
	margin-right: 4px;
	color: var(--ht-ink-muted);
	font-size: 18px;
}

.ht-catalog-card__delivery strong {
	color: var(--ht-ink-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 16px;
}

.ht-catalog-product-grid .woocommerce-pagination {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid var(--ht-outline);
}

.woocommerce-pagination ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	padding: 0;
	margin: 0;
	border: 0;
	list-style: none;
}

.woocommerce-pagination ul.page-numbers li {
	border: 0;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	border-radius: 8px;
	color: var(--ht-ink);
	font-weight: 700;
}

.woocommerce-pagination .page-numbers .current {
	background: var(--ht-header);
	color: var(--ht-on-header);
}

.woocommerce-pagination .page-numbers a:hover,
.woocommerce-pagination .page-numbers a:focus {
	background: var(--ht-surface-high);
	color: var(--ht-ink);
}

.ht-product-page {
	padding-block: 40px 80px;
	background: var(--ht-background);
}

.ht-product-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 32px;
	color: var(--ht-ink-muted);
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
}

.ht-product-breadcrumbs a:hover,
.ht-product-breadcrumbs a:focus {
	color: var(--ht-amber-deep);
	text-decoration: underline;
}

.ht-product-breadcrumbs span:last-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ht-product-detail__grid {
	display: grid;
	grid-template-columns: minmax(0, 4fr) minmax(0, 5fr) minmax(280px, 3fr);
	gap: 40px;
	align-items: start;
}

.ht-product-gallery {
	display: flex;
	gap: 16px;
}

.ht-product-gallery__thumbs {
	display: flex;
	flex: 0 0 64px;
	flex-direction: column;
	gap: 8px;
}

.ht-product-gallery__thumbs button {
	width: 64px;
	height: 64px;
	padding: 4px;
	border: 1px solid var(--ht-outline);
	border-radius: 8px;
	background: #ffffff;
	overflow: hidden;
}

.ht-product-gallery__thumbs button.is-active,
.ht-product-gallery__thumbs button:hover,
.ht-product-gallery__thumbs button:focus {
	border: 2px solid var(--ht-amber-deep);
}

.ht-product-gallery__thumbs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ht-product-gallery__main {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	width: 100%;
	border: 1px solid var(--ht-outline);
	border-radius: 8px;
	background: #ffffff;
	padding: 16px;
	box-shadow: var(--pm-shadow);
	overflow: hidden;
}

.ht-product-gallery__image,
.ht-product-gallery__main img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ht-product-info {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 16px;
}

.ht-product-kicker {
	color: var(--ht-ink-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 16px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.ht-product-info h1 {
	color: var(--ht-header);
	font-size: 32px;
	font-weight: 800;
	line-height: 40px;
	letter-spacing: 0;
}

.ht-product-brand-link,
.ht-product-rating-row a {
	color: var(--ht-amber-deep);
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
}

.ht-product-brand-link:hover,
.ht-product-brand-link:focus,
.ht-product-rating-row a:hover,
.ht-product-rating-row a:focus {
	text-decoration: underline;
}

.ht-product-rating-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.ht-product-info hr {
	width: 100%;
	height: 1px;
	border: 0;
	background: var(--ht-outline);
}

.ht-product-price-block {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 12px;
}

.ht-product-discount {
	color: var(--ht-error);
	font-size: 32px;
	font-weight: 800;
	line-height: 40px;
}

.ht-product-choice {
	display: flex;
	align-items: center;
	gap: 16px;
	border-radius: 8px;
	background: var(--ht-surface-low);
	padding: 16px;
}

.ht-product-choice span {
	border-radius: 999px;
	background: var(--ht-header);
	color: var(--ht-on-header);
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 800;
	line-height: 16px;
}

.ht-product-choice strong {
	color: var(--ht-ink);
	font-size: 14px;
	line-height: 20px;
}

.ht-product-about h3,
.ht-product-description h2,
.ht-product-reviews h2,
.ht-product-related h2 {
	margin-bottom: 16px;
	color: var(--ht-header);
	font-size: 32px;
	font-weight: 800;
	line-height: 40px;
	letter-spacing: 0;
}

.ht-product-about h3 {
	font-size: 16px;
	line-height: 24px;
}

.ht-product-about ul {
	margin: 0;
	padding-left: 20px;
	color: var(--ht-ink);
	font-size: 16px;
	line-height: 24px;
}

.ht-product-about li + li {
	margin-top: 8px;
}

.ht-product-buybox__inner {
	position: sticky;
	top: 128px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	border: 1px solid var(--ht-outline);
	border-radius: 8px;
	background: #ffffff;
	padding: 16px;
	box-shadow: var(--pm-shadow);
}

.ht-product-buybox__delivery {
	color: var(--ht-ink);
	font-size: 16px;
	line-height: 24px;
}

.ht-product-buybox__delivery p + p {
	margin-top: 8px;
}

.ht-product-buybox__delivery strong {
	color: var(--ht-amber-deep);
}

.ht-product-location {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--ht-amber-deep);
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
}

.ht-product-stock {
	color: #004e5d;
	font-size: 20px;
	font-weight: 800;
	line-height: 28px;
}

.ht-product-cart-form form.cart {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
}

.ht-product-cart-form .quantity {
	width: 100%;
}

.ht-product-cart-form .quantity .qty {
	width: 100%;
	height: 44px;
	border: 1px solid var(--ht-outline);
	border-radius: 8px;
	text-align: center;
}

.ht-product-cart-form .single_add_to_cart_button,
.ht-buy-now {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	border: 0;
	border-radius: 999px;
	background: var(--ht-amber);
	color: var(--ht-amber-deep);
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
	text-align: center;
}

.ht-product-cart-form .single_add_to_cart_button.button,
.ht-product-cart-form .single_add_to_cart_button.button.alt {
	background: var(--ht-amber) !important;
	color: var(--ht-amber-deep) !important;
}

.ht-product-cart-form .single_add_to_cart_button:hover,
.ht-product-cart-form .single_add_to_cart_button:focus,
.ht-buy-now:hover,
.ht-buy-now:focus {
	background: #ffb86f;
	color: var(--ht-amber-deep);
}

.ht-buy-now {
	margin-top: 12px;
	background: #ffa41c;
}

.ht-product-seller {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0;
	color: var(--ht-ink-muted);
	font-size: 12px;
	line-height: 16px;
}

.ht-product-seller div {
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.ht-product-seller dt,
.ht-product-seller dd {
	margin: 0;
}

.ht-product-seller dd {
	color: var(--ht-ink);
	text-align: right;
}

.ht-gift-receipt {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: var(--ht-ink);
	font-size: 14px;
	line-height: 20px;
}

.ht-gift-receipt input {
	accent-color: var(--ht-amber);
}

.ht-product-related {
	margin-top: 64px;
}

.ht-product-related .related.products {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.ht-product-related .related.products > h2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ht-product-related ul.products {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 24px;
	padding: 0;
	margin: 0;
}

.ht-product-related .ht-catalog-card__media {
	padding: 16px;
}

.ht-product-related .ht-catalog-card__title {
	font-size: 14px;
	line-height: 20px;
}

.ht-product-related .ht-catalog-card__price {
	font-size: 20px;
	line-height: 28px;
}

.ht-product-lower {
	display: grid;
	grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
	gap: 64px;
	margin-top: 64px;
	padding-top: 64px;
	border-top: 1px solid var(--ht-outline);
}

.ht-product-description {
	color: var(--ht-ink);
	font-size: 16px;
	line-height: 24px;
}

.ht-product-description p + p,
.ht-product-description ul + p,
.ht-product-description p + ul {
	margin-top: 16px;
}

.ht-product-reviews {
	border-left: 1px solid var(--ht-outline);
	padding-left: 40px;
}

.ht-product-reviews__score {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 16px;
}

.ht-product-reviews__score strong {
	color: var(--ht-header);
	font-size: 20px;
	line-height: 28px;
}

.ht-product-reviews > p {
	margin-bottom: 32px;
	color: var(--ht-ink-muted);
	font-size: 14px;
	line-height: 20px;
}

.ht-rating-bars {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ht-rating-bars div {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) 40px;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	line-height: 20px;
}

.ht-rating-bars i {
	display: block;
	height: 20px;
	overflow: hidden;
	border-radius: 4px;
	background: var(--ht-surface-high);
}

.ht-rating-bars b {
	display: block;
	height: 100%;
	background: var(--ht-amber);
}

.ht-rating-bars em {
	font-style: normal;
	text-align: right;
}

.ht-review-cta {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--ht-outline);
}

.ht-review-cta h3 {
	margin-bottom: 12px;
	color: var(--ht-header);
	font-size: 20px;
	line-height: 28px;
}

.ht-review-cta p {
	margin-bottom: 24px;
}

.ht-review-cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 40px;
	border: 1px solid var(--ht-outline);
	border-radius: 8px;
	color: var(--ht-ink);
	font-weight: 800;
}

.ht-review-cta a:hover,
.ht-review-cta a:focus {
	background: var(--ht-surface-low);
}

@media (max-width: 1180px) {
	.ht-catalog-product-grid ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ht-product-detail__grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}

	.ht-product-gallery {
		grid-column: span 5;
	}

	.ht-product-info {
		grid-column: span 7;
	}

	.ht-product-buybox {
		grid-column: 1 / -1;
	}

	.ht-product-buybox__inner {
		position: static;
	}

	.ht-product-related ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.ht-catalog__layout {
		flex-direction: column;
	}

	.ht-catalog-sidebar {
		position: static;
		display: none;
		width: 100%;
		flex: none;
		padding: 16px;
		border: 1px solid var(--ht-outline);
		border-radius: 8px;
		background: var(--ht-surface);
	}

	body.pm-filters-open .ht-catalog-sidebar:not([hidden]) {
		display: flex;
	}

	.ht-filter-toggle {
		display: inline-flex;
	}

	.ht-catalog-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.ht-sort {
		justify-content: space-between;
	}
}

@media (max-width: 767px) {
	.ht-catalog,
	.ht-product-page {
		padding-block: 24px 56px;
	}

	.ht-catalog-product-grid ul.products,
	.ht-product-related ul.products {
		grid-template-columns: 1fr;
	}

	.ht-product-detail__grid,
	.ht-product-lower {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.ht-product-gallery,
	.ht-product-info,
	.ht-product-buybox {
		grid-column: auto;
	}

	.ht-product-gallery {
		flex-direction: column-reverse;
	}

	.ht-product-gallery__thumbs {
		flex-direction: row;
		flex-basis: auto;
		overflow-x: auto;
	}

	.ht-product-info h1,
	.ht-product-about h3,
	.ht-product-description h2,
	.ht-product-reviews h2,
	.ht-product-related h2 {
		font-size: 24px;
		line-height: 32px;
	}

	.ht-product-about h3 {
		font-size: 16px;
		line-height: 24px;
	}

	.ht-product-lower {
		margin-top: 40px;
		padding-top: 40px;
	}

	.ht-product-reviews {
		border-left: 0;
		padding-left: 0;
	}
}

/* Cart & Checkout responsive */
@media (max-width: 960px) {
	.woocommerce .cart-collaterals {
		display: flow-root;
	}

	.woocommerce .cart_totals {
		max-width: none;
		float: none;
		width: 100%;
		margin-left: 0;
	}

	.woocommerce .cart_totals table {
		width: 100%;
	}

	.woocommerce .wc-proceed-to-checkout {
		text-align: center;
	}

	.woocommerce .wc-proceed-to-checkout .checkout-button {
		width: 100%;
		margin-bottom: 12px;
	}

	.woocommerce .coupon {
		display: flex;
		gap: 12px;
	}

	.woocommerce .coupon .input-text {
		width: auto;
		flex: 1;
	}
}

@media (max-width: 767px) {
	.woocommerce .cart {
		display: block;
		width: 100%;
		overflow: hidden;
	}

	.woocommerce .cart thead {
		display: none;
	}

	.woocommerce .cart tbody,
	.woocommerce .cart tr,
	.woocommerce .cart td {
		display: block;
		width: 100%;
	}

	.woocommerce .cart tr {
		padding: 20px 0;
		border-bottom: 1px solid var(--pm-outline-variant);
		position: relative;
	}

	.woocommerce .cart td {
		padding: 4px 0;
		border: 0;
		text-align: right !important;
	}

	.woocommerce .cart td::before {
		content: attr(data-title) ":" ;
		float: left;
		font-weight: 600;
		font-size: 13px;
		color: var(--pm-on-surface-variant);
		text-transform: none;
		letter-spacing: normal;
	}

	.woocommerce .cart td.product-thumbnail {
		text-align: center !important;
		padding: 0 0 12px;
	}

	.woocommerce .cart td.product-thumbnail::before,
	.woocommerce .cart td.product-remove::before,
	.woocommerce .cart td.actions::before {
		display: none;
	}

	.woocommerce .cart td.product-thumbnail img {
		width: 120px;
		height: auto;
	}

	.woocommerce .cart td.product-remove {
		position: absolute;
		top: 12px;
		right: 0;
		text-align: right !important;
	}

	.woocommerce .cart .product-name {
		text-align: left !important;
		padding-right: 40px;
	}

	.woocommerce .cart .product-name a {
		font-size: 15px;
	}

	.woocommerce .cart .actions {
		display: flex;
		flex-direction: column;
		gap: 12px;
		text-align: center !important;
		padding-top: 12px;
	}

	.woocommerce .cart .coupon {
		display: flex;
		flex-direction: column;
		gap: 8px;
		width: 100%;
	}

	.woocommerce .cart .coupon .input-text {
		width: 100%;
		max-width: none;
	}

	.woocommerce .cart .coupon button,
	.woocommerce .cart .actions > button {
		width: 100%;
	}

	.woocommerce .cart-collaterals {
		margin-top: 24px;
	}

	.woocommerce .cart_totals {
		padding: 20px;
	}

	.woocommerce .cart_totals table td,
	.woocommerce .cart_totals table th {
		padding: 10px 16px;
	}

	.woocommerce .wc-proceed-to-checkout {
		padding: 16px 0;
	}

	.woocommerce .wc-proceed-to-checkout .checkout-button {
		width: 100%;
		font-size: 16px;
		padding: 16px 24px;
	}
}

@media (max-width: 420px) {
	.woocommerce .cart td.product-thumbnail img {
		width: 80px;
	}

	.woocommerce .cart_totals {
		padding: 12px;
	}

	.woocommerce .cart_totals table td,
	.woocommerce .cart_totals table th {
		padding: 6px 12px;
		font-size: 13px;
	}
}
