/*!
 * Premium WooCommerce Storefront — base, header, hero, categories, cards, catalog, footer.
 * All rules are scoped to .pws-root so the theme is never affected.
 */

.pws-root {
	--pws-primary: #1F2023;
	--pws-accent: #F97316;
	--pws-bg: #FFFFFF;
	--pws-surface: #F5F5F4;
	--pws-text: #111111;
	--pws-star: #F5A524;
	--pws-save: #16A34A;
	--pws-radius: 16px;
	--pws-cols: 4;
	--pws-cols-md: 3;
	--pws-cols-sm: 2;
	--pws-ratio: 1/1;
	--pws-logo-h: 32px;
	--pws-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--pws-title-transform: uppercase;

	/* Derived tokens */
	--pws-muted: color-mix(in srgb, var(--pws-text) 58%, var(--pws-bg));
	--pws-soft: color-mix(in srgb, var(--pws-text) 40%, var(--pws-bg));
	--pws-border: color-mix(in srgb, var(--pws-text) 10%, var(--pws-bg));
	--pws-border-strong: color-mix(in srgb, var(--pws-text) 18%, var(--pws-bg));
	--pws-accent-soft: color-mix(in srgb, var(--pws-accent) 12%, var(--pws-bg));
	--pws-accent-hover: color-mix(in srgb, var(--pws-accent) 88%, #000);
	--pws-save-soft: color-mix(in srgb, var(--pws-save) 14%, var(--pws-bg));
	--pws-radius-sm: calc(var(--pws-radius) * .6);
	--pws-radius-lg: calc(var(--pws-radius) * 1.4);
	--pws-shadow-sm: 0 1px 2px rgba(17, 17, 17, .04), 0 1px 1px rgba(17, 17, 17, .03);
	--pws-shadow: 0 10px 30px -12px rgba(17, 17, 17, .16), 0 2px 6px rgba(17, 17, 17, .04);
	--pws-shadow-lg: 0 24px 60px -20px rgba(17, 17, 17, .28);
	--pws-ease: cubic-bezier(.2, .7, .2, 1);
	--pws-container: 1240px;
	--pws-header-h: 68px;

	font-family: var(--pws-font);
	color: var(--pws-text);
	background: var(--pws-bg);
	font-size: 15px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

@supports not (color: color-mix(in srgb, red, blue)) {
	.pws-root {
		--pws-muted: #6B6B6B;
		--pws-soft: #9A9A9A;
		--pws-border: #E7E5E4;
		--pws-border-strong: #D6D3D1;
		--pws-accent-soft: #FFF1E7;
		--pws-accent-hover: #EA580C;
		--pws-save-soft: #DCFCE7;
	}
}

.pws-root [hidden], .pws-lightbox [hidden] { display: none !important; }

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

body.pws-body { margin: 0; background: var(--pws-bg, #fff); }
.pws-page { min-height: 100vh; display: flex; flex-direction: column; overflow-x: clip; }
.pws-main { flex: 1 0 auto; outline: none; }

.pws-root :where(img) { max-width: 100%; height: auto; display: block; }
.pws-root :where(a) { color: inherit; text-decoration: none; }
.pws-root :where(button) { font: inherit; color: inherit; cursor: pointer; }
.pws-root :where(ul, ol) { margin: 0; padding: 0; list-style: none; }
.pws-root :where(h1, h2, h3, h4) { margin: 0; line-height: 1.15; color: var(--pws-text); font-family: var(--pws-font); letter-spacing: -.01em; }
.pws-root :where(p) { margin: 0; }
.pws-root :focus-visible { outline: 2px solid var(--pws-accent); outline-offset: 2px; border-radius: 6px; }
.pws-root .screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.pws-skip { position: absolute; left: 12px; top: -60px; z-index: 1000; background: var(--pws-primary); color: #fff !important; padding: 10px 16px; border-radius: 999px; transition: top .2s; }
.pws-skip:focus { top: 12px; }
.pws-muted { color: var(--pws-muted); }

.pws-container { width: 100%; max-width: var(--pws-container); margin: 0 auto; padding: 0 24px; }
.pws-notices:empty { display: none; }
.pws-notices .woocommerce-message,
.pws-notices .woocommerce-error,
.pws-notices .woocommerce-info { margin: 16px 0 0; border-radius: var(--pws-radius-sm); }

/* ---------- Buttons ---------- */
.pws-btn {
	--_bg: var(--pws-primary); --_fg: #fff; --_bd: transparent;
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 44px; padding: 0 22px; border-radius: 999px;
	border: 1.5px solid var(--_bd); background: var(--_bg); color: var(--_fg) !important;
	font-weight: 600; font-size: 14px; letter-spacing: .01em; line-height: 1; white-space: nowrap;
	text-decoration: none; text-transform: none;
	transition: background-color .2s var(--pws-ease), border-color .2s, color .2s, transform .15s var(--pws-ease), box-shadow .2s;
	-webkit-tap-highlight-color: transparent;
}
.pws-btn:hover { transform: translateY(-1px); }
.pws-btn:active { transform: translateY(0) scale(.98); }
.pws-btn--dark { --_bg: var(--pws-primary); }
.pws-btn--dark:hover { --_bg: color-mix(in srgb, var(--pws-primary) 86%, #fff); }
.pws-btn--accent { --_bg: var(--pws-accent); box-shadow: 0 8px 20px -10px var(--pws-accent); }
.pws-btn--accent:hover { --_bg: var(--pws-accent-hover); box-shadow: 0 12px 24px -10px var(--pws-accent); }
.pws-btn--outline { --_bg: transparent; --_fg: var(--pws-text); --_bd: var(--pws-border-strong); }
.pws-btn--outline:hover { --_bd: var(--pws-text); }
.pws-btn--ghost { --_bg: rgba(255, 255, 255, .7); --_fg: var(--pws-text); --_bd: var(--pws-border-strong); backdrop-filter: blur(6px); }
.pws-btn--ghost:hover { --_bg: #fff; }
.pws-btn--soft { --_bg: var(--pws-surface); --_fg: var(--pws-muted); }
.pws-btn--link { --_bg: transparent; --_fg: var(--pws-muted); padding: 0 8px; min-height: 36px; text-decoration: underline; text-underline-offset: 3px; }
.pws-btn--link:hover { --_fg: var(--pws-text); transform: none; }
.pws-btn--block { width: 100%; }
.pws-btn--lg { min-height: 52px; padding: 0 28px; font-size: 15px; }
.pws-btn--xl { min-height: 56px; padding: 0 28px; font-size: 15px; text-transform: uppercase; letter-spacing: .04em; }
.pws-btn--disabled, .pws-btn[disabled] { --_bg: var(--pws-surface); --_fg: var(--pws-soft); box-shadow: none; cursor: not-allowed; transform: none !important; }
.pws-btn.is-loading { pointer-events: none; position: relative; color: transparent !important; }
.pws-btn.is-loading > * { opacity: 0; }
.pws-btn.is-loading::after {
	content: ""; position: absolute; width: 18px; height: 18px; border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, .45); border-top-color: #fff; animation: pws-spin .7s linear infinite;
}
.pws-btn--outline.is-loading::after, .pws-btn--soft.is-loading::after { border-color: var(--pws-border-strong); border-top-color: var(--pws-text); }
.pws-btn.is-added { --_bg: var(--pws-save); }

.pws-icon-btn {
	display: inline-flex; align-items: center; justify-content: center; position: relative;
	width: 42px; height: 42px; border-radius: 999px; border: 0; background: transparent; color: var(--pws-text);
	transition: background-color .2s;
}
.pws-icon-btn:hover { background: var(--pws-surface); }
.pws-round-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--pws-border-strong);
	background: var(--pws-bg); color: var(--pws-text); transition: all .2s var(--pws-ease);
}
.pws-round-btn:hover { border-color: var(--pws-text); background: var(--pws-text); color: var(--pws-bg); }
.pws-round-btn:disabled { opacity: .35; pointer-events: none; }

@keyframes pws-spin { to { transform: rotate(360deg); } }
@keyframes pws-fade-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes pws-shimmer { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } }

/* ---------- Stars ---------- */
.pws-stars { position: relative; display: inline-flex; line-height: 0; vertical-align: middle; flex: none; }
.pws-stars__base, .pws-stars__fill { display: inline-flex; gap: 1px; }
.pws-stars__base svg { fill: var(--pws-border-strong); }
.pws-stars__fill { position: absolute; inset: 0 auto 0 0; overflow: hidden; white-space: nowrap; }
.pws-stars__fill svg { fill: var(--pws-star); flex: none; }

/* ---------- Eyebrow / sections ---------- */
.pws-eyebrow {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pws-accent);
}
.pws-section { padding: 56px 0 8px; }
.pws-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.pws-section__title {
	font-size: clamp(20px, 2.2vw, 26px); font-weight: 800; letter-spacing: -.01em;
	text-transform: var(--pws-title-transform);
}
.pws-section__title--center { text-align: center; }
.pws-section__tools { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.pws-link-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--pws-text); }
.pws-link-arrow svg { transition: transform .2s var(--pws-ease); }
.pws-link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Announcement ---------- */
.pws-announce { background: var(--pws-primary); color: #fff; font-size: 13px; font-weight: 500; text-align: center; padding: 8px 0; letter-spacing: .01em; }

/* ---------- Header ---------- */
.pws-header { position: relative; z-index: 60; background: color-mix(in srgb, var(--pws-bg) 92%, transparent); border-bottom: 1px solid var(--pws-border); backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px); }
.pws-header.is-sticky { position: sticky; top: 0; }
.admin-bar .pws-header.is-sticky { top: 32px; }
.pws-header.is-scrolled { box-shadow: 0 6px 24px -18px rgba(0, 0, 0, .35); }
.pws-header__inner { display: flex; align-items: center; gap: 24px; min-height: var(--pws-header-h); }
.pws-header__burger { display: none; margin-left: -8px; }

.pws-logo { display: inline-flex; align-items: center; gap: 10px; flex: none; font-weight: 800; font-size: 18px; letter-spacing: .02em; text-transform: uppercase; color: var(--pws-text); }
.pws-logo__img { height: var(--pws-logo-h); width: auto; max-width: 220px; object-fit: contain; }
.pws-logo__mark { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 10px; background: var(--pws-primary); color: #fff; }
.pws-logo__text { white-space: nowrap; }

.pws-nav { flex: 1; display: flex; justify-content: center; }
.pws-nav__list { display: flex; align-items: center; gap: 4px; }
.pws-nav__list > li { position: relative; }
.pws-nav__link, .pws-nav__list > li > a {
	display: inline-flex; align-items: center; gap: 4px; height: 40px; padding: 0 14px; border: 0; background: none; border-radius: 999px;
	font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--pws-text);
	transition: background-color .2s, color .2s;
}
.pws-nav__link:hover, .pws-nav__list > li > a:hover, .pws-nav__item--dropdown.is-open > .pws-nav__link { background: var(--pws-surface); }
.pws-nav__link svg { transition: transform .2s; }
.pws-nav__item--dropdown.is-open > .pws-nav__link svg { transform: rotate(180deg); }
.pws-nav .sub-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--pws-bg); border: 1px solid var(--pws-border); border-radius: var(--pws-radius); padding: 8px; box-shadow: var(--pws-shadow-lg); }
.pws-nav li:hover > .sub-menu, .pws-nav li:focus-within > .sub-menu { display: block; }
.pws-nav .sub-menu a { display: block; padding: 9px 12px; border-radius: 10px; font-size: 14px; }
.pws-nav .sub-menu a:hover { background: var(--pws-surface); }

.pws-dropdown {
	position: absolute; top: calc(100% + 10px); left: 50%; width: min(560px, 90vw);
	background: var(--pws-bg); border: 1px solid var(--pws-border); border-radius: var(--pws-radius-lg);
	box-shadow: var(--pws-shadow-lg); padding: 14px; opacity: 0; visibility: hidden;
	transform: translate(-50%, 6px); transition: opacity .2s, transform .2s var(--pws-ease), visibility .2s;
}
.pws-nav__item--dropdown.is-open .pws-dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.pws-dropdown__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.pws-dropdown__grid a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 12px; border-radius: 10px; font-size: 14px; font-weight: 500; }
.pws-dropdown__grid a:hover { background: var(--pws-surface); }
.pws-dropdown__grid small { font-size: 12px; color: var(--pws-soft); }
.pws-dropdown__all { display: block; margin-top: 8px; padding: 10px 12px; border-top: 1px solid var(--pws-border); font-size: 13px; font-weight: 600; color: var(--pws-accent) !important; }

.pws-header__actions { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.pws-header__cart .pws-cart-count {
	position: absolute; top: 3px; right: 1px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px;
	background: var(--pws-primary); color: #fff; font-size: 11px; font-weight: 700; line-height: 18px; text-align: center;
	transition: transform .25s var(--pws-ease);
}
.pws-cart-count.is-empty { transform: scale(0); }
.pws-cart-count.is-bump { animation: pws-bump .45s var(--pws-ease); }
@keyframes pws-bump { 0% { transform: scale(1); } 40% { transform: scale(1.35); } 100% { transform: scale(1); } }

/* ---------- Search ---------- */
.pws-search-panel { border-top: 1px solid var(--pws-border); background: var(--pws-bg); padding: 16px 0 18px; animation: pws-fade-up .2s var(--pws-ease); }
.pws-search { position: relative; display: flex; align-items: center; gap: 10px; }
.pws-search__field {
	position: relative; flex: 1; min-width: 0; display: flex; align-items: center; height: 48px; padding: 0 4px 0 20px;
	border: 2px solid var(--pws-search, var(--pws-accent)); border-radius: 999px; background: var(--pws-bg);
	transition: box-shadow .2s var(--pws-ease);
}
.pws-search__field:focus-within { box-shadow: 0 0 0 4px color-mix(in srgb, var(--pws-search, var(--pws-accent)) 22%, transparent); }
.pws-search__input { flex: 1; min-width: 0; height: 100%; font: inherit; font-size: 15px; -webkit-appearance: none; appearance: none; }
.pws-search__input::-webkit-search-cancel-button, .pws-search__input::-webkit-search-decoration { display: none; -webkit-appearance: none; }
.pws-search__submit {
	flex: none; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
	border-radius: 50%; background: var(--pws-search, var(--pws-accent)); color: var(--pws-search-icon, #111); cursor: pointer;
	transition: transform .15s var(--pws-ease), filter .2s;
}
.pws-search__submit:hover { filter: brightness(.95); transform: scale(1.04); }
.pws-search__submit:active { transform: scale(.96); }
.pws-search__close { flex: none; }
.pws-search--inline .pws-search__field { height: 52px; }
.pws-search--inline .pws-search__submit { width: 42px; height: 42px; }
.pws-search__results {
	position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 80; max-height: min(70vh, 560px); overflow: auto;
	background: var(--pws-bg); border: 1px solid var(--pws-border); border-radius: var(--pws-radius-lg); box-shadow: var(--pws-shadow-lg); padding: 8px;
	animation: pws-fade-up .18s var(--pws-ease);
}
.pws-search__group { padding: 6px 8px 2px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pws-soft); }
.pws-search__cats { display: flex; flex-wrap: wrap; gap: 6px; padding: 6px 8px 10px; }
.pws-search__item { display: flex; align-items: center; gap: 12px; padding: 8px; border-radius: 12px; }
.pws-search__item:hover, .pws-search__item.is-active { background: var(--pws-surface); }
.pws-search__item img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; background: var(--pws-surface); flex: none; }
.pws-search__meta { min-width: 0; flex: 1; }
.pws-search__name { display: block; font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pws-search__name mark { background: var(--pws-accent-soft); color: inherit; border-radius: 3px; padding: 0 1px; }
.pws-search__sub { display: block; font-size: 12px; color: var(--pws-muted); }
.pws-search__price { font-weight: 700; font-size: 14px; white-space: nowrap; }
.pws-search__price del { color: var(--pws-soft); font-weight: 500; font-size: 12px; margin-right: 4px; }
.pws-search__all { display: block; text-align: center; padding: 12px; margin-top: 4px; border-top: 1px solid var(--pws-border); font-size: 14px; font-weight: 600; color: var(--pws-accent) !important; }
.pws-search__empty { padding: 22px; text-align: center; color: var(--pws-muted); font-size: 14px; }
.pws-search__skel { display: flex; gap: 12px; padding: 8px; }
.pws-search__skel span { display: block; border-radius: 10px; }

.pws-skeleton, .pws-search__skel span {
	background: linear-gradient(90deg, var(--pws-surface) 0, color-mix(in srgb, var(--pws-surface) 50%, #fff) 50%, var(--pws-surface) 100%);
	background-size: 800px 100%; animation: pws-shimmer 1.2s linear infinite;
}

/* ---------- Drawer ---------- */
.pws-drawer { position: fixed; inset: 0; z-index: 200; }
.pws-drawer__backdrop { position: absolute; inset: 0; background: rgba(17, 17, 17, .45); opacity: 0; transition: opacity .25s; }
.pws-drawer__panel {
	position: absolute; top: 0; bottom: 0; left: 0; width: min(86vw, 360px); background: var(--pws-bg);
	display: flex; flex-direction: column; transform: translateX(-100%); transition: transform .3s var(--pws-ease); box-shadow: var(--pws-shadow-lg);
}
.pws-drawer.is-open .pws-drawer__backdrop { opacity: 1; }
.pws-drawer.is-open .pws-drawer__panel { transform: none; }
.pws-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px 14px 22px; border-bottom: 1px solid var(--pws-border); }
.pws-drawer__title { font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
.pws-drawer__nav { flex: 1; overflow: auto; padding: 10px 12px; }
.pws-drawer__list > li > a, .pws-drawer__list summary {
	display: flex; align-items: center; justify-content: space-between; padding: 14px 10px; border-bottom: 1px solid var(--pws-border);
	font-size: 15px; font-weight: 600; cursor: pointer; list-style: none;
}
.pws-drawer__list summary::-webkit-details-marker { display: none; }
.pws-drawer__list details[open] summary svg { transform: rotate(180deg); }
.pws-drawer__list details ul, .pws-drawer__list .sub-menu { padding: 6px 0 10px 10px; }
.pws-drawer__list details a, .pws-drawer__list .sub-menu a { display: block; padding: 9px 10px; font-size: 14px; color: var(--pws-muted); }
.pws-drawer__foot { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px 16px 22px; border-top: 1px solid var(--pws-border); }
.pws-drawer__foot a { display: flex; align-items: center; justify-content: center; gap: 8px; height: 46px; border-radius: 999px; background: var(--pws-surface); font-weight: 600; font-size: 14px; }
body.pws-lock { overflow: hidden; }

/* ---------- Hero ---------- */
.pws-hero { background: var(--pws-banner-bg, #F4F4F5); color: var(--pws-banner-fg, #111); background-size: cover; background-position: center; overflow: hidden; }
.pws-hero__inner { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 48px; padding-top: 64px; padding-bottom: 64px; min-height: 440px; }
.pws-hero--none .pws-hero__inner, .pws-hero--image.no-visual .pws-hero__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.pws-hero__content { max-width: 560px; animation: pws-fade-up .6s var(--pws-ease) both; }
.pws-hero__title {
	margin-top: 14px !important; font-size: clamp(34px, 5vw, 60px); font-weight: 800; line-height: 1.02 !important; letter-spacing: -.035em;
	color: inherit !important;
}
.pws-hero__subtitle { margin-top: 18px !important; font-size: clamp(16px, 1.5vw, 19px); color: color-mix(in srgb, currentColor 70%, transparent); max-width: 460px; }
.pws-hero--none .pws-hero__subtitle { margin-left: auto; margin-right: auto; }
.pws-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.pws-hero--none .pws-hero__actions { justify-content: center; }
.pws-hero__img { width: 100%; border-radius: var(--pws-radius-lg); object-fit: cover; box-shadow: var(--pws-shadow-lg); }

.pws-hero__visual--products { position: relative; display: grid; grid-template-columns: 1.25fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; height: 400px; }
.pws-hero__visual--n1 { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.pws-hero__visual--n2 { grid-template-rows: 1fr; grid-template-columns: 1fr 1fr; }
.pws-hero-card {
	position: relative; display: flex; flex-direction: column; background: var(--pws-bg); border-radius: var(--pws-radius-lg);
	overflow: hidden; box-shadow: var(--pws-shadow); transition: transform .35s var(--pws-ease), box-shadow .35s;
	animation: pws-fade-up .7s var(--pws-ease) both;
}
.pws-hero-card:hover { transform: translateY(-4px); box-shadow: var(--pws-shadow-lg); }
.pws-hero-card--0 { grid-row: 1 / span 2; }
.pws-hero__visual--n2 .pws-hero-card--0 { grid-row: auto; }
.pws-hero-card--1 { animation-delay: .08s; }
.pws-hero-card--2 { animation-delay: .16s; }
.pws-hero-card__media { position: relative; flex: 1; min-height: 0; background: var(--pws-surface); overflow: hidden; }
.pws-hero-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--pws-ease); }
.pws-hero-card:hover .pws-hero-card__img { transform: scale(1.04); }
.pws-hero-card__body { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; }
.pws-hero-card__name { font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--pws-text); }
.pws-hero-card__price { font-weight: 800; font-size: 14px; color: var(--pws-accent); white-space: nowrap; }
.pws-hero-card__price del { display: none; }
.pws-hero-card__price ins { text-decoration: none; }

/* ---------- Discount circle / badges ---------- */
.pws-disc-circle {
	position: absolute; top: 12px; right: 12px; z-index: 2; display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--pws-text);
	font-size: 12px; font-weight: 800; letter-spacing: -.02em; box-shadow: 0 4px 14px -4px rgba(0, 0, 0, .22);
}
.pws-disc-circle--lg { width: 58px; height: 58px; font-size: 14px; top: 16px; right: 16px; }
.pws-badges { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.pws-badge {
	display: inline-flex; align-items: center; height: 24px; padding: 0 10px; border-radius: 999px;
	background: var(--pws-primary); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.pws-badge--sale { background: var(--pws-accent); }
.pws-badge--new { background: #fff; color: var(--pws-text); box-shadow: var(--pws-shadow-sm); }
.pws-badge--best { background: var(--pws-star); color: #1a1200; }
.pws-badge--digital { background: color-mix(in srgb, var(--pws-primary) 80%, #3b82f6); }
.pws-badge--featured { background: #fff; color: var(--pws-accent); }
.pws-badge--oos { background: rgba(17, 17, 17, .78); }

/* ---------- Categories ---------- */
.pws-cats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pws-cat {
	display: flex; align-items: center; gap: 14px; padding: 12px 16px 12px 12px; height: 100%;
	background: var(--pws-bg); border: 1px solid var(--pws-border); border-radius: var(--pws-radius);
	transition: border-color .2s, transform .25s var(--pws-ease), box-shadow .25s;
}
.pws-cat:hover { border-color: var(--pws-border-strong); transform: translateY(-2px); box-shadow: var(--pws-shadow); }
.pws-cat__media { width: 60px; height: 60px; flex: none; border-radius: var(--pws-radius-sm); overflow: hidden; background: var(--pws-surface); display: flex; align-items: center; justify-content: center; }
.pws-cat__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--pws-ease); }
.pws-cat:hover .pws-cat__img { transform: scale(1.08); }
.pws-cat__initial { font-size: 22px; font-weight: 800; color: var(--pws-accent); }
.pws-cat__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.pws-cat__name { font-weight: 700; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pws-cat__count { font-size: 13px; color: var(--pws-muted); }
.pws-cat__arrow { color: var(--pws-soft); transition: transform .2s var(--pws-ease), color .2s; }
.pws-cat:hover .pws-cat__arrow { color: var(--pws-text); transform: translateX(3px); }

/* ---------- Cards ---------- */
.pws-card {
	position: relative; display: flex; flex-direction: column; height: 100%;
	background: var(--pws-bg); border: 1px solid var(--pws-border); border-radius: var(--pws-radius-lg); overflow: hidden;
	transition: transform .3s var(--pws-ease), box-shadow .3s var(--pws-ease), border-color .3s;
}
.pws-card:hover { transform: translateY(-4px); box-shadow: var(--pws-shadow); border-color: transparent; }
.pws-card__media { position: relative; display: block; aspect-ratio: var(--pws-ratio); background: var(--pws-surface); overflow: hidden; margin: 8px 8px 0; border-radius: var(--pws-radius); }
.pws-card__img { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; transition: transform .6s var(--pws-ease), opacity .4s; }
.pws-card__img--hover { opacity: 0; }
.pws-card:hover .pws-card__img { transform: scale(1.05); }
.pws-card:hover .pws-card__img--hover { opacity: 1; }
.pws-card.is-oos .pws-card__img { filter: grayscale(.6); opacity: .75; }
.pws-card__digital {
	position: absolute; left: 10px; bottom: 10px; z-index: 2; display: inline-flex; align-items: center; gap: 5px; height: 24px; padding: 0 9px;
	border-radius: 999px; background: rgba(255, 255, 255, .92); backdrop-filter: blur(6px); font-size: 11px; font-weight: 600; color: var(--pws-text);
}
.pws-card__body { display: flex; flex-direction: column; flex: 1; gap: 6px; padding: 14px 16px 16px; }
.pws-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 18px; font-size: 12px; color: var(--pws-muted); }
.pws-card__rating { display: inline-flex; align-items: center; gap: 5px; }
.pws-card__rcount { font-size: 12px; color: var(--pws-soft); }
.pws-card__cat { font-size: 12px; color: var(--pws-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-left: auto; }
.pws-card__rating + .pws-card__cat { max-width: 50%; }
.pws-card__meta > .pws-card__cat:only-child { margin-left: 0; }
.pws-card__title { font-size: 15px !important; font-weight: 600 !important; line-height: 1.35 !important; letter-spacing: -.005em; text-transform: none !important; }
.pws-card__title a { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pws-card__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.pws-card__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 8px; margin-top: auto; padding-top: 4px; }
.pws-price-current { font-size: 17px; font-weight: 800; color: var(--pws-text); letter-spacing: -.01em; }
.pws-card:has(.pws-price-old) .pws-price-current { color: var(--pws-accent); }
.pws-price-old { font-size: 13px; color: var(--pws-soft); font-weight: 500; }
.pws-price-from { width: 100%; font-size: 11px; color: var(--pws-muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.pws-price-native { font-size: 16px; font-weight: 700; }
.pws-price-native del { color: var(--pws-soft); font-weight: 500; font-size: .85em; }
.pws-price-native ins { text-decoration: none; color: var(--pws-accent); }
.pws-card__actions { position: relative; z-index: 2; margin-top: 10px; }
.pws-card__actions .pws-btn { min-height: 40px; font-size: 13px; }
.pws-lbl-short { display: none; }
@media (hover: hover) and (min-width: 1025px) {
	.pws-card__actions .pws-btn--dark { --_bg: var(--pws-surface); --_fg: var(--pws-text); }
	.pws-card:hover .pws-card__actions .pws-btn--dark { --_bg: var(--pws-accent); --_fg: #fff; }
	.pws-card__actions .pws-btn.is-loading::after { border-color: var(--pws-border-strong); border-top-color: var(--pws-text); }
	.pws-card:hover .pws-card__actions .pws-btn.is-loading::after { border-color: rgba(255, 255, 255, .45); border-top-color: #fff; }
}

/* ---------- Product rows / carousels ---------- */
.pws-row__track { display: grid; grid-template-columns: repeat(var(--pws-row-cols, var(--pws-cols)), minmax(0, 1fr)); gap: 18px; }
.pws-row.is-carousel .pws-row__track {
	display: grid; grid-auto-flow: column; grid-template-columns: none;
	grid-auto-columns: calc((100% - (var(--pws-row-cols, var(--pws-cols)) - 1) * 18px) / var(--pws-row-cols, var(--pws-cols)));
	overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding: 4px 2px 18px; margin: -4px -2px 0;
	overscroll-behavior-x: contain;
}
.pws-row.is-carousel .pws-row__track::-webkit-scrollbar { display: none; }
.pws-row__item { scroll-snap-align: start; min-width: 0; }
.pws-row__nav { display: flex; gap: 8px; }

/* ---------- Catalog ---------- */
.pws-catalog { padding-bottom: 24px; scroll-margin-top: 90px; }
.pws-catalog__form { margin: 0; }
.pws-catalog__layout { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.pws-catalog.has-filters .pws-catalog__layout { grid-template-columns: 250px minmax(0, 1fr); }
.pws-catalog__main { min-width: 0; }
.pws-toolbar { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; min-height: 44px; }
.pws-toolbar__filter { display: none; min-height: 42px; }
.pws-toolbar__count { font-size: 14px; color: var(--pws-muted); }
.pws-results__count { display: none; }
.no-js .pws-results__count, html:not(.pws-js) .pws-results__count { display: block; font-size: 14px; color: var(--pws-muted); margin-bottom: 14px; }
.pws-sort { position: relative; display: inline-flex; align-items: center; gap: 8px; margin-left: auto; }
.pws-sort__label { font-size: 13px; color: var(--pws-muted); white-space: nowrap; }
.pws-sort select, .pws-select select {
	height: 42px; padding: 0 38px 0 16px !important; border-radius: 999px !important; border: 1.5px solid var(--pws-border-strong) !important;
	background: var(--pws-bg) !important; color: var(--pws-text) !important; font: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
	-webkit-appearance: none; appearance: none; box-shadow: none !important; min-width: 170px;
}
.pws-sort svg, .pws-select svg { position: absolute; right: 14px; pointer-events: none; }
.pws-select { position: relative; display: flex; align-items: center; }
.pws-select select { width: 100%; border-radius: var(--pws-radius-sm) !important; height: 48px; }

.pws-grid { display: grid; grid-template-columns: repeat(var(--pws-cols), minmax(0, 1fr)); gap: 18px; }
.pws-catalog.has-filters .pws-grid { grid-template-columns: repeat(max(2, calc(var(--pws-cols) - 1)), minmax(0, 1fr)); }
.pws-grid__item { min-width: 0; animation: pws-fade-up .45s var(--pws-ease) both; }
.pws-grid__item:nth-child(2) { animation-delay: .03s; }
.pws-grid__item:nth-child(3) { animation-delay: .06s; }
.pws-grid__item:nth-child(4) { animation-delay: .09s; }
.pws-grid__item:nth-child(5) { animation-delay: .12s; }
.pws-grid__item:nth-child(6) { animation-delay: .15s; }
.pws-grid__item:nth-child(n+7) { animation-delay: .18s; }

.pws-results { position: relative; min-height: 200px; transition: opacity .2s; }
.pws-results.is-loading { pointer-events: none; }
.pws-results.is-loading .pws-grid { opacity: .35; filter: saturate(.5); transition: opacity .2s; }
.pws-results.is-loading::before {
	content: ""; position: absolute; top: 80px; left: 50%; z-index: 3; width: 30px; height: 30px; margin-left: -15px; border-radius: 50%;
	border: 3px solid var(--pws-border-strong); border-top-color: var(--pws-accent); animation: pws-spin .7s linear infinite;
}
.pws-skel-card { border: 1px solid var(--pws-border); border-radius: var(--pws-radius-lg); padding: 8px; }
.pws-skel-card .pws-skeleton { border-radius: var(--pws-radius); }

.pws-empty { text-align: center; padding: 60px 20px; border: 1px dashed var(--pws-border-strong); border-radius: var(--pws-radius-lg); }
.pws-empty__icon { display: inline-flex; width: 60px; height: 60px; align-items: center; justify-content: center; border-radius: 50%; background: var(--pws-surface); color: var(--pws-muted); margin-bottom: 14px; }
.pws-empty__title { font-size: 18px !important; margin-bottom: 6px !important; }
.pws-empty p { color: var(--pws-muted); margin-bottom: 18px; }

.pws-pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 36px; }
.pws-pagination__num, .pws-pagination__arrow {
	display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px;
	border-radius: 999px; border: 1px solid var(--pws-border); font-size: 14px; font-weight: 600; transition: all .2s;
}
.pws-pagination__num:hover, .pws-pagination__arrow:hover { border-color: var(--pws-text); }
.pws-pagination__num.is-current { background: var(--pws-primary); border-color: var(--pws-primary); color: #fff; }
.pws-pagination__dots { color: var(--pws-soft); padding: 0 4px; }

/* ---------- Filters ---------- */
.pws-filters { position: relative; }
.pws-filters__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.pws-filters__title { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.pws-filters__close { display: none; }
.pws-filter { border-bottom: 1px solid var(--pws-border); }
.pws-filter summary {
	display: flex; align-items: center; justify-content: space-between; padding: 16px 0; cursor: pointer; list-style: none;
	font-size: 14px; font-weight: 700;
}
.pws-filter summary::-webkit-details-marker { display: none; }
.pws-filter summary svg { transition: transform .2s; color: var(--pws-muted); }
.pws-filter[open] summary svg { transform: rotate(180deg); }
.pws-filter__body { padding: 0 0 18px; }
.pws-filter__list { display: flex; flex-direction: column; gap: 2px; max-height: 280px; overflow: auto; }
.pws-filter__pills { display: flex; flex-wrap: wrap; gap: 6px; }

.pws-check, .pws-radio { position: relative; display: flex; align-items: center; gap: 10px; padding: 7px 4px; border-radius: 8px; cursor: pointer; font-size: 14px; }
.pws-check:hover, .pws-radio:hover { background: var(--pws-surface); }
.pws-check.is-child { padding-left: 22px; }
.pws-check input, .pws-radio input, .pws-pill input, .pws-opt input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.pws-check__box {
	display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; flex: none;
	border: 1.5px solid var(--pws-border-strong); border-radius: 5px; color: transparent; transition: all .15s;
}
.pws-check input:checked + .pws-check__box { background: var(--pws-primary); border-color: var(--pws-primary); color: #fff; }
.pws-check input:focus-visible + .pws-check__box, .pws-radio input:focus-visible + .pws-radio__dot { outline: 2px solid var(--pws-accent); outline-offset: 2px; }
.pws-check__label { flex: 1; }
.pws-check__count { font-size: 12px; color: var(--pws-soft); }
.pws-radio__dot { width: 18px; height: 18px; flex: none; border-radius: 50%; border: 1.5px solid var(--pws-border-strong); transition: all .15s; }
.pws-radio input:checked + .pws-radio__dot { border: 5px solid var(--pws-primary); }
.pws-radio__hint { font-size: 12px; color: var(--pws-muted); }
.pws-pill span {
	display: inline-flex; align-items: center; height: 34px; padding: 0 14px; border-radius: 999px; border: 1.5px solid var(--pws-border);
	font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s;
}
.pws-pill:hover span { border-color: var(--pws-border-strong); }
.pws-pill input:checked + span { background: var(--pws-primary); border-color: var(--pws-primary); color: #fff; }
.pws-pill input:focus-visible + span { outline: 2px solid var(--pws-accent); outline-offset: 2px; }

.pws-range { position: relative; height: 28px; margin: 4px 8px 6px; }
.pws-range__track { position: absolute; top: 12px; left: 0; right: 0; height: 4px; border-radius: 4px; background: var(--pws-border); }
.pws-range__fill { position: absolute; top: 0; bottom: 0; background: var(--pws-accent); border-radius: 4px; }
.pws-range__input { position: absolute; left: -8px; right: -8px; width: calc(100% + 16px); top: 4px; height: 20px; margin: 0; background: none; pointer-events: none; -webkit-appearance: none; appearance: none; }
.pws-range__input::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 2px solid var(--pws-primary); box-shadow: var(--pws-shadow-sm); pointer-events: auto; cursor: grab; }
.pws-range__input::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 2px solid var(--pws-primary); pointer-events: auto; cursor: grab; }
.pws-range__input::-webkit-slider-runnable-track { background: none; }
.pws-range__input::-moz-range-track { background: none; }
.pws-range__labels { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.pws-range__labels span:not([aria-hidden]) { padding: 6px 10px; background: var(--pws-surface); border-radius: 8px; }

.pws-filters__actions { display: flex; flex-direction: column; gap: 6px; padding-top: 18px; }
.pws-js .pws-filters__actions .pws-btn--dark { display: none; }
.pws-filters__backdrop { display: none; }

.pws-root .pws-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; }
.pws-chip { display: inline-flex; align-items: center; gap: 6px; height: 36px; padding: 0 14px; border-radius: 999px; background: var(--pws-surface); font-size: 13px; font-weight: 600; transition: background-color .2s; }
.pws-chip:hover { background: var(--pws-border); }
.pws-chip small { color: var(--pws-soft); font-weight: 500; }

/* ---------- Archive / breadcrumbs ---------- */
.pws-breadcrumbs { padding: 20px 0 0; font-size: 13px; color: var(--pws-muted); }
.pws-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; }
.pws-breadcrumbs li { display: inline-flex; align-items: center; gap: 6px; }
.pws-breadcrumbs li + li::before { content: "/"; color: var(--pws-border-strong); }
.pws-breadcrumbs a:hover { color: var(--pws-text); }
.pws-breadcrumbs [aria-current] { color: var(--pws-text); font-weight: 500; max-width: 40ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pws-archive__head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 18px; padding: 32px; background: var(--pws-surface); border-radius: var(--pws-radius-lg); }
.pws-archive__title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -.03em; text-transform: var(--pws-title-transform); }
.pws-archive__desc { margin-top: 10px; color: var(--pws-muted); max-width: 640px; }
.pws-archive__desc p + p { margin-top: 8px; }
.pws-archive__count { margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--pws-muted); }
.pws-archive__thumb img { width: 120px; height: 120px; border-radius: var(--pws-radius); object-fit: cover; }
.pws-archive .pws-catalog { padding-top: 28px; }

/* ---------- Toast ---------- */
.pws-toast-wrap { position: fixed; z-index: 9999; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: 10px; pointer-events: none; font-family: var(--pws-font, system-ui, sans-serif); }
.pws-toast {
	pointer-events: auto; width: min(380px, calc(100vw - 32px)); background: #fff; color: #111; border-radius: 18px; padding: 16px;
	box-shadow: 0 24px 60px -18px rgba(0, 0, 0, .35), 0 0 0 1px rgba(0, 0, 0, .05);
	transform: translateY(16px) scale(.98); opacity: 0; transition: transform .3s cubic-bezier(.2, .7, .2, 1), opacity .3s;
}
.pws-toast.is-in { transform: none; opacity: 1; }
.pws-toast__row { display: flex; align-items: flex-start; gap: 12px; }
.pws-toast__icon { width: 34px; height: 34px; flex: none; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: #DCFCE7; color: #15803D; }
.pws-toast--error .pws-toast__icon { background: #FEE2E2; color: #B91C1C; }
.pws-toast__text { flex: 1; min-width: 0; padding-top: 2px; }
.pws-toast__title { display: block; font-weight: 700; font-size: 14px; }
.pws-toast__sub { display: block; font-size: 13px; color: #6B6B6B; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pws-toast__close { border: 0; background: none; padding: 4px; color: #9A9A9A; cursor: pointer; line-height: 0; }
.pws-toast__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.pws-toast__actions .pws-btn { min-height: 40px; font-size: 13px; padding: 0 12px; }
.pws-toast .pws-btn--outline { --_fg: #111; --_bd: #D6D3D1; }
.pws-toast .pws-btn--dark { --_bg: #1F2023; }

/* ---------- Footer ---------- */
.pws-footer { margin-top: 72px; border-top: 1px solid var(--pws-border); background: var(--pws-bg); }
.pws-footer__top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px; padding-top: 48px; padding-bottom: 36px; }
.pws-footer__about { margin-top: 14px !important; color: var(--pws-muted); font-size: 14px; max-width: 320px; }
.pws-social { display: flex; gap: 8px; margin-top: 18px !important; }
.pws-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--pws-border); color: var(--pws-text); transition: all .2s; }
.pws-social a:hover { background: var(--pws-primary); color: #fff; border-color: var(--pws-primary); }
.pws-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pws-footer__col summary { display: flex; align-items: center; justify-content: space-between; list-style: none; cursor: default; margin-bottom: 14px; }
.pws-footer__col summary::-webkit-details-marker { display: none; }
.pws-footer__col summary svg { display: none; }
.pws-footer__title { font-size: 13px !important; font-weight: 800 !important; letter-spacing: .08em; text-transform: uppercase; }
.pws-footer__col li + li { margin-top: 10px; }
.pws-footer__col a { font-size: 14px; color: var(--pws-muted); transition: color .2s; }
.pws-footer__col a:hover { color: var(--pws-text); }
.pws-footer__bottom { border-top: 1px solid var(--pws-border); }
.pws-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 20px; padding-bottom: 24px; }
.pws-footer__copy { font-size: 13px; color: var(--pws-muted); }
.pws-payments { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.pws-payments li { display: inline-flex; align-items: center; height: 28px; padding: 0 10px; border-radius: 6px; border: 1px solid var(--pws-border); font-size: 12px; font-weight: 600; color: var(--pws-muted); }
.pws-payments__lock { border: 0 !important; padding: 0 2px !important; color: var(--pws-save) !important; }

/* Theme mode helpers */
.pws-in-theme { padding-bottom: 20px; }
.pws-in-theme .pws-footer { margin-top: 48px; }

@media (prefers-reduced-motion: reduce) {
	.pws-root *, .pws-root *::before, .pws-root *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Theme isolation ----------
 * Many themes (Hello Elementor, Astra, Kadence…) style bare `button`, `[type=button]`,
 * `button:hover` and `svg`. These rules keep the storefront controls intact. */
.pws-root .pws-icon { flex: none; vertical-align: middle; max-width: none; }
.pws-root .pws-icon-btn,
.pws-root .pws-round-btn,
.pws-root .pws-qty__btn,
.pws-root .pws-search__close,
.pws-root .pws-toast__close {
	padding: 0 !important; margin: 0; min-height: 0; min-width: 0; line-height: 1; font-size: inherit; text-transform: none; letter-spacing: normal; box-shadow: none;
}
.pws-root .pws-icon-btn,
.pws-root .pws-qty__btn { border: 0 !important; background-color: transparent !important; color: var(--pws-text) !important; border-radius: 999px !important; }
.pws-root .pws-icon-btn:is(:hover, :focus-visible),
.pws-root .pws-qty__btn:is(:hover, :focus-visible) { background-color: var(--pws-surface) !important; color: var(--pws-text) !important; }
.pws-root .pws-round-btn { border: 1px solid var(--pws-border-strong) !important; background-color: var(--pws-bg) !important; color: var(--pws-text) !important; border-radius: 50% !important; }
.pws-root .pws-round-btn:is(:hover, :focus-visible) { background-color: var(--pws-text) !important; color: var(--pws-bg) !important; border-color: var(--pws-text) !important; }
.pws-root .pws-btn { font-family: var(--pws-font); border-radius: 999px; }
.pws-root .pws-btn,
.pws-root .pws-btn:is(:hover, :focus, :active, :visited) { background: var(--_bg) !important; border-color: var(--_bd) !important; color: var(--_fg) !important; text-decoration: none; }
.pws-root .pws-btn--link,
.pws-root .pws-btn--link:is(:hover, :focus) { text-decoration: underline !important; }
.pws-root .pws-nav__link { border: 0 !important; background-color: transparent; color: var(--pws-text) !important; box-shadow: none; }
.pws-root .pws-nav__link:is(:hover, :focus-visible) { background-color: var(--pws-surface) !important; }
.pws-root .pws-gallery__thumb,
.pws-root .pws-gallery__thumb:is(:hover, :focus) { padding: 0 !important; border: 0 !important; background: none !important; color: inherit !important; box-shadow: none !important; }
.pws-root input[type=radio], .pws-root input[type=checkbox] { box-shadow: none; }
.pws-root .pws-card__img, .pws-root .pws-gallery__img { max-width: none; }

/* ---------- Text-only hero ---------- */
.pws-hero--none { position: relative; isolation: isolate; }
.pws-hero--none::before {
	content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
	background:
		radial-gradient(40% 60% at 15% 20%, color-mix(in srgb, var(--pws-accent) 14%, transparent), transparent 70%),
		radial-gradient(35% 55% at 85% 80%, color-mix(in srgb, var(--pws-accent) 10%, transparent), transparent 70%);
}
.pws-hero--none::after {
	content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
	background-image: linear-gradient(color-mix(in srgb, currentColor 7%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, currentColor 7%, transparent) 1px, transparent 1px);
	background-size: 44px 44px;
	-webkit-mask-image: radial-gradient(60% 70% at 50% 50%, #000, transparent 80%); mask-image: radial-gradient(60% 70% at 50% 50%, #000, transparent 80%);
}
.pws-hero--none .pws-hero__inner { min-height: 0; padding-top: 88px; padding-bottom: 88px; }
.pws-hero--none .pws-hero__content { max-width: 820px; display: flex; flex-direction: column; align-items: center; }
.pws-hero--none .pws-eyebrow { padding: 7px 14px; border-radius: 999px; background: var(--pws-bg); box-shadow: var(--pws-shadow-sm); border: 1px solid var(--pws-border); }
.pws-hero--none .pws-hero__title { font-size: clamp(38px, 6.2vw, 76px); }
.pws-hero--none .pws-hero__subtitle { max-width: 560px; font-size: clamp(16px, 1.6vw, 20px); }
@media (max-width: 640px) {
	.pws-hero--none .pws-hero__inner { padding-top: 56px; padding-bottom: 56px; }
	.pws-hero--none .pws-hero__actions { width: 100%; }
}

/* ---------- Compact categories strip ---------- */
.pws-cats--compact { padding-top: 28px; }
.pws-cat-chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 2px 0 !important; }
.pws-cat-chips::-webkit-scrollbar { display: none; }
.pws-cat-chips > li { flex: none; }
html body .pws-root .pws-cat-chip {
	display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 14px 0 8px; border-radius: 999px;
	border: 1px solid var(--pws-border); background: var(--pws-bg); color: var(--pws-text) !important;
	font-size: 13.5px; font-weight: 600; white-space: nowrap; transition: border-color .2s, background-color .2s;
}
html body .pws-root .pws-cat-chip:not(:has(.pws-cat-chip__img)) { padding-left: 14px; }
html body .pws-root .pws-cat-chip:is(:hover, :focus-visible) { border-color: var(--pws-text); color: var(--pws-text) !important; }
.pws-cat-chip__img { width: 26px; height: 26px; border-radius: 50%; overflow: hidden; background: var(--pws-surface); flex: none; }
.pws-cat-chip__img img { width: 100%; height: 100%; object-fit: cover; }
.pws-cat-chip__count { font-size: 11.5px; font-weight: 600; color: var(--pws-soft); background: var(--pws-surface); border-radius: 999px; padding: 2px 7px; }
