:root {
	--hewc-accent: #4DC0D1;
	--hewc-accent-dark: #23B2C7;
	--hewc-text: #242424;
	--hewc-muted: #777;
	--hewc-border: #e8e8e8;
}

.hewc-product-grid {
	display: grid;
	grid-template-columns: repeat(var(--hewc-columns, 4), minmax(0, 1fr));
	gap: 20px;
}

.hewc-product-card {
	position: relative;
	min-width: 0;
	margin: 0;
	background: #fff;
	text-align: center;
}

.hewc-product-card__media {
	position: relative;
	overflow: hidden;
	background: #f7f7f7;
}

.hewc-product-card__image {
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.hewc-product-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 400ms ease;
}

.hewc-product-card:hover .hewc-product-card__image img { transform: none; }

.hewc-product-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	display: grid;
	place-items: center;
	min-width: 48px;
	height: 48px;
	padding: 5px;
	color: #fff;
	background: var(--hewc-accent);
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
}

.hewc-product-card__wishlist {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	color: #333;
	background: #fff;
	border: 0;
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
	cursor: pointer;
	transition: color 180ms ease, transform 180ms ease;
}

.hewc-product-card__wishlist svg {
	width: 21px;
	height: 21px;
	fill: transparent;
	stroke: currentColor;
	stroke-width: 1.8;
	transition: fill 180ms ease;
}

.hewc-product-card__wishlist:hover,
.hewc-product-card__wishlist:focus-visible,
.hewc-product-card__wishlist.is-active { color: #e53935; transform: scale(1.08); }
.hewc-product-card__wishlist:hover svg,
.hewc-product-card__wishlist:focus-visible svg,
.hewc-product-card__wishlist.is-active svg { fill: currentColor; }

.hewc-product-card__content { padding: 14px 2px 2px; }
.hewc-product-card__title { margin: 0 0 7px; font-size: 15px; font-weight: 600; line-height: 1.4; }
.hewc-product-card__title a { color: var(--hewc-text); text-decoration: none; }
.hewc-product-card__title a:hover { color: var(--hewc-accent); }
.hewc-product-card .star-rating { float: none; margin: 0 auto 8px; color: #f3b600; font-size: 12px; }

.hewc-product-card__price {
	display: block;
	min-height: 24px;
	margin-bottom: 12px;
	color: var(--hewc-accent);
	font-size: 15px;
	font-weight: 700;
}
.hewc-product-card__price del { color: #b1b1b1; font-size: .88em; font-weight: 400; }
.hewc-product-card__price ins { text-decoration: none; }

.hewc-product-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hewc-product-card .hewc-product-card__button,
.hewc-product-card .hewc-product-card__buy-now {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	width: 100%;
	margin: 0;
	padding: 12px 14px;
	border: 1px solid var(--hewc-accent);
	border-radius: 3px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.hewc-product-card .hewc-product-card__button { color: var(--hewc-accent); background: #fff; }
.hewc-product-card .hewc-product-card__buy-now { color: #fff; background: var(--hewc-accent); }
.hewc-shop-page .hewc-product-card .hewc-product-card__button:hover,
.hewc-product-card .hewc-product-card__button:focus { color: #fff; background: var(--hewc-accent); border-color: var(--hewc-accent); }
.hewc-shop-page .hewc-product-card .hewc-product-card__buy-now:hover,
.hewc-product-card .hewc-product-card__buy-now:focus { color: #fff; background: var(--hewc-accent-dark); border-color: var(--hewc-accent-dark); }
.hewc-product-card.is-added .hewc-product-card__button { color: #fff; background: var(--hewc-accent); }

@media (max-width: 1024px) {
	.hewc-products .hewc-product-grid { grid-template-columns: repeat(min(2, var(--hewc-columns, 4)), minmax(0, 1fr)); }
}
@media (max-width: 600px) {
	.hewc-products .hewc-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
	.hewc-product-card__actions { grid-template-columns: 1fr 1fr; gap: 7px; }
	.hewc-product-card .hewc-product-card__button,
	.hewc-product-card .hewc-product-card__buy-now { min-height: 42px; padding: 10px 8px; font-size: 11px; }
	.hewc-product-card__badge { min-width: 40px; height: 40px; }
	.hewc-product-card__wishlist { width: 38px; height: 38px; }
}
/* Custom WooCommerce homepage */
.hewc-home { overflow: hidden; color: var(--hewc-text); }
.hewc-home-container { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }
.hewc-home-hero { position: relative; isolation: isolate; background-color: #242424; background-position: center; background-repeat: no-repeat; background-size: cover; }
.hewc-home-hero::before { content: ''; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .38) 52%, rgba(0, 0, 0, .08) 100%); }
.hewc-home-hero__inner { position: relative; display: flex; align-items: center; min-height: 610px; padding-block: 70px; }
.hewc-home-hero__content { position: relative; z-index: 2; max-width: 640px; color: #fff; }
.hewc-home-eyebrow,
.hewc-home-heading span { display: block; margin-bottom: 10px; color: var(--hewc-accent-dark); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hewc-home-hero h1 { max-width: 650px; margin: 0 0 22px; font-size: clamp(42px, 5.5vw, 76px); line-height: 1.02; letter-spacing: -.045em; }
.hewc-home-hero p { max-width: 580px; margin: 0 0 32px; color: rgba(255, 255, 255, .88); font-size: 18px; line-height: 1.75; }
.hewc-home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hewc-home-button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 25px; border: 1px solid var(--hewc-accent); border-radius: 4px; font-size: 14px; font-weight: 800; text-decoration: none; }
.hewc-home-button--primary { color: #fff; background: var(--hewc-accent); }
.hewc-home-button--primary:hover { color: #fff; background: var(--hewc-accent-dark); }
.hewc-home-button--ghost { color: var(--hewc-accent-dark); background: transparent; }
.hewc-home-button--ghost:hover { color: #fff; background: var(--hewc-accent); }
.hewc-home-hero__visual { position: relative; align-self: stretch; min-height: 470px; overflow: hidden; border-radius: 48% 48% 8px 8px; box-shadow: 0 25px 60px rgba(52, 73, 28, .14); }
.hewc-home-hero__visual img { width: 100%; height: 100%; object-fit: contain; }
.hewc-home-section { padding-block: 88px; }
.hewc-home-section.is-tinted { background: #f7f8f4; }
.hewc-home-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.hewc-home-heading h2 { margin: 0; font-size: clamp(28px, 3vw, 42px); line-height: 1.15; letter-spacing: -.025em; }
.hewc-home-heading a { flex: none; padding-bottom: 4px; color: var(--hewc-text); border-bottom: 1px solid #bbb; font-size: 13px; font-weight: 700; text-decoration: none; }
.hewc-home-heading a:hover { color: var(--hewc-accent-dark); border-color: var(--hewc-accent); }
.hewc-category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.hewc-category-card { color: var(--hewc-text); text-align: center; text-decoration: none; }
.hewc-category-card__image { display: block; aspect-ratio: 1; margin-bottom: 16px; overflow: hidden; border-radius: 50%; background: #f3f3f3; }
.hewc-category-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.hewc-category-card:hover .hewc-category-card__image img { transform: scale(1.06); }
.hewc-category-card strong { display: block; margin-bottom: 3px; font-size: 17px; }
.hewc-category-card small { color: var(--hewc-muted); font-size: 12px; }
.hewc-product-carousel {
	--hewc-carousel-items: 4;
	--hewc-carousel-gap: 20px;
	position: relative;
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 44px;
	align-items: center;
	gap: 12px;
}
.hewc-product-carousel__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - (var(--hewc-carousel-gap) * (var(--hewc-carousel-items) - 1))) / var(--hewc-carousel-items));
	gap: var(--hewc-carousel-gap);
	overflow-x: auto;
	padding: 2px 0 8px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.hewc-product-carousel__track::-webkit-scrollbar { display: none; }
.hewc-product-carousel__item { min-width: 0; scroll-snap-align: start; }
.hewc-product-carousel__nav {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	color: var(--hewc-text);
	background: #fff;
	border: 1px solid var(--hewc-border);
	border-radius: 50%;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.hewc-product-carousel__nav:hover,
.hewc-product-carousel__nav:focus-visible { color: #fff; background: var(--hewc-accent); border-color: var(--hewc-accent); }
.hewc-category-carousel {
	--hewc-carousel-items: 4;
	--hewc-carousel-gap: 22px;
	position: relative;
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 44px;
	align-items: center;
	gap: 12px;
}
.hewc-category-carousel__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - (var(--hewc-carousel-gap) * (var(--hewc-carousel-items) - 1))) / var(--hewc-carousel-items));
	gap: var(--hewc-carousel-gap);
	overflow-x: auto;
	padding: 2px 0 8px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.hewc-category-carousel__track::-webkit-scrollbar { display: none; }
.hewc-category-carousel__item {
	min-width: 0;
	scroll-snap-align: start;
	background: #4DC0D1;
	border-radius: 19px;
	font-weight: 500;
}
.hewc-category-carousel__nav {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	color: var(--hewc-text);
	background: #fff;
	border: 1px solid var(--hewc-border);
	border-radius: 50%;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.hewc-category-carousel__nav:hover,
.hewc-category-carousel__nav:focus-visible { color: #fff; background: var(--hewc-accent); border-color: var(--hewc-accent); }
@media (max-width: 1024px) {
	.hewc-product-carousel { --hewc-carousel-gap: 14px; }
	.hewc-category-carousel { --hewc-carousel-gap: 14px; }
}
@media (max-width: 700px) {
	.hewc-product-carousel,
	.hewc-category-carousel { grid-template-columns: 1fr; }
	.hewc-product-carousel__track { --hewc-carousel-gap: 12px; }
	.hewc-category-carousel__track { --hewc-carousel-gap: 14px; }
	.hewc-product-carousel__nav,
	.hewc-category-carousel__nav { display: none; }
}
.hewc-home-featured { background: #fbfbfa; }
.hewc-home .hewc-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); row-gap: 42px; }

@media (max-width: 1024px) {
	.hewc-home-hero__inner { min-height: 540px; }
	.hewc-home-hero__visual { min-height: 400px; }
	.hewc-category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
	.hewc-home .hewc-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
	.hewc-home-container { width: min(100% - 24px, 1240px); }
	.hewc-home-hero__inner { min-height: 480px; padding-block: 55px; }
	.hewc-home-hero__visual { min-height: 390px; order: -1; }
	.hewc-home-hero h1 { font-size: 43px; }
	.hewc-home-hero p { font-size: 16px; }
	.hewc-home-section { padding-block: 60px; }
	.hewc-home-heading { align-items: flex-start; margin-bottom: 26px; }
	.hewc-home-heading a { display: none; }
	.hewc-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 14px; }
	.hewc-home .hewc-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 12px; }
}
/* Leafsy-inspired global header and footer */
.hewc-header-container,
.hewc-footer-container { width: min(1220px, calc(100% - 32px)); margin-inline: auto; }

.hewc-site-header { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; background: #fff; color: var(--hewc-text); box-shadow: 0 1px 0 rgba(0, 0, 0, .06); }
body { padding-top: 68px; }
.admin-bar .hewc-site-header { top: 32px; }
.hewc-site-header a { color: inherit; text-decoration: none; }
.hewc-header-top { border-bottom: 1px solid var(--hewc-border); color: #666; background: #fafafa; font-size: 12px; }
.hewc-header-top__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 38px; gap: 20px; }
.hewc-header-top__inner p { margin: 0; color: var(--hewc-accent-dark); font-weight: 800; letter-spacing: .04em; text-align: center; }
.hewc-header-top__links,
.hewc-header-social { display: flex; align-items: center; gap: 16px; }
.hewc-header-social { justify-content: flex-end; }
.hewc-header-social a { display: grid; place-items: center; min-width: 22px; height: 22px; border-radius: 50%; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.hewc-header-top a:hover { color: var(--hewc-accent-dark); }

.hewc-header-main__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; min-height: 68px; gap: 24px; }
.hewc-header-brand { min-width: 170px; }
.hewc-header-logo,
.hewc-footer-title { color: var(--hewc-text); font-size: 30px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.hewc-header-brand img { display: block; max-height: 48px; width: auto; }
.hewc-footer-logo img { display: block; max-height: 58px; width: auto; }
.hewc-header-nav { justify-self: center; }
.hewc-primary-menu,
.hewc-mobile-menu,
.hewc-footer-menu,
.hewc-footer-posts,
.hewc-footer-contact { margin: 0; padding: 0; list-style: none; }
.hewc-primary-menu { display: flex; align-items: center; justify-content: center; gap: 34px; }
.hewc-primary-menu a { display: inline-flex; align-items: center; min-height: 38px; font-size: 14px; font-weight: 800; text-transform: uppercase; }
.hewc-primary-menu a:hover,
.hewc-primary-menu .current-menu-item > a { color: var(--hewc-accent-dark); }
.hewc-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 13px; }
.hewc-header-action,
.hewc-header-icon { position: relative; display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0; color: #252525; background: transparent; border: 0; }
.hewc-header-action svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hewc-header-action:hover { color: var(--hewc-accent-dark); }
.hewc-header-account { gap: 8px; min-width: 0; font-size: 13px; font-weight: 700; }
.hewc-header-count { position: absolute; top: 0; right: 0; display: grid; place-items: center; min-width: 17px; height: 17px; padding: 0 4px; color: #fff; background: var(--hewc-accent); border-radius: 999px; font-size: 10px; font-weight: 800; line-height: 1; }
.hewc-cart-label { margin-left: 5px; font-size: 13px; font-weight: 800; }
.hewc-mobile-toggle { display: none; }
.hewc-mobile-toggle span:not(.screen-reader-text) { display: block; width: 22px; height: 2px; margin: 3px 0; background: currentColor; }

.hewc-mobile-panel { position: fixed; inset: 0 auto 0 0; z-index: 1001; width: min(360px, 86vw); overflow-y: auto; background: #fff; box-shadow: 20px 0 60px rgba(0, 0, 0, .18); }
.hewc-mobile-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(0, 0, 0, .42); }
.hewc-mobile-panel__bar { display: flex; align-items: center; justify-content: space-between; min-height: 60px; padding: 0 20px; border-bottom: 1px solid var(--hewc-border); }
.hewc-mobile-panel__bar strong { font-size: 16px; text-transform: uppercase; }
.hewc-mobile-close { width: 38px; height: 38px; color: #111; background: transparent; border: 0; font-size: 30px; line-height: 1; }
.hewc-mobile-panel .hewc-mobile-menu,
.hewc-mobile-panel .hewc-primary-menu { display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 10px; }
.hewc-mobile-panel .hewc-mobile-menu li,
.hewc-mobile-panel .hewc-primary-menu li { width: 100%; border-bottom: 1px solid var(--hewc-border); }
.hewc-mobile-panel .hewc-mobile-menu li:last-child,
.hewc-mobile-panel .hewc-primary-menu li:last-child { border-bottom: 0; }
.hewc-mobile-panel .hewc-mobile-menu a,
.hewc-mobile-panel .hewc-primary-menu a { display: flex; align-items: center; width: 100%; min-height: 48px; padding: 13px 12px; border-radius: 6px; font-size: 14px; font-weight: 800; line-height: 1.3; text-transform: uppercase; }
.hewc-mobile-panel .hewc-mobile-menu a:hover,
.hewc-mobile-panel .hewc-primary-menu a:hover { color: var(--hewc-accent-dark); background: #f8faf4; }
.hewc-mobile-panel .sub-menu { display: flex; flex-direction: column; gap: 0; margin: 0; padding: 0 0 8px 16px; list-style: none; }
.hewc-mobile-panel .sub-menu li { border-bottom: 0; }
.hewc-mobile-panel .sub-menu a { min-height: 40px; padding-block: 9px; color: #555; font-size: 13px; }
body.hewc-mobile-menu-open { overflow: hidden; }

.hewc-site-footer { color: #7f7f82; background: #f5f5f6; font-size: 14px; }
.hewc-site-footer a { color: inherit; text-decoration: none; transition: color .2s ease; }
.hewc-site-footer a:hover { color: #55c6d6; }
.hewc-footer-main { padding-block: 72px 68px; }
.hewc-footer-grid { display: grid; grid-template-columns: 1.38fr .78fr .82fr .9fr 1.55fr; gap: 52px; align-items: start; }
.hewc-footer-column { min-width: 0; }
.hewc-footer-logo,
.hewc-footer-title { display: inline-flex; margin-bottom: 22px; color: #1f1f22; }
.hewc-footer-about p { max-width: 260px; margin: 0 0 18px; color: #86868a; line-height: 1.75; }
.hewc-footer-contact li { position: relative; margin-bottom: 17px; padding-left: 28px; color: #8a8a8e; line-height: 1.55; }
.hewc-footer-contact li::before { position: absolute; left: 0; top: 1px; display: grid; place-items: center; width: 18px; height: 18px; color: #9a9a9e; border: 1px solid #a9a9ad; border-radius: 50%; font-size: 10px; line-height: 1; content: "i"; }
.hewc-footer-contact li:nth-child(2)::before { content: "t"; }
.hewc-footer-contact li:nth-child(3)::before { content: "@"; border-radius: 2px; }
.hewc-footer-main h3 { margin: 0 0 28px; color: #202024; font-size: 16px; font-weight: 800; line-height: 1.25; text-transform: none; }
.hewc-footer-menu li,
.hewc-footer-posts li,
.hewc-footer-widget li { margin-bottom: 14px; }
.hewc-footer-menu a,
.hewc-footer-posts a { display: inline-flex; color: #838387; font-weight: 500; line-height: 1.45; }
.hewc-footer-posts small { display: block; margin-top: 5px; color: #a1a1a5; }
.hewc-footer-newsletter p { max-width: 310px; margin: -4px 0 22px; color: #858589; line-height: 1.7; }
.hewc-footer-newsletter__message { max-width: 270px; margin: -10px 0 12px; color: #202024; font-size: 13px; font-weight: 700; line-height: 1.45; }
.hewc-footer-newsletter__message.is-success { color: #268b47; }
.hewc-footer-newsletter__message.is-invalid,
.hewc-footer-newsletter__message.is-error { color: #b3261e; }
.hewc-footer-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; width: min(100%, 270px); min-height: 46px; padding: 2px; background: #f5f5f6; border: 1px solid #17171a; border-radius: 999px; }
.hewc-footer-form input { min-width: 0; min-height: 40px; width: 100%; padding: 0 14px; color: #202024; background: transparent; border: 0; border-radius: 999px; font-size: 13px; outline: 0; }
.hewc-footer-form button { min-height: 40px; padding: 0 19px; color: #fff; background: #59c6d6; border: 0; border-radius: 999px; font-size: 13px; font-weight: 800; text-transform: none; cursor: pointer; transition: background .2s ease; }
.hewc-footer-form button:hover { background: #37b7c9; }
.hewc-footer-bottom { background: #fff; border-top: 1px solid #eeeeef; }
.hewc-footer-bottom .hewc-footer-container { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 58px; color: #99999d; font-size: 13px; }
.hewc-footer-bottom a:hover { color: #55c6d6; }
@media (max-width: 1024px) {
	body { padding-top: 62px; }
	.hewc-header-top__inner { grid-template-columns: 1fr; justify-items: center; gap: 6px; padding-block: 8px; }
	.hewc-header-social { display: none; }
	.hewc-header-main__inner { grid-template-columns: auto 1fr auto; min-height: 62px; gap: 12px; }
	.hewc-mobile-toggle { display: inline-flex; flex-direction: column; }
	.hewc-header-nav { display: none; }
	.hewc-header-brand { min-width: 0; justify-self: center; }
	.hewc-header-logo { font-size: 24px; }
	.hewc-header-brand img { max-height: 42px; }
	.hewc-header-account span,
	.hewc-cart-label { display: none; }
	.hewc-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 782px) {
	.admin-bar .hewc-site-header { top: 46px; }
}

@media (max-width: 640px) {
	.hewc-header-container,
	.hewc-footer-container { width: min(100% - 24px, 1220px); }
	.hewc-header-top__links { display: none; }
	.hewc-header-top__inner { min-height: 32px; }
	.hewc-header-top__inner p { font-size: 11px; }
	.hewc-header-actions { gap: 4px; }
	.hewc-header-action { min-width: 34px; height: 34px; }
	.hewc-header-action:first-child { display: none; }
	.hewc-footer-newsletter p,
	.hewc-footer-newsletter__message,
	.hewc-footer-form { max-width: 360px; }
	.hewc-footer-form { grid-template-columns: 1fr; gap: 10px; width: 100%; min-height: 0; padding: 0; background: transparent; border: 0; border-radius: 0; }
	.hewc-footer-form input { min-height: 46px; padding-inline: 16px; background: #fff; border: 1px solid #d9d9dc; }
	.hewc-footer-form button { width: 100%; min-height: 46px; padding-inline: 18px; }
	.hewc-footer-main { padding-block: 42px; }
	.hewc-footer-grid { grid-template-columns: 1fr; gap: 30px; }
	.hewc-footer-bottom .hewc-footer-container { flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 16px; }
}
.hewc-header-brand .custom-logo-link,
.hewc-footer-logo .custom-logo-link { display: inline-flex; align-items: center; }
.hewc-header-brand .custom-logo {
	display: block;
	width: auto;
	max-width: 140px;
	height: auto;
	max-height: 48px;
	object-fit: contain;
}
.hewc-footer-logo .custom-logo { display: block; width: auto; max-width: 140px; height: auto; max-height: 64px; object-fit: contain; }
@media (max-width: 1024px) {
	.hewc-header-brand .custom-logo { max-width: 170px; max-height: 42px; }
}
@media (max-width: 640px) {
	.hewc-header-brand .custom-logo { max-width: 145px; max-height: 38px; }
}
.hewc-footer-widget { margin: 0 0 22px; }
.hewc-footer-widget:last-child { margin-bottom: 0; }
.hewc-footer-widget ul { margin: 0; padding: 0; list-style: none; }
.hewc-footer-widget li { margin-bottom: 14px; }
.hewc-footer-widget p { margin: 0 0 14px; color: #858589; line-height: 1.75; }
.hewc-footer-widget img { max-width: 100%; height: auto; }
.hewc-footer-widget a:hover { color: #55c6d6; }
.hewc-product-card .added_to_cart,
.hewc-product-card .wc-forward { display: none !important; }
body.hewc-cart-drawer-open { overflow: hidden; }
.hewc-cart-drawer[hidden] { display: none; }
.hewc-cart-drawer { position: fixed; inset: 0; z-index: 1200; }
.hewc-cart-drawer__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, .42); }
.hewc-cart-drawer__panel { position: absolute; top: 0; right: 0; z-index: 1; display: flex; flex-direction: column; width: min(420px, 92vw); height: 100%; background: #fff; box-shadow: -20px 0 60px rgba(0, 0, 0, .18); }
.hewc-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; min-height: 70px; padding: 0 22px; border-bottom: 1px solid var(--hewc-border); }
.hewc-cart-drawer__header h2 { margin: 0; color: var(--hewc-text); font-size: 18px; font-weight: 900; text-transform: uppercase; }
.hewc-cart-drawer__close { width: 38px; height: 38px; padding: 0; color: #111; background: transparent; border: 0; font-size: 30px; line-height: 1; cursor: pointer; }
.hewc-cart-drawer__body { flex: 1; overflow-y: auto; padding: 20px 22px 24px; color: var(--hewc-text); }
.hewc-cart-drawer .woocommerce-mini-cart { margin: 0; padding: 0; list-style: none; }
.hewc-cart-drawer .woocommerce-mini-cart-item { position: relative; min-height: 72px; margin: 0 0 16px; padding: 0 24px 16px 82px; border-bottom: 1px solid var(--hewc-border); }
.hewc-cart-drawer .woocommerce-mini-cart-item img { position: absolute; left: 0; top: 0; width: 62px; height: 62px; object-fit: cover; }
.hewc-cart-drawer .woocommerce-mini-cart-item a { color: var(--hewc-text); font-weight: 700; text-decoration: none; }
.hewc-cart-drawer .woocommerce-mini-cart-item .remove { position: absolute; top: 0; right: 0; color: #c43; font-size: 20px; line-height: 1; }
.hewc-cart-drawer .quantity { display: block; margin-top: 6px; color: var(--hewc-muted); font-size: 13px; }
.hewc-cart-drawer .woocommerce-mini-cart__total { display: flex; justify-content: space-between; margin: 18px 0; padding-top: 16px; border-top: 1px solid var(--hewc-border); color: var(--hewc-text); font-weight: 800; }
.hewc-cart-drawer .woocommerce-mini-cart__buttons { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 0; }
.hewc-cart-drawer .woocommerce-mini-cart__buttons .button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 16px; color: #fff; background: var(--hewc-accent); border-radius: 4px; font-weight: 800; text-decoration: none; text-transform: uppercase; }
.hewc-cart-drawer .woocommerce-mini-cart__buttons .checkout { background: var(--hewc-accent-dark); }
.hewc-cart-drawer .woocommerce-mini-cart__empty-message { margin: 0; color: var(--hewc-muted); }
/* Compact cart drawer below the header */
.hewc-cart-drawer {
	inset: 86px 0 0 0;
	z-index: 45;
}
.hewc-cart-drawer__panel {
	width: min(360px, 92vw);
	box-shadow: -12px 0 34px rgba(0, 0, 0, .14);
}
.hewc-cart-drawer__header {
	min-height: 56px;
	padding: 0 16px;
}
.hewc-cart-drawer__header h2 {
	font-size: 15px;
	letter-spacing: 0;
}
.hewc-cart-drawer__close {
	width: 34px;
	height: 34px;
	font-size: 25px;
}
.hewc-cart-drawer__body {
	padding: 14px 16px 18px;
}
.hewc-cart-drawer .woocommerce-mini-cart-item {
	min-height: 58px;
	margin-bottom: 12px;
	padding: 0 22px 12px 64px;
}
.hewc-cart-drawer .woocommerce-mini-cart-item img {
	width: 48px;
	height: 48px;
}
.hewc-cart-drawer .woocommerce-mini-cart-item a {
	font-size: 13px;
	line-height: 1.35;
}
.hewc-cart-drawer .woocommerce-mini-cart-item .remove {
	font-size: 18px;
}
.hewc-cart-drawer .quantity {
	margin-top: 4px;
	font-size: 12px;
}
.hewc-cart-drawer .woocommerce-mini-cart__total {
	margin: 12px 0;
	padding-top: 12px;
	font-size: 14px;
}
.hewc-cart-drawer .woocommerce-mini-cart__buttons {
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.hewc-cart-drawer .woocommerce-mini-cart__buttons .button {
	min-height: 40px;
	padding: 10px 12px;
	font-size: 12px;
}
@media (max-width: 1024px) {
	.hewc-cart-drawer { top: 74px; }
}
@media (max-width: 640px) {
	.hewc-cart-drawer__panel { width: min(340px, 94vw); }
	.hewc-cart-drawer .woocommerce-mini-cart__buttons { grid-template-columns: 1fr; }
}
.hewc-cart-drawer__body.is-updating { opacity: .62; pointer-events: none; }
.hewc-cart-qty { display: inline-grid; grid-template-columns: 26px 30px 26px auto; align-items: center; gap: 0; margin-top: 8px; color: var(--hewc-text); }
.hewc-cart-qty__button { display: grid; place-items: center; width: 26px; height: 26px; padding: 0; color: var(--hewc-text); background: #f4f6f1; border: 1px solid var(--hewc-border); border-radius: 3px; font-size: 16px; font-weight: 800; line-height: 1; cursor: pointer; }
.hewc-cart-qty__button:hover { color: #fff; background: var(--hewc-accent); border-color: var(--hewc-accent); }
.hewc-cart-qty__button:disabled { cursor: wait; opacity: .7; }
.hewc-cart-qty__value { display: grid; place-items: center; height: 26px; color: var(--hewc-text); background: #fff; border-top: 1px solid var(--hewc-border); border-bottom: 1px solid var(--hewc-border); font-size: 12px; font-weight: 800; }
.hewc-cart-qty__price { margin-left: 8px; color: var(--hewc-muted); font-size: 12px; font-weight: 700; }
.hewc-cart-drawer .hewc-cart-qty .amount { font-size: inherit; }
/* Clean classic checkout layout */
.woocommerce-checkout form.checkout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 430px); gap: 34px; align-items: start; }
.woocommerce-checkout form.checkout #customer_details { min-width: 0; }
.woocommerce-checkout form.checkout #order_review_heading,
.woocommerce-checkout form.checkout #order_review { grid-column: 2; }
.woocommerce-checkout form.checkout #order_review_heading { margin: 0 0 12px; color: var(--hewc-text); font-size: 22px; font-weight: 900; }
.woocommerce-checkout form.checkout #order_review { padding: 20px; background: #fff; border: 1px solid var(--hewc-border); border-radius: 8px; box-shadow: 0 12px 34px rgba(0, 0, 0, .06); }
.woocommerce-checkout form.checkout .col2-set,
.woocommerce-checkout form.checkout .col-1,
.woocommerce-checkout form.checkout .col-2 { float: none; width: 100%; }
.woocommerce-checkout form.checkout .woocommerce-billing-fields h3 { margin: 0 0 18px; color: var(--hewc-text); font-size: 24px; font-weight: 900; }
.woocommerce-checkout form.checkout .form-row { margin-bottom: 16px; }
.woocommerce-checkout form.checkout label { color: var(--hewc-text); font-size: 14px; font-weight: 800; }
.woocommerce-checkout form.checkout input.input-text,
.woocommerce-checkout form.checkout textarea { min-height: 48px; width: 100%; padding: 12px 14px; color: var(--hewc-text); background: #fff; border: 1px solid var(--hewc-border); border-radius: 6px; box-shadow: none; }
.woocommerce-checkout form.checkout textarea { min-height: 120px; resize: vertical; }
.woocommerce-checkout form.checkout #billing_address_1 { min-height: 48px; height: 48px; resize: none; }
.woocommerce-checkout form.checkout .woocommerce-additional-fields > h3 { display: none; }
.woocommerce-checkout form.checkout .woocommerce-shipping-totals.shipping { display: block; padding: 12px 0; border-bottom: 1px solid var(--hewc-border); }
.woocommerce-checkout form.checkout .woocommerce-shipping-totals.shipping > th { display: none; }
.woocommerce-checkout form.checkout .woocommerce-shipping-totals.shipping > td { display: block; width: 100%; padding: 0; border-bottom: 0; }
.woocommerce-checkout form.checkout .woocommerce-shipping-totals.shipping > td::before { display: none; content: none; }
.woocommerce-checkout form.checkout #shipping_method { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.woocommerce-checkout form.checkout #shipping_method li { display: flex; align-items: center; gap: 10px; margin: 0; padding: 12px 14px; background: #f7f9fa; border: 1px solid var(--hewc-border); border-radius: 6px; }
.woocommerce-checkout form.checkout #shipping_method li:has(input:checked) { border-color: var(--hewc-accent); background: rgba(86, 207, 225, .1); }
.woocommerce-checkout form.checkout #shipping_method input { flex: 0 0 auto; margin: 0; }
.woocommerce-checkout form.checkout #shipping_method label { display: flex; flex: 1; justify-content: space-between; gap: 12px; margin: 0; color: var(--hewc-text); line-height: 1.35; cursor: pointer; }
.woocommerce-checkout form.checkout #shipping_method .amount { color: var(--hewc-accent-dark); font-weight: 900; white-space: nowrap; }
.woocommerce-checkout form.checkout .shop_table { margin: 0 0 18px; border: 0; border-collapse: collapse; }
.woocommerce-checkout form.checkout .shop_table th,
.woocommerce-checkout form.checkout .shop_table td { padding: 12px 0; border: 0; border-bottom: 1px solid var(--hewc-border); background: transparent; }
.woocommerce-checkout form.checkout .shop_table thead { display: none; }
.woocommerce-checkout form.checkout .shop_table .cart_item td { vertical-align: middle; }
.woocommerce-checkout form.checkout .shop_table .product-name { width: 70%; padding-right: 12px; }
.woocommerce-checkout form.checkout .shop_table .product-total { width: 30%; color: var(--hewc-text); font-weight: 800; text-align: right; }
.hewc-checkout-product { display: grid; grid-template-columns: 58px minmax(0, 1fr); align-items: center; gap: 12px; }
.hewc-checkout-product__image { position: relative; display: block; width: 58px; height: 58px; overflow: hidden; border-radius: 6px; background: #f6f6f6; }
.hewc-checkout-product__image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hewc-checkout-product__name { display: block; color: var(--hewc-text); font-size: 14px; font-weight: 800; line-height: 1.35; }
.woocommerce-checkout form.checkout .product-quantity { display: inline-flex; margin-left: 4px; color: var(--hewc-muted); font-size: 12px; font-weight: 800; }
.woocommerce-checkout form.checkout tfoot th,
.woocommerce-checkout form.checkout tfoot td { color: var(--hewc-text); font-size: 14px; }
.woocommerce-checkout form.checkout tfoot .order-total th,
.woocommerce-checkout form.checkout tfoot .order-total td { border-bottom: 0; font-size: 17px; font-weight: 900; }
.woocommerce-checkout form.checkout #payment { background: transparent; border-radius: 0; }
.woocommerce-checkout form.checkout #payment ul.payment_methods { padding: 0 0 14px; border-bottom: 1px solid var(--hewc-border); }
.woocommerce-checkout form.checkout #payment div.form-row { padding: 14px 0 0; }
.woocommerce-checkout form.checkout #place_order { width: 100%; min-height: 48px; padding: 13px 18px; color: #fff; background: var(--hewc-accent); border: 0; border-radius: 5px; font-weight: 900; text-transform: uppercase; }
.woocommerce-checkout form.checkout #place_order:hover { background: var(--hewc-accent-dark); }
@media (max-width: 900px) {
	.woocommerce-checkout form.checkout { grid-template-columns: 1fr; gap: 26px; }
	.woocommerce-checkout form.checkout #order_review_heading,
	.woocommerce-checkout form.checkout #order_review { grid-column: 1; }
}
.woocommerce-checkout form.checkout select,
.woocommerce-checkout form.checkout .select2-container .select2-selection--single { min-height: 48px; width: 100%; color: var(--hewc-text); background: #fff; border: 1px solid var(--hewc-border); border-radius: 6px; box-shadow: none; }
.woocommerce-checkout form.checkout select { padding: 0 14px; }
.woocommerce-checkout form.checkout .select2-container .select2-selection--single .select2-selection__rendered { line-height: 48px; padding-left: 14px; padding-right: 34px; }
.woocommerce-checkout form.checkout .select2-container .select2-selection--single .select2-selection__arrow { height: 48px; right: 8px; }
/* Keep checkout summary aligned to the top-right */
.woocommerce-checkout form.checkout #customer_details { grid-column: 1; grid-row: 1 / span 2; }
.woocommerce-checkout form.checkout #order_review_heading { grid-column: 2; grid-row: 1; align-self: start; }
.woocommerce-checkout form.checkout #order_review { grid-column: 2; grid-row: 2; align-self: start; }
@media (max-width: 900px) {
	.woocommerce-checkout form.checkout #customer_details,
	.woocommerce-checkout form.checkout #order_review_heading,
	.woocommerce-checkout form.checkout #order_review { grid-column: 1; grid-row: auto; }
}
/* WooCommerce shop archive */
.hewc-shop-page { color: var(--hewc-text); background: #fff; }
.hewc-shop-container { width: min(1220px, calc(100% - 32px)); margin-inline: auto; padding-block: 34px 70px; }
.hewc-shop-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.hewc-shop-header__title { min-width: 0; }
.hewc-shop-header .woocommerce-breadcrumb { margin: 0 0 10px; color: var(--hewc-muted); font-size: 13px; }
.hewc-shop-header .woocommerce-breadcrumb a { color: inherit; text-decoration: none; }
.hewc-shop-header h1 { margin: 0; color: var(--hewc-text); font-size: clamp(30px, 4vw, 46px); line-height: 1.1; }
.hewc-shop-description { max-width: 720px; margin-top: 10px; color: var(--hewc-muted); line-height: 1.7; }
.hewc-shop-description p { margin: 0; }
.hewc-shop-tools { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 12px; color: var(--hewc-muted); font-size: 13px; }
.hewc-shop-tools .woocommerce-result-count { margin: 0; }
.hewc-shop-tools .woocommerce-ordering { margin: 0; }
.hewc-shop-tools select { min-height: 40px; padding: 0 34px 0 12px; color: var(--hewc-text); background: #fff; border: 1px solid var(--hewc-border); border-radius: 4px; }
.hewc-shop-layout { display: grid; grid-template-columns: minmax(230px, 280px) minmax(0, 1fr); gap: 32px; align-items: start; }
.hewc-shop-sidebar { position: sticky; top: 88px; min-width: 0; padding-right: 4px; }
.admin-bar .hewc-shop-sidebar { top: 120px; }
.hewc-shop-sidebar__head { display: none; }
.hewc-shop-widget { margin: 0 0 28px; padding-bottom: 24px; border-bottom: 1px solid var(--hewc-border); }
.hewc-shop-widget:last-child { margin-bottom: 0; border-bottom: 0; }
.hewc-shop-widget h3 { margin: 0 0 16px; color: var(--hewc-text); font-size: 15px; font-weight: 900; text-transform: uppercase; }
.hewc-shop-widget ul { margin: 0; padding: 0; list-style: none; }
.hewc-shop-widget li { margin: 0 0 10px; color: var(--hewc-muted); font-size: 14px; }
.hewc-shop-widget li:last-child { margin-bottom: 0; }
.hewc-shop-widget a { color: var(--hewc-text); text-decoration: none; }
.hewc-shop-widget a:hover,
.hewc-shop-widget .chosen a { color: var(--hewc-accent-dark); }
.hewc-shop-widget .count { color: var(--hewc-muted); font-size: 12px; }
.hewc-shop-widget input[type="search"],
.hewc-shop-widget input[type="text"],
.hewc-shop-widget input[type="number"] { width: 100%; min-height: 42px; padding: 10px 12px; border: 1px solid var(--hewc-border); border-radius: 4px; box-shadow: none; }
.hewc-shop-widget button,
.hewc-shop-widget .button { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 10px 16px; color: #fff; background: var(--hewc-accent); border: 0; border-radius: 4px; font-size: 12px; font-weight: 900; text-decoration: none; text-transform: uppercase; }
.hewc-shop-widget button:hover,
.hewc-shop-widget .button:hover { color: #fff; background: var(--hewc-accent-dark); }
.hewc-shop-widget .woocommerce-product-search { display: grid; gap: 10px; }
.hewc-shop-widget .price_slider_wrapper .price_slider { height: 4px; margin: 22px 8px 18px; background: #e7eadf; border-radius: 999px; }
.hewc-shop-widget .price_slider_wrapper .ui-slider-range { background: var(--hewc-accent); }
.hewc-shop-widget .price_slider_wrapper .ui-slider-handle { top: -6px; width: 16px; height: 16px; background: #fff; border: 3px solid var(--hewc-accent); border-radius: 50%; }
.hewc-shop-widget .price_slider_amount { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; color: var(--hewc-muted); font-size: 13px; }
.hewc-shop-products { min-width: 0; }
.hewc-shop-grid-wrap .hewc-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px 20px; }
.hewc-shop-products .woocommerce-pagination { margin-top: 38px; }
.hewc-shop-products .page-numbers { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0; padding: 0; list-style: none; }
.hewc-shop-products .page-numbers li { margin: 0; }
.hewc-shop-products .page-numbers a,
.hewc-shop-products .page-numbers span { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px; color: var(--hewc-text); border: 1px solid var(--hewc-border); border-radius: 4px; text-decoration: none; }
.hewc-shop-products .page-numbers .current,
.hewc-shop-products .page-numbers a:hover { color: #fff; background: var(--hewc-accent); border-color: var(--hewc-accent); }
.hewc-shop-filter-toggle { display: none; align-items: center; gap: 8px; min-height: 40px; padding: 0 14px; color: #fff; background: var(--hewc-text); border: 0; border-radius: 4px; font-size: 13px; font-weight: 900; text-transform: uppercase; }
.hewc-shop-filter-toggle span,
.hewc-shop-filter-toggle span::before,
.hewc-shop-filter-toggle span::after { display: block; width: 16px; height: 2px; background: currentColor; content: ''; }
.hewc-shop-filter-toggle span { position: relative; }
.hewc-shop-filter-toggle span::before { position: absolute; top: -5px; width: 11px; }
.hewc-shop-filter-toggle span::after { position: absolute; top: 5px; width: 13px; }
.hewc-shop-filter-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(0, 0, 0, .42); }
body.hewc-shop-filter-open { overflow: hidden; }

@media (max-width: 1100px) {
	.hewc-shop-layout { grid-template-columns: minmax(210px, 250px) minmax(0, 1fr); gap: 24px; }
	.hewc-shop-grid-wrap .hewc-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
	.hewc-shop-container { width: min(100% - 24px, 1220px); padding-block: 24px 54px; }
	.hewc-shop-header { align-items: flex-start; flex-direction: column; gap: 18px; }
	.hewc-shop-tools { justify-content: flex-start; width: 100%; }
	.hewc-shop-filter-toggle { display: inline-flex; }
	.hewc-shop-layout { display: block; }
	.hewc-shop-sidebar { position: fixed; inset: 0 auto 0 0; z-index: 1001; width: min(360px, 88vw); padding: 0 18px 24px; overflow-y: auto; background: #fff; box-shadow: 20px 0 60px rgba(0, 0, 0, .18); transform: translateX(-105%); transition: transform 220ms ease; }
	body.hewc-shop-filter-open .hewc-shop-sidebar { transform: translateX(0); }
	.hewc-shop-sidebar__head { position: sticky; top: 0; z-index: 1; display: flex; align-items: center; justify-content: space-between; min-height: 58px; margin: 0 -18px 22px; padding: 0 18px; background: #fff; border-bottom: 1px solid var(--hewc-border); }
	.hewc-shop-sidebar__head strong { font-size: 14px; font-weight: 900; text-transform: uppercase; }
	.hewc-shop-filter-close { width: 38px; height: 38px; color: #111; background: transparent; border: 0; font-size: 30px; line-height: 1; }
	.hewc-shop-widget { margin-bottom: 24px; padding-bottom: 20px; }
}

@media (max-width: 600px) {
	.hewc-shop-tools .woocommerce-ordering,
	.hewc-shop-tools .woocommerce-ordering select { width: 100%; }
	.hewc-shop-grid-wrap .hewc-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; }
}
/* Easier WooCommerce price slider */
.hewc-shop-widget .price_slider_wrapper { padding-top: 4px; }
.hewc-shop-widget .price_slider_wrapper .price_slider { height: 8px; margin: 30px 14px 26px; background: #e5eadc; border-radius: 999px; box-shadow: inset 0 1px 2px rgba(0, 0, 0, .08); touch-action: none; }
.hewc-shop-widget .price_slider_wrapper .ui-slider-range { background: var(--hewc-accent); border-radius: 999px; }
.hewc-shop-widget .price_slider_wrapper .ui-slider-handle { top: -10px; width: 28px; height: 28px; margin-left: -14px; background: #fff; border: 4px solid var(--hewc-accent); border-radius: 50%; box-shadow: 0 4px 14px rgba(0, 0, 0, .18); cursor: grab; outline: none; touch-action: none; z-index: 2; }
.hewc-shop-widget .price_slider_wrapper .ui-slider-handle:focus,
.hewc-shop-widget .price_slider_wrapper .ui-slider-handle:hover { border-color: var(--hewc-accent-dark); box-shadow: 0 0 0 5px rgba(77, 192, 209, .16), 0 4px 14px rgba(0, 0, 0, .18); }
.hewc-shop-widget .price_slider_wrapper .ui-slider-handle:active { cursor: grabbing; }
.hewc-shop-widget .price_slider_amount { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; color: var(--hewc-muted); font-size: 13px; }
.hewc-shop-widget .price_slider_amount .price_label { color: var(--hewc-text); font-weight: 800; line-height: 1.5; }
.hewc-shop-widget .price_slider_amount .button { min-height: 38px; padding-inline: 18px; }

@media (max-width: 420px) {
	.hewc-shop-widget .price_slider_amount { grid-template-columns: 1fr; }
}
/* Fix WooCommerce price slider handle positioning */
.hewc-shop-widget .price_slider_wrapper .price_slider,
.hewc-shop-widget .price_slider_wrapper .ui-slider { position: relative; }
.hewc-shop-widget .price_slider_wrapper .ui-slider-range { position: absolute; top: 0; height: 100%; z-index: 1; }
.hewc-shop-widget .price_slider_wrapper .ui-slider-handle { position: absolute; z-index: 2; }
/* Screenshot-matched shop page product card button colors */
.hewc-shop-page .hewc-product-card { --hewc-card-accent: #4DC0D1; --hewc-card-accent-dark: #2FA9BA; }
.hewc-shop-page .hewc-product-card__price { color: var(--hewc-card-accent); }
.hewc-shop-page .hewc-product-card .hewc-product-card__button { color: var(--hewc-card-accent); border-color: var(--hewc-card-accent); background: #fff; }
.hewc-shop-page .hewc-product-card .hewc-product-card__buy-now { color: #fff; border-color: var(--hewc-card-accent); background: var(--hewc-card-accent); }
.hewc-shop-page .hewc-product-card .hewc-product-card__button:hover,
.hewc-shop-page .hewc-product-card .hewc-product-card__button:focus { color: #fff; background: var(--hewc-card-accent); border-color: var(--hewc-card-accent); }
.hewc-shop-page .hewc-product-card .hewc-product-card__buy-now:hover,
.hewc-shop-page .hewc-product-card .hewc-product-card__buy-now:focus { color: #fff; background: var(--hewc-card-accent-dark); border-color: var(--hewc-card-accent-dark); }
.hewc-shop-page .hewc-product-card.is-added .hewc-product-card__button { color: #fff; background: var(--hewc-card-accent); border-color: var(--hewc-card-accent); }


/* Single product Buy Now and related product cards */
.single-product form.cart { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.single-product form.cart .quantity { margin: 0; }
.single-product form.cart .single_add_to_cart_button { min-height: 46px; margin: 0; }
.single-product form.cart .single_add_to_cart_button.loading,
.single-product form.cart .single_add_to_cart_button:disabled { cursor: wait; opacity: .78; }
.single-product form.cart .hewc-single-buy-now { color: #fff; background: #4DC0D1; border-color: #4DC0D1; }
.single-product form.cart .hewc-single-buy-now:hover,
.single-product form.cart .hewc-single-buy-now:focus { color: #fff; background: #2FA9BA; border-color: #2FA9BA; }
.single-product .hewc-single-related-products { clear: both; margin-top: 56px; }
.single-product .hewc-single-related-products > h2 { margin: 0 0 26px; color: var(--hewc-text); font-size: clamp(24px, 3vw, 34px); font-weight: 900; line-height: 1.2; }
.single-product .hewc-single-related-products .hewc-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px 20px; }
.single-product .hewc-single-related-products .hewc-product-card { --hewc-card-accent: #4DC0D1; --hewc-card-accent-dark: #2FA9BA; }
.single-product .hewc-single-related-products .hewc-product-card__price { color: var(--hewc-card-accent); }
.single-product .hewc-single-related-products .hewc-product-card .hewc-product-card__button { color: var(--hewc-card-accent); border-color: var(--hewc-card-accent); background: #fff; }
.single-product .hewc-single-related-products .hewc-product-card .hewc-product-card__buy-now { color: #fff; border-color: var(--hewc-card-accent); background: var(--hewc-card-accent); }
.single-product .hewc-single-related-products .hewc-product-card .hewc-product-card__button:hover,
.single-product .hewc-single-related-products .hewc-product-card .hewc-product-card__button:focus { color: #fff; background: var(--hewc-card-accent); border-color: var(--hewc-card-accent); }
.single-product .hewc-single-related-products .hewc-product-card .hewc-product-card__buy-now:hover,
.single-product .hewc-single-related-products .hewc-product-card .hewc-product-card__buy-now:focus { color: #fff; background: var(--hewc-card-accent-dark); border-color: var(--hewc-card-accent-dark); }
.single-product .hewc-single-related-products .hewc-product-card.is-added .hewc-product-card__button { color: #fff; background: var(--hewc-card-accent); border-color: var(--hewc-card-accent); }
@media (max-width: 1024px) {
	.single-product .hewc-single-related-products .hewc-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
	.single-product form.cart { align-items: stretch; }
	.single-product form.cart .single_add_to_cart_button { flex: 1 1 calc(50% - 5px); padding-inline: 10px; }
	.single-product .hewc-single-related-products .hewc-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; }
}
/* Cart drawer item spacing fix */
.hewc-cart-drawer .woocommerce-mini-cart-item {
	display: block;
	min-height: 64px;
	padding: 0 24px 13px 0;
}
.hewc-cart-drawer .woocommerce-mini-cart-item > a:not(.remove) {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	padding-right: 8px;
}
.hewc-cart-drawer .woocommerce-mini-cart-item > a:not(.remove) img {
	position: static;
	grid-column: 1;
	grid-row: 1 / span 2;
	width: 48px;
	height: 48px;
	margin: 0;
	object-fit: cover;
}
.hewc-cart-drawer .woocommerce-mini-cart-item .remove {
	top: 0;
	right: 0;
}
.hewc-cart-drawer .woocommerce-mini-cart-item .hewc-cart-qty {
	margin-top: 7px;
	margin-left: 58px;
	max-width: calc(100% - 58px);
}
.hewc-cart-drawer .hewc-cart-qty {
	grid-template-columns: 26px 30px 26px minmax(0, auto);
}
.hewc-cart-drawer .hewc-cart-qty__price {
	min-width: 0;
	white-space: nowrap;
}
@media (max-width: 380px) {
	.hewc-cart-drawer .woocommerce-mini-cart-item {
		padding-right: 20px;
	}
	.hewc-cart-drawer .woocommerce-mini-cart-item > a:not(.remove) {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 9px;
	}
	.hewc-cart-drawer .woocommerce-mini-cart-item > a:not(.remove) img {
		width: 44px;
		height: 44px;
	}
	.hewc-cart-drawer .woocommerce-mini-cart-item .hewc-cart-qty {
		margin-left: 53px;
		max-width: calc(100% - 53px);
	}
}
/* Hero Banner Elementor slider */
.hewc-home-hero--slider { overflow: hidden; background-image: none !important; }
.hewc-home-hero--slider::before { content: none; }
.hewc-home-hero__slides { position: relative; min-height: inherit; }
.hewc-home-hero__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; background-position: center; background-repeat: no-repeat; background-size: cover; transition: opacity 650ms ease, visibility 650ms ease; }

.hewc-home-hero__slide.is-active { position: relative; opacity: 1; visibility: visible; z-index: 1; }
.hewc-home-hero__slide .hewc-home-hero__inner { position: relative; z-index: 1; }
.hewc-home-hero__arrow { position: absolute; top: 50%; z-index: 3; display: grid; place-items: center; width: 44px; height: 44px; padding: 0; color: #fff; background: rgba(0, 0, 0, .24); border: 1px solid rgba(255, 255, 255, .32); border-radius: 50%; font-size: 36px; line-height: 1; transform: translateY(-50%); cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.hewc-home-hero__arrow:hover,
.hewc-home-hero__arrow:focus-visible { background: var(--hewc-accent); border-color: var(--hewc-accent); }
.hewc-home-hero__arrow--prev { left: 22px; }
.hewc-home-hero__arrow--next { right: 22px; }
.hewc-home-hero__dots { position: absolute; left: 50%; bottom: 24px; z-index: 3; display: flex; gap: 10px; transform: translateX(-50%); }
.hewc-home-hero__dot { width: 11px; height: 11px; padding: 0; background: rgba(255, 255, 255, .58); border: 0; border-radius: 50%; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.hewc-home-hero__dot.is-active { background: var(--hewc-accent); transform: scale(1.18); }
@media (max-width: 700px) {
	.hewc-home-hero__arrow { display: none; }
	.hewc-home-hero__dots { bottom: 16px; }
}

/* Checkout Bengali presentation and aligned choice cards */
body.woocommerce-checkout .entry-title,
body.woocommerce-checkout .page-header,
body.woocommerce-checkout .woocommerce-notices-wrapper,
body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout form.checkout_coupon { display: none !important; }
.hewc-checkout-intro { width: min(1180px, calc(100% - 32px)); margin: 28px auto 30px; text-align: center; }
.hewc-checkout-intro h1 { margin: 0; color: var(--hewc-text); font-size: clamp(22px, 3vw, 34px); font-weight: 900; line-height: 1.35; }
.woocommerce-checkout form.checkout,
.woocommerce-checkout form.checkout #shipping_method,
.woocommerce-checkout form.checkout #payment { direction: ltr; text-align: left; }
.woocommerce-checkout form.checkout #shipping_method li,
.woocommerce-checkout form.checkout #payment ul.payment_methods li { position: relative; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; width: 100%; margin: 0; padding: 14px; text-align: left; background: #fff; border: 1px solid var(--hewc-border); }
.woocommerce-checkout form.checkout #shipping_method li:first-child,
.woocommerce-checkout form.checkout #payment ul.payment_methods li:first-child { border-radius: 8px 8px 0 0; }
.woocommerce-checkout form.checkout #shipping_method li:last-child,
.woocommerce-checkout form.checkout #payment ul.payment_methods li:last-child { border-radius: 0 0 8px 8px; }
.woocommerce-checkout form.checkout #shipping_method li:only-child,
.woocommerce-checkout form.checkout #payment ul.payment_methods li:only-child { border-radius: 8px; }
.woocommerce-checkout form.checkout #shipping_method li + li,
.woocommerce-checkout form.checkout #payment ul.payment_methods li + li { margin-top: -1px; }
.woocommerce-checkout form.checkout #shipping_method input[type='radio'],
.woocommerce-checkout form.checkout #payment input[type='radio'] { position: static; flex: 0 0 18px; width: 18px; height: 18px; margin: 0 !important; accent-color: var(--hewc-accent); }
.woocommerce-checkout form.checkout #payment ul.payment_methods { display: grid; gap: 0; margin: 0; padding: 0 0 16px; list-style: none; }
.woocommerce-checkout form.checkout #payment ul.payment_methods li > label { flex: 1; margin: 0; cursor: pointer; }
.woocommerce-checkout form.checkout #payment .payment_box { flex-basis: 100%; margin: 10px 0 0 28px; text-align: left; }
.woocommerce-checkout form.checkout #place_order { float: none; display: block; margin: 0; text-align: center; }
@media (max-width: 600px) {
	.hewc-checkout-intro { width: min(100% - 24px, 1180px); margin-block: 20px 24px; }
	.woocommerce-checkout form.checkout #order_review { padding: 16px; }
}


/* Checkout final alignment pass */
body.woocommerce-checkout .woocommerce { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
body.woocommerce-checkout .hewc-checkout-intro { width: 100%; max-width: 1180px; padding: 22px 24px; background: #f7faf4; border: 1px solid #dfe8d5; border-radius: 10px; }
body.woocommerce-checkout .hewc-checkout-intro h1 { letter-spacing: -.01em; text-wrap: balance; }
.woocommerce-checkout form.checkout { width: 100%; grid-template-columns: minmax(0, 1fr) minmax(380px, 44%); column-gap: clamp(28px, 4vw, 54px); row-gap: 12px; }
.woocommerce-checkout form.checkout #customer_details,
.woocommerce-checkout form.checkout #order_review_heading,
.woocommerce-checkout form.checkout #order_review { min-width: 0; margin-inline: 0; }
.woocommerce-checkout form.checkout #customer_details .col-1 { padding: 24px; background: #fff; border: 1px solid var(--hewc-border); border-radius: 10px; box-shadow: 0 10px 30px rgba(0, 0, 0, .045); }
.woocommerce-checkout form.checkout .woocommerce-billing-fields h3,
.woocommerce-checkout form.checkout #order_review_heading { min-height: 32px; margin: 0 0 18px; font-size: clamp(21px, 2.2vw, 25px); line-height: 1.3; }
.woocommerce-checkout form.checkout .form-row { width: 100%; margin: 0 0 18px; padding: 0; }
.woocommerce-checkout form.checkout .form-row:last-child { margin-bottom: 0; }
.woocommerce-checkout form.checkout label { display: block; margin: 0 0 7px; line-height: 1.4; }
.woocommerce-checkout form.checkout input.input-text,
.woocommerce-checkout form.checkout textarea { min-height: 52px; padding: 13px 15px; border-color: #d9ded5; border-radius: 7px; transition: border-color .18s ease, box-shadow .18s ease; }
.woocommerce-checkout form.checkout input.input-text:focus,
.woocommerce-checkout form.checkout textarea:focus { border-color: var(--hewc-accent); outline: 0; box-shadow: 0 0 0 3px rgba(77, 192, 209, .14); }
.woocommerce-checkout form.checkout #billing_address_1 {
	min-height: 50px;
	height: 50px;
	resize: vertical;
}
.woocommerce-checkout form.checkout #order_review { padding: 24px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0, 0, 0, .045); }
.woocommerce-checkout form.checkout #shipping_method { gap: 0; }
.woocommerce-checkout form.checkout #shipping_method li,
.woocommerce-checkout form.checkout #payment ul.payment_methods li { min-height: 52px; padding: 14px 15px; }
.woocommerce-checkout form.checkout #shipping_method li:has(input:checked),
.woocommerce-checkout form.checkout #payment ul.payment_methods li:has(input:checked) { z-index: 1; border-color: var(--hewc-accent); background: rgba(77, 192, 209, .1); }
.woocommerce-checkout form.checkout #shipping_method label { align-items: center; margin: 0; }
.woocommerce-checkout form.checkout #place_order { min-height: 52px; border-radius: 7px; font-size: 15px; letter-spacing: .01em; text-transform: none; box-shadow: 0 8px 18px rgba(77, 192, 209, .2); }
.woocommerce-checkout form.checkout #place_order:focus-visible { outline: 3px solid rgba(77, 192, 209, .25); outline-offset: 2px; }
@media (max-width: 900px) {
	body.woocommerce-checkout .woocommerce { width: min(100% - 24px, 720px); }
	.woocommerce-checkout form.checkout { grid-template-columns: minmax(0, 1fr); gap: 22px; }
	.woocommerce-checkout form.checkout #customer_details,
	.woocommerce-checkout form.checkout #order_review_heading,
	.woocommerce-checkout form.checkout #order_review { grid-column: 1; grid-row: auto; }
	.woocommerce-checkout form.checkout #order_review_heading { margin: 4px 0 -6px; }
}
@media (max-width: 600px) {
	body.woocommerce-checkout .hewc-checkout-intro { padding: 7px 10px; border-radius: 8px; }
	.woocommerce-checkout form.checkout #customer_details .col-1,
	.woocommerce-checkout form.checkout #order_review { padding: 17px; border-radius: 8px; }
	.woocommerce-checkout form.checkout .shop_table .product-name { width: 67%; }
	.woocommerce-checkout form.checkout .shop_table .product-total { width: 33%; }
	.hewc-checkout-product { grid-template-columns: 50px minmax(0, 1fr); gap: 9px; }
	.hewc-checkout-product__image { width: 50px; height: 50px; }
	body.woocommerce-checkout .hewc-checkout-intro h1 {
	font-size: 12px;
}
}


/* Checkout left-side delivery and payment flow */
body.woocommerce-checkout .hewc-checkout-intro h1 {
	font-size: 20px;
}
.woocommerce-checkout form.checkout .woocommerce-shipping-totals.shipping { display: none !important; }
.woocommerce-checkout form.checkout .hewc-checkout-left-extras { margin-top: 24px; }
.woocommerce-checkout form.checkout .hewc-checkout-left-extras section + section { margin-top: 24px; }
.woocommerce-checkout form.checkout .hewc-checkout-left-extras h3 { margin: 0 0 12px; color: var(--hewc-text); font-size: 19px; font-weight: 900; line-height: 1.35; }
.woocommerce-checkout form.checkout .hewc-checkout-delivery__options,
.woocommerce-checkout form.checkout .hewc-checkout-payment__content { width: 100%; }
.woocommerce-checkout form.checkout .hewc-checkout-delivery #shipping_method { width: 100%; }
.woocommerce-checkout form.checkout .hewc-checkout-delivery #shipping_method li { background: #fff; }
.woocommerce-checkout form.checkout .hewc-checkout-delivery #shipping_method li:has(input:checked) { background: rgba(77, 192, 209, .1); }
.woocommerce-checkout form.checkout .hewc-checkout-payment #payment { width: 100%; }
.woocommerce-checkout form.checkout .hewc-checkout-payment #payment div.form-row { margin: 0; padding-top: 16px; }
.woocommerce-checkout form.checkout .hewc-checkout-payment #place_order { float: none; width: 100%; margin: 0; }
.woocommerce-checkout form.checkout #order_review .shop_table { margin-bottom: 0; }
@media (max-width: 600px) {
	.woocommerce-checkout form.checkout .hewc-checkout-left-extras { margin-top: 20px; }
	.woocommerce-checkout form.checkout .hewc-checkout-left-extras section + section { margin-top: 20px; }
	.woocommerce-checkout form.checkout .hewc-checkout-left-extras h3 { font-size: 18px; }
}


/* Order card top and numeric alignment */
.woocommerce-checkout form.checkout #order_review_heading { display: none; }
.woocommerce-checkout form.checkout #order_review { grid-column: 2; grid-row: 1 / span 2; align-self: start; }
.woocommerce-checkout form.checkout .hewc-order-review-title { margin: 0 0 18px; color: var(--hewc-text); font-size: clamp(21px, 2.2vw, 25px); font-weight: 900; line-height: 1.3; }
.woocommerce-checkout form.checkout #order_review .shop_table { width: 100%; table-layout: fixed; }
.woocommerce-checkout form.checkout #order_review .shop_table th,
.woocommerce-checkout form.checkout #order_review .shop_table td { vertical-align: middle; }
.woocommerce-checkout form.checkout #order_review .shop_table .product-name,
.woocommerce-checkout form.checkout #order_review .shop_table tfoot th { width: 68%; padding-right: 14px; text-align: left; }
.woocommerce-checkout form.checkout #order_review .shop_table .product-total,
.woocommerce-checkout form.checkout #order_review .shop_table tfoot td { width: 32%; padding-left: 10px; text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.woocommerce-checkout form.checkout #order_review .shop_table .amount { display: inline-block; min-width: max-content; font-variant-numeric: tabular-nums; }
@media (max-width: 900px) {
	.woocommerce-checkout form.checkout #order_review { grid-column: 1; grid-row: auto; }
}
@media (max-width: 420px) {
	.woocommerce-checkout form.checkout #order_review .shop_table .product-name,
	.woocommerce-checkout form.checkout #order_review .shop_table tfoot th { width: 64%; }
	.woocommerce-checkout form.checkout #order_review .shop_table .product-total,
	.woocommerce-checkout form.checkout #order_review .shop_table tfoot td { width: 36%; }
}


/* Phone checkout sequence: payment, order card, order button */
.woocommerce-checkout form.checkout .hewc-mobile-place-order { display: none; }
@media (max-width: 900px) {
	.woocommerce-checkout form.checkout .hewc-mobile-place-order { display: block; grid-column: 1; grid-row: auto; width: 100%; margin: 0; }
	.woocommerce-checkout form.checkout .hewc-mobile-place-order .form-row.place-order { width: 100%; margin: 0; padding: 0; }
	.woocommerce-checkout form.checkout .hewc-mobile-place-order #place_order { float: none; width: 100%; min-height: 52px; margin: 0; }
	.woocommerce-checkout form.checkout #order_review { width: 100%; margin-top: 0; }
	.woocommerce-checkout form.checkout .hewc-checkout-payment #payment ul.payment_methods { padding-bottom: 0; border-bottom: 0; }
}
@media (max-width: 600px) {
	.woocommerce-checkout form.checkout { gap: 18px; }
	.woocommerce-checkout form.checkout .hewc-order-review-title { margin-bottom: 14px; font-size: 20px; }
	.woocommerce-checkout form.checkout #order_review .shop_table th,
	.woocommerce-checkout form.checkout #order_review .shop_table td { padding-block: 10px; }
	.woocommerce-checkout form.checkout .hewc-mobile-place-order #place_order { min-height: 50px; }
}

/* Elementor contact form shortcode */
.hewc-contact-section { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr); gap: clamp(30px, 5vw, 70px); align-items: start; width: 100%; color: var(--hewc-text); }
.hewc-contact-form-card, .hewc-contact-info-card { min-width: 0; }
.hewc-contact-form-card h2 { margin: 0 0 26px; color: var(--hewc-text); font-size: clamp(26px, 3vw, 36px); font-weight: 900; line-height: 1.2; }
.hewc-contact-form { display: grid; gap: 19px; }
.hewc-contact-field { margin: 0; }
.hewc-contact-field label { display: block; margin: 0 0 8px; color: var(--hewc-text); font-size: 14px; font-weight: 800; line-height: 1.4; }
.hewc-contact-field label span { color: var(--hewc-muted); font-size: 12px; font-weight: 600; }
.hewc-contact-field input, .hewc-contact-field textarea { display: block; width: 100%; min-height: 50px; padding: 12px 14px; color: var(--hewc-text); background: #fff; border: 1px solid var(--hewc-border); border-radius: 7px; box-shadow: none; transition: border-color .18s ease, box-shadow .18s ease; }
.hewc-contact-field textarea { min-height: 150px; resize: vertical; }
.hewc-contact-field input:focus, .hewc-contact-field textarea:focus { border-color: var(--hewc-accent); outline: 0; box-shadow: 0 0 0 3px rgba(77, 192, 209, .15); }
.hewc-contact-submit { justify-self: start; min-width: 170px; min-height: 50px; padding: 12px 24px; color: #fff; background: var(--hewc-accent); border: 0; border-radius: 7px; font-size: 14px; font-weight: 900; cursor: pointer; }
.hewc-contact-submit:hover, .hewc-contact-submit:focus { color: #fff; background: var(--hewc-accent-dark); }
.hewc-contact-info-card { padding: clamp(26px, 4vw, 42px); color: #fff; background: var(--hewc-text); border-radius: 12px; box-shadow: 0 18px 45px rgba(0, 0, 0, .12); }
.hewc-contact-eyebrow { margin: 0 0 20px; color: var(--hewc-accent); font-size: 13px; font-weight: 900; letter-spacing: .11em; }
.hewc-contact-description { margin: 0 0 30px; color: rgba(255, 255, 255, .8); font-size: 15px; line-height: 1.85; }
.hewc-contact-details { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.hewc-contact-details li { display: grid; grid-template-columns: 26px minmax(0, 1fr); gap: 12px; align-items: center; margin: 0; color: #fff; font-size: 15px; }
.hewc-contact-details .dashicons { display: grid; place-items: center; width: 26px; height: 26px; color: var(--hewc-accent); font-size: 20px; }
.hewc-contact-details a { color: #fff; text-decoration: none; overflow-wrap: anywhere; }
.hewc-contact-details a:hover { color: var(--hewc-accent); }
.hewc-contact-alert { margin: -10px 0 22px; padding: 12px 14px; border-radius: 6px; font-size: 14px; line-height: 1.5; }
.hewc-contact-alert--success { color: #315d12; background: #eff9e8; border: 1px solid #cde7bb; }
.hewc-contact-alert--error { color: #842029; background: #f8d7da; border: 1px solid #f1aeb5; }
.hewc-contact-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 800px) {
	.hewc-contact-section { grid-template-columns: minmax(0, 1fr); gap: 34px; }
	.hewc-contact-info-card { grid-row: 2; }
}
@media (max-width: 480px) {
	.hewc-contact-form-card h2 { margin-bottom: 22px; font-size: 25px; }
	.hewc-contact-form { gap: 16px; }
	.hewc-contact-info-card { padding: 24px 20px; border-radius: 9px; }
	.hewc-contact-submit { width: 100%; }
}

/* Contact form light left card */
.hewc-contact-form-card {
	padding: clamp(24px, 4vw, 40px);
	color: var(--hewc-text);
	background: #f8f9f7;
	border: 1px solid #e3e7df;
	border-radius: 12px;
	box-shadow: 0 14px 38px rgba(0, 0, 0, .06);
}
.hewc-contact-form-card h2,
.hewc-contact-form-card label { color: var(--hewc-text); }
@media (max-width: 480px) {
	.hewc-contact-form-card { padding: 22px 18px; border-radius: 9px; }
}


/* Contact information light color scheme */
.hewc-contact-info-card {
	color: #111;
	background: #fff;
	border: 1px solid #e2e5df;
	box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}
.hewc-contact-info-card .hewc-contact-description,
.hewc-contact-info-card .hewc-contact-details li,
.hewc-contact-info-card .hewc-contact-details a { color: #111; }
.hewc-contact-info-card .hewc-contact-details a:hover,
.hewc-contact-info-card .hewc-contact-details a:focus { color: var(--hewc-accent-dark); }

/* Wishlist page */
.hewc-wishlist { width: min(1200px, calc(100% - 32px)); margin: 48px auto 72px; }
.hewc-wishlist__header { margin-bottom: 28px; }
.hewc-wishlist__header h1 { margin: 0; font-size: clamp(30px, 4vw, 44px); }
.hewc-wishlist__products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hewc-wishlist__status { padding: 56px 20px; text-align: center; border: 1px solid #e5e7eb; }
.hewc-wishlist__status p { margin: 0 0 18px; }
@media (max-width: 900px) { .hewc-wishlist__products { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
/* Selected shipping cost in the checkout order summary */
.woocommerce-checkout form.checkout #order_review .shop_table tfoot .hewc-shipping-summary { display: table-row; }
.woocommerce-checkout form.checkout #order_review .shop_table .hewc-shipping-summary th,
.woocommerce-checkout form.checkout #order_review .shop_table .hewc-shipping-summary td { color: var(--hewc-text); font-size: 14px; }
.woocommerce-checkout form.checkout #order_review .shop_table .hewc-shipping-summary td { font-weight: 800; }