:root {
	--ews-text: var(--e-global-color-text, #172033);
	--ews-heading: var(--e-global-color-secondary, #0d1728);
	--ews-muted: var(--e-global-color-ews_muted, #657184);
	--ews-line: var(--e-global-color-ews_line, #dde4ec);
	--ews-soft-line: #edf1f5;
	--ews-surface: var(--e-global-color-ews_surface, #ffffff);
	--ews-surface-alt: var(--e-global-color-ews_surface_alt, #f5f7fa);
	--ews-bg: #f8fafc;
	--ews-accent: var(--e-global-color-primary, #0f766e);
	--ews-accent-dark: var(--e-global-color-ews_accent_dark, #0b5f59);
	--ews-accent-soft: var(--e-global-color-ews_accent_soft, #e6f4f1);
	--ews-ink: #111827;
	--ews-warning: var(--e-global-color-accent, #b45309);
	--ews-success: #13795b;
	--ews-danger: #b42318;
	--ews-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
	--ews-radius: 8px;
	--ews-radius-sm: 6px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.ews-theme {
	margin: 0;
	background: var(--ews-bg);
	color: var(--ews-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

body.ews-theme.admin-bar .site-header {
	top: 32px;
}

::selection {
	background: var(--ews-accent);
	color: #fff;
}

a {
	color: var(--ews-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover,
a:focus {
	color: var(--ews-accent-dark);
}

img {
	height: auto;
	max-width: 100%;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

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

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
select,
textarea,
.woocommerce .select2-container .select2-selection--single {
	background: #fff;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius-sm);
	color: var(--ews-text);
	min-height: 44px;
	padding: 10px 12px;
	width: 100%;
}

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

input:focus,
select:focus,
textarea:focus,
.woocommerce .select2-container--default.select2-container--focus .select2-selection--single {
	border-color: var(--ews-accent);
	box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
	outline: none;
}

.site-shell {
	margin-inline: auto;
	max-width: 1240px;
	padding-inline: 24px;
	width: 100%;
}

.site-header {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--ews-line);
	box-shadow: none;
	position: sticky;
	top: 0;
	transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
	z-index: 50;
}

.site-header--fixed {
	left: 0;
	position: fixed;
	right: 0;
}

.site-header--static {
	position: static;
}

.site-header--transparent {
	background: transparent;
	border-bottom-color: transparent;
}

.site-header--shadow.is-scrolled,
.site-header--shadow:not(.site-header--transparent) {
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.site-header--transparent.is-scrolled {
	background: rgba(255, 255, 255, 0.96);
	border-bottom-color: var(--ews-line);
}

.site-header--no-shadow {
	box-shadow: none;
}

.site-announcement {
	background: var(--ews-ink);
	color: #fff;
	font-size: 13px;
}

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

.site-announcement a {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.site-header__inner {
	align-items: center;
	display: grid;
	gap: 22px;
	grid-template-columns: auto 1fr auto;
	min-height: 82px;
}

.site-header__inner--full {
	padding-inline: clamp(18px, 4vw, 48px);
}

.ews-header-logo {
	align-items: center;
	display: flex;
	gap: 12px;
}

.site-title {
	color: var(--ews-heading);
	display: inline-flex;
	font-size: 23px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.1;
	text-decoration: none;
}

.custom-logo-link img {
	display: block;
	height: auto;
	max-height: 52px;
	max-width: 210px;
	object-fit: contain;
	width: auto;
}

.site-header .custom-logo-link img {
	height: 52px;
	max-height: 52px;
	max-width: 210px;
	width: auto;
}

.site-navigation ul,
.site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-navigation ul {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.ews-header-menu,
.ews-header-actions {
	width: 100%;
}

.ews-header-menu {
	display: flex;
}

.ews-menu-toggle {
	align-items: center;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius-sm);
	color: var(--ews-heading);
	cursor: pointer;
	display: none;
	font: inherit;
	font-weight: 800;
	gap: 10px;
	justify-content: center;
	padding: 10px 12px;
	position: relative;
	z-index: 90;
}

.ews-menu-toggle__label:empty {
	display: none;
}

.ews-menu-toggle__icon {
	display: inline-flex;
	height: 14px;
	position: relative;
	width: 18px;
}

.ews-menu-toggle__icon span,
.ews-menu-toggle__icon::before,
.ews-menu-toggle__icon::after {
	background: currentColor;
	border-radius: 999px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transition: opacity 160ms ease, transform 160ms ease, top 160ms ease;
	width: 100%;
}

.ews-menu-toggle__icon::before {
	top: 0;
}

.ews-menu-toggle__icon span {
	top: 6px;
}

.ews-menu-toggle__icon::after {
	top: 12px;
}

.ews-header-menu.is-open .ews-menu-toggle__icon::before {
	top: 6px;
	transform: rotate(45deg);
}

.ews-header-menu.is-open .ews-menu-toggle__icon span {
	opacity: 0;
}

.ews-header-menu.is-open .ews-menu-toggle__icon::after {
	top: 6px;
	transform: rotate(-45deg);
}

.ews-menu-panel {
	width: 100%;
}

.ews-menu-panel__brand {
	display: none;
}

/* Drawer head chrome + drill affordances stay hidden until the off-canvas
   drawer is active (revealed inside the mobile media queries below). */
.ews-menu-panel__back,
.ews-menu-panel__close,
.ews-menu-panel__title,
.ews-drill-toggle,
.ews-menu-backdrop {
	display: none;
}

body.ews-menu-open {
	overflow: hidden;
}

.site-navigation li {
	position: relative;
}

.site-navigation a {
	border-radius: var(--ews-radius-sm);
	color: var(--ews-text);
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	overflow: hidden;
	padding: 10px 12px;
	position: relative;
	text-decoration: none;
	transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.site-navigation a::after {
	background: currentColor;
	bottom: 6px;
	content: "";
	height: 2px;
	left: 12px;
	opacity: 0;
	position: absolute;
	right: 12px;
	transform: scaleX(0);
	transform-origin: center;
	transition: opacity 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.site-navigation a:hover,
.site-navigation .current-menu-item > a,
.site-navigation .current_page_item > a {
	color: var(--ews-accent-dark);
}

.site-navigation .sub-menu {
	background: #fff;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius);
	box-shadow: var(--ews-shadow);
	display: none;
	left: 0;
	min-width: 210px;
	padding: 8px;
	position: absolute;
	top: 100%;
	z-index: 20;
}

.site-navigation li:hover > .sub-menu,
.site-navigation li:focus-within > .sub-menu {
	display: block;
}

/* Mega menu panels (Elementor template driven). */
.ews-header-menu--has-mega {
	position: relative;
}

/* Mega item is static so its panel anchors to the nav, not the narrow item. */
.ews-header-menu--has-mega .ews-has-mega {
	position: static;
}

/* A mega item's own WP sub-menu is replaced by the template panel. */
.site-navigation .ews-has-mega > .sub-menu {
	display: none !important;
}

/* Positioned dropdown wrapper — the theme provides the panel chrome
   (the Ann Summers-style white card) while the assigned Elementor template
   supplies the link columns and promo content rendered inside it. */
.ews-mega-panel {
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: calc(100% + var(--ews-mega-gap, 0px));
	transform: translateY(10px);
	/* Animate opacity + slide on open; hold visibility until the fade-out
	   finishes so display:none never cuts the transition short. */
	transition: opacity 240ms cubic-bezier(0.16, 1, 0.3, 1), transform 240ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 240ms;
	visibility: hidden;
	z-index: 30;
}

/* Transparent bridge spanning the gap between the header and the panel so the
   cursor can cross it without dropping :hover and snapping the panel shut. */
.ews-mega-panel::before {
	content: "";
	height: var(--ews-mega-gap, 0px);
	left: 0;
	position: absolute;
	right: 0;
	top: calc(-1 * var(--ews-mega-gap, 0px));
}

.ews-header-menu--mega-full .ews-mega-panel {
	left: 50%;
	margin-left: -50vw;
	right: auto;
	width: 100vw;
}

/* The card itself: white surface, soft shadow, rounded corners, padding. */
.ews-mega-panel__inner {
	background: var(--ews-surface, #fff);
	border: 1px solid var(--ews-soft-line, #edf1f5);
	border-radius: var(--ews-radius, 8px);
	box-shadow: var(--ews-shadow, 0 18px 48px rgba(15, 23, 42, 0.08));
	margin-inline: auto;
	overflow: hidden;
	padding: 28px 32px;
	width: 100%;
}

/* Full-bleed dropdown: constrain the card to the page container so it reads
   as a centered panel rather than an edge-to-edge bar. */
.ews-header-menu--mega-full .ews-mega-panel__inner {
	max-width: var(--ews-container, 1240px);
}

/* Optional content helpers — add these CSS classes to widgets inside the
   Elementor mega template to get the Ann Summers layout without per-template
   styling. ews-mega-grid wraps link columns + promo; ews-mega-promo is the
   image card with a "Shop Now" overlay. */
.ews-mega-grid {
	align-items: start;
	display: grid;
	gap: 32px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.9fr);
}

.ews-mega-grid--promo {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 320px);
}

/* Link columns: stacked, muted, Ann Summers-style category lists. */
.ews-mega-col ul,
.ews-mega-col .elementor-nav-menu,
.ews-mega-col .menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ews-mega-col a {
	color: var(--ews-text, #172033);
	display: block;
	font-size: 14px;
	line-height: 1.4;
	padding: 7px 0;
	text-decoration: none;
	transition: color 120ms ease;
}

.ews-mega-col a:hover,
.ews-mega-col a:focus {
	color: var(--ews-accent, #0f766e);
}

.ews-mega-col__title {
	color: var(--ews-heading, #0d1728);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

/* Promo card: image with a "Shop Now" button anchored at the bottom. */
.ews-mega-promo {
	border-radius: var(--ews-radius-sm, 6px);
	display: block;
	overflow: hidden;
	position: relative;
}

.ews-mega-promo img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.ews-mega-promo__cta {
	background: rgba(255, 255, 255, 0.92);
	border-radius: 999px;
	bottom: 16px;
	color: var(--ews-heading, #0d1728);
	font-size: 13px;
	font-weight: 600;
	left: 50%;
	padding: 9px 22px;
	position: absolute;
	text-decoration: none;
	transform: translateX(-50%);
	transition: background 120ms ease;
	white-space: nowrap;
}

.ews-mega-promo__cta:hover,
.ews-mega-promo__cta:focus {
	background: #fff;
}

/* The panel renders inside .site-navigation, whose primary-menu rules
   (flex list, inline-flex links, animated underline) leak into the mega
   columns. Re-assert the stacked column layout with higher specificity. */
.ews-mega-panel .ews-mega-col ul,
.ews-mega-panel .ews-mega-col .menu,
.ews-mega-panel .ews-mega-col .elementor-nav-menu {
	display: block;
	gap: 0;
}

.ews-mega-panel .ews-mega-col li {
	margin: 0;
	width: 100%;
}

.ews-mega-panel .ews-mega-col a {
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	overflow: visible;
	padding: 7px 0;
}

.ews-mega-panel .ews-mega-col a::after {
	display: none;
}

.ews-mega-panel__placeholder {
	color: var(--ews-muted, #657184);
	font-size: 13px;
	font-weight: 600;
	padding: 16px;
	text-align: center;
}

.site-navigation .ews-has-mega:hover > .ews-mega-panel,
.site-navigation .ews-has-mega:focus-within > .ews-mega-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	/* Reveal immediately on open (no visibility delay) so the fade/slide runs. */
	transition: opacity 240ms cubic-bezier(0.16, 1, 0.3, 1), transform 240ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s;
	visibility: visible;
}

/* Subtle image lift inside the promo card on hover. */
.ews-mega-promo__img {
	transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ews-mega-promo:hover .ews-mega-promo__img {
	transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
	.ews-mega-panel,
	.ews-mega-promo__img {
		transition-duration: 1ms;
	}

	.ews-mega-promo:hover .ews-mega-promo__img {
		transform: none;
	}
}

.site-actions {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}

.site-actions .search-form {
	align-items: center;
	display: flex;
	gap: 6px;
	max-width: 280px;
	position: relative;
}

.site-actions .search-submit {
	gap: 8px;
}

.search-form label {
	flex: 1;
}

.search-form .search-field {
	min-width: 160px;
}

.ews-header-search--modal {
	max-width: none;
}

.ews-search-modal[hidden] {
	display: none;
}

.ews-search-modal {
	align-items: flex-start;
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	padding: clamp(72px, 12vh, 120px) 20px 20px;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 120;
}

.ews-search-modal__backdrop {
	background: rgba(15, 23, 42, 0.55);
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.ews-search-modal__panel {
	background: #fff;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius);
	box-shadow: var(--ews-shadow);
	max-width: 640px;
	padding: 28px;
	position: relative;
	width: min(100%, 640px);
	z-index: 1;
}

.ews-search-modal__close {
	align-items: center;
	background: #fff;
	border: 1px solid var(--ews-line);
	border-radius: 999px;
	color: var(--ews-heading);
	cursor: pointer;
	display: inline-flex;
	font-size: 22px;
	height: 36px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: 16px;
	top: 16px;
	width: 36px;
}

.ews-search-modal__form {
	align-items: stretch;
	display: flex;
	gap: 10px;
	padding-right: 48px;
	position: relative;
}

.ews-search-modal__form label {
	flex: 1;
}

.ews-header-search__results {
	background: #fff;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius);
	box-shadow: var(--ews-shadow);
	left: 0;
	max-height: min(420px, 62vh);
	overflow-y: auto;
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	z-index: 130;
}

.ews-search-modal__form .ews-header-search__results {
	right: 48px;
}

.ews-entry-popup[hidden] {
	display: none;
}

.ews-entry-popup {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 20px;
	position: fixed;
	z-index: 120;
}

.ews-entry-popup__backdrop {
	background: rgba(15, 23, 42, 0.64);
	inset: 0;
	position: absolute;
}

.ews-entry-popup__panel {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
	max-width: 460px;
	padding: 34px;
	position: relative;
	text-align: center;
	transform: translateY(12px) scale(0.98);
	transition: opacity 180ms ease, transform 180ms ease;
	width: min(100%, 460px);
	z-index: 1;
}

.ews-entry-popup.is-open .ews-entry-popup__panel {
	transform: translateY(0) scale(1);
}

.ews-entry-popup__icon {
	align-items: center;
	background: var(--ews-accent-soft);
	border-radius: 999px;
	color: var(--ews-accent-dark);
	display: inline-flex;
	height: 64px;
	justify-content: center;
	margin-bottom: 18px;
	width: 64px;
}

.ews-entry-popup__icon svg,
.ews-entry-popup__icon i {
	fill: currentColor;
	font-size: 28px;
	height: 28px;
	width: 28px;
}

.ews-entry-popup h2 {
	color: var(--ews-heading);
	font-size: 28px;
	line-height: 1.15;
	margin: 0 0 12px;
}

.ews-entry-popup p {
	color: var(--ews-muted);
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
}

.ews-entry-popup__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 24px;
}

.ews-entry-popup__button {
	align-items: center;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius-sm);
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-weight: 800;
	justify-content: center;
	min-height: 46px;
	min-width: 132px;
	padding: 12px 18px;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.ews-entry-popup__button:hover,
.ews-entry-popup__button:focus {
	transform: translateY(-1px);
}

.ews-entry-popup__button--yes {
	background: var(--ews-accent);
	border-color: var(--ews-accent);
	color: #fff;
}

.ews-entry-popup__button--no {
	background: #fff;
	color: var(--ews-heading);
}

body.ews-entry-popup-open {
	overflow: hidden;
}

.ews-ajax-search__list {
	list-style: none;
	margin: 0;
	padding: 6px;
}

.ews-ajax-search__item + .ews-ajax-search__item {
	border-top: 1px solid var(--ews-soft-line);
}

.ews-ajax-search__link {
	align-items: center;
	color: var(--ews-heading);
	display: flex;
	gap: 12px;
	padding: 10px;
	text-decoration: none;
}

.ews-ajax-search__link:hover {
	background: var(--ews-surface-alt);
	color: var(--ews-accent);
}

.ews-ajax-search__thumb {
	align-items: center;
	background: var(--ews-surface-alt);
	border-radius: var(--ews-radius-sm);
	display: inline-flex;
	flex: 0 0 44px;
	height: 44px;
	justify-content: center;
	overflow: hidden;
	width: 44px;
}

.ews-ajax-search__thumb img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.ews-ajax-search__content {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.ews-ajax-search__title {
	font-weight: 800;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ews-ajax-search__meta {
	color: var(--ews-muted);
	font-size: 13px;
	line-height: 1.35;
}

.ews-ajax-search__all,
.ews-ajax-search__empty,
.ews-ajax-search__status {
	display: block;
	margin: 0;
	padding: 12px 16px;
}

.ews-ajax-search__all {
	border-top: 1px solid var(--ews-soft-line);
	font-weight: 800;
	text-decoration: none;
}

.ews-ajax-search__empty,
.ews-ajax-search__status {
	color: var(--ews-muted);
}

.search-submit,
.button-link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #payment #place_order {
	align-items: center;
	background: var(--ews-accent);
	border: 1px solid var(--ews-accent);
	border-radius: var(--ews-radius-sm);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 42px;
	padding: 11px 16px;
	text-decoration: none;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.search-submit:hover,
.button-link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #payment #place_order:hover {
	background: var(--ews-accent-dark);
	border-color: var(--ews-accent-dark);
	color: #fff;
	transform: translateY(-1px);
}

.site-action {
	align-items: center;
	color: var(--ews-heading);
	display: inline-flex;
	gap: 8px;
	justify-content: center;
	line-height: 1.2;
	text-decoration: none;
	transition: color 160ms ease, transform 160ms ease;
	white-space: nowrap;
}

.site-action:hover {
	color: var(--ews-accent);
	transform: translateY(-1px);
}

.site-action__icon {
	fill: currentColor;
	flex: 0 0 auto;
	height: 18px;
	width: 18px;
}

.site-action__icon svg,
.site-action__icon i {
	display: block;
	height: 100%;
	width: 100%;
}

.site-action__icon i {
	font-size: inherit;
	line-height: 1;
}

.ews-header-actions--icon .search-submit,
.ews-header-actions--icon-only .search-submit {
	min-width: 42px;
	padding-inline: 11px;
}

.site-action--cart,
.site-action--wishlist {
	position: relative;
}

.site-action__count {
	align-items: center;
	background: var(--ews-accent);
	border-radius: 999px;
	bottom: var(--ews-badge-bottom, auto);
	color: #fff;
	display: inline-flex;
	font-size: 12px;
	height: 22px;
	justify-content: center;
	left: var(--ews-badge-left, auto);
	min-width: 22px;
	padding-inline: 6px;
	pointer-events: none;
	position: absolute;
	right: var(--ews-badge-right, auto);
	top: var(--ews-badge-top, -10px);
	transform: translate(var(--ews-badge-translate-x, 0), var(--ews-badge-translate-y, 0));
	z-index: 1;
}

.ews-header-actions--icon_text .site-action--cart,
.ews-header-actions--icon_text .site-action--wishlist {
	--ews-badge-bottom: auto;
	--ews-badge-left: 12px;
	--ews-badge-right: auto;
	--ews-badge-top: -10px;
	--ews-badge-translate-x: 35%;
	--ews-badge-translate-y: 0;
}

.ews-header-actions--icon .site-action--cart,
.ews-header-actions--icon .site-action--wishlist {
	--ews-badge-bottom: auto;
	--ews-badge-left: auto;
	--ews-badge-right: -10px;
	--ews-badge-top: -10px;
	--ews-badge-translate-x: 0;
	--ews-badge-translate-y: 0;
}

.site-main {
	padding-block: 48px 64px;
}

.site-main--full {
	padding-block: 0;
}

.ews-elementor-home {
	background: #fff;
	padding-block: 0;
}

.ews-elementor-home > .elementor {
	width: 100%;
}

.ews-woocommerce-widget {
	width: 100%;
}

.ews-woocommerce-widget {
	display: block;
	margin-inline: auto;
	max-width: var(--ews-container);
	padding-inline: clamp(16px, 4vw, 32px);
}

.ews-woocommerce-widget--notice {
	background: var(--ews-surface);
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius);
	color: var(--ews-muted);
	padding: clamp(18px, 3vw, 28px);
}

.entry,
.archive-header,
.commerce-hero,
.commerce-panel {
	background: var(--ews-surface);
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius);
	box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
}

.entry,
.archive-header {
	padding: clamp(24px, 4vw, 44px);
}

.entry--centered {
	margin-inline: auto;
	max-width: 760px;
	text-align: center;
}

.entry + .entry,
.post-grid + .navigation,
.post-grid + .pagination,
.archive-header + .post-grid {
	margin-top: 30px;
}

.entry-title,
.archive-title,
.entry h1,
.archive-header h1,
.commerce-hero h1 {
	color: var(--ews-heading);
	font-size: clamp(34px, 5vw, 58px);
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0 0 18px;
}

.eyebrow {
	color: var(--ews-accent-dark);
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.entry-content > *:first-child,
.archive-description > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child,
.archive-description > *:last-child {
	margin-bottom: 0;
}

.entry-actions {
	margin: 24px 0;
}

.post-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.post-card {
	background: var(--ews-surface);
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius);
	overflow: hidden;
	padding: 18px;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.post-card:hover {
	border-color: rgba(15, 118, 110, 0.32);
	box-shadow: var(--ews-shadow);
	transform: translateY(-2px);
}

.post-card img {
	aspect-ratio: 4 / 3;
	border-radius: var(--ews-radius-sm);
	display: block;
	object-fit: cover;
	width: 100%;
}

.post-card h2 {
	font-size: 22px;
	line-height: 1.2;
	margin: 18px 0 8px;
}

.post-card h2 a {
	color: var(--ews-heading);
	text-decoration: none;
}

.navigation.pagination,
.woocommerce nav.woocommerce-pagination {
	margin-top: 32px;
	text-align: center;
}

.nav-links,
.woocommerce nav.woocommerce-pagination ul {
	align-items: center;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.nav-links a,
.nav-links span,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	background: #fff;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius-sm);
	color: var(--ews-heading);
	display: inline-flex;
	font-weight: 800;
	min-height: 40px;
	min-width: 40px;
	padding: 8px 12px;
	text-decoration: none;
}

.nav-links .current,
.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--ews-accent);
	border-color: var(--ews-accent);
	color: #fff;
}

.woocommerce-main {
	padding-block: 36px 66px;
}

.woocommerce-main--single {
	background: #fff;
}

.commerce-hero {
	align-items: center;
	background: linear-gradient(135deg, #ffffff 0%, #eef8f6 100%);
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 24px;
	overflow: hidden;
	padding: clamp(26px, 5vw, 54px);
	position: relative;
}

.commerce-hero p {
	color: var(--ews-muted);
	font-size: 18px;
	margin: 0;
	max-width: 680px;
}

.commerce-hero__link {
	background: var(--ews-heading);
	border-radius: var(--ews-radius-sm);
	color: #fff;
	font-weight: 900;
	padding: 12px 18px;
	text-decoration: none;
	white-space: nowrap;
}

.commerce-hero__link:hover {
	background: var(--ews-accent-dark);
	color: #fff;
}

.commerce-panel {
	padding: clamp(20px, 3vw, 34px);
}

.woocommerce .woocommerce-breadcrumb {
	color: var(--ews-muted);
	font-size: 14px;
	margin: 0 0 24px;
}

.ews-product-breadcrumb {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.ews-product-breadcrumb a,
.ews-product-breadcrumb span {
	color: var(--ews-muted);
	text-decoration: none;
}

.ews-product-breadcrumb a:hover {
	color: var(--ews-heading);
}

.woocommerce .page-title {
	color: var(--ews-heading);
	font-size: clamp(34px, 5vw, 56px);
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0 0 22px;
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
	color: var(--ews-muted);
	font-size: 14px;
	margin: 12px 0 22px;
}

.woocommerce .woocommerce-ordering select {
	min-width: 220px;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	background: #fff;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius);
	box-shadow: none;
	float: none;
	margin: 0;
	overflow: hidden;
	padding: 14px 14px 18px;
	position: relative;
	text-align: left;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	width: auto;
}

.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product {
	clear: none;
	float: none;
	margin: 0;
	width: auto;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
	border-color: rgba(15, 118, 110, 0.34);
	box-shadow: var(--ews-shadow);
	transform: translateY(-3px);
}

.ews-shop-card-minimal.woocommerce ul.products li.product,
.ews-shop-card-minimal.woocommerce-page ul.products li.product {
	border-color: transparent;
	box-shadow: none;
	padding: 0;
}

.ews-shop-card-minimal.woocommerce ul.products li.product:hover,
.ews-shop-card-minimal.woocommerce-page ul.products li.product:hover {
	border-color: transparent;
	box-shadow: none;
	transform: none;
}

.ews-shop-card-elevated.woocommerce ul.products li.product,
.ews-shop-card-elevated.woocommerce-page ul.products li.product {
	box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
}

.ews-shop-card-compact.woocommerce ul.products li.product,
.ews-shop-card-compact.woocommerce-page ul.products li.product {
	padding: 10px 10px 14px;
}

.ews-shop-card-compact.woocommerce ul.products li.product .woocommerce-loop-product__title,
.ews-shop-card-compact.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
	font-size: 15px;
	min-height: auto;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 1;
	background: var(--ews-surface-alt);
	border-radius: var(--ews-radius-sm);
	margin: 0 0 16px;
	object-fit: cover;
	width: 100%;
}

.woocommerce span.onsale {
	background: var(--ews-danger);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	left: 24px;
	line-height: 1;
	min-height: auto;
	min-width: auto;
	padding: 8px 10px;
	top: 24px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: var(--ews-heading);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.25;
	min-height: 43px;
	padding: 0;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--ews-accent-dark);
	font-size: 18px;
	font-weight: 900;
}

.woocommerce ul.products li.product .price del,
.woocommerce div.product p.price del {
	color: var(--ews-muted);
	font-weight: 600;
	opacity: 0.72;
}

.woocommerce .star-rating,
.woocommerce .star-rating::before {
	color: #d97706;
}

.woocommerce ul.products li.product .button {
	margin-top: 12px;
	width: 100%;
}

.woocommerce div.product {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	margin-bottom: 0;
}

.woocommerce div.product div.images {
	background: transparent;
	border: 0;
	border-radius: 0;
	display: grid;
	gap: 22px;
	grid-template-columns: 72px minmax(0, 1fr);
	box-shadow: none;
	padding: 0;
}

.woocommerce div.product div.images .flex-viewport,
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	grid-column: 2;
	grid-row: 1;
}

.woocommerce div.product div.images .flex-control-thumbs {
	align-content: start;
	display: grid;
	gap: 10px;
	grid-column: 1;
	grid-row: 1;
	margin: 0;
	padding: 0;
}

.woocommerce div.product div.images .ews-product-gallery-thumbs {
	align-self: start;
	display: grid;
	gap: 8px;
	grid-column: 1;
	grid-row: 1;
	max-height: min(560px, calc(100vh - 170px));
	min-height: 0;
}

.woocommerce div.product div.images .ews-product-gallery-thumbs__viewport {
	max-height: min(456px, calc(100vh - 260px));
	min-height: 0;
	overflow: hidden;
}

.woocommerce div.product div.images .ews-product-gallery-thumbs .flex-control-thumbs {
	grid-column: auto;
	grid-row: auto;
	overflow: visible;
}

.ews-product-gallery-thumbs__arrow {
	align-items: center;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 50%;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
	color: #172033;
	cursor: pointer;
	display: none;
	height: 34px;
	justify-self: center;
	justify-content: center;
	padding: 0;
	transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, opacity 160ms ease, transform 160ms ease;
	width: 34px;
}

.ews-product-gallery-thumbs.has-overflow .ews-product-gallery-thumbs__arrow {
	display: inline-flex;
}

.ews-product-gallery-thumbs__arrow:disabled {
	cursor: default;
	opacity: 0.38;
	box-shadow: none;
}

.ews-product-gallery-thumbs__arrow:not(:disabled):hover,
.ews-product-gallery-thumbs__arrow:not(:disabled):focus {
	background: #172033;
	border-color: #172033;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
	color: #fff;
	transform: translateY(-1px);
}

.ews-product-gallery-thumbs__arrow:focus-visible {
	outline: 2px solid rgba(15, 118, 110, 0.28);
	outline-offset: 3px;
}

.ews-product-gallery-thumbs__arrow span {
	border-color: currentColor;
	border-style: solid;
	border-width: 0 0 2px 2px;
	display: block;
	height: 8px;
	width: 8px;
}

.ews-product-gallery-thumbs__arrow--prev span {
	transform: translateY(2px) rotate(135deg);
}

.ews-product-gallery-thumbs__arrow--next span {
	transform: translateY(-2px) rotate(-45deg);
}

.woocommerce div.product div.images .flex-control-thumbs li {
	flex: 0 0 auto;
	float: none;
	width: auto;
}

.woocommerce div.product div.images .flex-control-thumbs img {
	aspect-ratio: 1 / 1;
	background: #f4f6f8;
	border: 1px solid transparent;
	border-radius: 8px;
	height: 58px;
	object-fit: cover;
	opacity: 1;
	padding: 0;
	width: 58px;
}

.woocommerce div.product div.images .flex-control-thumbs img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs img:hover {
	border-color: #111;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image {
	background: #fff;
	border-radius: 22px;
	overflow: hidden;
}

.woocommerce div.product div.images img {
	background: #fff;
	border-radius: 22px;
	object-fit: cover;
}

.woocommerce div.product div.summary {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: clamp(8px, 2vw, 18px) 0;
}

.ews-product-brand {
	align-items: center;
	color: #111;
	display: flex;
	font-size: 14px;
	gap: 10px;
	margin-bottom: 14px;
}

.ews-product-brand span {
	align-items: center;
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	height: 34px;
	justify-content: center;
	text-transform: uppercase;
	width: 34px;
}

.woocommerce div.product .product_title {
	color: #050505;
	font-size: clamp(30px, 3.6vw, 44px);
	font-weight: 900;
	line-height: 1.05;
	margin-bottom: 10px;
}

.woocommerce div.product .summary .price {
	border-bottom: 0;
	color: #050505;
	display: block;
	font-size: 20px;
	font-weight: 900;
	margin: 18px 0 34px;
	padding-bottom: 0;
}

.woocommerce div.product .summary .woocommerce-product-rating {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-bottom: 12px;
}

.woocommerce div.product .summary .woocommerce-review-link {
	color: #111;
	font-size: 13px;
	font-weight: 800;
}

.woocommerce div.product .summary .stock {
	border-radius: 999px;
	display: inline-flex;
	font-size: 13px;
	font-weight: 900;
	margin: 8px 0 0;
	padding: 7px 10px;
}

.woocommerce div.product .summary .stock.in-stock {
	background: #e6f4f1;
	color: var(--ews-accent-dark);
}

.woocommerce div.product .summary .stock.out-of-stock {
	background: #fff1f2;
	color: var(--ews-danger);
}

.woocommerce-product-details__short-description {
	color: #111;
	font-size: 15px;
	line-height: 1.55;
	margin-top: 44px;
}

.woocommerce div.product form.cart {
	align-items: stretch;
	background: transparent;
	border: 0;
	border-radius: 0;
	display: grid;
	gap: 10px;
	margin-top: 20px;
	padding: 0;
}

.woocommerce .quantity .qty {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	color: #050505;
	font-weight: 800;
	min-height: 46px;
	text-align: center;
	width: 104px;
}

.woocommerce div.product form.cart .button {
	border-radius: 999px;
	font-size: 16px;
	font-weight: 900;
	min-height: 54px;
	width: 100%;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
	background: #5b35f5;
	border-color: #5b35f5;
	box-shadow: 0 14px 24px rgba(91, 53, 245, 0.24);
	color: #fff;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
	background: #4b25e7;
	border-color: #4b25e7;
	color: #fff;
}

.woocommerce div.product form.cart .ews-buy-now-button {
	background: #101010;
	border-color: #101010;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
	color: #fff;
}

.woocommerce div.product form.cart .ews-buy-now-button:hover {
	background: #000;
	border-color: #000;
	color: #fff;
}

.woocommerce div.product form.cart .variations {
	margin-bottom: 12px;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
	display: block;
	line-height: 1.4;
	padding: 0 0 10px;
}

.woocommerce div.product form.cart .variations label {
	color: #050505;
	font-size: 14px;
	font-weight: 900;
}

.woocommerce div.product form.cart .variations select {
	border-radius: 999px;
	min-height: 42px;
}

.ews-product-actions {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 16px;
}

.ews-product-action {
	align-items: center;
	background: #fff !important;
	border: 1px solid #edf0f3;
	border-radius: 999px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
	color: #050505 !important;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-weight: 900;
	gap: 8px;
	justify-content: center;
	min-height: 46px;
	padding: 10px 16px;
	text-decoration: none;
}

.ews-product-action:hover {
	background: #fff !important;
	border-color: #d7dde5;
	color: #050505 !important;
}

.ews-product-action.is-saved span {
	color: #5b35f5;
	font-weight: 900;
}

.ews-product-action.is-copied::after {
	content: "Copied";
	font-size: 12px;
}

.ews-wishlist {
	display: grid;
	gap: 24px;
}

.ews-wishlist__header {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
}

.ews-wishlist__header h1 {
	color: var(--ews-heading);
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.05;
	margin: 0;
}

.ews-wishlist__empty {
	background: #fff;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius);
	padding: clamp(20px, 4vw, 42px);
}

.ews-product-assurance {
	background: #fff;
	border: 0;
	border-radius: 0;
	display: grid;
	gap: 10px;
	margin-top: 18px;
	padding: 0;
}

.ews-product-assurance__item {
	align-items: center;
	color: var(--ews-heading);
	display: flex;
	font-size: 14px;
	gap: 10px;
}

.ews-product-assurance__item span {
	background: var(--ews-accent);
	border-radius: 999px;
	display: inline-flex;
	height: 9px;
	width: 9px;
}

.product_meta {
	border-top: 0;
	color: #111;
	display: grid;
	gap: 8px;
	font-size: 14px;
	margin-top: 36px;
	padding-top: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	border-bottom: 1px solid var(--ews-line);
	margin: 34px 0 20px;
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related {
	background: #fff;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius);
	margin-top: 24px;
	padding: clamp(18px, 3vw, 30px);
}

.woocommerce div.product .related > h2 {
	color: var(--ews-heading);
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.12;
	margin: 0 0 22px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: transparent;
	border: 0;
	border-radius: 0;
	margin: 0 16px 0 0;
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	color: var(--ews-muted);
	font-weight: 900;
	padding: 0 0 12px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	box-shadow: inset 0 -3px 0 var(--ews-accent);
	color: var(--ews-heading);
}

.woocommerce table.shop_table {
	border: 1px solid var(--ews-line);
	border-collapse: separate;
	border-radius: var(--ews-radius);
	overflow: hidden;
}

.woocommerce table.shop_table th {
	background: var(--ews-surface-alt);
	color: var(--ews-heading);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
	border-color: var(--ews-soft-line);
	padding: 16px;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout #customer_details,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
	background: #fff;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius);
	box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
	padding: 24px;
}

.woocommerce-cart .cart-collaterals .cart_totals h2,
.woocommerce-checkout h3,
.woocommerce-account h2,
.woocommerce-account h3 {
	color: var(--ews-heading);
	font-size: 24px;
	line-height: 1.2;
	margin-top: 0;
}

.woocommerce-checkout #customer_details {
	margin-bottom: 24px;
}

.woocommerce form .form-row label {
	color: var(--ews-heading);
	font-weight: 800;
}

.woocommerce form .form-row .required {
	color: var(--ews-danger);
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	background: #fff;
	border: 1px solid var(--ews-line);
	border-left: 4px solid var(--ews-accent);
	border-radius: var(--ews-radius);
	box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
	color: var(--ews-text);
	padding: 16px 20px 16px 52px;
}

.woocommerce-error {
	border-left-color: var(--ews-danger);
}

.woocommerce-info {
	border-left-color: var(--ews-warning);
}

.woocommerce-message {
	border-left-color: var(--ews-success);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
	border-bottom: 1px solid var(--ews-soft-line);
	color: var(--ews-heading);
	display: block;
	font-weight: 800;
	padding: 12px 0;
	text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
	color: var(--ews-accent-dark);
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout,
.wp-block-woocommerce-empty-cart-block,
.wp-block-woocommerce-order-confirmation-summary,
.wc-block-cart,
.wc-block-checkout {
	background: #fff;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius);
	box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
	padding: clamp(18px, 3vw, 28px);
}

.entry-content > .wp-block-woocommerce-cart,
.entry-content > .wp-block-woocommerce-checkout {
	margin-top: 20px;
}

.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wc-block-components-button:not(.is-link) {
	background: var(--ews-accent);
	border: 1px solid var(--ews-accent);
	border-radius: var(--ews-radius-sm);
	color: #fff;
	font-weight: 900;
	min-height: 46px;
	text-decoration: none;
}

.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-button:not(.is-link):hover {
	background: var(--ews-accent-dark);
	border-color: var(--ews-accent-dark);
	color: #fff;
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-form .wc-block-components-text-input input[type="tel"],
.wc-block-components-form .wc-block-components-text-input input[type="text"],
.wc-block-components-form .wc-block-components-text-input input[type="url"] {
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius-sm);
	min-height: 48px;
}

.wc-block-components-sidebar,
.wc-block-cart__totals-title,
.wc-block-components-totals-wrapper {
	border-color: var(--ews-soft-line);
}

.wc-block-cart-items th,
.wc-block-cart-items td,
.wc-block-components-order-summary-item {
	border-color: var(--ews-soft-line);
}

.wc-block-cart-item__image img {
	border-radius: var(--ews-radius-sm);
}

.site-main--home {
	padding-block: 0 72px;
}

.home-hero {
	--ews-hero-media-opacity: 1;
	--ews-hero-image-fit: contain;
	--ews-hero-image-position: center center;
	--ews-hero-image-ratio: 1 / 1;
	--ews-hero-overlay-color: rgba(13, 23, 40, 0);
	--ews-hero-overlay-opacity: 1;
	background: #f1f5f9;
	position: relative;
}

.home-hero__slider {
	display: grid;
	min-height: clamp(560px, 72vh, 760px);
	overflow: hidden;
	position: relative;
}

.home-hero__slide {
	animation: ewsHeroSlider 18s cubic-bezier(0.45, 0, 0.2, 1) infinite;
	background:
		linear-gradient(120deg, rgba(17, 24, 39, 0.92) 0%, rgba(17, 24, 39, 0.78) 46%, rgba(15, 118, 110, 0.14) 100%),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='760' viewBox='0 0 1200 760'%3E%3Crect width='1200' height='760' fill='%23dbeafe'/%3E%3Cg fill='%23ffffff' opacity='.46'%3E%3Ccircle cx='1020' cy='140' r='210'/%3E%3Ccircle cx='930' cy='650' r='270'/%3E%3C/g%3E%3Cg fill='none' stroke='%230f766e' stroke-width='3' opacity='.35'%3E%3Cpath d='M130 570 C290 410 430 510 560 320 S850 170 1080 250'/%3E%3Cpath d='M180 650 C360 520 520 610 680 430 S910 360 1120 410'/%3E%3C/g%3E%3C/svg%3E");
	background-position: center;
	background-size: cover;
	grid-area: 1 / 1;
	opacity: 0;
	pointer-events: none;
	transform: scale(1.025);
	transform-origin: center;
	visibility: hidden;
	will-change: opacity, transform;
}

.home-hero__slide--2 {
	animation-delay: 6s;
	background:
		linear-gradient(120deg, rgba(13, 23, 40, 0.92) 0%, rgba(13, 23, 40, 0.76) 48%, rgba(180, 83, 9, 0.24) 100%),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='760' viewBox='0 0 1200 760'%3E%3Crect width='1200' height='760' fill='%23f8fafc'/%3E%3Cg fill='%23fde68a' opacity='.55'%3E%3Crect x='770' y='120' width='270' height='390' rx='18'/%3E%3Crect x='930' y='230' width='190' height='310' rx='18'/%3E%3C/g%3E%3Cg fill='%230f766e' opacity='.18'%3E%3Crect x='840' y='180' width='60' height='300' rx='30'/%3E%3Crect x='1010' y='285' width='54' height='220' rx='27'/%3E%3C/g%3E%3C/svg%3E");
}

.home-hero__slide--3 {
	animation-delay: 12s;
	background:
		linear-gradient(120deg, rgba(17, 24, 39, 0.94) 0%, rgba(17, 24, 39, 0.72) 48%, rgba(99, 102, 241, 0.18) 100%),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='760' viewBox='0 0 1200 760'%3E%3Crect width='1200' height='760' fill='%23e0f2fe'/%3E%3Cg fill='%23ffffff' opacity='.72'%3E%3Crect x='765' y='110' width='350' height='470' rx='24'/%3E%3Crect x='690' y='210' width='220' height='300' rx='24'/%3E%3C/g%3E%3Cg fill='%230f766e' opacity='.24'%3E%3Ccircle cx='960' cy='245' r='72'/%3E%3Ccircle cx='835' cy='360' r='54'/%3E%3C/g%3E%3C/svg%3E");
}

/* Split hero: text column on the left, full-bleed photo on the right. */
.home-hero__slide--split {
	--ews-hero-dark: #17060f;
	--ews-hero-accent: #ff3d8b;
	background:
		radial-gradient(120% 140% at 12% 20%, #2a0c22 0%, #17060f 55%, #100109 100%);
}

.home-hero__photo {
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	width: 54%;
	z-index: 0;
}

.home-hero__photo::before {
	background: linear-gradient(90deg, var(--ews-hero-dark) 0%, rgba(23, 6, 15, 0.72) 24%, rgba(23, 6, 15, 0) 58%);
	content: "";
	inset: 0;
	position: absolute;
}

.home-hero__slide--split .home-hero__inner {
	grid-template-columns: minmax(0, 1fr);
	position: relative;
	z-index: 1;
}

.home-hero__slide--split .home-hero__content {
	max-width: 640px;
}

.home-hero__slide--split .eyebrow {
	color: var(--ews-hero-accent);
}

.home-hero__title-main,
.home-hero__title-accent {
	display: block;
}

.home-hero__title-accent {
	color: var(--ews-hero-accent);
}

.home-hero__heart {
	color: var(--ews-hero-accent);
	font-size: 0.7em;
	vertical-align: middle;
}

/* Pink CTA + handwritten tagline. */
.home-hero__slide--split .home-hero__actions {
	align-items: center;
	gap: 22px;
}

.home-hero__slide--split .home-hero__actions .button-link {
	background: var(--ews-hero-accent);
	border-color: var(--ews-hero-accent);
	border-radius: 6px;
	color: #fff;
	font-size: 15px;
	letter-spacing: 0.04em;
	padding: 16px 30px;
	text-transform: uppercase;
}

.home-hero__slide--split .home-hero__actions .button-link:hover {
	background: #ff5ba0;
	border-color: #ff5ba0;
}

.home-hero__cta-arrow {
	margin-left: 6px;
}

.home-hero__script {
	color: rgba(255, 255, 255, 0.82);
	font-family: "Segoe Script", "Brush Script MT", cursive;
	font-size: 21px;
	font-style: italic;
}

.elementor-editor-active .home-hero__slider {
	display: grid;
}

.elementor-editor-active .home-hero__slide {
	animation: none;
	grid-area: 1 / 1;
	opacity: 1;
	pointer-events: auto;
	transform: none;
	visibility: visible;
}

.elementor-editor-active .home-hero__slide:not(:first-child):not(.is-active) {
	display: none;
}

.elementor-editor-active .home-hero__content,
.elementor-editor-active .home-hero__media {
	animation: none;
	opacity: 1;
	transform: none;
	visibility: visible;
}

.home-hero__inner {
	align-items: center;
	display: grid;
	gap: clamp(28px, 5vw, 72px);
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
	min-height: clamp(560px, 72vh, 760px);
	padding-block: 58px;
}

.home-hero__content {
	animation: ewsHeroContent 18s cubic-bezier(0.45, 0, 0.2, 1) infinite;
	color: #fff;
	grid-area: auto;
	max-width: 710px;
	opacity: 0;
	position: relative;
	transform: translateY(14px);
	will-change: opacity, transform;
	z-index: 1;
}

.home-hero__content .eyebrow {
	color: #99f6e4;
}

.home-hero__content h1 {
	color: #fff;
	font-size: clamp(42px, 7vw, 86px);
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0 0 22px;
}

.home-hero__content p {
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(17px, 2vw, 21px);
	margin: 0;
	max-width: 620px;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.button-link--ghost {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

.button-link--ghost:hover {
	background: #fff;
	border-color: #fff;
	color: var(--ews-heading);
}

.home-hero__media {
	align-items: center;
	animation: ewsHeroMedia 18s cubic-bezier(0.45, 0, 0.2, 1) infinite;
	aspect-ratio: var(--ews-hero-image-ratio);
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	display: flex;
	grid-area: auto;
	justify-content: center;
	margin-inline: auto;
	max-width: 420px;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	text-decoration: none;
	transform: translateY(12px) scale(0.98);
	will-change: opacity, transform;
	width: 100%;
}

.home-hero__media::after {
	background: var(--ews-hero-overlay-color);
	content: "";
	inset: 0;
	opacity: var(--ews-hero-overlay-opacity);
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.home-hero__slide--2 .home-hero__content,
.home-hero__slide--2 .home-hero__media {
	animation-delay: 6s;
}

.home-hero__slide--3 .home-hero__content,
.home-hero__slide--3 .home-hero__media {
	animation-delay: 12s;
}

.home-hero--js-ready .home-hero__slide,
.home-hero--js-ready .home-hero__content,
.home-hero--js-ready .home-hero__media,
.home-hero--js-ready .home-hero__dots span,
.home-hero--js-ready .home-hero__dots span::before {
	animation: none;
}

.home-hero--js-ready .home-hero__slide {
	opacity: 0;
	pointer-events: none;
	transform: scale(1.018);
	transition: opacity 950ms cubic-bezier(0.22, 1, 0.36, 1), transform 1400ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 950ms;
	visibility: hidden;
}

.home-hero--js-ready .home-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1);
	transition-delay: 0s;
	visibility: visible;
}

.home-hero--js-ready .home-hero__content {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1) 130ms, transform 900ms cubic-bezier(0.22, 1, 0.36, 1) 130ms;
}

.home-hero--js-ready .home-hero__media {
	opacity: 0;
	transform: translateY(22px) scale(0.97);
	transition: opacity 820ms cubic-bezier(0.22, 1, 0.36, 1) 220ms, transform 1000ms cubic-bezier(0.22, 1, 0.36, 1) 220ms;
}

.home-hero--js-ready .home-hero__slide.is-active .home-hero__content,
.home-hero--js-ready .home-hero__slide.is-active .home-hero__media {
	opacity: var(--ews-hero-media-opacity);
	transform: translateY(0) scale(1);
}

.home-hero--js-ready .home-hero__slide.is-active .home-hero__content {
	opacity: 1;
}

.elementor-editor-active .home-hero--js-ready .home-hero__slide:not(.is-active) {
	display: none;
}

.elementor-editor-active .home-hero--js-ready .home-hero__slide.is-active,
.elementor-editor-active .home-hero--js-ready .home-hero__slide.is-active .home-hero__content,
.elementor-editor-active .home-hero--js-ready .home-hero__slide.is-active .home-hero__media {
	opacity: 1;
	transform: none;
	visibility: visible;
}

.home-hero__media img {
	aspect-ratio: var(--ews-hero-image-ratio);
	border-radius: var(--ews-hero-image-radius, 0);
	height: 100%;
	object-fit: var(--ews-hero-image-fit);
	object-position: var(--ews-hero-image-position);
	position: relative;
	width: 100%;
	z-index: 0;
}

.home-hero__dots {
	bottom: 30px;
	display: flex;
	gap: 8px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	z-index: 3;
}

.home-hero__dots span {
	animation: ewsHeroDots 18s cubic-bezier(0.45, 0, 0.2, 1) infinite;
	background: rgba(255, 255, 255, 0.36);
	border-radius: 999px;
	cursor: pointer;
	height: 8px;
	overflow: hidden;
	width: 32px;
}

.home-hero__dots span::before {
	animation: ewsHeroDotFill 18s cubic-bezier(0.45, 0, 0.2, 1) infinite;
	background: #fff;
	border-radius: inherit;
	content: "";
	display: block;
	height: 100%;
	transform: scaleX(0);
	transform-origin: left;
	width: 100%;
}

.home-hero__dots span:nth-child(2) {
	animation-delay: 6s;
}

.home-hero__dots span:nth-child(2)::before {
	animation-delay: 6s;
}

.home-hero__dots span:nth-child(3) {
	animation-delay: 12s;
}

.home-hero__dots span:nth-child(3)::before {
	animation-delay: 12s;
}

.home-hero--js-ready .home-hero__dots span {
	background: rgba(255, 255, 255, 0.34);
	transition: background 260ms ease, width 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero--js-ready .home-hero__dots span::before {
	transform: scaleX(0);
	transition: transform 6200ms linear;
}

.home-hero--js-ready .home-hero__dots span.is-active {
	background: rgba(255, 255, 255, 0.5);
	width: 44px;
}

.home-hero--js-ready .home-hero__dots span.is-active::before {
	transform: scaleX(1);
}

@keyframes ewsHeroSlider {
	0% {
		opacity: 0;
		pointer-events: none;
		transform: scale(1.025);
		visibility: visible;
	}

	6%,
	27% {
		opacity: 1;
		pointer-events: auto;
		transform: scale(1);
		visibility: visible;
	}

	34% {
		opacity: 0;
		pointer-events: none;
		transform: scale(0.992);
		visibility: visible;
	}

	35%,
	100% {
		opacity: 0;
		pointer-events: none;
		transform: scale(0.992);
		visibility: hidden;
	}
}

@keyframes ewsHeroDots {
	0% {
		background: rgba(255, 255, 255, 0.24);
	}

	6%,
	27% {
		background: #fff;
	}

	34%,
	100% {
		background: rgba(255, 255, 255, 0.36);
	}
}

@keyframes ewsHeroContent {
	0% {
		opacity: 0;
		transform: translateY(18px);
	}

	8%,
	27% {
		opacity: 1;
		transform: translateY(0);
	}

	34%,
	100% {
		opacity: 0;
		transform: translateY(-10px);
	}
}

@keyframes ewsHeroMedia {
	0% {
		opacity: 0;
		transform: translateY(18px) scale(0.97);
	}

	9%,
	27% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}

	34%,
	100% {
		opacity: 0;
		transform: translateY(-8px) scale(1.01);
	}
}

@keyframes ewsHeroDotFill {
	0% {
		transform: scaleX(0);
	}

	6%,
	27% {
		transform: scaleX(1);
	}

	34%,
	100% {
		transform: scaleX(0);
	}
}

.home-service-strip {
	background: var(--ews-ink);
	color: #fff;
}

.home-service-strip__grid {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-service-strip__item {
	align-items: flex-start;
	background: rgba(255, 255, 255, 0.04);
	display: flex;
	flex-direction: row;
	gap: 14px;
	padding: 22px 24px;
	text-align: left;
}

.ews-trust-icon-position-top .home-service-strip__item {
	flex-direction: column;
}

.ews-trust-icon-position-right .home-service-strip__item {
	flex-direction: row-reverse;
}

.ews-trust-icon-position-bottom .home-service-strip__item {
	flex-direction: column-reverse;
}

.home-service-strip__icon {
	align-items: center;
	align-self: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 18px;
	height: 42px;
	justify-content: center;
	line-height: 1;
	overflow: hidden;
	text-align: center;
	width: 42px;
	--ews-trust-icon-x: 0px;
	--ews-trust-icon-y: 0px;
}

.home-service-strip__icon i {
	align-items: center;
	display: inline-flex;
	height: 1em;
	justify-content: center;
	line-height: 1;
	transform: translate(var(--ews-trust-icon-x), var(--ews-trust-icon-y));
	width: 1em;
}

.home-service-strip__icon i::before {
	display: block;
	line-height: 1;
}

.home-service-strip__icon svg {
	display: block;
	fill: currentColor;
	height: 1em;
	transform: translate(var(--ews-trust-icon-x), var(--ews-trust-icon-y));
	width: 1em;
}

.home-service-strip__content {
	display: flex;
	flex-direction: column;
	min-width: 0;
	text-align: inherit;
	width: 100%;
}

.home-service-strip strong,
.home-service-strip span {
	display: block;
}

.home-service-strip strong {
	color: #fff;
	font-size: 16px;
	line-height: 1.25;
}

.home-service-strip span {
	color: #cbd5e1;
	font-size: 14px;
	margin-top: 4px;
}

.home-section {
	padding-top: clamp(46px, 6vw, 78px);
}

.home-section__header {
	align-items: end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 24px;
}

.home-section__heading {
	width: 100%;
}

.home-section__heading--stacked h2 {
	display: block;
}

.home-section__heading--inline .eyebrow,
.home-section__heading--inline h2 {
	display: inline;
}

.home-section__heading--inline .eyebrow {
	margin-right: 12px;
}

.home-section__header h2,
.home-promo h2 {
	color: var(--ews-heading);
	font-size: clamp(30px, 4vw, 48px);
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0;
}

.home-section__header a {
	color: var(--ews-heading);
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.home-section__header a:hover {
	color: var(--ews-accent-dark);
}

.category-card-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
	background: #fff;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius);
	box-shadow: 0 10px 34px rgba(15, 23, 42, 0.04);
	color: var(--ews-heading);
	display: grid;
	min-height: 190px;
	overflow: hidden;
	padding: 18px;
	position: relative;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.category-card:hover,
.home-product-card:hover {
	border-color: rgba(15, 118, 110, 0.34);
	box-shadow: var(--ews-shadow);
	transform: translateY(-3px);
}

.category-card__image {
	aspect-ratio: 16 / 10;
	background: var(--ews-surface-alt);
	border-radius: var(--ews-radius-sm);
	display: block;
	margin-bottom: 16px;
	overflow: hidden;
	width: 100%;
}

.category-card__image img {
	aspect-ratio: 16 / 10;
	background: var(--ews-surface-alt);
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.category-card--fit-contain .category-card__image img {
	object-fit: contain;
	padding: 12px;
}

.category-card--image-background {
	align-content: end;
	color: #fff;
	min-height: 260px;
	padding: 24px;
}

.category-card--image-background .category-card__title {
	color: #fff;
}

.category-card--image-background .category-card__image {
	border-radius: 0;
	height: 100%;
	inset: 0;
	margin: 0;
	position: absolute;
	z-index: 0;
}

.category-card--image-background .category-card__image img {
	border-radius: 0;
	height: 100%;
	object-fit: cover;
	padding: 0;
}

.category-card--image-background::after {
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.72));
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.category-card__content {
	display: grid;
	gap: 6px;
	position: relative;
	z-index: 2;
}

.category-card__title {
	font-size: 20px;
	font-weight: 900;
	line-height: 1.12;
}

.category-card small {
	color: var(--ews-muted);
	font-size: 13px;
	font-weight: 800;
	margin-top: 6px;
}

.category-card--image-background small {
	color: rgba(255, 255, 255, 0.82);
}

.ews-category-cards--slider {
	--ews-category-gap: 18px;
	--ews-category-slides: 4;
}

.ews-category-cards__slider {
	position: relative;
}

.ews-category-cards__viewport {
	overflow: hidden;
}

.ews-category-cards__track {
	display: flex;
	gap: var(--ews-category-gap);
	transform: translateX(0);
	transition: transform var(--ews-category-speed, 350ms) ease;
	will-change: transform;
}

.ews-category-cards--slider .category-card {
	flex: 0 0 calc((100% - (var(--ews-category-gap) * (var(--ews-category-slides) - 1))) / var(--ews-category-slides));
	min-width: 0;
}

.ews-category-cards__arrows {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-top: 18px;
}

.ews-category-cards__arrow {
	align-items: center;
	background: #fff;
	border: 1px solid var(--ews-line);
	border-radius: 999px;
	color: var(--ews-heading);
	cursor: pointer;
	display: inline-flex;
	font-size: 28px;
	height: 42px;
	justify-content: center;
	line-height: 1;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
	width: 42px;
}

.ews-category-cards__arrow:hover {
	background: var(--ews-heading);
	border-color: var(--ews-heading);
	color: #fff;
	transform: translateY(-1px);
}

.ews-category-cards__arrow:disabled {
	cursor: not-allowed;
	opacity: 0.45;
	transform: none;
}

.ews-category-cards__dots {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 16px;
}

.ews-category-cards__dot {
	background: var(--ews-line);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	height: 9px;
	padding: 0;
	transition: background 160ms ease, width 160ms ease;
	width: 9px;
}

.ews-category-cards__dot.is-active {
	background: var(--ews-accent);
	width: 24px;
}

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

.home-product-card {
	background: #fff;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.home-product-card__image {
	background: var(--ews-surface-alt);
	display: block;
	padding: 14px;
}

.home-product-card__image img {
	aspect-ratio: 1 / 1;
	border-radius: var(--ews-radius-sm);
	display: block;
	object-fit: contain;
	width: 100%;
}

.home-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 16px;
}

.home-product-card h3 {
	font-size: 17px;
	line-height: 1.25;
	margin: 0 0 12px;
}

.home-product-card h3 a {
	color: var(--ews-heading);
	text-decoration: none;
}

.home-product-card__meta {
	align-items: center;
	color: var(--ews-muted);
	display: flex;
	font-size: 13px;
	font-weight: 900;
	gap: 10px;
	justify-content: space-between;
	margin-top: auto;
}

.home-product-card__price {
	color: var(--ews-accent-dark);
	font-size: 17px;
}

.home-product-card__button {
	align-items: center;
	background: var(--ews-ink);
	border-radius: var(--ews-radius-sm);
	color: #fff;
	display: inline-flex;
	font-weight: 900;
	justify-content: center;
	line-height: 1.2;
	margin-top: 14px;
	min-height: 42px;
	padding: 10px 12px;
	text-decoration: none;
}

.home-product-card__button:hover {
	background: var(--ews-accent-dark);
	color: #fff;
}

.home-product-card__actions {
	display: grid;
	gap: 10px;
	margin-top: 16px;
}

.home-product-card--action-layout-flex .home-product-card__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
}

.home-product-card--action-layout-flex .home-product-card__button,
.home-product-card--action-layout-flex .home-product-card__icon-button {
	flex: 1 1 120px;
}

.home-product-card__action-icon,
.home-product-card__action-text {
	display: inline-flex;
}

.home-product-card__action-icon {
	align-items: center;
	flex: 0 0 auto;
	font-size: 1.08em;
	justify-content: center;
	line-height: 1;
}

.home-product-card__action-icon svg,
.home-product-card__action-icon i {
	display: block;
	height: 1em;
	width: 1em;
}

.home-product-card__actions .home-product-card__button {
	gap: 8px;
	margin-top: 0;
	width: 100%;
}

.home-product-card__button--buy {
	background: var(--ews-accent);
}

.home-product-card__button--buy:hover {
	background: var(--ews-accent-dark);
}

.home-product-card__icon-button {
	align-items: center;
	background: transparent;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius-sm);
	color: var(--ews-heading);
	cursor: pointer;
	display: inline-flex;
	font-weight: 900;
	gap: 8px;
	justify-content: center;
	line-height: 1.2;
	min-height: 40px;
	padding: 9px 12px;
	transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
	width: 100%;
}

.home-product-card__icon-button:hover,
.home-product-card__icon-button.is-saved {
	background: var(--ews-accent-soft);
	border-color: var(--ews-accent);
	color: var(--ews-accent-dark);
}

.home-product-card__wishlist-floating {
	background: #fff;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
	height: 40px;
	left: var(--ews-product-wishlist-left, 12px);
	min-height: 40px;
	padding: 0;
	position: absolute;
	right: var(--ews-product-wishlist-right, auto);
	top: var(--ews-product-wishlist-top, 12px);
	bottom: var(--ews-product-wishlist-bottom, auto);
	width: 40px;
	z-index: 3;
}

.home-product-card__wishlist-floating .home-product-card__action-text {
	display: none;
}

.home-product-card--wishlist-top-right {
	--ews-product-wishlist-bottom: auto;
	--ews-product-wishlist-left: auto;
	--ews-product-wishlist-right: 12px;
	--ews-product-wishlist-top: 12px;
}

.home-product-card--wishlist-floating .home-product-card__image {
	padding-top: 22px;
}

.home-product-card__button.is-loading {
	cursor: progress;
	opacity: 0.72;
}

.home-product-card__button.is-loading .home-product-card__action-text {
	display: inline-flex;
}

.home-product-card--action_panel .home-product-card__meta {
	margin-top: 0;
}

.home-product-card--custom .home-product-card__body {
	gap: 12px;
}

.home-product-card--custom h3 {
	margin-bottom: 0;
}

.home-product-card--custom .home-product-card__meta {
	margin-top: 0;
}

.home-product-card--actions-icon .home-product-card__action-text {
	display: none;
}

.home-product-card--actions-text .home-product-card__action-icon {
	display: none;
}

.home-product-card--actions-text .home-product-card__wishlist-floating .home-product-card__action-icon {
	display: inline-flex;
}

.home-product-card--actions-icon .home-product-card__actions {
	grid-template-columns: repeat(auto-fit, minmax(42px, 1fr));
}

.home-product-card--actions-icon .home-product-card__button,
.home-product-card--actions-icon .home-product-card__icon-button {
	min-height: 42px;
	padding-inline: 10px;
}

.home-product-card--actions-text .home-product-card__button,
.home-product-card--actions-text .home-product-card__icon-button {
	gap: 0;
}

.home-product-card--compact {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	min-height: 150px;
}

.home-product-card--compact .home-product-card__image {
	align-items: center;
	display: flex;
	padding: 10px;
}

.home-product-card--compact .home-product-card__image img {
	aspect-ratio: 1 / 1;
}

.home-product-card--compact .home-product-card__body {
	padding: 14px;
}

.home-product-card--compact h3 {
	font-size: 15px;
	margin-bottom: 8px;
}

.home-product-card--compact .home-product-card__button {
	min-height: 36px;
}

.home-product-card--overlay {
	background: var(--ews-ink);
	min-height: 320px;
	position: relative;
}

.home-product-card--overlay .home-product-card__image {
	background: var(--ews-ink);
	inset: 0;
	padding: 0;
	position: absolute;
}

.home-product-card--overlay .home-product-card__image::after {
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.9));
	content: "";
	inset: 0;
	position: absolute;
}

.home-product-card--overlay .home-product-card__image img {
	border-radius: 0;
	height: 100%;
	object-fit: cover;
	opacity: 0.78;
}

.home-product-card--overlay .home-product-card__body {
	color: #fff;
	justify-content: flex-end;
	min-height: 320px;
	position: relative;
	z-index: 1;
}

.home-product-card--overlay h3 a,
.home-product-card--overlay .home-product-card__price {
	color: #fff;
}

.home-product-card--overlay .home-product-card__meta {
	color: rgba(255, 255, 255, 0.78);
}

.home-product-card--overlay .home-product-card__button {
	background: #fff;
	color: var(--ews-ink);
}

.home-product-card--overlay .home-product-card__button:hover {
	background: var(--ews-accent);
	color: #fff;
}

.ews-cart-drawer {
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 180ms ease;
	z-index: 99999;
}

.ews-cart-drawer.is-open {
	opacity: 1;
	pointer-events: auto;
}

.ews-cart-drawer__overlay {
	background: rgba(15, 23, 42, 0.46);
	inset: 0;
	position: absolute;
}

.ews-cart-drawer__panel {
	background: #fff;
	box-shadow: -18px 0 48px rgba(15, 23, 42, 0.18);
	display: flex;
	flex-direction: column;
	height: 100%;
	margin-left: auto;
	max-width: 420px;
	position: relative;
	transform: translateX(100%);
	transition: transform 220ms ease;
	width: min(100%, 420px);
}

.ews-cart-drawer.is-open .ews-cart-drawer__panel {
	transform: translateX(0);
}

.ews-cart-drawer-open {
	overflow: hidden;
}

.ews-cart-drawer__header {
	align-items: center;
	border-bottom: 1px solid var(--ews-line);
	display: flex;
	justify-content: space-between;
	padding: 18px 20px;
}

.ews-cart-drawer__header h2 {
	color: var(--ews-heading);
	font-size: 22px;
	line-height: 1.2;
	margin: 0;
}

.ews-cart-drawer__close,
.ews-cart-drawer__remove {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--ews-muted);
	cursor: pointer;
	display: inline-flex;
	font-size: 26px;
	height: 36px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 36px;
}

.ews-cart-drawer__close:hover,
.ews-cart-drawer__remove:hover {
	color: var(--ews-accent-dark);
}

.ews-cart-drawer__notice {
	background: var(--ews-accent-soft);
	color: var(--ews-accent-dark);
	font-size: 14px;
	font-weight: 800;
	margin: 14px 20px 0;
	padding: 10px 12px;
}

.ews-cart-drawer__notice.is-error {
	background: #fee2e2;
	color: #991b1b;
}

.ews-cart-drawer__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
	padding: 18px 20px 20px;
}

.ews-cart-drawer__items {
	display: grid;
	gap: 14px;
	overflow: auto;
	padding-right: 4px;
}

.ews-cart-drawer__item {
	align-items: center;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius-sm);
	display: grid;
	gap: 12px;
	grid-template-columns: 70px minmax(0, 1fr) 36px;
	padding: 10px;
}

.ews-cart-drawer__image {
	background: var(--ews-surface-alt);
	border-radius: var(--ews-radius-sm);
	display: block;
	padding: 6px;
}

.ews-cart-drawer__image img {
	aspect-ratio: 1 / 1;
	display: block;
	object-fit: contain;
	width: 100%;
}

.ews-cart-drawer__details {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.ews-cart-drawer__name {
	color: var(--ews-heading);
	font-weight: 900;
	line-height: 1.25;
	text-decoration: none;
}

.ews-cart-drawer__qty {
	color: var(--ews-muted);
	font-size: 13px;
	font-weight: 800;
}

.ews-cart-drawer__line-total {
	color: var(--ews-accent-dark);
	font-weight: 900;
}

.ews-cart-drawer__summary {
	align-items: center;
	border-top: 1px solid var(--ews-line);
	color: var(--ews-heading);
	display: flex;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 18px;
}

.ews-cart-drawer__summary strong {
	font-size: 18px;
}

.ews-cart-drawer__actions {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr;
	margin-top: 16px;
}

.ews-cart-drawer__button {
	align-items: center;
	background: var(--ews-accent);
	border: 1px solid var(--ews-accent);
	border-radius: var(--ews-radius-sm);
	color: #fff;
	display: inline-flex;
	font-weight: 900;
	justify-content: center;
	min-height: 44px;
	padding: 10px 14px;
	text-decoration: none;
}

.ews-cart-drawer__button:hover {
	background: var(--ews-accent-dark);
	border-color: var(--ews-accent-dark);
	color: #fff;
}

.ews-cart-drawer__button--secondary {
	background: #fff;
	color: var(--ews-heading);
}

.ews-cart-drawer__button--secondary:hover {
	background: var(--ews-heading);
	border-color: var(--ews-heading);
	color: #fff;
}

.ews-cart-drawer__empty {
	color: var(--ews-muted);
	font-weight: 800;
	margin: 0;
}

.ews-reviews__grid,
.ews-blog-posts__grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ews-review-card,
.ews-blog-card {
	background: #fff;
	border: 1px solid var(--ews-line);
	border-radius: var(--ews-radius);
	box-shadow: 0 10px 34px rgba(15, 23, 42, 0.04);
	overflow: hidden;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ews-review-card:hover,
.ews-blog-card:hover {
	border-color: rgba(15, 118, 110, 0.34);
	box-shadow: var(--ews-shadow);
	transform: translateY(-3px);
}

.ews-review-card {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 22px;
}

.ews-review-card__rating {
	color: var(--ews-warning);
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 1;
}

.ews-review-card__text {
	color: var(--ews-text);
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
}

.ews-review-card__person {
	align-items: center;
	display: flex;
	gap: 12px;
	margin-top: auto;
}

.ews-review-card__avatar {
	border-radius: 999px;
	height: 48px;
	object-fit: cover;
	width: 48px;
}

.ews-review-card__name,
.ews-review-card__role {
	display: block;
}

.ews-review-card__name {
	color: var(--ews-heading);
	font-size: 15px;
	line-height: 1.3;
}

.ews-review-card__role {
	color: var(--ews-muted);
	font-size: 13px;
	line-height: 1.35;
	margin-top: 2px;
}

.ews-reviews--slider {
	--ews-review-gap: 20px;
	--ews-review-slides: 3;
}

.ews-reviews__slider {
	position: relative;
}

.ews-reviews__viewport {
	overflow: hidden;
}

.ews-reviews__track {
	display: flex;
	gap: var(--ews-review-gap);
	transform: translateX(0);
	transition: transform var(--ews-review-speed, 350ms) ease;
	will-change: transform;
}

.ews-reviews--slider .ews-review-card {
	flex: 0 0 calc((100% - (var(--ews-review-gap) * (var(--ews-review-slides) - 1))) / var(--ews-review-slides));
	min-width: 0;
}

.ews-reviews__arrows {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-top: 18px;
}

.ews-reviews__arrow {
	align-items: center;
	background: #fff;
	border: 1px solid var(--ews-line);
	border-radius: 999px;
	color: var(--ews-heading);
	cursor: pointer;
	display: inline-flex;
	font-size: 28px;
	height: 42px;
	justify-content: center;
	line-height: 1;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
	width: 42px;
}

.ews-reviews__arrow:hover {
	background: var(--ews-heading);
	border-color: var(--ews-heading);
	color: #fff;
	transform: translateY(-1px);
}

.ews-reviews__arrow:disabled {
	cursor: not-allowed;
	opacity: 0.45;
	transform: none;
}

.ews-reviews__dots {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 16px;
}

.ews-reviews__dot {
	background: var(--ews-line);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	height: 9px;
	padding: 0;
	transition: background 160ms ease, width 160ms ease;
	width: 9px;
}

.ews-reviews__dot.is-active {
	background: var(--ews-accent);
	width: 24px;
}

.ews-blog-card {
	display: flex;
	flex-direction: column;
}

.ews-blog-card__image {
	background: var(--ews-surface-alt);
	display: block;
}

.ews-blog-card__image img {
	aspect-ratio: 16 / 10;
	display: block;
	object-fit: cover;
	width: 100%;
}

.ews-blog-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.ews-blog-card__meta {
	color: var(--ews-muted);
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 8px;
}

.ews-blog-card__title {
	font-size: 20px;
	line-height: 1.2;
	margin: 0;
}

.ews-blog-card__title a {
	color: var(--ews-heading);
	text-decoration: none;
}

.ews-blog-card__title a:hover {
	color: var(--ews-accent-dark);
}

.ews-blog-card__excerpt {
	color: var(--ews-text);
	font-size: 15px;
	line-height: 1.6;
	margin: 12px 0 0;
}

.ews-blog-card__button {
	margin-top: auto;
}

.ews-blog-card__excerpt + .ews-blog-card__button,
.ews-blog-card__title + .ews-blog-card__button,
.ews-blog-card__meta + .ews-blog-card__button {
	margin-top: 18px;
}

.ews-blog-posts__empty {
	color: var(--ews-muted);
	grid-column: 1 / -1;
	margin: 0;
}

.home-promo {
	align-items: center;
	background:
		linear-gradient(120deg, rgba(15, 118, 110, 0.95), rgba(17, 24, 39, 0.96)),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='360' viewBox='0 0 900 360'%3E%3Crect width='900' height='360' fill='%230f766e'/%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='2' opacity='.18'%3E%3Cpath d='M0 280 C160 170 280 330 430 210 S680 80 900 160'/%3E%3Cpath d='M0 190 C140 110 260 210 390 140 S650 40 900 80'/%3E%3C/g%3E%3C/svg%3E");
	background-position: center;
	background-size: cover;
	border-radius: var(--ews-radius);
	color: #dbeafe;
	display: flex;
	gap: 28px;
	justify-content: space-between;
	margin-top: clamp(52px, 7vw, 88px);
	padding: clamp(28px, 5vw, 54px);
}

.home-promo .eyebrow,
.home-promo h2 {
	color: #fff;
}

.home-promo p {
	margin: 14px 0 0;
	max-width: 620px;
}

.site-footer {
	background: var(--ews-ink);
	color: #cbd5e1;
	padding-block: 48px 22px;
}

.site-footer__grid {
	display: grid;
	gap: 32px;
	grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(160px, 0.6fr));
}

.site-footer .ews-header-logo {
	margin-bottom: 14px;
}

.site-footer .site-title,
.site-footer h2,
.site-footer a {
	color: #fff;
}

.site-footer__brand p {
	max-width: 520px;
}

.site-footer h2 {
	font-size: 13px;
	letter-spacing: 0;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.site-footer li + li {
	margin-top: 8px;
}

.site-footer a {
	text-decoration: none;
}

.site-footer a:hover {
	color: #99f6e4;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 14px;
	margin-top: 34px;
	padding-top: 18px;
}

.site-footer__bottom p {
	margin: 0;
}

.ews-footer-brand .ews-header-logo {
	margin-bottom: 14px;
}

.ews-footer-menu ul,
.ews-footer-store-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ews-footer-menu h2,
.ews-footer-store-menu h2 {
	font-size: 13px;
	letter-spacing: 0;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.ews-footer-menu li + li,
.ews-footer-store-menu li + li {
	margin-top: 8px;
}

.ews-footer-menu a,
.ews-footer-store-menu a {
	align-items: center;
	display: inline-flex;
	gap: 8px;
	text-decoration: none;
}

.ews-footer-menu svg,
.ews-footer-menu i,
.ews-footer-store-menu svg,
.ews-footer-store-menu i {
	flex: 0 0 auto;
	height: 1.15em;
	width: 1.15em;
}

.ews-footer-bottom-bar {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 14px;
	padding-top: 18px;
}

.ews-footer-bottom-bar p {
	margin: 0;
}

.ews-footer-payments h2,
.ews-footer-social h2,
.ews-footer-nap h2 {
	font-size: 13px;
	letter-spacing: 0;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.ews-footer-payments ul,
.ews-footer-social ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ews-footer-payments li,
.ews-footer-social a {
	align-items: center;
	color: inherit;
	display: inline-flex;
	gap: 8px;
	line-height: 1;
	text-decoration: none;
}

.ews-footer-payments svg,
.ews-footer-payments i,
.ews-footer-social svg,
.ews-footer-social i {
	flex: 0 0 auto;
	height: 1.15em;
	width: 1.15em;
}

.ews-footer-social a:hover {
	color: #99f6e4;
}

.ews-footer-nap {
	display: flex;
	flex-direction: column;
	font-style: normal;
	gap: 8px;
}

.ews-footer-nap strong,
.ews-footer-nap p {
	margin: 0;
}

.ews-footer-nap a {
	color: inherit;
	text-decoration: none;
}

.ews-footer-nap a:hover {
	color: #99f6e4;
}

.ews-footer-nap__map {
	font-weight: 800;
	margin-top: 4px;
}

@media (max-width: 1080px) {
	.ews-header-menu--mobile-tablet {
		align-items: center;
		flex-direction: column;
		position: relative;
	}

	.ews-header-menu--mobile-tablet .ews-menu-toggle {
		display: inline-flex;
	}

	.ews-header-menu--mobile-tablet .ews-menu-panel {
		display: none;
	}

	.ews-header-menu--mobile-tablet.is-open .ews-menu-panel {
		display: block;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--dropdown .ews-menu-panel {
		background: #fff;
		border: 1px solid var(--ews-line);
		border-radius: var(--ews-radius);
		box-shadow: var(--ews-shadow);
		margin-top: 12px;
		padding: 12px;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel {
		background: #fff;
		border-right: 1px solid var(--ews-line);
		bottom: 0;
		box-shadow: var(--ews-shadow);
		display: flex;
		flex-direction: column;
		left: 0;
		max-width: 90vw;
		overflow: hidden;
		padding: 0;
		position: fixed;
		right: auto;
		top: 0;
		transform: translateX(-100%);
		transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
		width: min(380px, 90vw);
		z-index: 80;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__brand {
		align-items: center;
		display: flex;
		flex: 1 1 auto;
		justify-content: center;
		margin: 0;
		min-height: 36px;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas.is-open .ews-menu-toggle {
		opacity: 0;
		pointer-events: none;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-backdrop {
		background: rgba(13, 23, 40, 0.45);
		border: 0;
		display: block;
		inset: 0;
		opacity: 0;
		padding: 0;
		pointer-events: none;
		position: fixed;
		transition: opacity 240ms ease;
		z-index: 79;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas.is-open .ews-menu-backdrop {
		opacity: 1;
		pointer-events: auto;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__brand .custom-logo-link img {
		max-height: 44px;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas.is-open .ews-menu-panel {
		transform: translateX(0);
	}

	/* --- Ann Summers-style drill-down drawer (tablet) --- */
	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__head {
		align-items: center;
		background: #fff;
		border-bottom: 1px solid var(--ews-soft-line);
		display: flex;
		flex: 0 0 auto;
		gap: 6px;
		min-height: 58px;
		padding: 10px 14px;
		position: relative;
		z-index: 2;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__back,
	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__close {
		align-items: center;
		background: none;
		border: 0;
		color: var(--ews-heading);
		cursor: pointer;
		display: inline-flex;
		font: inherit;
		font-weight: 600;
		gap: 6px;
		padding: 8px;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__back[hidden] {
		display: none;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__close {
		margin-left: auto;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__back-icon {
		border-color: currentColor;
		border-style: solid;
		border-width: 0 0 2px 2px;
		display: inline-block;
		height: 10px;
		transform: rotate(45deg);
		width: 10px;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__close-icon {
		height: 16px;
		position: relative;
		width: 16px;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__close-icon::before,
	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__close-icon::after {
		background: currentColor;
		content: "";
		height: 2px;
		left: 0;
		position: absolute;
		top: 7px;
		width: 16px;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__close-icon::before {
		transform: rotate(45deg);
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__close-icon::after {
		transform: rotate(-45deg);
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__title {
		display: none;
		flex: 1 1 auto;
		font-size: 15px;
		font-weight: 700;
		overflow: hidden;
		text-align: center;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel.is-drilled .ews-menu-panel__brand {
		display: none;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel.is-drilled .ews-menu-panel__title {
		display: block;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__nav {
		background: #fff;
		flex: 1 1 auto;
		min-height: 0;
		overflow: hidden;
		position: relative;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__nav ul {
		align-items: stretch;
		display: block;
		height: 100%;
		justify-content: flex-start;
		overflow-y: auto;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__nav li {
		align-items: stretch;
		border-bottom: 1px solid var(--ews-soft-line);
		display: flex;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__nav li > a {
		flex: 1 1 auto;
		padding: 14px 16px;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__nav a,
	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__title {
		color: var(--ews-heading) !important;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-menu-panel__nav a::after {
		display: none;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-drill-toggle {
		align-items: center;
		align-self: stretch;
		background: none;
		border: 0;
		border-left: 1px solid var(--ews-soft-line);
		color: var(--ews-muted);
		cursor: pointer;
		display: inline-flex;
		flex: 0 0 auto;
		justify-content: center;
		width: 52px;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-drill-toggle__icon {
		border-color: currentColor;
		border-style: solid;
		border-width: 2px 2px 0 0;
		display: inline-block;
		height: 9px;
		transform: rotate(45deg);
		width: 9px;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-drill-panel {
		background: #fff;
		inset: 0;
		overflow-y: auto;
		padding: 0;
		position: absolute;
		transform: translateX(100%);
		transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
		z-index: 1;
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-drill-panel.is-open {
		transform: translateX(0);
	}

	.ews-header-menu--mobile-tablet.ews-header-menu--offcanvas .ews-drill-viewall a {
		color: var(--ews-accent) !important;
		font-weight: 700;
	}

	.ews-header-menu--mobile-tablet .site-navigation ul,
	.ews-header-menu--mobile-tablet ul {
		align-items: stretch;
		flex-direction: column;
		justify-content: flex-start;
		width: 100%;
	}

	.ews-header-menu--mobile-tablet .site-navigation a,
	.ews-header-menu--mobile-tablet a {
		justify-content: space-between;
		width: 100%;
	}

	.ews-header-menu--mobile-tablet .sub-menu {
		border: 0;
		box-shadow: none;
		display: block;
		min-width: 0;
		padding: 4px 0 0 14px;
		position: static;
	}

	.ews-header-menu--mobile-tablet .ews-mega-panel {
		border: 0;
		border-radius: 0;
		box-shadow: none;
		display: block;
		margin: 0;
		opacity: 1;
		pointer-events: auto;
		position: static;
		transform: none;
		visibility: visible;
		width: 100%;
	}

	.ews-header-menu--mobile-tablet .ews-mega-panel::before {
		display: none;
	}

	.ews-header-menu--mobile-tablet .ews-mega-panel__inner {
		background: none;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		max-width: none;
		padding: 4px 0 0 14px;
	}

	.ews-header-menu--mobile-tablet .ews-mega-grid {
		display: block;
	}
}

@media (max-width: 1080px) {
	.site-header__inner {
		align-items: center;
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
		padding-block: 16px;
	}

	.ews-header-logo {
		grid-column: 1;
		justify-self: start;
	}

	.ews-header-menu {
		grid-column: 2;
		justify-self: center;
		width: auto;
	}

	.ews-header-actions {
		grid-column: 3;
		justify-self: end;
	}

	.site-navigation ul,
	.site-actions {
		justify-content: flex-start;
	}

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

	.home-product-grid,
	.category-card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
	}
}

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

@media (max-width: 760px) {
	.ews-header-menu--mobile-phone {
		align-items: center;
		flex-direction: column;
		position: relative;
	}

	.ews-header-menu--mobile-phone .ews-menu-toggle {
		display: inline-flex;
	}

	.ews-header-menu--mobile-phone .ews-menu-panel {
		display: none;
	}

	.ews-header-menu--mobile-phone.is-open .ews-menu-panel {
		display: block;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--dropdown .ews-menu-panel {
		background: #fff;
		border: 1px solid var(--ews-line);
		border-radius: var(--ews-radius);
		box-shadow: var(--ews-shadow);
		margin-top: 12px;
		padding: 12px;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel {
		background: #fff;
		border-right: 1px solid var(--ews-line);
		bottom: 0;
		box-shadow: var(--ews-shadow);
		display: flex;
		flex-direction: column;
		left: 0;
		max-width: 90vw;
		overflow: hidden;
		padding: 0;
		position: fixed;
		right: auto;
		top: 0;
		transform: translateX(-100%);
		transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
		width: min(380px, 90vw);
		z-index: 80;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__brand {
		align-items: center;
		display: flex;
		flex: 1 1 auto;
		justify-content: center;
		margin: 0;
		min-height: 36px;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas.is-open .ews-menu-toggle {
		opacity: 0;
		pointer-events: none;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-backdrop {
		background: rgba(13, 23, 40, 0.45);
		border: 0;
		display: block;
		inset: 0;
		opacity: 0;
		padding: 0;
		pointer-events: none;
		position: fixed;
		transition: opacity 240ms ease;
		z-index: 79;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas.is-open .ews-menu-backdrop {
		opacity: 1;
		pointer-events: auto;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__brand .custom-logo-link img {
		max-height: 44px;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__brand .custom-logo-link,
	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__brand .site-title {
		font-size: 21px;
		justify-content: flex-start;
		width: auto;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas.is-open .ews-menu-panel {
		transform: translateX(0);
	}

	/* --- Ann Summers-style drill-down drawer (phone) --- */
	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__head {
		align-items: center;
		background: #fff;
		border-bottom: 1px solid var(--ews-soft-line);
		display: flex;
		flex: 0 0 auto;
		gap: 6px;
		min-height: 58px;
		padding: 10px 14px;
		position: relative;
		z-index: 2;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__back,
	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__close {
		align-items: center;
		background: none;
		border: 0;
		color: var(--ews-heading);
		cursor: pointer;
		display: inline-flex;
		font: inherit;
		font-weight: 600;
		gap: 6px;
		padding: 8px;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__back[hidden] {
		display: none;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__close {
		margin-left: auto;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__back-icon {
		border-color: currentColor;
		border-style: solid;
		border-width: 0 0 2px 2px;
		display: inline-block;
		height: 10px;
		transform: rotate(45deg);
		width: 10px;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__close-icon {
		height: 16px;
		position: relative;
		width: 16px;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__close-icon::before,
	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__close-icon::after {
		background: currentColor;
		content: "";
		height: 2px;
		left: 0;
		position: absolute;
		top: 7px;
		width: 16px;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__close-icon::before {
		transform: rotate(45deg);
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__close-icon::after {
		transform: rotate(-45deg);
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__title {
		display: none;
		flex: 1 1 auto;
		font-size: 15px;
		font-weight: 700;
		overflow: hidden;
		text-align: center;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel.is-drilled .ews-menu-panel__brand {
		display: none;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel.is-drilled .ews-menu-panel__title {
		display: block;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__nav {
		background: #fff;
		flex: 1 1 auto;
		min-height: 0;
		overflow: hidden;
		position: relative;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__nav ul {
		align-items: stretch;
		display: block;
		height: 100%;
		justify-content: flex-start;
		overflow-y: auto;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__nav li {
		align-items: stretch;
		border-bottom: 1px solid var(--ews-soft-line);
		display: flex;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__nav li > a {
		flex: 1 1 auto;
		padding: 14px 16px;
	}

	/* The mobile menu was styled for the old dark drawer; force readable dark
	   text now that the drill drawer uses white surfaces. */
	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__nav a,
	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__title {
		color: var(--ews-heading) !important;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-menu-panel__nav a::after {
		display: none;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-drill-toggle {
		align-items: center;
		align-self: stretch;
		background: none;
		border: 0;
		border-left: 1px solid var(--ews-soft-line);
		color: var(--ews-muted);
		cursor: pointer;
		display: inline-flex;
		flex: 0 0 auto;
		justify-content: center;
		width: 52px;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-drill-toggle__icon {
		border-color: currentColor;
		border-style: solid;
		border-width: 2px 2px 0 0;
		display: inline-block;
		height: 9px;
		transform: rotate(45deg);
		width: 9px;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-drill-panel {
		background: #fff;
		inset: 0;
		overflow-y: auto;
		padding: 0;
		position: absolute;
		transform: translateX(100%);
		transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
		z-index: 1;
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-drill-panel.is-open {
		transform: translateX(0);
	}

	.ews-header-menu--mobile-phone.ews-header-menu--offcanvas .ews-drill-viewall a {
		color: var(--ews-accent) !important;
		font-weight: 700;
	}

	.ews-header-menu--mobile-phone ul {
		align-items: stretch;
		flex-direction: column;
		justify-content: flex-start;
		width: 100%;
	}

	.ews-header-menu--mobile-phone a {
		justify-content: space-between;
		width: 100%;
	}

	.ews-header-menu--mobile-phone .sub-menu {
		border: 0;
		box-shadow: none;
		display: block;
		min-width: 0;
		padding: 4px 0 0 14px;
		position: static;
	}

	.ews-header-menu--mobile-phone .ews-mega-panel {
		border: 0;
		border-radius: 0;
		box-shadow: none;
		display: block;
		margin: 0;
		opacity: 1;
		pointer-events: auto;
		position: static;
		transform: none;
		visibility: visible;
		width: 100%;
	}

	.ews-header-menu--mobile-phone .ews-mega-panel::before {
		display: none;
	}

	.ews-header-menu--mobile-phone .ews-mega-panel__inner {
		background: none;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		max-width: none;
		padding: 4px 0 0 14px;
	}

	.ews-header-menu--mobile-phone .ews-mega-grid {
		display: block;
	}

	.site-shell {
		padding-inline: 18px;
	}

	.site-announcement__inner,
	.commerce-hero,
	.site-actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-actions,
	.site-actions .search-form,
	.search-form label,
	.search-submit,
	.site-action {
		width: 100%;
	}

	.ews-header-search--modal,
	.ews-header-search--modal .search-submit {
		width: auto;
	}

	.ews-search-modal__form {
		flex-direction: column;
		padding-right: 0;
	}

	.ews-search-modal__form .ews-header-search__results {
		right: 0;
	}

	.site-navigation ul {
		justify-content: flex-start;
	}

	.entry,
	.archive-header,
	.commerce-panel,
	.commerce-hero {
		padding: 22px;
	}

	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce table.shop_table_responsive tr,
	.woocommerce-page table.shop_table_responsive tr {
		border-bottom: 1px solid var(--ews-soft-line);
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.home-hero__slider,
	.home-hero__inner {
		min-height: auto;
	}

	.home-hero__inner {
		grid-template-columns: 1fr;
		padding-block: 42px 72px;
	}

	.home-hero__content {
		justify-self: center;
		max-width: 100%;
		text-align: center;
	}

	.home-hero__content p {
		margin-inline: auto;
	}

	.home-hero__actions {
		justify-content: center;
	}

	.home-hero__media {
		max-width: 300px;
	}

	.home-hero__slide--split .home-hero__photo {
		width: 100%;
	}

	.home-hero__slide--split .home-hero__photo::before {
		background: linear-gradient(180deg, rgba(23, 6, 15, 0.55) 0%, rgba(23, 6, 15, 0.9) 62%, var(--ews-hero-dark) 100%);
	}

	.home-hero__slide--split .home-hero__content {
		max-width: 520px;
	}

	.home-hero__script {
		font-size: 18px;
	}

	.home-service-strip__grid,
	.home-product-grid,
	.category-card-grid,
	.ews-reviews__grid,
	.ews-blog-posts__grid {
		grid-template-columns: 1fr;
	}

	.ews-reviews--slider {
		--ews-review-slides: 1;
	}

	.ews-category-cards--slider {
		--ews-category-slides: 1;
	}

	.home-section__header,
	.home-promo {
		align-items: flex-start;
		flex-direction: column;
	}

	.home-section__header a {
		white-space: normal;
	}
}

@media (max-width: 520px) {
	.custom-logo-link img {
		max-height: 42px;
		max-width: 160px;
	}

	.site-header .custom-logo-link img {
		height: 42px;
		max-height: 42px;
		max-width: 160px;
	}

	.site-main,
	.woocommerce-main {
		padding-block: 28px 44px;
	}

	.entry-title,
	.archive-title,
	.entry h1,
	.archive-header h1,
	.commerce-hero h1,
	.woocommerce div.product .product_title {
		font-size: 32px;
	}

	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: 1fr;
	}

	.woocommerce div.product form.cart {
		align-items: stretch;
		flex-direction: column;
	}

	.woocommerce div.product div.images {
		grid-template-columns: 1fr;
	}

	.woocommerce div.product div.images .flex-viewport,
	.woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
	.woocommerce div.product div.images .flex-control-thumbs {
		grid-column: 1;
		grid-row: auto;
	}

	.woocommerce div.product div.images .flex-control-thumbs {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
	}

	.woocommerce div.product div.images .ews-product-gallery-thumbs {
		align-items: center;
		grid-column: 1;
		grid-row: auto;
		grid-template-columns: 34px minmax(0, 1fr) 34px;
		max-height: none;
		width: 100%;
	}

	.woocommerce div.product div.images .ews-product-gallery-thumbs__viewport {
		max-height: none;
		overflow: hidden;
	}

	.woocommerce div.product div.images .ews-product-gallery-thumbs .flex-control-thumbs {
		display: flex;
		flex-wrap: nowrap;
		overflow: visible;
	}

	.woocommerce div.product div.images .ews-product-gallery-thumbs__arrow {
		height: 34px;
		width: 34px;
	}

	.woocommerce div.product div.images .ews-product-gallery-thumbs__arrow--prev span {
		transform: translateX(2px) rotate(45deg);
	}

	.woocommerce div.product div.images .ews-product-gallery-thumbs__arrow--next span {
		transform: translateX(-2px) rotate(-135deg);
	}

	.woocommerce div.product div.images,
	.woocommerce div.product div.summary {
		width: 100%;
	}

	.ews-product-actions {
		grid-template-columns: 1fr;
	}

	.ews-wishlist__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.woocommerce .quantity .qty,
	.woocommerce div.product form.cart .button {
		width: 100%;
	}

	.home-hero__content h1 {
		font-size: 38px;
	}

	.home-hero__actions,
	.home-hero__actions .button-link,
	.home-promo .button-link {
		width: 100%;
	}

	.home-product-card {
		display: grid;
		grid-template-columns: 120px minmax(0, 1fr);
	}

	.home-product-card__image {
		align-items: center;
		display: flex;
	}

	.home-product-card__body {
		padding: 14px;
	}

	.home-product-card h3 {
		font-size: 16px;
	}
}


/* ==========================================================================
   Brands Directory page template
   ========================================================================== */
.ews-brands {
	background: var(--ews-bg);
}

.ews-brands__inner {
	margin: 0 auto;
	max-width: 1280px;
	padding: 48px 20px 72px;
}

.ews-brands__header {
	text-align: center;
	margin-bottom: 36px;
}

.ews-brands__title {
	color: var(--ews-heading);
	font-size: clamp(28px, 4vw, 44px);
	margin: 0 0 12px;
}

.ews-brands__intro {
	color: var(--ews-muted);
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Card grid — tall portrait image tiles */
.ews-brands__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 1fr;
	gap: 24px;
}

.ews-brands__item {
	margin: 0;
	display: flex;
}

.ews-brands__card {
	position: relative;
	display: block;
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
	background: var(--ews-surface-alt);
	text-decoration: none;
}

/* Uniform tiles across the grid. */
.ews-brands__card:not(.is-textonly),
.ews-brands__card.is-textonly {
	aspect-ratio: 4 / 3;
	min-height: 200px;
}

/* Image tiles: clean white card with the logo fully shown and centered. */
.ews-brands__card:not(.is-textonly) {
	background: #fff;
	border: 1px solid var(--ews-line);
}

.ews-brands__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 24px;
	background: #fff;
	transition: transform .4s ease;
}

.ews-brands__card:hover .ews-brands__img {
	transform: scale(1.04);
}

/* The logo carries the brand name, so hide the resting label on image tiles. */
.ews-brands__card:not(.is-textonly) .ews-brands__name {
	display: none;
}

/* Brand name shown on the image (resting state) */
.ews-brands__name {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 18px 16px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0));
	transition: opacity .3s ease;
}

/* Text-only fallback tile (brand has no image) */
.ews-brands__card.is-textonly {
	background: linear-gradient(135deg, var(--ews-accent-soft, #f3f3f3), var(--ews-surface-alt));
}

.ews-brands__card.is-textonly .ews-brands__name {
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ews-heading);
	background: none;
	font-size: 20px;
}

/* Hover overlay with the description */
.ews-brands__overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 22px;
	text-align: center;
	color: #fff;
	background: rgba(17, 17, 17, .82);
	opacity: 0;
	transition: opacity .3s ease;
}

.ews-brands__card:hover .ews-brands__overlay,
.ews-brands__card:focus-visible .ews-brands__overlay {
	opacity: 1;
}

.ews-brands__card:hover .ews-brands__name {
	opacity: 0;
}

.ews-brands__overlay-name {
	font-size: 20px;
	font-weight: 700;
}

.ews-brands__desc {
	font-size: 14px;
	line-height: 1.55;
	max-height: 7.7em;
	overflow: hidden;
	color: rgba(255, 255, 255, .88);
}

.ews-brands__overlay .ews-brands__count {
	font-size: 13px;
	color: rgba(255, 255, 255, .65);
}

.ews-brands__cta {
	margin-top: 4px;
	padding: 9px 22px;
	border: 1px solid #fff;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	transition: background .2s ease, color .2s ease;
}

.ews-brands__card:hover .ews-brands__cta {
	background: #fff;
	color: #111;
}

.ews-brands__empty {
	text-align: center;
	color: var(--ews-muted);
	padding: 40px 0;
}

@media (max-width: 900px) {
	.ews-brands__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}
}

@media (max-width: 600px) {
	.ews-brands__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.ews-brands__name,
	.ews-brands__overlay-name {
		font-size: 16px;
	}

	.ews-brands__desc {
		font-size: 13px;
	}
}
