/* ============================================================
   Universal theme: standard
   All values come from CSS design tokens; only :root holds
   literal values. Per-store overrides live in stores/{code}.css.
   ============================================================ */

/* ---- Design tokens: default (neutral) values ---- */
:root {
	--shop-primary: #2563eb;
	--shop-accent: #f59e0b;
	--shop-ink: #1f2937;
	--shop-muted: #6b7280;
	--shop-bg: #ffffff;
	--shop-surface: #ffffff;
	--shop-border: #e5e7eb;
	--shop-header-bg: #ffffff;
	--shop-header-ink: #1f2937;
	--shop-footer-bg: #111827;
	--shop-footer-ink: #cbd5e1;
	--shop-price: #111827;
	--shop-cta: var(--shop-primary);
	--shop-cta-ink: #ffffff;
	--shop-link: var(--shop-primary);
	--shop-success: #16a34a;
	--shop-danger: #dc2626;

	--shop-font-sans: 'Public Sans', system-ui, sans-serif;
	--shop-font-head: 'Public Sans', system-ui, sans-serif;
	--shop-font-size-base: 16px;
	--shop-heading-weight: 700;

	--shop-radius: 10px;
	--shop-radius-sm: 6px;
	--shop-radius-lg: 16px;
	--shop-btn-radius: 8px;
	--shop-card-radius: 12px;

	--shop-shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 1px rgba(15, 23, 42, .04);
	--shop-shadow-md: 0 4px 8px -3px rgba(15, 23, 42, .08), 0 14px 32px -10px rgba(15, 23, 42, .18);
	--shop-shadow-lg: 0 30px 64px -18px rgba(15, 23, 42, .28);
	--shop-ease: cubic-bezier(.22, .61, .36, 1);

	--shop-container: 1200px;
	--shop-gap: 20px;
	--shop-section-gap: 56px;
	--shop-header-height: 72px;
}

/* ============================================================
   BASE: body / typography
   ============================================================ */
body {
	font-family: var(--shop-font-sans);
	font-size: var(--shop-font-size-base);
	color: var(--shop-ink);
	background: var(--shop-bg);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--shop-font-head);
	font-weight: var(--shop-heading-weight);
	color: var(--shop-ink);
	letter-spacing: -.01em;
}

a {
	color: var(--shop-link);
}
a:hover {
	color: var(--shop-primary);
	opacity: .85;
}

/* ============================================================
   HEADER (.shop-header)
   ============================================================ */
.shop-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--shop-header-bg);
	color: var(--shop-header-ink);
	min-height: var(--shop-header-height);
	border-bottom: 1px solid var(--shop-border);
	box-shadow: var(--shop-shadow-sm);
}

.shop-header-inner {
	max-width: var(--shop-container);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: var(--shop-header-height);
	width: 100%;
}

/* Logo / brand */
.shop-logo-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: none;
	text-decoration: none;
	color: var(--shop-header-ink);
}
.shop-logo-wrap:hover {
	color: var(--shop-header-ink);
	opacity: .88;
}

.shop-logo-img {
	max-height: 40px;
	width: auto;
}

.shop-logo-fallback {
	width: 40px;
	height: 40px;
	border-radius: var(--shop-radius-sm);
	background: var(--shop-primary);
	color: var(--shop-cta-ink);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--shop-font-head);
	font-weight: 700;
	font-size: 20px;
	flex: none;
}

.shop-brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}
.shop-brand-name {
	font-family: var(--shop-font-head);
	font-weight: var(--shop-heading-weight);
	font-size: 19px;
	color: var(--shop-header-ink);
}
.shop-brand-tagline {
	font-size: 11.5px;
	opacity: .72;
	color: var(--shop-header-ink);
}

/* Header navigation */
.shop-nav {
	display: flex;
	align-items: center;
	gap: 22px;
	font-size: 14.5px;
	font-weight: 500;
	list-style: none;
	margin: 0;
	padding: 0;
}
.shop-nav-item {
	display: flex;
}
.shop-nav-link {
	color: var(--shop-header-ink);
	text-decoration: none;
	opacity: .92;
	padding: 6px 0;
	border-bottom: 2px solid transparent;
	transition: border-color .15s, opacity .15s;
	white-space: nowrap;
}
.shop-nav-link:hover,
.shop-nav-link.active {
	opacity: 1;
	border-bottom-color: var(--shop-primary);
	color: var(--shop-header-ink);
}

/* Header utilities (right side) */
.shop-header-actions {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 10px;
	flex: none;
}

/* Switcher chips (language / currency) */
.shop-switcher {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 7px 11px;
	border: 1px solid var(--shop-border);
	border-radius: var(--shop-btn-radius);
	font-size: 13px;
	cursor: pointer;
	opacity: .92;
	background: transparent;
	color: var(--shop-header-ink);
	text-decoration: none;
	transition: opacity .15s, border-color .15s;
}
.shop-switcher:hover {
	opacity: 1;
	color: var(--shop-header-ink);
	border-color: var(--shop-primary);
}
.shop-switcher .shop-switcher-arrow {
	opacity: .55;
	font-size: 10px;
}

/* Dropdown for currency / locale switch */
.shop-switcher-dropdown .dropdown-menu {
	border-radius: var(--shop-radius-sm);
	border-color: var(--shop-border);
	box-shadow: var(--shop-shadow-md);
	min-width: 100px;
}
.shop-switcher-dropdown .dropdown-item {
	font-size: 13.5px;
	color: var(--shop-ink) !important;
}
.shop-switcher-dropdown .dropdown-item:hover,
.shop-switcher-dropdown .dropdown-item:focus {
	color: var(--shop-ink) !important;
	background-color: rgba(0, 0, 0, .05);
}
.shop-switcher-dropdown .dropdown-item.active {
	color: #fff !important;
	background-color: var(--shop-primary);
}

/* Account link */
.shop-account-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 11px;
	border-radius: var(--shop-btn-radius);
	font-size: 13.5px;
	color: var(--shop-header-ink);
	text-decoration: none;
	opacity: .92;
	transition: opacity .15s;
}
.shop-account-link:hover {
	opacity: 1;
	color: var(--shop-header-ink);
}
.shop-account-avatar {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid var(--shop-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 600;
	flex: none;
}

/* Cart CTA button */
.shop-cart-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 15px;
	background: var(--shop-cta);
	color: var(--shop-cta-ink);
	border: none;
	border-radius: var(--shop-btn-radius);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	font-family: var(--shop-font-sans);
	text-decoration: none;
	transition: opacity .15s, filter .15s;
}
.shop-cart-btn:hover {
	color: var(--shop-cta-ink);
	filter: brightness(1.06);
}
.shop-cart-badge {
	margin-left: 2px;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .25);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11.5px;
	font-weight: 700;
}
.shop-cart-total {
	font-weight: 600;
}

/* Mobile hamburger toggle */
.shop-nav-toggle {
	display: none;
	margin-left: auto;
	background: transparent;
	border: 1px solid var(--shop-border);
	border-radius: var(--shop-radius-sm);
	padding: 6px 10px;
	color: var(--shop-header-ink);
	cursor: pointer;
	line-height: 1;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.shop-main {
	flex: 1;
	background: var(--shop-bg);
}

.shop-container {
	max-width: var(--shop-container);
	margin: 0 auto;
	padding: 0 24px;
}

/* Flash messages */
.shop-flash-wrap {
	max-width: var(--shop-container);
	margin: 16px auto 0;
	padding: 0 24px;
}

/* ============================================================
   FOOTER (.shop-footer)
   ============================================================ */
.shop-footer {
	background: var(--shop-footer-bg);
	color: var(--shop-footer-ink);
	margin-top: auto;
}

.shop-footer-grid {
	max-width: var(--shop-container);
	margin: 0 auto;
	padding: 46px 24px 30px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 32px;
}

.shop-footer-brand {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.shop-footer-logo-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.shop-footer-logo-fallback {
	width: 34px;
	height: 34px;
	border-radius: var(--shop-radius-sm);
	background: var(--shop-primary);
	color: var(--shop-cta-ink);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--shop-font-head);
	font-weight: 700;
	font-size: 17px;
	flex: none;
}

.shop-footer-logo-img {
	max-height: 34px;
	width: auto;
}

.shop-footer-brand-name {
	font-family: var(--shop-font-head);
	font-weight: var(--shop-heading-weight);
	font-size: 18px;
	color: var(--shop-footer-ink);
}

.shop-footer-tagline {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.6;
	opacity: .78;
	max-width: 34ch;
	color: var(--shop-footer-ink);
}

.shop-footer-col {
	display: flex;
	flex-direction: column;
	gap: 11px;
	font-size: 13.5px;
}

.shop-footer-col-title {
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .05em;
	opacity: .6;
	margin-bottom: 3px;
	display: block;
	color: var(--shop-footer-ink);
}

.shop-footer-col a,
.shop-footer-col span {
	opacity: .82;
	color: var(--shop-footer-ink);
	text-decoration: none;
	transition: opacity .15s;
}
.shop-footer-col a:hover {
	opacity: 1;
	color: var(--shop-footer-ink);
}

.shop-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .12);
}
.shop-footer-bottom-inner {
	max-width: var(--shop-container);
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12.5px;
	opacity: .7;
	flex-wrap: wrap;
	gap: 8px;
	color: var(--shop-footer-ink);
}

/* ============================================================
   COMPONENT BASE: Buttons
   ============================================================ */
.btn-primary {
	background-color: var(--shop-cta);
	border-color: var(--shop-cta);
	color: var(--shop-cta-ink);
	border-radius: var(--shop-btn-radius);
	font-family: var(--shop-font-sans);
	font-weight: 600;
}
.btn-primary:hover,
.btn-primary:focus {
	background-color: var(--shop-cta);
	border-color: var(--shop-cta);
	color: var(--shop-cta-ink);
	filter: brightness(1.07);
}
.btn-outline-primary {
	color: var(--shop-primary);
	border-color: var(--shop-primary);
	border-radius: var(--shop-btn-radius);
	font-family: var(--shop-font-sans);
	font-weight: 600;
}
.btn-outline-primary:hover {
	background-color: var(--shop-primary);
	border-color: var(--shop-primary);
	color: var(--shop-cta-ink);
}
.btn {
	border-radius: var(--shop-btn-radius);
	font-family: var(--shop-font-sans);
}

/* ============================================================
   COMPONENT BASE: Cards
   ============================================================ */
.card {
	border: 1px solid var(--shop-border);
	border-radius: var(--shop-card-radius);
	background: var(--shop-surface);
	box-shadow: var(--shop-shadow-sm);
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* ============================================================
   COMPONENT BASE: Forms
   ============================================================ */
.form-control,
.form-select {
	border-color: var(--shop-border);
	border-radius: var(--shop-radius-sm);
	font-family: var(--shop-font-sans);
	color: var(--shop-ink);
	background: var(--shop-surface);
}
.form-control:focus,
.form-select:focus {
	border-color: var(--shop-primary);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--shop-primary) 20%, transparent);
}
.form-label {
	font-weight: 500;
	color: var(--shop-ink);
}

/* ============================================================
   COMPONENT BASE: Tables
   ============================================================ */
.table {
	color: var(--shop-ink);
}
.table thead th {
	font-family: var(--shop-font-head);
	font-weight: var(--shop-heading-weight);
	color: var(--shop-ink);
	border-bottom-color: var(--shop-border);
}
.table td, .table th {
	border-color: var(--shop-border);
}

/* ============================================================
   COMPONENT BASE: Alerts
   ============================================================ */
.alert {
	border-radius: var(--shop-radius-sm);
}

/* ============================================================
   COMPONENT BASE: Badges
   ============================================================ */
.badge.bg-primary {
	background-color: var(--shop-primary) !important;
}
.text-primary {
	color: var(--shop-primary) !important;
}

/* ============================================================
   DROPDOWN CONTRAST FIX
   Themes may set white navbar ink; keep dropdown-items readable.
   Hex values here are intentionally hardcoded (not tokens) to
   guarantee legibility regardless of theme primary/ink overrides.
   ============================================================ */
.navbar .dropdown-menu .dropdown-item { color: #1f2937 !important; }
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus { color: #111827 !important; background-color: rgba(0, 0, 0, .06); }
.navbar .dropdown-menu .dropdown-item.active { color: #fff !important; background-color: var(--shop-primary); }

/* Shop header dropdown items also need contrast correction */
.shop-switcher-dropdown .dropdown-menu .dropdown-item { color: var(--shop-ink) !important; }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.shop-product-card {
	border-radius: var(--shop-card-radius);
	background: var(--shop-surface);
	border: 1px solid var(--shop-border);
	box-shadow: var(--shop-shadow-sm);
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease;
	display: flex;
	flex-direction: column;
}
.shop-product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shop-shadow-md);
}
.shop-product-card-img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
	background: var(--shop-border);
}
.shop-product-card-body {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.shop-product-card-name {
	font-family: var(--shop-font-sans);
	font-weight: 600;
	font-size: 14.5px;
	color: var(--shop-ink);
	margin-bottom: 6px;
	min-height: 2.8em;
}
.shop-product-card-footer {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.shop-product-card-price {
	font-family: var(--shop-font-head);
	font-weight: 700;
	font-size: 18px;
	color: var(--shop-price);
	white-space: nowrap;
}
/* ============================================================
   CATEGORY CHIP FILTERS
   ============================================================ */
.shop-chip {
	display: inline-flex;
	align-items: center;
	padding: 5px 14px;
	border-radius: 999px;
	border: 1.5px solid var(--shop-border);
	font-size: 13.5px;
	font-weight: 500;
	color: var(--shop-ink);
	text-decoration: none;
	transition: border-color .14s, background .14s, color .14s;
	background: var(--shop-surface);
	cursor: pointer;
}
.shop-chip:hover,
.shop-chip.active {
	border-color: var(--shop-primary);
	background: var(--shop-primary);
	color: var(--shop-cta-ink);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.shop-hero {
	border-bottom: 1px solid var(--shop-border);
}
.shop-hero-inner {
	max-width: var(--shop-container);
	margin: 0 auto;
	padding: var(--shop-section-gap) 24px;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 48px;
	align-items: center;
}
.shop-hero-content {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.shop-hero-badge {
	align-self: flex-start;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--shop-primary);
	background: color-mix(in srgb, var(--shop-primary) 12%, transparent);
	padding: 6px 12px;
	border-radius: 999px;
}
.shop-hero-title {
	font-family: var(--shop-font-head);
	font-weight: var(--shop-heading-weight);
	font-size: clamp(2rem, 4.5vw, 46px);
	line-height: 1.08;
	margin: 0;
	letter-spacing: -.01em;
	color: var(--shop-ink);
}
.shop-hero-text {
	margin: 0;
	font-size: 17px;
	line-height: 1.55;
	color: var(--shop-muted);
	max-width: 44ch;
}
.shop-hero-actions {
	display: flex;
	gap: 12px;
	margin-top: 6px;
	flex-wrap: wrap;
}
.shop-hero-img {
	width: 100%;
	border-radius: var(--shop-radius-lg);
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: var(--shop-border);
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.shop-section {
	max-width: var(--shop-container);
	margin: 0 auto;
	padding: var(--shop-section-gap) 24px;
}
.shop-section-title {
	font-family: var(--shop-font-head);
	font-weight: var(--shop-heading-weight);
	font-size: 24px;
	color: var(--shop-ink);
	margin: 0 0 24px;
	letter-spacing: -.01em;
}

/* Category grid */
.shop-cat-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: var(--shop-gap);
}
/* Product grid */
.shop-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--shop-gap);
}

/* ============================================================
   PRICE / SUMMARY
   ============================================================ */
.shop-price {
	font-family: var(--shop-font-head);
	font-weight: 700;
	color: var(--shop-price);
}

/* ============================================================
   PRODUCT CARD — image wrapper + badge overlay
   ============================================================ */
.shop-product-card-img-wrap {
	position: relative;
}
.shop-product-card-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--shop-muted);
	font-size: 13px;
}
.shop-product-card-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .03em;
	text-transform: uppercase;
	padding: 4px 9px;
	border-radius: 999px;
	background: var(--shop-accent);
	color: var(--shop-cta-ink);
}
.shop-product-card-link {
	display: block;
	color: inherit;
}
.shop-product-card-link:hover {
	color: inherit;
	opacity: 1;
}
.shop-product-card-name-link {
	display: block;
	color: var(--shop-ink);
}
.shop-product-card-name-link:hover {
	color: var(--shop-primary);
	opacity: 1;
}
.shop-product-card-from {
	font-size: 13px;
	font-weight: 500;
	color: var(--shop-muted);
}
.shop-product-card-cta {
	flex: none;
}
.shop-product-card-btn {
	display: inline-block;
	padding: 8px 13px;
	background: var(--shop-cta);
	color: var(--shop-cta-ink);
	border-radius: var(--shop-btn-radius);
	font-size: 13px;
	font-weight: 600;
	font-family: var(--shop-font-sans);
	text-decoration: none;
	transition: filter .15s;
}
.shop-product-card-btn:hover {
	color: var(--shop-cta-ink);
	filter: brightness(1.07);
}
.shop-product-card:hover .shop-product-card-btn {
	filter: brightness(1.07);
}

/* ============================================================
   HERO CTA BUTTONS
   ============================================================ */
.shop-hero-cta-primary {
	display: inline-block;
	padding: 13px 24px;
	background: var(--shop-cta);
	color: var(--shop-cta-ink);
	border-radius: var(--shop-btn-radius);
	font-size: 15px;
	font-weight: 600;
	font-family: var(--shop-font-sans);
	text-decoration: none;
	box-shadow: var(--shop-shadow-sm);
	transition: filter .15s;
}
.shop-hero-cta-primary:hover {
	color: var(--shop-cta-ink);
	filter: brightness(1.06);
}
.shop-hero-img-placeholder {
	aspect-ratio: 5 / 4;
	border-radius: var(--shop-radius-lg);
	overflow: hidden;
	border: 1px solid var(--shop-border);
	background-color: var(--shop-surface);
	background-image: repeating-linear-gradient(45deg, var(--shop-border) 0, var(--shop-border) 1px, transparent 1px, transparent 11px);
	box-shadow: var(--shop-shadow-md);
}

/* ============================================================
   CMS HOMEPAGE BLOCKS (hero / banner / usp / promo)
   ============================================================ */
.shop-block-hero {
	border-bottom: 1px solid var(--shop-border);
}
.shop-block-hero .shop-hero-inner {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 48px;
	align-items: center;
	max-width: var(--shop-container);
	margin: 0 auto;
	padding: var(--shop-section-gap) 24px;
}
.shop-block-hero .shop-hero-content {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.shop-block-hero-img {
	width: 100%;
	border-radius: var(--shop-radius-lg);
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: var(--shop-border);
}
.shop-block-hero-img-placeholder {
	aspect-ratio: 5 / 4;
	border-radius: var(--shop-radius-lg);
	overflow: hidden;
	border: 1px solid var(--shop-border);
	background-color: var(--shop-surface);
	background-image: repeating-linear-gradient(45deg, var(--shop-border) 0, var(--shop-border) 1px, transparent 1px, transparent 11px);
	box-shadow: var(--shop-shadow-md);
}
.shop-block-banner {
	display: block;
	max-width: var(--shop-container);
	margin: 0 auto var(--shop-section-gap);
	padding: 0 24px;
}
.shop-block-banner-img {
	width: 100%;
	border-radius: var(--shop-radius-lg);
	object-fit: cover;
	box-shadow: var(--shop-shadow-sm);
}
.shop-block-card {
	max-width: var(--shop-container);
	margin: 0 auto var(--shop-section-gap);
	padding: 0 24px;
}
.shop-block-card-inner {
	background: var(--shop-surface);
	border: 1px solid var(--shop-border);
	border-radius: var(--shop-card-radius);
	padding: 28px 32px;
	box-shadow: var(--shop-shadow-sm);
}
.shop-block-card-title {
	font-family: var(--shop-font-head);
	font-weight: var(--shop-heading-weight);
	font-size: 22px;
	color: var(--shop-ink);
	margin: 0 0 8px;
}
.shop-block-card-subtitle {
	font-size: 15px;
	color: var(--shop-muted);
	margin: 0 0 10px;
}
.shop-block-card-text {
	font-size: 15px;
	color: var(--shop-ink);
	margin: 0 0 14px;
}

/* ============================================================
   SECTION HEADER (title + "Zobrazit vše" link row)
   ============================================================ */
.shop-section-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 22px;
}
.shop-section-header .shop-section-title {
	margin-bottom: 0;
	font-size: 26px;
}
.shop-section-link {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--shop-link);
	text-decoration: none;
	white-space: nowrap;
	transition: opacity .15s;
}
.shop-section-link:hover {
	opacity: .8;
	color: var(--shop-link);
}
.shop-section-cats {
	padding-bottom: 0;
}
.shop-empty-text {
	color: var(--shop-muted);
	margin: 0;
}

/* ============================================================
   CATEGORY TILES
   ============================================================ */
.shop-cat-tile {
	display: flex;
	flex-direction: column;
	gap: 10px;
	cursor: pointer;
	color: var(--shop-ink);
}
.shop-cat-tile:hover {
	color: var(--shop-ink);
}
.shop-cat-tile-img {
	aspect-ratio: 1 / 1;
	border-radius: var(--shop-card-radius);
	border: 1px solid var(--shop-border);
	background-color: var(--shop-bg);
	background-image: repeating-linear-gradient(45deg, var(--shop-border) 0, var(--shop-border) 1px, transparent 1px, transparent 9px);
	transition: box-shadow .15s, transform .15s;
}
.shop-cat-tile:hover .shop-cat-tile-img {
	box-shadow: var(--shop-shadow-md);
	transform: translateY(-3px);
}
.shop-cat-tile-name {
	font-size: 14.5px;
	font-weight: 600;
	text-align: center;
}

/* ============================================================
   CATEGORY PAGE LAYOUT
   ============================================================ */
.shop-cat-page {
	max-width: var(--shop-container);
	margin: 0 auto;
	padding: 28px 24px var(--shop-section-gap);
}

/* Breadcrumb */
.shop-breadcrumb {
	margin-bottom: 18px;
}
.shop-breadcrumb-list {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13px;
	color: var(--shop-muted);
}
.shop-breadcrumb-link {
	color: var(--shop-muted);
	text-decoration: none;
	transition: color .14s;
}
.shop-breadcrumb-link:hover {
	color: var(--shop-link);
}
.shop-breadcrumb-sep {
	opacity: .5;
}
.shop-breadcrumb-current {
	color: var(--shop-ink);
	font-weight: 600;
}

/* Heading + count */
.shop-cat-heading {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin-bottom: 20px;
}
.shop-cat-title {
	font-family: var(--shop-font-head);
	font-weight: var(--shop-heading-weight);
	font-size: 34px;
	margin: 0;
	color: var(--shop-ink);
}
.shop-cat-count {
	font-size: 14.5px;
	color: var(--shop-muted);
}
.shop-cat-description {
	color: var(--shop-muted);
	margin-bottom: 20px;
}

/* Chips row */
.shop-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 30px;
}

/* Filter form */
.shop-filter-form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 16px;
	align-items: flex-end;
	margin-bottom: 28px;
}
.shop-filter-group {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.shop-filter-label {
	font-size: 13px;
	font-weight: 500;
	color: var(--shop-ink);
}
.shop-filter-input {
	max-width: 8rem;
}
.shop-filter-check {
	justify-content: flex-end;
}
.shop-filter-submit {
	justify-content: flex-end;
}

/* Empty state */
.shop-empty-state {
	border: 1px dashed var(--shop-border);
	border-radius: var(--shop-radius-lg);
	padding: 64px 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	background: var(--shop-surface);
	margin-top: 8px;
}
.shop-empty-state-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--shop-bg);
	border: 1px solid var(--shop-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--shop-muted);
}
.shop-empty-state-title {
	font-family: var(--shop-font-head);
	font-weight: var(--shop-heading-weight);
	font-size: 21px;
	margin: 0;
	color: var(--shop-ink);
}
.shop-empty-state-text {
	margin: 0;
	color: var(--shop-muted);
	max-width: 42ch;
	line-height: 1.5;
}

/* Pagination */
.shop-pagination {
	margin-top: 32px;
}
.shop-pagination-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.shop-pagination-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 8px;
	border: 1.5px solid var(--shop-border);
	border-radius: var(--shop-radius-sm);
	font-size: 14px;
	font-weight: 500;
	color: var(--shop-ink);
	text-decoration: none;
	background: var(--shop-surface);
	transition: border-color .14s, background .14s, color .14s;
}
.shop-pagination-link:hover {
	border-color: var(--shop-primary);
	color: var(--shop-primary);
}
.shop-pagination-item.active .shop-pagination-link {
	background: var(--shop-primary);
	border-color: var(--shop-primary);
	color: var(--shop-cta-ink);
}

/* ============================================================
   FOCUS VISIBLE / ACCESSIBILITY
   ============================================================ */
:focus-visible {
	outline: 2px solid var(--shop-primary);
	outline-offset: 3px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
	.shop-cat-grid { grid-template-columns: repeat(3, 1fr); }
	.shop-product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
	.shop-header-inner { gap: 12px; flex-wrap: wrap; }
	.shop-nav {
		display: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		width: 100%;
		padding: 12px 0;
	}
	.shop-nav.is-open { display: flex; }
	.shop-nav-toggle { display: block; }
	.shop-header-actions { margin-left: 0; }

	.shop-hero-inner {
		grid-template-columns: 1fr;
	}
	.shop-hero-img-placeholder { display: none; }

	.shop-footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.shop-footer-brand { grid-column: 1 / -1; }

	.shop-cat-grid { grid-template-columns: repeat(2, 1fr); }
	.shop-product-grid { grid-template-columns: repeat(2, 1fr); }

	.shop-cat-title { font-size: 26px; }
	.shop-filter-form { gap: 10px 12px; }
}

@media (max-width: 479px) {
	.shop-footer-grid { grid-template-columns: 1fr; }
	.shop-product-grid { grid-template-columns: 1fr; }
	.shop-cat-grid { grid-template-columns: repeat(2, 1fr); }
	.shop-cart-total { display: none; }
}

/* ============================================================
   PRODUCT DETAIL PAGE (.pd-*)
   ============================================================ */

/* Page wrapper */
.pd-page {
	max-width: var(--shop-container);
	margin: 0 auto;
	padding: 28px 24px var(--shop-section-gap);
}

/* Two-column layout: gallery | info */
.pd-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
	margin-top: 24px;
}

/* ---- GALLERY ---- */
.pd-gallery {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.pd-gallery-main {
	aspect-ratio: 1 / 1;
	border-radius: var(--shop-radius-lg);
	border: 1px solid var(--shop-border);
	background: var(--shop-surface);
	overflow: hidden;
	box-shadow: var(--shop-shadow-sm);
}

.pd-gallery-main-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pd-gallery-placeholder {
	aspect-ratio: 1 / 1;
	border-radius: var(--shop-radius-lg);
	border: 1px solid var(--shop-border);
	background-color: var(--shop-surface);
	background-image: repeating-linear-gradient(45deg, var(--shop-border) 0, var(--shop-border) 1px, transparent 1px, transparent 11px);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shop-shadow-sm);
}

.pd-gallery-placeholder-text {
	font-size: 13px;
	color: var(--shop-muted);
	background: var(--shop-surface);
	padding: 8px 14px;
	border-radius: var(--shop-radius-sm);
	border: 1px solid var(--shop-border);
}

.pd-thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.pd-thumb-btn {
	aspect-ratio: 1 / 1;
	border: 1.5px solid var(--shop-border);
	border-radius: var(--shop-radius-sm);
	background: var(--shop-bg);
	overflow: hidden;
	padding: 0;
	cursor: pointer;
	transition: border-color .15s, box-shadow .15s;
}

.pd-thumb-btn:hover,
.pd-thumb-btn.is-active {
	border-color: var(--shop-primary);
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--shop-primary) 20%, transparent);
}

.pd-thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ---- INFO COLUMN ---- */
.pd-info {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

/* Badge (Novinka / featured) */
.pd-badge {
	align-self: flex-start;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--shop-accent);
	color: var(--shop-cta-ink);
}

/* H1 */
.pd-title {
	font-family: var(--shop-font-head);
	font-weight: var(--shop-heading-weight);
	font-size: clamp(22px, 3vw, 32px);
	line-height: 1.12;
	margin: 0;
	color: var(--shop-ink);
}

/* Meta line (SKU / stock) */
.pd-meta {
	font-size: 13.5px;
	color: var(--shop-muted);
	margin: 0;
}

.pd-meta-stock--in {
	color: var(--shop-success);
}

.pd-meta-stock--out {
	color: var(--shop-danger);
}

/* Price block */
.pd-price-block {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding: 16px 0;
	border-top: 1px solid var(--shop-border);
	border-bottom: 1px solid var(--shop-border);
}

.pd-price {
	font-family: var(--shop-font-head);
	font-weight: 700;
	font-size: 34px;
	color: var(--shop-price);
	line-height: 1;
}

/* Variant option buttons */
.pd-variants {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pd-variants-label {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--shop-ink);
}

.pd-variant-opts {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.pd-variant-btn {
	padding: 7px 16px;
	border: 1.5px solid var(--shop-border);
	border-radius: var(--shop-btn-radius);
	background: var(--shop-surface);
	color: var(--shop-ink);
	font-size: 14px;
	font-weight: 500;
	font-family: var(--shop-font-sans);
	cursor: pointer;
	transition: border-color .14s, background .14s, color .14s, box-shadow .14s;
	line-height: 1.3;
}

.pd-variant-btn:hover:not(:disabled) {
	border-color: var(--shop-primary);
	color: var(--shop-primary);
}

.pd-variant-btn.is-active {
	border-color: var(--shop-primary);
	background: var(--shop-primary);
	color: var(--shop-cta-ink);
	box-shadow: var(--shop-shadow-sm);
}

.pd-variant-btn:disabled {
	opacity: .45;
	cursor: not-allowed;
}

.pd-variant-out {
	display: block;
	font-size: 10px;
	font-weight: 600;
	color: var(--shop-danger);
	margin-top: 2px;
	text-transform: uppercase;
	letter-spacing: .03em;
}

.pd-variant-btn.is-active .pd-variant-out {
	opacity: .8;
}

/* Cart row: stepper + CTA */
.pd-cart-row {
	/* each variant has its own row; JS toggles visibility */
}

.pd-variant-form--hidden {
	display: none;
}

.pd-form {
	display: flex;
	gap: 12px;
	align-items: stretch;
	margin: 0;
}

/* Quantity stepper */
.pd-stepper {
	display: flex;
	align-items: center;
	border: 1px solid var(--shop-border);
	border-radius: var(--shop-btn-radius);
	overflow: hidden;
	flex: none;
}

.pd-stepper-btn {
	width: 42px;
	height: 48px;
	border: none;
	background: var(--shop-surface);
	color: var(--shop-ink);
	font-size: 20px;
	cursor: pointer;
	font-family: var(--shop-font-sans);
	transition: background .12s;
	flex: none;
}

.pd-stepper-btn:hover {
	background: var(--shop-bg);
}

.pd-stepper-input {
	width: 46px;
	height: 48px;
	border: none;
	border-left: 1px solid var(--shop-border);
	border-right: 1px solid var(--shop-border);
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	font-family: var(--shop-font-sans);
	color: var(--shop-ink);
	background: var(--shop-surface);
	appearance: textfield;
	-moz-appearance: textfield;
}

.pd-stepper-input::-webkit-inner-spin-button,
.pd-stepper-input::-webkit-outer-spin-button {
	-webkit-appearance: none;
}

.pd-stepper-input:focus {
	outline: none;
	background: color-mix(in srgb, var(--shop-primary) 6%, var(--shop-surface));
}

/* CTA button */
.pd-cta-btn {
	flex: 1;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	background: var(--shop-cta);
	color: var(--shop-cta-ink);
	border: none;
	border-radius: var(--shop-btn-radius);
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	font-family: var(--shop-font-sans);
	box-shadow: var(--shop-shadow-md);
	transition: transform .18s var(--shop-ease), filter .18s var(--shop-ease);
	white-space: nowrap;
}

.pd-cta-btn:hover {
	transform: translateY(-2px);
	filter: brightness(1.06);
	color: var(--shop-cta-ink);
}

.pd-cta-btn:active {
	transform: translateY(0) scale(.985);
}

/* Delivery / return benefits */
.pd-benefits {
	display: flex;
	gap: 18px;
	font-size: 13px;
	color: var(--shop-muted);
	flex-wrap: wrap;
}

.pd-benefit {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.pd-benefit-icon {
	flex: none;
	color: var(--shop-primary);
}

/* Product description */
.pd-description {
	font-size: 15px;
	line-height: 1.65;
	color: var(--shop-ink);
	margin-top: 8px;
}

.pd-description p {
	margin: 0 0 0.8em;
}

.pd-description p:last-child {
	margin-bottom: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 767px) {
	.pd-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.pd-gallery-main {
		aspect-ratio: 4 / 3;
	}

	.pd-price {
		font-size: 28px;
	}

	.pd-title {
		font-size: 24px;
	}
}

@media (max-width: 479px) {
	.pd-thumbs {
		grid-template-columns: repeat(4, 1fr);
	}

	.pd-form {
		flex-direction: column;
	}

	.pd-stepper {
		width: fit-content;
	}

	.pd-cta-btn {
		width: 100%;
		flex: unset;
	}
}

/* ============================================================
   CART PAGE (.cart-*)
   ============================================================ */
.cart-page {
	max-width: var(--shop-container);
	margin: 0 auto;
	padding: 28px 24px var(--shop-section-gap);
}

.cart-currency-notice {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	padding: 13px 16px;
	border-radius: var(--shop-radius);
	background: color-mix(in srgb, var(--shop-primary) 8%, var(--shop-surface));
	border: 1px solid color-mix(in srgb, var(--shop-primary) 22%, var(--shop-border));
	margin-bottom: 24px;
	font-size: 13.5px;
	line-height: 1.5;
}

.cart-currency-notice-icon {
	color: var(--shop-primary);
	font-weight: 700;
	flex: none;
}

.cart-layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 32px;
	align-items: start;
}

.cart-items-wrap {
	border: 1px solid var(--shop-border);
	border-radius: var(--shop-card-radius);
	overflow: hidden;
	background: var(--shop-surface);
}

.cart-table {
	width: 100%;
	border-collapse: collapse;
}

.cart-table-head {
	display: grid;
	grid-template-columns: 1fr 120px 130px 110px 36px;
	gap: 14px;
	padding: 14px 18px;
	background: var(--shop-bg);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--shop-muted);
	border-bottom: 1px solid var(--shop-border);
}

.cart-row {
	display: grid;
	grid-template-columns: 1fr 120px 130px 110px 36px;
	gap: 14px;
	padding: 16px 18px;
	align-items: center;
	border-bottom: 1px solid var(--shop-border);
}

.cart-row + .cart-footer {
	border-top: none;
}

.cart-product-cell {
	display: flex;
	align-items: center;
	gap: 14px;
}

.cart-thumb {
	width: 62px;
	height: 62px;
	flex: none;
	border-radius: var(--shop-radius-sm);
	border: 1px solid var(--shop-border);
	background-color: var(--shop-bg);
	background-image: repeating-linear-gradient(45deg, var(--shop-border) 0, var(--shop-border) 1px, transparent 1px, transparent 7px);
	overflow: hidden;
	object-fit: cover;
}

.cart-product-name {
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--shop-ink);
	text-decoration: none;
}

.cart-product-name:hover {
	color: var(--shop-primary);
}

.cart-product-meta {
	font-size: 12.5px;
	color: var(--shop-muted);
	display: block;
	margin-top: 2px;
}

.cart-unit-price {
	text-align: right;
	font-size: 14px;
	color: var(--shop-muted);
}

.cart-qty-cell {
	display: flex;
	justify-content: center;
}

.cart-stepper {
	display: flex;
	align-items: center;
	border: 1px solid var(--shop-border);
	border-radius: var(--shop-btn-radius);
	overflow: hidden;
}

.cart-stepper-input {
	width: 46px;
	height: 34px;
	border: none;
	border-left: 1px solid var(--shop-border);
	border-right: 1px solid var(--shop-border);
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--shop-font-sans);
	color: var(--shop-ink);
	background: var(--shop-surface);
	appearance: textfield;
	-moz-appearance: textfield;
}

.cart-stepper-input::-webkit-inner-spin-button,
.cart-stepper-input::-webkit-outer-spin-button {
	-webkit-appearance: none;
}

.cart-stepper-submit {
	height: 34px;
	padding: 0 10px;
	border: none;
	background: var(--shop-surface);
	color: var(--shop-muted);
	font-size: 12px;
	font-weight: 600;
	font-family: var(--shop-font-sans);
	cursor: pointer;
	transition: background .12s, color .12s;
}

.cart-stepper-submit:hover {
	background: var(--shop-bg);
	color: var(--shop-primary);
}

.cart-row-total {
	text-align: right;
	font-size: 15px;
	font-weight: 700;
	font-family: var(--shop-font-head);
	color: var(--shop-price);
}

.cart-remove-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: none;
	background: transparent;
	color: var(--shop-muted);
	font-size: 18px;
	cursor: pointer;
	border-radius: var(--shop-radius-sm);
	text-decoration: none;
	transition: background .12s, color .12s;
	line-height: 1;
}

.cart-remove-btn:hover {
	background: var(--shop-bg);
	color: var(--shop-danger);
}

.cart-footer {
	padding: 14px 18px;
	border-top: 1px solid var(--shop-border);
}

/* Cart summary (sticky) */
.cart-summary {
	border: 1px solid var(--shop-border);
	border-radius: var(--shop-card-radius);
	background: var(--shop-surface);
	box-shadow: var(--shop-shadow-sm);
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: sticky;
	top: calc(var(--shop-header-height) + 16px);
}

.cart-summary-title {
	font-family: var(--shop-font-head);
	font-weight: var(--shop-heading-weight);
	font-size: 19px;
	margin: 0;
	color: var(--shop-ink);
}

.cart-summary-row {
	display: flex;
	justify-content: space-between;
	font-size: 14.5px;
}

.cart-summary-label {
	color: var(--shop-muted);
}

.cart-summary-value {
	font-weight: 600;
}

.cart-summary-divider {
	height: 1px;
	background: var(--shop-border);
	margin: 2px 0;
}

.cart-summary-total-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.cart-summary-total-label {
	font-size: 16px;
	font-weight: 600;
	color: var(--shop-ink);
}

.cart-summary-total-amount {
	font-family: var(--shop-font-head);
	font-weight: 700;
	font-size: 26px;
	color: var(--shop-price);
}

.cart-summary-vat-note {
	font-size: 12px;
	color: var(--shop-muted);
	margin: 0;
}

.cart-summary-cta {
	margin-top: 6px;
	display: block;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: var(--shop-cta);
	color: var(--shop-cta-ink);
	border: none;
	border-radius: var(--shop-btn-radius);
	font-size: 16px;
	font-weight: 700;
	font-family: var(--shop-font-sans);
	text-decoration: none;
	box-shadow: var(--shop-shadow-md);
	transition: transform .18s var(--shop-ease), filter .18s var(--shop-ease);
}

.cart-summary-cta:hover {
	color: var(--shop-cta-ink);
	transform: translateY(-2px);
	filter: brightness(1.06);
}

.cart-summary-cta:active {
	transform: translateY(0) scale(.985);
}

/* Secure payment trust line below checkout CTA */
.cart-secure-payment {
	display: flex;
	align-items: center;
	gap: 7px;
	justify-content: center;
	font-size: 12px;
	color: var(--shop-muted);
}

.cart-empty {
	text-align: center;
	padding: 56px 24px;
}

/* ============================================================
   CHECKOUT PAGES (.co-*)
   ============================================================ */
.co-page {
	max-width: var(--shop-container);
	margin: 0 auto;
	padding: 28px 24px var(--shop-section-gap);
}

.co-step-indicator {
	font-size: 15px;
	color: var(--shop-muted);
	font-weight: 400;
}

.co-currency-notice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 11px 14px;
	border-radius: var(--shop-radius-sm);
	background: color-mix(in srgb, var(--shop-primary) 8%, var(--shop-surface));
	border: 1px solid color-mix(in srgb, var(--shop-primary) 22%, var(--shop-border));
	margin-bottom: 20px;
	font-size: 13.5px;
	line-height: 1.5;
}

.co-currency-notice-icon {
	color: var(--shop-primary);
	font-weight: 700;
	flex: none;
}

/* ============================================================
   THANK-YOU PAGE (.ty-*)
   ============================================================ */
.ty-page {
	max-width: var(--shop-container);
	margin: 0 auto;
	padding: 28px 24px var(--shop-section-gap);
}

.ty-hero {
	text-align: center;
	padding: 32px 24px 24px;
}

.ty-status-badge {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--shop-primary) 12%, transparent);
	color: var(--shop-primary);
	margin-top: 6px;
}

.ty-bank-box {
	max-width: 30rem;
	margin: 0 auto 24px;
}

.ty-order-table-wrap {
	max-width: 40rem;
	margin: 0 auto 32px;
}

.ty-actions {
	text-align: center;
	margin-top: 8px;
}

/* ============================================================
   RESPONSIVE: cart + checkout summary stacks on mobile
   ============================================================ */
@media (max-width: 991px) {
	.cart-layout {
		grid-template-columns: 1fr;
	}
	.cart-summary {
		position: static;
	}
	.co-layout {
		grid-template-columns: 1fr;
	}
	.co-summary-col {
		position: static;
	}
}

@media (max-width: 767px) {
	.cart-table-head { display: none; }
	.cart-row {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
	}
	.cart-product-cell { grid-column: 1 / -1; }
	.cart-qty-cell { justify-content: flex-start; }
}

/* ============================================================
   ACCOUNT PAGES (.acct-*)
   Two-column layout: sidebar nav | content
   ============================================================ */
.acct-page {
	max-width: var(--shop-container);
	margin: 0 auto;
	padding: 36px 24px var(--shop-section-gap);
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 40px;
	align-items: start;
}

.acct-sidebar {
	/* sticky so menu follows scroll */
	position: sticky;
	top: calc(var(--shop-header-height) + 20px);
}

/* Side navigation */
.acct-menu {
	display: flex;
	flex-direction: column;
	gap: 4px;
	border: 1px solid var(--shop-border);
	border-radius: var(--shop-card-radius);
	background: var(--shop-surface);
	box-shadow: var(--shop-shadow-sm);
	padding: 10px;
	overflow: hidden;
}

.acct-menu-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	border-radius: var(--shop-radius-sm);
	font-size: 14.5px;
	font-weight: 500;
	color: var(--shop-ink);
	text-decoration: none;
	transition: background .13s, color .13s;
}

.acct-menu-link:hover {
	background: color-mix(in srgb, var(--shop-primary) 8%, transparent);
	color: var(--shop-primary);
}

.acct-menu-link.is-active {
	background: color-mix(in srgb, var(--shop-primary) 12%, transparent);
	color: var(--shop-primary);
	font-weight: 600;
}

.acct-menu-link--out {
	margin-top: 6px;
	border-top: 1px solid var(--shop-border);
	padding-top: 15px;
	color: var(--shop-muted);
}

.acct-menu-link--out:hover {
	color: var(--shop-danger);
	background: color-mix(in srgb, var(--shop-danger) 8%, transparent);
}

.acct-title {
	font-family: var(--shop-font-head);
	font-weight: var(--shop-heading-weight);
	font-size: 26px;
	margin: 0 0 24px;
	color: var(--shop-ink);
	letter-spacing: -.01em;
}

.acct-content {
	min-width: 0; /* prevent grid blowout */
}

/* Order detail header (title + status badge side by side) */
.acct-order-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.acct-order-header .acct-title {
	margin-bottom: 4px;
}

.acct-back-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	color: var(--shop-muted);
	text-decoration: none;
	margin-bottom: 4px;
	transition: color .13s;
}

.acct-back-link:hover {
	color: var(--shop-link);
}

.acct-order-total-row td {
	background: color-mix(in srgb, var(--shop-primary) 5%, var(--shop-surface));
	border-top: 2px solid var(--shop-border) !important;
}

/* Narrow form card (password page) */
.acct-form-card {
	max-width: 28rem;
}

/* ---- RESPONSIVE: account sidebar stacks on mobile ---- */
@media (max-width: 767px) {
	.acct-page {
		grid-template-columns: 1fr;
		gap: 20px;
		padding-top: 20px;
	}

	.acct-sidebar {
		position: static;
	}

	.acct-menu {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 4px;
	}

	.acct-menu-link {
		flex: 1 0 auto;
		justify-content: center;
		font-size: 13px;
		padding: 8px 10px;
	}

	.acct-menu-link--out {
		flex-basis: 100%;
		border-top: 1px solid var(--shop-border);
		padding-top: 8px;
		margin-top: 4px;
	}

	.acct-form-card {
		max-width: 100%;
	}
}

/* ============================================================
   AUTH PAGES (.auth-*)
   Centered narrow card: sign-in, register, forgotten, reset, download error
   ============================================================ */
.auth-wrap {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 48px 16px var(--shop-section-gap);
}

.auth-card {
	width: 100%;
	max-width: 26rem;
	box-shadow: var(--shop-shadow-md);
}

.auth-title {
	font-family: var(--shop-font-head);
	font-weight: var(--shop-heading-weight);
	font-size: 22px;
	text-align: center;
	margin: 0 0 22px;
	color: var(--shop-ink);
	letter-spacing: -.01em;
}

.auth-hint {
	font-size: 14px;
	color: var(--shop-muted);
	text-align: center;
	margin: -12px 0 18px;
	line-height: 1.55;
}

.auth-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 20px;
	border-top: 1px solid var(--shop-border);
	font-size: 13.5px;
}

.auth-footer-sep {
	color: var(--shop-muted);
}

.auth-footer a {
	color: var(--shop-link);
	text-decoration: none;
	font-weight: 500;
}

.auth-footer a:hover {
	opacity: .8;
}

/* Download error icon */
.download-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--shop-primary) 10%, var(--shop-surface));
	color: var(--shop-primary);
	margin-bottom: 16px;
}

/* ---- RESPONSIVE: auth card full-width on mobile ---- */
@media (max-width: 479px) {
	.auth-wrap {
		padding-top: 24px;
	}

	.auth-card {
		max-width: 100%;
	}
}

/* ============================================================
   STATIC TEXT PAGE (.static-page)
   Readable typography, sensible max-width
   ============================================================ */
.static-page {
	max-width: 74ch;
	margin: 0 auto;
	padding: 40px 24px var(--shop-section-gap);
}

.static-page-title {
	font-family: var(--shop-font-head);
	font-weight: var(--shop-heading-weight);
	font-size: clamp(24px, 3.5vw, 36px);
	margin: 0 0 28px;
	color: var(--shop-ink);
	letter-spacing: -.01em;
}

.static-page-body {
	font-size: var(--shop-font-size-base);
	line-height: 1.75;
	color: var(--shop-ink);
}

.static-page-body p {
	margin: 0 0 1em;
}

.static-page-body h2,
.static-page-body h3,
.static-page-body h4 {
	font-family: var(--shop-font-head);
	font-weight: var(--shop-heading-weight);
	margin: 1.6em 0 .5em;
	color: var(--shop-ink);
}

.static-page-body h2 { font-size: 22px; }
.static-page-body h3 { font-size: 18px; }
.static-page-body h4 { font-size: 16px; }

.static-page-body ul,
.static-page-body ol {
	padding-left: 1.5em;
	margin: 0 0 1em;
}

.static-page-body li {
	margin-bottom: .35em;
}

.static-page-body a {
	color: var(--shop-link);
}

.static-page-body strong {
	font-weight: 600;
}

.static-page-body blockquote {
	border-left: 3px solid var(--shop-primary);
	padding: 8px 16px;
	margin: 0 0 1em;
	background: color-mix(in srgb, var(--shop-primary) 6%, transparent);
	border-radius: 0 var(--shop-radius-sm) var(--shop-radius-sm) 0;
	color: var(--shop-muted);
}

@media (max-width: 479px) {
	.static-page {
		padding-top: 24px;
	}
}

/* ============================================================
   UTILITY BAR (.shop-utility-bar)
   ============================================================ */
.shop-utility-bar {
    background: var(--shop-bg);
    border-bottom: 1px solid var(--shop-border);
    color: var(--shop-muted);
    font-size: 12.5px;
}
.shop-utility-bar-inner {
    max-width: var(--shop-container);
    margin: 0 auto;
    padding: 0 24px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.shop-utility-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.shop-utility-bar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}
.shop-utility-hours {
    display: flex;
    align-items: center;
    gap: 7px;
}
.shop-utility-hours-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--shop-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--shop-primary) 22%, transparent);
    flex: none;
}
.shop-utility-phone {
    color: var(--shop-ink);
    font-weight: 700;
    text-decoration: none;
}
.shop-utility-phone:hover {
    color: var(--shop-primary);
}

/* ============================================================
   HEADER RESTYLE — logo hover, nav pills, cart icon
   ============================================================ */
/* Logo hover: subtle rotate+scale */
.shop-logo-wrap {
    transition: opacity .2s var(--shop-ease);
}
.shop-logo-fallback {
    box-shadow: var(--shop-shadow-sm);
    transition: transform .25s var(--shop-ease), box-shadow .25s var(--shop-ease);
}
.shop-logo-wrap:hover .shop-logo-fallback {
    transform: rotate(-4deg) scale(1.04);
    box-shadow: var(--shop-shadow-md);
}
.shop-logo-img {
    transition: transform .25s var(--shop-ease), opacity .2s var(--shop-ease);
}
.shop-logo-wrap:hover .shop-logo-img {
    transform: scale(1.03);
    opacity: .92;
}

/* Nav as pill buttons (bg-tint on hover instead of underline) */
.shop-nav-link {
    padding: 8px 12px;
    border-radius: var(--shop-btn-radius);
    transition: opacity .2s var(--shop-ease), background .2s var(--shop-ease), color .2s var(--shop-ease);
    border-bottom: none;
}
.shop-nav-link:hover,
.shop-nav-link.active {
    opacity: 1;
    color: var(--shop-primary);
    background: color-mix(in srgb, var(--shop-primary) 9%, transparent);
    border-bottom-color: transparent;
}

/* Switchers and account as borderless pills */
.shop-switcher {
    border: none;
    background: transparent;
    border-radius: var(--shop-btn-radius);
    transition: background .18s var(--shop-ease);
}
.shop-switcher:hover {
    border-color: transparent;
    background: color-mix(in srgb, var(--shop-ink) 6%, transparent);
}
.shop-account-link {
    transition: background .18s var(--shop-ease);
}
.shop-account-link:hover {
    background: color-mix(in srgb, var(--shop-ink) 6%, transparent);
}
.shop-account-avatar {
    border: none;
    background: color-mix(in srgb, var(--shop-primary) 14%, transparent);
    color: var(--shop-primary);
    font-weight: 700;
}

/* Cart button: hover lift with ease */
.shop-cart-btn {
    box-shadow: var(--shop-shadow-sm);
    transition: transform .18s var(--shop-ease), box-shadow .18s var(--shop-ease), filter .18s var(--shop-ease);
    margin-left: 8px;
    gap: 11px;
    padding: 9px 16px 9px 14px;
}
.shop-cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shop-shadow-md);
    filter: brightness(1.06);
    color: var(--shop-cta-ink);
}
.shop-cart-btn:active {
    transform: translateY(0) scale(.97);
}

/* Cart icon wrapper with accent badge */
.shop-cart-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    flex: none;
}
.shop-cart-badge {
    position: absolute;
    top: -7px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 9px;
    background: var(--shop-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 0 0 2px var(--shop-cta);
    margin-left: 0;
}
.shop-cart-label {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    align-items: flex-start;
}
.shop-cart-label-text {
    font-size: 10px;
    font-weight: 600;
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.shop-cart-total {
    font-size: 14px;
    font-weight: 700;
}

/* ============================================================
   FOOTER RESTYLE — link hover translate, payment badges
   ============================================================ */
.shop-footer-col a:hover,
.shop-footer-col span:hover {
    opacity: 1;
    transform: translateX(3px);
}
.shop-footer-col a,
.shop-footer-col span {
    transition: opacity .18s var(--shop-ease), transform .18s var(--shop-ease), color .15s;
    display: inline-block;
}
.shop-footer-contact {
    display: block;
}

/* Payment badges row in footer bottom */
.shop-payment-badges {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}
.shop-payment-badge {
    padding: 4px 9px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .1);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
    color: var(--shop-footer-ink);
    opacity: .9;
}

/* ============================================================
   HERO v2 (CMS block + static fallback, rich gradient design)
   ============================================================ */
.shop-block-hero--v2 {
    border-bottom: 1px solid var(--shop-border);
    background: linear-gradient(180deg, color-mix(in srgb, var(--shop-primary) 5%, var(--shop-surface)), var(--shop-bg));
}
.shop-hero-v2-inner {
    max-width: var(--shop-container);
    margin: 0 auto;
    padding: calc(var(--shop-section-gap) + 4px) 24px var(--shop-section-gap);
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 56px;
    align-items: center;
}
.shop-hero-v2-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.shop-hero-v2-eyebrow {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--shop-primary);
}
.shop-hero-v2-eyebrow-line {
    width: 24px;
    height: 2px;
    background: var(--shop-primary);
    border-radius: 2px;
    flex: none;
}
.shop-hero-v2-title {
    font-family: var(--shop-font-head);
    font-weight: var(--shop-heading-weight);
    font-size: clamp(2rem, 4vw, 52px);
    line-height: 1.04;
    margin: 0;
    letter-spacing: -.02em;
    color: var(--shop-ink);
    text-wrap: balance;
}
.shop-hero-v2-text {
    margin: 0;
    font-size: 17.5px;
    line-height: 1.6;
    color: var(--shop-muted);
    max-width: 46ch;
}
.shop-hero-v2-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.shop-hero-v2-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 26px;
    background: var(--shop-cta);
    color: var(--shop-cta-ink);
    border-radius: var(--shop-btn-radius);
    font-size: 15.5px;
    font-weight: 700;
    font-family: var(--shop-font-sans);
    text-decoration: none;
    box-shadow: var(--shop-shadow-md);
    transition: transform .18s var(--shop-ease), box-shadow .18s var(--shop-ease), filter .18s var(--shop-ease);
}
.shop-hero-v2-cta-primary:hover {
    color: var(--shop-cta-ink);
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: var(--shop-shadow-lg);
}
.shop-hero-v2-cta-primary:active {
    transform: translateY(0) scale(.98);
}
.shop-hero-v2-visual {
    position: relative;
    aspect-ratio: 5 / 4;
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    box-shadow: var(--shop-shadow-lg);
}
.shop-hero-v2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.shop-hero-v2-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .28));
    pointer-events: none;
}
.shop-hero-v2-img-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--shop-surface);
    background-image: repeating-linear-gradient(45deg, var(--shop-border) 0, var(--shop-border) 1px, transparent 1px, transparent 11px);
}
.shop-hero-v2-inner--noimage {
    grid-template-columns: 1fr;
}

/* ============================================================
   USP STRIP
   ============================================================ */
.shop-usp-strip {
    border-bottom: 1px solid var(--shop-border);
    background: var(--shop-surface);
}
.shop-usp-strip-inner {
    max-width: var(--shop-container);
    margin: 0 auto;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--shop-gap);
}
.shop-usp-tile {
    display: flex;
    align-items: center;
    gap: 13px;
}
.shop-usp-tile-icon {
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: var(--shop-radius);
    background: color-mix(in srgb, var(--shop-primary) 12%, transparent);
    color: var(--shop-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-usp-tile-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.shop-usp-tile-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--shop-ink);
}
.shop-usp-tile-text {
    font-size: 12.5px;
    color: var(--shop-muted);
}

/* ============================================================
   PROMO BAND
   ============================================================ */
.shop-promo-band-wrap {
    max-width: var(--shop-container);
    margin: 0 auto;
    padding: 0 24px var(--shop-section-gap);
}
.shop-promo-band {
    position: relative;
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    box-shadow: var(--shop-shadow-md);
    min-height: 160px;
}
.shop-promo-band-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.shop-promo-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        color-mix(in srgb, var(--shop-primary) 95%, black) 0%,
        color-mix(in srgb, var(--shop-primary) 88%, transparent) 52%,
        color-mix(in srgb, var(--shop-primary) 55%, transparent) 100%
    );
    pointer-events: none;
}
.shop-promo-band-body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 44px 46px;
    flex-wrap: wrap;
}
.shop-promo-band-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
}
.shop-promo-band-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .85;
}
.shop-promo-band-eyebrow-line {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    flex: none;
}
.shop-promo-band-title {
    font-family: var(--shop-font-head);
    font-weight: var(--shop-heading-weight);
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -.01em;
    display: block;
}
.shop-promo-band-text {
    font-size: 15.5px;
    opacity: .92;
    max-width: 48ch;
    line-height: 1.5;
    display: block;
}
.shop-promo-band-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 28px;
    background: #fff;
    color: var(--shop-ink);
    border-radius: var(--shop-btn-radius);
    font-size: 15.5px;
    font-weight: 700;
    font-family: var(--shop-font-sans);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: var(--shop-shadow-md);
    transition: transform .18s var(--shop-ease), filter .18s var(--shop-ease);
}
.shop-promo-band-cta:hover {
    color: var(--shop-ink);
    transform: translateY(-2px);
    filter: brightness(1.03);
}
.shop-promo-band-cta:active {
    transform: translateY(0) scale(.98);
}

/* ============================================================
   SECTION EYEBROW + V2 TITLE
   ============================================================ */
.shop-section-eyebrow {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--shop-primary);
    margin-bottom: 9px;
}
.shop-section-title-v2 {
    font-family: var(--shop-font-head);
    font-weight: var(--shop-heading-weight);
    font-size: 31px;
    margin: 0;
    letter-spacing: -.015em;
    color: var(--shop-ink);
}
.shop-section-header-v2 {
    margin-bottom: 26px;
}
/* Override the base section-header flex when it wraps an eyebrow+h2 block */
.shop-section-header > div {
    display: flex;
    flex-direction: column;
}

/* ============================================================
   CATEGORY TILES v2 (4:5 image tiles, gradient overlay)
   ============================================================ */
.shop-cat-tile-v2 {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: var(--shop-card-radius);
    overflow: hidden;
    box-shadow: var(--shop-shadow-sm);
    transition: box-shadow .3s var(--shop-ease), transform .3s var(--shop-ease);
    cursor: pointer;
    color: inherit;
}
.shop-cat-tile-v2:hover {
    box-shadow: var(--shop-shadow-md);
    transform: translateY(-4px);
    color: inherit;
    opacity: 1;
}
.shop-cat-tile-v2-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--shop-ease);
}
.shop-cat-tile-v2:hover .shop-cat-tile-v2-img {
    transform: scale(1.07);
}
.shop-cat-tile-v2-img--placeholder {
    background-color: color-mix(in srgb, var(--shop-primary) 14%, var(--shop-surface));
    background-image: repeating-linear-gradient(45deg, color-mix(in srgb, var(--shop-primary) 8%, transparent) 0, color-mix(in srgb, var(--shop-primary) 8%, transparent) 1px, transparent 1px, transparent 9px);
}
.shop-cat-tile-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .62), rgba(0, 0, 0, .05) 55%, rgba(0, 0, 0, 0));
    pointer-events: none;
}
.shop-cat-tile-v2-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.shop-cat-tile-v2-name {
    font-family: var(--shop-font-head);
    font-size: 15.5px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}
.shop-cat-tile-v2-arrow {
    width: 26px;
    height: 26px;
    flex: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--shop-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s var(--shop-ease);
}
.shop-cat-tile-v2:hover .shop-cat-tile-v2-arrow {
    transform: translateX(3px);
}

/* ============================================================
   PRODUCT CARD v2 (hover zoom image, stock pill, clamp name)
   ============================================================ */
.shop-product-card--v2 {
    transition: transform .3s var(--shop-ease), box-shadow .3s var(--shop-ease), border-color .3s var(--shop-ease);
}
.shop-product-card--v2:hover {
    transform: translateY(-5px);
    box-shadow: var(--shop-shadow-md);
    border-color: color-mix(in srgb, var(--shop-primary) 35%, var(--shop-border));
}
/* Image zoom on card hover */
.shop-product-card--v2 .shop-product-card-img-wrap {
    overflow: hidden;
    background: var(--shop-bg);
}
.shop-product-card--v2 .shop-product-card-img {
    aspect-ratio: 4 / 3;
    transition: transform .5s var(--shop-ease);
}
.shop-product-card--v2:hover .shop-product-card-img {
    transform: scale(1.07);
}
/* "Skladem" pill overlaid on image */
.shop-product-card-stock-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--shop-primary);
    text-transform: uppercase;
    letter-spacing: .04em;
    background: var(--shop-surface);
    padding: 4px 9px;
    border-radius: 999px;
    box-shadow: var(--shop-shadow-sm);
}
.shop-product-card-stock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--shop-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--shop-primary) 20%, transparent);
    flex: none;
}
/* 2-line clamped name */
.shop-product-card--v2 .shop-product-card-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.32;
    min-height: 40px;
}
/* Price column in footer */
.shop-product-card-price-col {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
/* Cart SVG button (icon + label) */
.shop-product-card--v2 .shop-product-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: filter .18s var(--shop-ease), transform .18s var(--shop-ease);
}
.shop-product-card--v2 .shop-product-card-btn:hover {
    filter: brightness(1.07);
}
.shop-product-card--v2 .shop-product-card-btn:active {
    transform: scale(.94);
}
/* Secondary variant-select button */
.shop-product-card-btn--secondary {
    background: var(--shop-surface);
    color: var(--shop-ink);
    border: 1px solid var(--shop-border);
    transition: border-color .15s var(--shop-ease), box-shadow .15s var(--shop-ease);
}
.shop-product-card-btn--secondary:hover {
    color: var(--shop-ink);
    border-color: var(--shop-primary);
    box-shadow: var(--shop-shadow-sm);
    filter: none;
}

/* ============================================================
   RESPONSIVE — new v2 components
   ============================================================ */
@media (max-width: 991px) {
    .shop-usp-strip-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .shop-hero-v2-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: var(--shop-section-gap);
    }
    .shop-hero-v2-visual { display: none; }
    .shop-usp-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .shop-promo-band-body { padding: 28px 24px; }
    .shop-promo-band-title { font-size: 22px; }
    .shop-section-title-v2 { font-size: 24px; }
}
@media (max-width: 479px) {
    .shop-usp-strip-inner { grid-template-columns: 1fr; }
    .shop-hero-v2-title { font-size: 32px; }
    .shop-promo-band-cta { width: 100%; justify-content: center; }
}
