/* ==========================================================================
   DriveLink Shop - Main CSS
   Optisch abgestimmt auf drivelink-solutions-v2.
   ========================================================================== */

:root {
	--dls-bg: #f5f1ea;
	--dls-bg-soft: #fcfaf6;
	--dls-bg-panel: #f1e8dd;
	--dls-surface: #ffffff;
	--dls-surface-soft: rgba(255, 255, 255, 0.94);
	--dls-text: #1f2b35;
	--dls-text-soft: #52616d;
	--dls-muted: #7b8791;
	--dls-border: rgba(31, 43, 53, 0.08);
	--dls-border-strong: rgba(31, 43, 53, 0.14);
	--dls-primary: #d71920;
	--dls-primary-dark: #b9151b;
	--dls-primary-soft: rgba(215, 25, 32, 0.08);
	--dls-highlight: #1e2a32;
	--dls-success: #1f7a4d;
	--dls-error: #b9151b;
	--dls-warning: #b8770b;

	--dls-shadow-lg: 0 34px 70px rgba(31, 43, 53, 0.12);
	--dls-shadow-md: 0 18px 34px rgba(31, 43, 53, 0.09);
	--dls-shadow-sm: 0 12px 24px rgba(31, 43, 53, 0.06);
	--dls-shadow-xs: 0 4px 12px rgba(31, 43, 53, 0.06);

	--dls-radius-xl: 40px;
	--dls-radius-lg: 28px;
	--dls-radius-md: 20px;
	--dls-radius-sm: 14px;
	--dls-radius-xs: 10px;

	--dls-container: min(1200px, calc(100vw - 2rem));
	--font-heading: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
	--font-body: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
	position: relative;
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--dls-text);
	background:
		radial-gradient(circle at 12% 10%, rgba(215, 25, 32, 0.08), transparent 26%),
		radial-gradient(circle at 86% 12%, rgba(30, 42, 50, 0.05), transparent 24%),
		linear-gradient(180deg, #fdfbf8 0%, #f4eee5 48%, #faf6ef 100%);
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	background:
		linear-gradient(rgba(31, 43, 53, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(31, 43, 53, 0.025) 1px, transparent 1px);
	background-size: 88px 88px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 84%);
	pointer-events: none;
	z-index: -2;
}

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

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

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

button { cursor: pointer; }

:focus-visible {
	outline: 3px solid rgba(215, 25, 32, 0.2);
	outline-offset: 3px;
}

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

.skip-link:focus {
	clip: auto;
	clip-path: none;
	width: auto;
	height: auto;
	padding: 0.6rem 1rem;
	background: var(--dls-text);
	color: #fff;
	border-radius: 999px;
	z-index: 9999;
	top: 1rem;
	left: 1rem;
}

.site-wrap { min-height: 100vh; }

.container {
	width: var(--dls-container);
	margin: 0 auto;
}

/* ===== Header ===== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 1rem 0;
	background: rgba(253, 251, 248, 0.84);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid transparent;
	transition: padding 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
	padding: 0.72rem 0;
	background: rgba(253, 251, 248, 0.97);
	border-color: var(--dls-border);
	box-shadow: var(--dls-shadow-sm);
}

.header-inner {
	display: grid;
	grid-template-columns: auto auto;
	align-items: center;
	gap: 1rem;
}

.brand-link {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
}

.brand-logo,
.custom-logo {
	width: auto;
	height: 56px;
	max-width: 130px;
	object-fit: contain;
}

.brand-subtitle {
	display: none;
	padding: 0.3rem 0.65rem;
	border-left: 1px solid var(--dls-border);
	color: var(--dls-text-soft);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.menu-toggle {
	justify-self: end;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.34rem;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(31, 43, 53, 0.1);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.88);
	color: var(--dls-text);
	box-shadow: var(--dls-shadow-sm);
}

.menu-toggle span {
	width: 18px;
	height: 2px;
	margin: 0 auto;
	background: currentColor;
	border-radius: 999px;
	transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.main-navigation {
	grid-column: 1 / -1;
	display: none;
	width: 100%;
	padding: 1rem 1.15rem;
	border: 1px solid var(--dls-border);
	border-radius: var(--dls-radius-lg);
	background: rgba(255, 255, 255, 0.97);
	box-shadow: var(--dls-shadow-lg);
}

.main-navigation.is-open { display: block; }

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

.primary-menu {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.primary-menu li { position: relative; }

.primary-menu a {
	display: inline-flex;
	align-items: center;
	padding: 0.8rem 0.95rem;
	border-radius: 999px;
	color: var(--dls-text-soft);
	font-size: 0.95rem;
	font-weight: 700;
	transition: color 180ms ease, background-color 180ms ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu .current_page_ancestor > a {
	color: var(--dls-highlight);
	background: rgba(30, 42, 50, 0.06);
}

.menu-item-has-children {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.menu-item-has-children > a { flex: 1 1 auto; }

.submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-left: 0.25rem;
	border: 1px solid rgba(31, 43, 53, 0.1);
	border-radius: 50%;
	background: rgba(30, 42, 50, 0.04);
	color: var(--dls-highlight);
}

.submenu-toggle span {
	display: block;
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	transition: transform 180ms ease;
}

.menu-item-has-children.is-submenu-open > .submenu-toggle span {
	transform: rotate(-135deg) translateY(-1px);
}

.primary-menu .sub-menu {
	display: none;
	flex-basis: 100%;
	margin-top: 0.45rem;
	padding: 0.55rem;
	border: 1px solid var(--dls-border);
	border-radius: var(--dls-radius-md);
	background: var(--dls-bg-soft);
}

.menu-item-has-children.is-submenu-open > .sub-menu { display: block; }

.sub-menu a {
	display: block;
	padding: 0.78rem 0.9rem;
	border-radius: 14px;
	font-weight: 600;
}

.header-actions {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.dls-cart-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.6rem 1rem;
	border: 1px solid var(--dls-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	color: var(--dls-text);
	font-weight: 700;
	font-size: 0.92rem;
	box-shadow: var(--dls-shadow-xs);
	transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.dls-cart-link:hover {
	border-color: rgba(215, 25, 32, 0.32);
	background: rgba(255, 255, 255, 0.95);
	transform: translateY(-1px);
}

.dls-cart-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--dls-primary);
}

.dls-cart-label { display: none; }

.dls-cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 0.45rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--dls-primary), var(--dls-primary-dark));
	color: #fff;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

/* ===== Buttons ===== */
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.96rem 1.5rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 700;
	letter-spacing: 0.01em;
	transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
	background: linear-gradient(135deg, var(--dls-primary) 0%, var(--dls-primary-dark) 100%);
	color: #fff;
	box-shadow: 0 18px 34px rgba(215, 25, 32, 0.2);
}
.button-primary:hover { box-shadow: 0 24px 42px rgba(215, 25, 32, 0.24); }

.button-secondary {
	border-color: rgba(215, 25, 32, 0.24);
	background: rgba(255, 255, 255, 0.74);
	color: var(--dls-primary);
}
.button-secondary:hover {
	border-color: rgba(215, 25, 32, 0.4);
	background: rgba(255, 255, 255, 0.92);
}

.button-ghost {
	border-color: var(--dls-border);
	background: rgba(255, 255, 255, 0.7);
	color: var(--dls-text);
}
.button-ghost:hover { border-color: var(--dls-border-strong); }

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 1rem;
	color: var(--dls-primary);
	font-weight: 700;
}
.text-link::after {
	content: "\2192";
	transition: transform 180ms ease;
}
.text-link:hover::after { transform: translateX(3px); }

/* ===== Typography ===== */
h1, h2, h3, h4 {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 780;
	line-height: 1.05;
	letter-spacing: -0.035em;
	color: var(--dls-text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); max-width: 14ch; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); max-width: 18ch; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p { margin: 0; color: var(--dls-text-soft); }

.section-kicker,
.panel-label,
.footer-eyebrow {
	margin: 0 0 1rem;
	color: var(--dls-primary);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

/* ===== Hero ===== */
.hero-section,
.page-hero {
	position: relative;
	overflow: clip;
}

.hero-section { padding: 5.4rem 0 2.2rem; }
.page-hero    { padding: 4rem 0 2.2rem; }

.hero-background {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero-orb,
.hero-accent-panel {
	position: absolute;
	display: block;
}

.hero-orb {
	filter: blur(34px);
	border-radius: 50%;
}
.hero-orb-left  { top: -5%; left: -5%; width: 260px; height: 260px; background: rgba(215, 25, 32, 0.12); }
.hero-orb-right { right: -4%; top: 16%; width: 360px; height: 360px; background: rgba(30, 42, 50, 0.08); }

.hero-accent-panel {
	right: -12vw;
	top: 7rem;
	width: 52vw;
	height: 34rem;
	border-radius: 42px 0 0 42px;
	background: linear-gradient(135deg, rgba(215, 25, 32, 0.1), rgba(215, 25, 32, 0.03));
	transform: rotate(-6deg);
}

.hero-layout {
	display: grid;
	gap: 1.4rem;
	position: relative;
	z-index: 1;
}

.hero-copy { position: relative; z-index: 1; }

.hero-lead,
.section-heading p {
	max-width: 62ch;
	font-size: 1.03rem;
	margin-top: 1.1rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 1.7rem;
}

.hero-pills-wrap {
	position: relative;
	z-index: 2;
	margin-top: 1.4rem;
}

.hero-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	padding: 0.6rem 0.7rem;
	border: 1px solid var(--dls-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
	box-shadow: var(--dls-shadow-sm);
	width: fit-content;
	max-width: 100%;
}

.hero-pills a {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.9rem;
	border-radius: 999px;
	color: var(--dls-text-soft);
	font-size: 0.92rem;
	font-weight: 700;
	transition: color 180ms ease, background-color 180ms ease;
}

.hero-pills a:hover {
	background: rgba(215, 25, 32, 0.08);
	color: var(--dls-primary);
}

.hero-visual { position: relative; }

.hero-visual-main {
	overflow: hidden;
	border-radius: var(--dls-radius-xl);
	background: var(--dls-surface);
	box-shadow: var(--dls-shadow-lg);
	min-height: 360px;
}

.hero-visual-main svg {
	width: 100%;
	height: 100%;
	display: block;
}

.hero-visual-card {
	position: absolute;
	right: -1rem;
	bottom: 2rem;
	width: min(280px, 46%);
	padding: 1rem 1.1rem;
	border-radius: 22px;
	background: rgba(255, 251, 247, 0.95);
	border: 1px solid var(--dls-border);
	box-shadow: var(--dls-shadow-md);
}

.hero-visual-card-inner span {
	display: block;
	color: var(--dls-primary);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 0.35rem;
}
.hero-visual-card-inner strong {
	font-size: 0.96rem;
	color: var(--dls-text);
}

.hero-visual-float {
	position: absolute;
	left: -0.5rem;
	bottom: -0.6rem;
	display: grid;
	gap: 0.35rem;
	max-width: 260px;
	padding: 0.95rem 1.1rem;
	border-radius: 0 22px 22px 22px;
	background: rgba(255, 251, 247, 0.95);
	border: 1px solid var(--dls-border);
	box-shadow: var(--dls-shadow-md);
}
.hero-visual-float span {
	color: var(--dls-primary);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.hero-visual-float strong {
	font-size: 0.95rem;
	line-height: 1.45;
	color: var(--dls-text);
}

/* ===== Sections / Layout helpers ===== */
.content-section { padding: 4rem 0; }

.section-heading {
	display: grid;
	gap: 0.6rem;
	margin-bottom: 1.6rem;
}

/* ===== Tyre Search Section shell ===== */
.dls-section--search {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
		transparent;
}

.dls-tyre-search-shell {
	padding: 1.4rem;
	border-radius: 36px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.55)),
		rgba(255, 255, 255, 0.4);
	border: 1px solid var(--dls-border);
	box-shadow: var(--dls-shadow-lg);
}

/* ===== Categories grid ===== */
.dls-cat-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

.dls-cat-card {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
	padding: 1.2rem 1.3rem;
	border-radius: var(--dls-radius-lg);
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid var(--dls-border);
	box-shadow: var(--dls-shadow-sm);
	color: var(--dls-text);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.dls-cat-card:hover {
	transform: translateY(-2px);
	border-color: rgba(215, 25, 32, 0.24);
	box-shadow: var(--dls-shadow-md);
}

.dls-cat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(215, 25, 32, 0.12), rgba(215, 25, 32, 0.04));
	color: var(--dls-primary);
}

.dls-cat-body {
	display: grid;
	gap: 0.2rem;
	min-width: 0;
}

.dls-cat-body strong {
	font-size: 1.1rem;
	color: var(--dls-text);
}

.dls-cat-body span {
	color: var(--dls-text-soft);
	font-size: 0.92rem;
}

.dls-cat-arrow {
	color: var(--dls-primary);
	font-weight: 800;
	transition: transform 180ms ease;
}

.dls-cat-card:hover .dls-cat-arrow { transform: translateX(3px); }

/* ===== Trust grid ===== */
.dls-trust-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

.dls-trust-card {
	padding: 1.4rem 1.4rem;
	border-radius: var(--dls-radius-lg);
	background: rgba(255, 255, 255, 0.74);
	border: 1px solid var(--dls-border);
	box-shadow: var(--dls-shadow-sm);
}

.dls-trust-card h3 {
	margin-bottom: 0.4rem;
	font-size: 1.1rem;
}

.dls-price-note {
	margin-top: 1.4rem;
	padding: 1rem 1.2rem;
	border: 1px dashed var(--dls-border-strong);
	border-radius: var(--dls-radius-md);
	background: rgba(255, 255, 255, 0.55);
	color: var(--dls-text-soft);
	font-size: 0.92rem;
}

/* ===== CTA Section ===== */
.dls-cta-shell {
	position: relative;
	overflow: hidden;
	padding: 2rem;
	border-radius: 46px;
	background: linear-gradient(135deg, rgba(215, 25, 32, 0.94), rgba(185, 21, 27, 0.96));
	box-shadow: 0 36px 70px rgba(185, 21, 27, 0.2);
}

.dls-cta-shell::before {
	content: "";
	position: absolute;
	right: -7rem;
	top: -5rem;
	width: 18rem;
	height: 18rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
}

.dls-cta-copy {
	position: relative;
	z-index: 1;
	color: #fff;
}

.dls-cta-copy .section-kicker { color: rgba(255, 255, 255, 0.7); }
.dls-cta-copy h2, .dls-cta-copy p { color: #fff; }
.dls-cta-copy p { max-width: 56ch; margin-top: 0.9rem; }

.dls-cta-copy .button-primary {
	background: #fff;
	color: var(--dls-primary);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}
.dls-cta-copy .button-secondary {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
}

/* ===== Cards used by index/archive/page ===== */
.article-grid {
	display: grid;
	gap: 1.2rem;
	grid-template-columns: 1fr;
}

.article-card,
.page-card {
	padding: 1.5rem;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid var(--dls-border);
	box-shadow: var(--dls-shadow-sm);
}

.article-meta {
	color: var(--dls-muted);
	font-size: 0.88rem;
	margin-bottom: 0.4rem;
}

.featured-image-wrap {
	margin-bottom: 1.2rem;
	overflow: hidden;
	border-radius: var(--dls-radius-lg);
}

.search-empty { text-align: center; }

.prose-content > * + * { margin-top: 1rem; }
.prose-content h2,
.prose-content h3,
.prose-content h4 { margin-top: 1.5rem; }
.prose-content ul,
.prose-content ol { padding-left: 1.25rem; color: var(--dls-text-soft); }
.prose-content a {
	color: var(--dls-primary);
	text-decoration: underline;
	text-decoration-color: rgba(215, 25, 32, 0.28);
}

.pagination-wrap .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 1.6rem;
}

.pagination-wrap .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 0.9rem;
	border: 1px solid var(--dls-border-strong);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	font-weight: 700;
}

.pagination-wrap .current {
	background: linear-gradient(135deg, var(--dls-primary), var(--dls-primary-dark));
	border-color: transparent;
	color: #fff;
}

/* ===== Breadcrumb ===== */
.dls-breadcrumb {
	margin-top: 1rem;
	color: var(--dls-text-soft);
	font-size: 0.9rem;
}

.dls-breadcrumb a { color: var(--dls-text-soft); }
.dls-breadcrumb a:hover { color: var(--dls-primary); }

.dls-breadcrumb-sep {
	display: inline-block;
	margin: 0 0.45rem;
	color: var(--dls-muted);
}

/* ===== Footer ===== */
.site-footer {
	padding: 1.45rem 0 0.95rem;
	border-top: 1px solid var(--dls-border);
	background: rgba(255, 251, 244, 0.82);
}

.footer-grid {
	display: grid;
	gap: 1.4rem;
	align-items: start;
	padding-bottom: 1rem;
}

.footer-grid h2,
.footer-grid h3 {
	margin-bottom: 0.45rem;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.footer-grid p,
.footer-grid a,
.footer-grid address,
.footer-grid li {
	font-size: 0.92rem;
	line-height: 1.55;
}

.footer-claim { color: var(--dls-text); font-weight: 700; }

.footer-text { color: var(--dls-muted); }

.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li + li { margin-top: 0.6rem; }

.footer-contact address {
	display: grid;
	gap: 0.2rem;
	margin-bottom: 0.45rem;
	font-style: normal;
	color: var(--dls-text-soft);
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding-top: 0.78rem;
	border-top: 1px solid var(--dls-border);
	color: var(--dls-muted);
	font-size: 0.8rem;
}

/* ===== Reveal animation ===== */
[data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 560ms ease, transform 560ms ease;
}
[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== Responsive ===== */
@media (min-width: 560px) {
	.dls-cat-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.dls-trust-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.article-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.dls-cart-label  { display: inline; }
}

@media (min-width: 920px) {
	.header-inner {
		grid-template-columns: auto 1fr auto;
	}

	.menu-toggle { display: none; }

	.brand-subtitle { display: inline-flex; }

	.main-navigation {
		grid-column: auto;
		display: block;
		width: auto;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.primary-menu {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 0.08rem;
		flex-wrap: nowrap;
	}

	.primary-menu a {
		padding: 0.72rem 0.84rem;
		font-size: 0.9rem;
	}

	.submenu-toggle { display: none; }

	.primary-menu .sub-menu {
		position: absolute;
		top: calc(100% + 0.55rem);
		left: 0;
		display: block;
		min-width: 240px;
		padding: 0.55rem;
		background: rgba(255, 255, 255, 0.98);
		box-shadow: var(--dls-shadow-lg);
		opacity: 0;
		visibility: hidden;
		transform: translateY(10px);
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	}

	.primary-menu li:hover > .sub-menu,
	.primary-menu li:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.hero-section { padding: 6.6rem 0 2.6rem; }

	.hero-layout {
		grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
		align-items: center;
	}

	.hero-copy { padding-right: 1.5rem; }

	.dls-cat-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.dls-trust-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.article-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.footer-grid {
		grid-template-columns: 1.15fr 0.85fr 0.85fr;
	}

	.footer-bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

@media (min-width: 1120px) {
	.hero-visual-main { min-height: 480px; }
}

@media (max-width: 767px) {
	.hero-accent-panel {
		right: -10rem;
		top: 9rem;
		width: 22rem;
		height: 18rem;
	}
	.hero-visual-card {
		right: 0.2rem;
		bottom: 1.2rem;
		width: min(220px, 50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	[data-reveal] { opacity: 1; transform: none; }
}
