:root {
	--dbp-container-narrow: 860px;
	--dbp-container: 1200px;
	--dbp-container-wide: 1440px;
	--dbp-header-height: 80px;

	--dbp-space-1: 0.25rem;
	--dbp-space-2: 0.5rem;
	--dbp-space-3: 1rem;
	--dbp-space-4: 1.5rem;
	--dbp-space-5: 2rem;
	--dbp-space-6: 3rem;
	--dbp-space-7: 4rem;

	--dbp-font-heading: 'Poppins', 'Montserrat', Arial, sans-serif;
	--dbp-font-body: 'Poppins', 'Montserrat', Arial, sans-serif;
	--dbp-font-size-base: 16px;
	--dbp-line-height-base: 1.6;
	--dbp-line-height-tight: 1.2;

	--dbp-color-accent-soft: #e6f3f2;
	--dbp-color-accent-muted: #cde7e5;
	--dbp-color-accent: #00665e;
	--dbp-color-accent-strong: #00514b;
	--dbp-color-heading: #1f2937;
	--dbp-color-text: #334155;
	--dbp-color-muted: #64748b;
	--dbp-color-background: #ffffff;
	--dbp-color-surface: #ffffff;
	--dbp-color-surface-alt: #f8fafc;
	--dbp-color-border: #e2e8f0;
	--dbp-color-border-strong: #cbd5e1;
	--dbp-color-success: #10b981;
	--dbp-color-success-bg: #eefbf4;
	--dbp-color-success-text: #166534;
	--dbp-color-error: #ef4444;
	--dbp-color-error-bg: #fff2f1;
	--dbp-color-error-text: #991b1b;
	--dbp-color-warning: #f59e0b;
	--dbp-color-warning-bg: #fff8eb;

	--dbp-radius-sm: 4px;
	--dbp-radius-md: 8px;
	--dbp-radius-lg: 12px;
	--dbp-radius-xl: 18px;
	--dbp-radius-full: 9999px;

	--dbp-shadow-xs: 0 2px 10px rgba(0, 0, 0, 0.04);
	--dbp-shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.06);
	--dbp-shadow-md: 0 18px 40px rgba(2, 6, 23, 0.1);
	--dbp-shadow-lg: 0 30px 80px rgba(2, 6, 23, 0.22);

	--dbp-transition-fast: 120ms ease;
	--dbp-transition-base: 180ms ease;

	--container-width: var(--dbp-container-wide);
	--container-padding: 20px;
	--header-height: var(--dbp-header-height);
	--font-heading: var(--dbp-font-heading);
	--font-body: var(--dbp-font-body);
	--font-size-base: var(--dbp-font-size-base);
	--line-height: var(--dbp-line-height-base);
	--radius-sm: var(--dbp-radius-sm);
	--radius-md: var(--dbp-radius-md);
	--radius-lg: var(--dbp-radius-lg);
	--radius-full: var(--dbp-radius-full);
	--shadow-sm: var(--dbp-shadow-xs);
	--shadow-md: var(--dbp-shadow-md);
	--transition-fast: var(--dbp-transition-fast);
	--transition-base: var(--dbp-transition-base);
	--c-brand-50: var(--dbp-color-accent-soft);
	--c-brand-100: var(--dbp-color-accent-muted);
	--c-brand-200: #9bcfcc;
	--c-brand-300: #69b7b2;
	--c-brand-400: #35b1a8;
	--c-brand-500: #15726b;
	--c-brand-600: var(--dbp-color-accent);
	--c-brand-700: var(--dbp-color-accent-strong);
	--c-brand-800: #003d38;
	--c-brand-900: #002a26;
	--c-slate-50: var(--dbp-color-surface-alt);
	--c-slate-100: #f1f5f9;
	--c-slate-200: var(--dbp-color-border);
	--c-slate-300: var(--dbp-color-border-strong);
	--c-slate-400: #94a3b8;
	--c-slate-500: var(--dbp-color-muted);
	--c-slate-600: #475569;
	--c-slate-700: var(--dbp-color-text);
	--c-slate-800: var(--dbp-color-heading);
	--c-slate-900: #0f172a;
	--c-success: var(--dbp-color-success);
	--c-warning: var(--dbp-color-warning);
	--c-error: var(--dbp-color-error);
	--c-text: var(--dbp-color-text);
	--c-heading: var(--dbp-color-heading);
	--c-bg: var(--dbp-color-background);
	--c-surface: var(--dbp-color-surface);
	--c-border: var(--dbp-color-border);
	--c-border-strong: var(--dbp-color-border-strong);
	--c-muted: var(--dbp-color-muted);
	--c-link: var(--dbp-color-accent);
}
*,
*::before,
*::after {
	box-sizing: border-box;
	overflow-wrap: break-word;
}

html {
	font-size: var(--dbp-font-size-base);
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	/* Always reserve the scrollbar gutter so the content width stays constant.
	   Prevents a horizontal shift when the vertical scrollbar appears after the
	   page grows (e.g. images/late content load) — matters for the 100vw
	   full-bleed stretched sections, whose centering is scrollbar-sensitive. */
	scrollbar-gutter: stable;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

body {
	min-height: 100vh;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

ul[role='list'],
ol[role='list'] {
	list-style: none;
	padding: 0;
}

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

img,
picture,
video,
canvas,
svg {
	display: block;
}

iframe {
	max-width: 100%;
	border: 0;
}

table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
body {
	font-family: var(--dbp-font-body);
	font-size: 1rem;
	line-height: var(--dbp-line-height-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--dbp-font-heading);
	line-height: var(--dbp-line-height-tight);
	margin: 0 0 1rem;
	color: var(--dbp-color-heading);
	font-weight: 700;
}

h1 {
	font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
	font-size: clamp(1.625rem, 3vw, 2.5rem);
}

h3 {
	font-size: clamp(1.25rem, 2vw, 1.875rem);
}

h4 {
	font-size: clamp(1.125rem, 1.5vw, 1.375rem);
}

p,
ul,
ol,
blockquote,
table,
figure {
	margin: 0 0 1rem;
}

a {
	color: var(--dbp-color-accent);
	text-decoration: none;
	transition: color var(--dbp-transition-base), text-decoration-color var(--dbp-transition-base);
}

a:hover {
	color: var(--dbp-color-accent-strong);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

strong {
	font-weight: 700;
}

small {
	font-size: 0.875em;
	color: var(--dbp-color-muted);
}

blockquote {
	padding: 1.25rem 1.5rem;
	border-left: 4px solid var(--dbp-color-accent);
	border-radius: 0 var(--dbp-radius-lg) var(--dbp-radius-lg) 0;
	background: color-mix(in srgb, var(--dbp-color-accent-soft) 48%, #ffffff);
	color: var(--dbp-color-heading);
}

hr {
	border: 0;
	border-top: 1px solid var(--dbp-color-border);
	margin-block: 2rem;
}

thead th {
	font-weight: 700;
	color: var(--dbp-color-heading);
}

tbody td,
tbody th {
	border-top: 1px solid var(--dbp-color-border);
}

.entry-content > * + * {
	margin-top: 1.25rem;
}

.entry-content > :where(h2, h3, h4) {
	margin-top: 2rem;
}

::selection {
	background: color-mix(in srgb, var(--dbp-color-accent-soft) 82%, #ffffff);
}
input,
select,
textarea,
button {
	font: inherit;
	color: inherit;
}

label {
	display: inline-block;
	margin-bottom: 0.45rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--dbp-color-heading);
}

input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']),
select,
textarea {
	width: 100%;
	min-height: 3rem;
	padding: 0.75rem 0.9rem;
	border: 1px solid var(--dbp-color-border);
	border-radius: var(--dbp-radius-md);
	background: #fff;
	transition: border-color var(--dbp-transition-base), box-shadow var(--dbp-transition-base), background-color var(--dbp-transition-base);
}

textarea {
	min-height: 8rem;
	resize: vertical;
}

select {
	padding-right: 2.8rem;
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--c-brand-600) 50%), linear-gradient(135deg, var(--c-brand-600) 50%, transparent 50%);
	background-position: calc(100% - 1.1rem) calc(50% - 0.18rem), calc(100% - 0.78rem) calc(50% - 0.18rem);
	background-size: 0.5rem 0.5rem, 0.5rem 0.5rem;
	background-repeat: no-repeat;
	cursor: pointer;
}

select option,
select optgroup {
	background: #fff;
	color: var(--dbp-color-heading);
}

input::placeholder,
textarea::placeholder {
	color: color-mix(in srgb, var(--dbp-color-muted) 78%, #ffffff);
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: color-mix(in srgb, var(--dbp-color-accent) 60%, var(--dbp-color-border));
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--dbp-color-accent-soft) 65%, #ffffff);
}

input:disabled,
select:disabled,
textarea:disabled,
input[readonly],
textarea[readonly] {
	background: var(--dbp-color-surface-alt);
	cursor: not-allowed;
}

input[type='checkbox'],
input[type='radio'] {
	accent-color: var(--dbp-color-accent);
}

button,
input[type='submit'],
input[type='button'],
input[type='reset'] {
	border: 0;
	background: transparent;
}
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	clip: auto;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0.75rem 1rem;
	overflow: visible;
	background: var(--dbp-color-accent);
	color: #fff;
	border-radius: 0 0 var(--dbp-radius-md) var(--dbp-radius-md);
	z-index: 100000;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	padding: 0.75rem 1rem;
	background: var(--dbp-color-accent);
	color: #fff;
	border-radius: 0 0 var(--dbp-radius-md) var(--dbp-radius-md);
	z-index: 100000;
}

.skip-link:focus {
	left: 1rem;
	top: 0.5rem;
}

.u-hidden {
	display: none !important;
}

.u-text-center {
	text-align: center !important;
}

.u-mx-auto {
	margin-inline: auto !important;
}

.u-flow > * + * {
	margin-top: var(--dbp-space-4) !important;
}

.u-grid {
	display: grid !important;
	gap: var(--dbp-space-4) !important;
}

.u-flex {
	display: flex !important;
	gap: var(--dbp-space-3) !important;
}

.u-surface {
	background: var(--dbp-color-surface) !important;
	border: 1px solid var(--dbp-color-border) !important;
	border-radius: var(--dbp-radius-xl) !important;
	box-shadow: var(--dbp-shadow-xs) !important;
}

.u-full-bleed,
.dbp-full-bleed {
	width: 100vw !important;
	max-width: 100vw !important;
	margin-inline: calc(50% - 50vw) !important;
}

.u-full-bleed.elementor-section > .elementor-container,
.dbp-full-bleed.elementor-section > .elementor-container,
.u-full-bleed > .e-con-inner,
.dbp-full-bleed > .e-con-inner {
	width: min(100% - 2rem, var(--dbp-container)) !important;
	max-width: var(--dbp-container) !important;
	margin-inline: auto !important;
}

.u-full-bleed .e-con-boxed > .e-con-inner,
.dbp-full-bleed .e-con-boxed > .e-con-inner,
.u-full-bleed .elementor-section-boxed > .elementor-container,
.dbp-full-bleed .elementor-section-boxed > .elementor-container {
	width: min(100% - 2rem, var(--dbp-container)) !important;
	max-width: var(--dbp-container) !important;
	margin-inline: auto !important;
}

:where(a, button, input, select, textarea, summary):focus-visible {
	outline: 3px solid color-mix(in srgb, var(--dbp-color-accent-soft) 35%, var(--dbp-color-accent));
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
.hide-mobile { display: block; }
.show-mobile { display: none !important; }

.top-bar {
	background: #fff;
	border-bottom: 1px solid var(--dbp-color-border);
	font-size: 0.72rem;
	color: var(--dbp-color-heading);
	height: 42px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 120;
}

.top-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	gap: 1rem;
}

.top-bar__left {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
	font-weight: 500;
	color: var(--dbp-color-muted);
	letter-spacing: 0.02em;
}

.top-bar__message {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.top-bar__message .rotator-item {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease;
	flex-wrap: nowrap;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.top-bar__message .rotator-item.active {
	position: relative;
	opacity: 1;
	visibility: visible;
}

.top-bar__message-icon {
	flex: 0 0 auto;
	font-size: 15px;
	width: 15px;
	height: 15px;
	color: var(--c-brand-600);
}

.top-bar__message-text {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.top-bar__message-text,
.top-bar__message-text > * {
	white-space: nowrap;
}

.top-bar__message-text a {
	color: inherit;
	font-weight: 700;
	text-decoration: none;
}

.top-bar__message-text a:hover,
.top-bar__message-text a:focus-visible {
	text-decoration: underline;
}

.top-bar__message-text strong {
	font-weight: 700;
}

.top-bar__message.is-marquee {
	display: flex;
	align-items: center;
	height: auto;
	mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.top-bar__marquee-track {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	width: max-content;
	animation: dbp-topbar-marquee var(--dbp-topbar-marquee-duration, 18s) linear infinite;
	will-change: transform;
}

.top-bar__marquee-set {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 2.25rem;
	padding-right: 2.25rem;
}

.top-bar__message.is-marquee .rotator-item {
	position: static;
	opacity: 1;
	visibility: visible;
	flex: 0 0 auto;
	overflow: visible;
	text-overflow: clip;
}

.top-bar__message.is-marquee .top-bar__message-text {
	overflow: visible;
	text-overflow: clip;
}

.top-bar__message.is-marquee.is-paused .top-bar__marquee-track {
	animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
	.top-bar__marquee-track {
		animation: none;
	}

	.top-bar__message.is-marquee {
		mask-image: none;
	}
}

@keyframes dbp-topbar-marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.top-bar__right {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex: 0 0 auto;
	white-space: nowrap;
	justify-content: flex-end;
	min-width: 0;
}

.btn-pro-zone {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-width: 0;
	max-width: min(24rem, 28vw);
	padding: 0.45rem 1rem;
	border-radius: 999px;
	background: var(--dbp-color-heading);
	border: 1px solid var(--dbp-color-heading);
	color: #fff !important;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
	transition: transform var(--dbp-transition-fast), background-color var(--dbp-transition-base), border-color var(--dbp-transition-base);
}

.btn-pro-zone.is-greeting {
	text-transform: none;
	letter-spacing: 0.01em;
	font-size: 0.74rem;
}

.btn-pro-zone.has-long-label {
	font-size: 0.66rem;
}

.btn-pro-zone__text {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.btn-pro-zone:hover {
	background: var(--dbp-color-accent);
	border-color: var(--dbp-color-accent);
	transform: translateY(-1px);
	text-decoration: none;
}

.btn-pro-zone__icon,
.actions-pill__item svg,
.dbp-header-cart svg,
.menu-toggle__icon svg,
.mobile-menu-close svg,
.mm-b2b-btn svg,
.mm-contact-item svg,
.search-close svg,
.search-submit-icon svg {
	display: block;
	width: 1.2rem;
	height: 1.2rem;
}

.top-bar-menu {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.top-bar-menu a {
	color: var(--dbp-color-heading);
	text-decoration: none;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 0.85rem 0;
	border-bottom: 1px solid color-mix(in srgb, var(--c-brand-900) 35%, #ffffff);
	background: linear-gradient(90deg, var(--c-brand-600) 0%, var(--c-brand-700) 100%);
	backdrop-filter: blur(14px);
	box-shadow: 0 10px 30px rgba(0, 42, 38, 0.18);
}

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

.dbp-site-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 2.5rem;
	min-height: 3.5rem;
	position: static;
}

.site-branding {
	flex: 0 0 auto;
}

.site-logo,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.site-branding a {
	display: inline-flex;
	align-items: center;
	color: #fff;
	text-decoration: none;
	font-weight: 800;
}


.site-branding img,
.custom-logo-link img {
	display: block;
	height: 50px;
	max-height: 50px;
	width: auto;
	max-width: 100%;
}

.custom-logo {
	height: 50px !important;
	width: auto !important;
	max-width: 100%;
}

.main-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	min-width: 0;
	position: static;
}

.main-navigation > ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-navigation > ul > li {
	height: auto;
	display: flex;
	align-items: center;
	position: static;
	padding-block: 0.35rem;
}

.main-navigation > ul > li.menu-item-has-children {
	padding-bottom: calc(0.35rem + 1.25rem);
	margin-bottom: -1.25rem;
}

.main-navigation > ul > li > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 0 0.9rem;
	border-radius: 0;
	color: rgba(255, 255, 255, 0.96);
	font-size: 0.82rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	position: relative;
}


.main-navigation > ul > li > a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0.48rem;
	width: 0;
	height: 2px;
	background: var(--c-brand-50);
	transition: width var(--dbp-transition-base);
}

.main-navigation > ul > li:hover > a::after,
.main-navigation > ul > li.current-menu-item > a::after,
.main-navigation > ul > li.current-menu-parent > a::after {
	width: 100%;
}

.main-navigation > ul > li:hover > a,
.main-navigation > ul > li.current-menu-item > a,
.main-navigation > ul > li.current-menu-parent > a {
	color: #fff;
	background: transparent;
}

.main-navigation > ul > li.menu-item-has-children > a {
	padding-right: 0.9rem;
}

.main-navigation > ul > li.menu-item-has-children > a::before {
	content: '';
	position: absolute;
	right: 0.05rem;
	top: calc(50% - 3px);
	width: 0.45rem;
	height: 0.45rem;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: translateY(-52%) rotate(45deg);
	transition: transform var(--dbp-transition-base);
	opacity: 0.6;
}

.main-navigation > ul > li.menu-item-has-children:hover > a::before,
.main-navigation > ul > li.menu-item-has-children.current-menu-parent > a::before {
	transform: translateY(-38%) rotate(225deg);
}

.main-navigation .menu-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.18rem 0.4rem;
	border-radius: 999px;
	font-size: 0.56rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
}

.main-navigation > ul > li > a .menu-badge {
	position: absolute;
	top: -0.15rem;
	right: -1rem;
}

.dottore-mega-menu__links a .menu-badge,
.dottore-mega-menu__link .menu-badge {
	position: static;
	margin-left: 0.5rem;
}

.dottore-mega-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background-color: #ffffff !important;
	border-top: 1px solid #f0f0f0;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 1001;
	display: block;
}

.main-navigation > ul > li:hover > .dottore-mega-menu,
.main-navigation > ul > li:focus-within > .dottore-mega-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dottore-mega-menu-inner {
	width: min(100% - 2rem, var(--dbp-container-wide));
	max-width: var(--dbp-container-wide);
	margin: 0 auto;
	padding: 2.5rem 1.25rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0;
}

.dottore-mega-menu.is-card-grid .dottore-mega-menu-inner {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	grid-auto-rows: 210px;
	gap: 20px;
	padding: 24px 20px;
	max-height: 30.5rem;
	overflow: hidden;
	justify-content: initial;
	align-items: start;
}

.mega-menu-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 15px;
	border: 1px solid #eee;
	border-radius: 8px;
	background: #fff;
	color: inherit;
	text-decoration: none;
	transition: all 0.2s;
	overflow: hidden;
}

.dottore-mega-menu.is-card-grid .mega-menu-card,
.dottore-mega-menu.is-card-grid .mega-menu-card:hover,
.dottore-mega-menu.is-card-grid .mega-menu-card:focus-visible {
	text-decoration: none;
}

.mega-menu-card:hover {
	border-color: var(--c-brand-300);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mega-menu-card__content {
	flex: 1 1 auto;
}

.mega-menu-card__image {
	height: 100px;
	width: 100%;
	margin-bottom: 12px;
	border-radius: 6px;
	background: #f9f9f9;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mega-menu-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mega-menu-card__image img.is-placeholder {
	object-fit: contain;
	padding: 12px;
}

.mega-menu-card__title {
	margin: 0 0 5px;
	font-size: 14px;
	font-weight: 700;
	color: var(--c-brand-900);
}

.mega-menu-card__desc {
	margin: 0;
	font-size: 11px;
	line-height: 1.4;
	color: #666;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dottore-mega-menu__col,
.mega-menu-column {
	flex: 1 1 0;
	min-width: 160px;
	padding-right: 30px;
	margin-right: 30px;
	border-right: 1px solid #eee;
}

.dottore-mega-menu-inner > .dottore-mega-menu__col:last-child,
.mega-menu-column:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: 0;
}

.dottore-mega-menu-inner:has(> :is(.mega-menu-promo-box, .dynamic-preview-box, .dottore-mega-menu__aside)) > .dottore-mega-menu__col:last-child {
	border-right: 1px solid #eee;
	margin-right: 30px;
	padding-right: 30px;
}

.dottore-mega-menu-inner:has(> :is(.mega-menu-promo-box, .dynamic-preview-box, .dottore-mega-menu__aside)) > .dottore-mega-menu__col:nth-last-child(2) {
	border-right: 0;
	margin-right: 0;
	padding-right: 0;
}

.dottore-mega-menu-inner.has-leading-aside > .dottore-mega-menu__col:last-child {
	border-right: 0;
	margin-right: 0;
	padding-right: 0;
}

.dottore-mega-menu-inner.has-leading-aside > .dottore-mega-menu__col:nth-last-child(2) {
	border-right: 1px solid #eee;
	margin-right: 30px;
	padding-right: 30px;
}

.dottore-mega-menu__heading {
	margin: 0 0 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #8b949e;
}

.dottore-mega-menu__heading a,
.dottore-mega-menu__headingText {
	color: inherit;
	text-decoration: none;
	display: block;
}

.dottore-mega-menu__heading a {
	cursor: pointer;
}

.dottore-mega-menu__headingText {
	cursor: default;
}

.dottore-mega-menu__section + .dottore-mega-menu__section .dottore-mega-menu__heading {
	margin-top: 30px;
}

.dottore-mega-menu__links,
.dottore-mega-menu__links ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
}

.dottore-mega-menu__link-item {
	margin: 0 0 12px;
	list-style: none;
}

.dottore-mega-menu__link {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0;
	color: #4b5563;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	background: transparent;
	border-radius: 0;
}

.dottore-mega-menu__link:hover,
.dottore-mega-menu__links a:hover,
.dottore-mega-menu__headingText:hover {
	color: var(--c-brand-400);
	background: transparent;
}

.dottore-mega-menu.has-dynamic-preview .dottore-mega-menu__headingText:hover,
.dottore-mega-menu.has-dynamic-preview .dottore-mega-menu__headingText:focus-visible {
	color: inherit;
	text-decoration: none;
}

.dottore-mega-menu__card {
	display: block;
	color: inherit;
	text-decoration: none;
	padding: 12px;
	border: 1px solid #eee;
	border-radius: 8px;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.dottore-mega-menu__card:hover {
	border-color: var(--c-brand-300);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transform: translateY(-2px);
}

.dottore-mega-menu__card-media {
	margin-bottom: 12px;
	height: 110px;
	border-radius: 8px;
	background: #f9f9f9;
	overflow: hidden;
}

.dottore-mega-menu__card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dottore-mega-menu__card-title {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	color: #374151;
}

.link-text-wrapper {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.menu-item-title {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.15;
	color: currentColor;
}

.menu-item-desc {
	font-size: 11px;
	line-height: 1.4;
	color: #9ca3af;
	text-transform: none;
	letter-spacing: 0;
}

.dottore-mega-menu__heading .menu-item-title,
.dottore-mega-menu__link .menu-item-title {
	color: #4b5563;
}

.dottore-mega-menu__sidebar,
.mega-menu-promo-box,
.dottore-cosmetologist-box {
	width: 300px;
	flex: 0 0 300px;
	margin-left: 20px;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 12px;
	overflow: hidden;
	text-align: left;
	position: relative;
}

.mega-menu-promo-box {
	width: 276px;
	flex: 0 0 276px;
	margin-left: 16px;
	transition: border-color 0.2s ease;
}

.dottore-cosmetologist-box {
	width: 276px;
	flex: 0 0 276px;
	margin-left: 16px;
	transition: border-color 0.2s ease;
}

.dottore-mega-menu-inner.has-leading-aside > .dottore-cosmetologist-box {
	order: 2;
	margin-left: 0;
	margin-right: 40px;
}

.dottore-mega-menu-inner.has-leading-aside > .dottore-mega-menu__col:nth-child(2) {
	order: 1;
}

.dottore-mega-menu-inner.has-leading-aside > .dottore-mega-menu__col:not(:nth-child(2)) {
	order: 3;
}

.mega-menu-promo-box:hover {
	border-color: #d9d9d9;
}

.dottore-cosmetologist-box:hover {
	border-color: #d9d9d9;
}

.dynamic-preview-box {
	display: flex;
	flex-direction: column;
	height: 340px;
}

.preview-image-wrapper,
.cosmetologist-image {
	position: relative;
	height: 150px;
	background: #fff;
	overflow: hidden;
}

.promo-image-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #fff;
	overflow: hidden;
	border-radius: 18px 18px 0 0;
}

.promo-card__wishlist {
	top: 10px;
	right: 10px;
	opacity: 0;
	transform: translateY(-6px);
}

.mega-menu-promo-box:hover .promo-card__wishlist,
.mega-menu-promo-box:focus-within .promo-card__wishlist {
	opacity: 1;
	transform: translateY(0);
}

.dottore-cosmetologist-box .cosmetologist-image {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	background: linear-gradient(135deg, #e8f6f4 0%, #d0eeea 100%);
	overflow: hidden;
	border-radius: 11px 11px 0 0;
}

.promo-image-wrapper::before {
	content: 'PRODUKT MIESIĄCA';
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 5px 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #e6e6e6;
	color: #6b7280;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	z-index: 6;
	pointer-events: none;
}

@media (hover: none) {
	.promo-card__wishlist {
		opacity: 1;
		transform: none;
	}
}

.preview-image,
.cosmetologist-image img,
.promo-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.promo-image-wrapper img {
	position: absolute;
	inset: 0;
	object-fit: contain;
	padding: 0.35rem;
	border-radius: 18px 18px 0 0;
	transition: opacity 0.25s ease;
}

.dottore-cosmetologist-box .cosmetologist-image img {
	object-fit: cover;
	object-position: center top;
	padding: 0;
	border-radius: 11px 11px 0 0;
}

.promo-image-wrapper .back-image {
	opacity: 0;
}

.promo-image-wrapper .front-image {
	opacity: 1;
}


.mega-menu-promo-box:hover .back-image {
	opacity: 1;
}

.mega-menu-promo-box:hover .front-image {
	opacity: 0;
}

.preview-image {
	opacity: 0;
	position: absolute;
	inset: 0;
	transition: opacity 0.25s ease;
}

.preview-image.is-visible {
	opacity: 1;
}

.preview-placeholder {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	padding: 0;
	font-size: 13px;
	text-align: center;
	color: #8e8e8e;
}

.preview-content,
.promo-details,
.cosmetologist-details {
	padding: 12px 14px 14px;
}

.dynamic-preview-box .preview-content {
	flex: 1 1 auto;
	min-height: 0;
	padding: 12px 14px 12px;
}

.promo-details {
	padding: 7px 15px 18px;
}

.dottore-cosmetologist-box .cosmetologist-details {
	padding: 7px 15px 18px;
}

.preview-title,
.promo-title,
.dottore-cosmetologist__title {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	line-height: 1.35;
}

.dynamic-preview-box .preview-title {
	min-height: 1.35em;
}

.promo-title {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--c-brand-600);
}

.dottore-cosmetologist-box .dottore-cosmetologist__title {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--c-brand-600);
}

.preview-desc,
.cosmetologist-desc,
.promo-subtitle {
	margin: 6px 0 0;
	font-size: 12px;
	line-height: 1.5;
	color: #9ca3af;
	letter-spacing: 0;
	text-transform: none;
}

.dynamic-preview-box .preview-desc {
	line-height: 1.55;
	margin-top: 8px;
	margin-bottom: 0;
	display: -webkit-box;
	line-clamp: 6;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.promo-subtitle {
	display: block;
	font-size: 12px;
	line-height: 1.4;
	margin-top: 5px;
	margin-bottom: 0;
}

.dottore-cosmetologist-box .cosmetologist-desc {
	margin-top: 5px;
	margin-bottom: 0;
	line-height: 1.4;
}

.preview-desc {
	display: -webkit-box;
	line-clamp: 8;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dottore-cosmetologist__btn,
.promo-add-to-cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 36px;
	margin: 0;
	padding: 0 0.875rem;
	border-radius: 8px;
	background: var(--c-brand-600);
	color: #fff;
	text-decoration: none;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.9px;
}

.dottore-cosmetologist__btn {
	margin-top: 14px;
}

.dottore-cosmetologist__btn:hover,
.promo-add-to-cart:hover {
	background: var(--c-brand-700);
	color: #fff;
	text-decoration: none;
}

.dottore-cosmetologist__btn:hover .dottore-card__ctaText,
.dottore-cosmetologist__btn:focus-visible .dottore-card__ctaText,
.promo-add-to-cart:hover .dottore-card__ctaText,
.promo-add-to-cart:focus-visible .dottore-card__ctaText {
	color: #fff;
}

.product-label {
	top: 15px;
	left: 15px;
	padding: 4px 10px;
	border-radius: 20px;
	background: #fff;
	border: 1px solid #d6b457;
	color: #d6b457;
	font-size: 10px;
	font-weight: 700;
}

.promo-price {
	display: inline-flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.45rem;
	font-size: 13px;
	font-weight: 600;
	color: var(--c-brand-600);
	white-space: normal;
}

.promo-price del {
	color: #9aa5b1;
	font-size: 0.92em;
	font-weight: 500;
	text-decoration-thickness: 1px;
	text-decoration-color: rgba(154, 165, 177, 0.8);
}

.promo-price ins {
	background: none;
	text-decoration: none;
	color: var(--c-brand-800);
	font-size: 1.08em;
	font-weight: 800;
}

.promo-price.is-sale ins {
	color: var(--c-brand-700);
}

.promo-price__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 1.45rem;
	padding: 0.18rem 0.5rem;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--dbp-color-error) 20%, #ffffff);
	background: color-mix(in srgb, var(--dbp-color-error-bg) 88%, #ffffff);
	color: var(--dbp-color-error-text);
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.03em;
}

.promo-card {
	display: block;
	color: inherit;
}

.promo-media-link,
.promo-title-link {
	color: inherit;
	text-decoration: none;
}

.promo-title-link {
	display: block;
}

.promo-title-link:hover,
.promo-title-link:focus-visible {
	text-decoration: none;
}

.promo-actions {
	position: relative;
	margin-top: 14px;
	min-height: 32px;
}

.promo-metaRow,
.promo-ctaRow {
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.promo-metaRow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	opacity: 1;
	transform: translateY(0);
}

.dottore-card__rating {
	display: inline-flex;
	align-items: center;
	min-height: 18px;
}

.pdd-card-stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	font-size: 13px;
	line-height: 1;
	color: rgba(0, 102, 94, 0.22);
}

.pdd-card-star {
	display: inline-block;
	line-height: 1;
	transform: translateY(0.5px);
}

.pdd-card-star.is-filled {
	color: var(--c-brand-600);
}

.promo-ctaRow {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateY(6px);
	pointer-events: none;
}

.mega-menu-promo-box:hover .promo-metaRow {
	opacity: 0;
	transform: translateY(6px);
	pointer-events: none;
}

.mega-menu-promo-box:hover .promo-ctaRow {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.promo-add-to-cart .dottore-card__ctaIcon {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 7h14l-1.6 8.2a2 2 0 0 1-2 1.6H9.2a2 2 0 0 1-2-1.6L5 3H2' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 21a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z' fill='%23ffffff'/%3E%3Cpath d='M17 21a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.promo-add-to-cart .dottore-card__ctaText {
	display: inline-block;
}

.col-featured-b2b {
	flex: 0 0 430px;
	padding: 42px 22px 22px;
	background: #eef4f2;
	border: 0;
	border-right: 0;
	border-radius: 18px;
	position: relative;
	margin-right: 18px;
	margin-left: 8px;
	overflow: visible;
}

.dottore-mega-menu__col:has(> .dottore-mega-menu__section--featured-b2b),
.mega-menu-column:has(> .dottore-mega-menu__section--featured-b2b) {
	flex: 0 0 430px;
	min-width: 430px;
	max-width: 430px;
}

.col-featured-b2b > .dottore-mega-menu__heading {
	position: absolute;
	top: -20px;
	left: 26px;
	margin: 0;
	padding: 13px 24px;
	border-radius: 10px;
	background: var(--c-brand-600);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 1.8px;
	box-shadow: 0 10px 24px rgba(0, 102, 94, 0.18);
}

.b2b-intro-text {
	margin: 0 0 20px;
	font-size: 12px;
	line-height: 1.5;
	color: #656d76;
}

.col-featured-b2b .dottore-mega-menu__links {
	display: grid;
	gap: 18px;
}

.col-featured-b2b .dottore-mega-menu__link-item {
	margin: 0;
}

.col-featured-b2b .dottore-mega-menu__section--b2b-item + .dottore-mega-menu__section--b2b-item {
	margin-top: 18px;
}

.col-featured-b2b .dottore-mega-menu__link {
	gap: 14px;
	padding: 13px 15px;
	border: 1px solid #dfe8e4;
	border-radius: 10px;
	background: #fff;
	color: #22323b;
	box-shadow: 0 1px 0 rgba(16, 24, 40, 0.02);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	text-decoration: none;
}

.col-featured-b2b .dottore-mega-menu__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(16, 24, 40, 0.08);
	border-color: #d7e4df;
	text-decoration: none;
}

.col-featured-b2b .dottore-mega-menu__link:focus-visible,
.col-featured-b2b .dottore-mega-menu__link:hover .menu-item-title,
.col-featured-b2b .dottore-mega-menu__link:hover .menu-item-desc,
.col-featured-b2b .dottore-mega-menu__link:focus-visible .menu-item-title,
.col-featured-b2b .dottore-mega-menu__link:focus-visible .menu-item-desc {
	text-decoration: none;
}

.col-featured-b2b .dottore-mega-menu__link i {
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	margin-top: 2px;
	font-size: 24px;
	line-height: 1;
	color: var(--c-brand-600);
}

.col-featured-b2b .menu-item-title {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #143f43;
}

.col-featured-b2b .menu-item-desc {
	font-size: 11px;
	line-height: 1.4;
	color: #7b8794;
}

.col-featured-b2b .dottore-mega-menu__link.dbp-b2b-icon-procedures::before,
.col-featured-b2b .dottore-mega-menu__link.dbp-b2b-icon-partnership::before,
.col-featured-b2b .dottore-mega-menu__link.dbp-b2b-icon-academy::before {
	content: '';
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	margin-top: 2px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 28px 28px;
}

.col-featured-b2b .dottore-mega-menu__link.dbp-b2b-icon-procedures::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M9 5.5h9l5 5V26a1.5 1.5 0 0 1-1.5 1.5h-12A1.5 1.5 0 0 1 8 26V7a1.5 1.5 0 0 1 1-1.414Z' stroke='%23007770' stroke-width='1.8'/%3E%3Cpath d='M18 5.5V11h5' stroke='%23007770' stroke-width='1.8'/%3E%3Cpath d='M11.5 15.5h8M11.5 19.5h8M11.5 23.5h5' stroke='%23007770' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.col-featured-b2b .dottore-mega-menu__link.dbp-b2b-icon-partnership::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M11.25 16c1.933 0 3.5-1.567 3.5-3.5S13.183 9 11.25 9s-3.5 1.567-3.5 3.5 1.567 3.5 3.5 3.5ZM20.75 16c1.933 0 3.5-1.567 3.5-3.5S22.683 9 20.75 9s-3.5 1.567-3.5 3.5 1.567 3.5 3.5 3.5Z' stroke='%23007770' stroke-width='1.8'/%3E%3Cpath d='M6.75 23.25c.92-2.07 2.94-3.5 5.3-3.5 1.53 0 2.91.6 3.95 1.58a5.59 5.59 0 0 1 3.95-1.58c2.36 0 4.38 1.43 5.3 3.5' stroke='%23007770' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M14.4 21.9h3.2' stroke='%23007770' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.col-featured-b2b .dottore-mega-menu__link.dbp-b2b-icon-academy::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='m5.5 12 10.5-4 10.5 4-10.5 4-10.5-4Z' stroke='%23007770' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M9.5 14.5v5.2c0 .5.276.96.717 1.196C11.76 21.72 13.76 22.5 16 22.5c2.24 0 4.24-.78 5.783-1.604a1.36 1.36 0 0 0 .717-1.196v-5.2' stroke='%23007770' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M26.5 12v7' stroke='%23007770' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M26.5 22a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z' fill='%23007770'/%3E%3C/svg%3E");
}

@media (max-width: 1200px) {
	.dottore-mega-menu__sidebar,
	.mega-menu-promo-box,
	.dottore-cosmetologist-box {
		display: none;
	}

	.dottore-mega-menu__col,
	.mega-menu-column {
		margin-right: 1rem;
		padding-right: 1rem;
	}
}

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

.menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.actions-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.12rem;
	padding: 0 0.95rem;
	height: 2.875rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
	transition: background-color var(--dbp-transition-base), border-color var(--dbp-transition-base), box-shadow var(--dbp-transition-base);
}

.actions-pill:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.3);
}

.icon-wrapper {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.icon-wrapper--account {
	min-width: 0;
}

.actions-pill .actions-pill__item,
.actions-pill .dbp-header-cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	min-width: 2.5rem;
	min-height: 2.5rem;
	flex: 0 0 2.5rem;
	aspect-ratio: 1 / 1;
	padding: 0;
	border: 0;
	border-radius: 50%;
	appearance: none;
	-webkit-appearance: none;
	color: #fff;
	background-color: transparent;
	text-decoration: none;
	position: relative;
	opacity: 0.86;
	line-height: 1;
	font: inherit;
	vertical-align: middle;
	transition: transform var(--dbp-transition-fast), opacity var(--dbp-transition-fast), color var(--dbp-transition-fast), background-color var(--dbp-transition-fast);
}

.actions-pill .actions-pill__item--account.has-label {
	width: auto;
	min-width: 0;
	max-width: min(13.75rem, 18vw);
	height: 2.5rem;
	padding: 0 0.82rem 0 0.7rem;
	gap: 0.5rem;
	flex: 0 1 auto;
	border-radius: 999px;
	aspect-ratio: auto;
}

.actions-pill .actions-pill__item--account.is-greeting {
	font-size: 0.73rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-transform: none;
}

.actions-pill .actions-pill__item--account.is-panel,
.actions-pill .actions-pill__item--account.is-b2b {
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.actions-pill__item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.actions-pill__item-label {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.actions-pill .actions-pill__item:hover,
.actions-pill .dbp-header-cart:hover,
.actions-pill button.actions-pill__item:hover {
	background-color: rgba(255, 255, 255, 0.12);
	opacity: 1;
	transform: scale(1.06);
	text-decoration: none;
	color: #fff;
}

.actions-pill .actions-pill__item:focus-visible,
.actions-pill .dbp-header-cart:focus-visible,
.actions-pill button.actions-pill__item:focus-visible {
	opacity: 1;
	outline: none;
	box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.15);
	border-radius: 50%;
}

.actions-pill .actions-pill__item--account.has-label:focus-visible {
	border-radius: 999px;
}

.actions-pill__item svg,
.dbp-header-cart svg {
	width: 1.42rem;
	height: 1.42rem;
	stroke: currentColor;
}

.dbp-header-cart__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1460px) {
	.actions-pill .actions-pill__item--account.has-label {
		max-width: 11.5rem;
		padding-right: 0.72rem;
	}

	.actions-pill .actions-pill__item--account.is-b2b,
	.actions-pill .actions-pill__item--account.is-panel {
		font-size: 0.62rem;
	}
}

.count-badge,
.dbp-header-cart__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.1rem;
	width: 1.1rem;
	height: 1.1rem;
	padding: 0;
	border-radius: 50%;
	background: #e74c3c;
	color: #fff;
	font-weight: 700;
	font-size: 0.58rem;
	line-height: 1;
	border: 2px solid var(--c-brand-600);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	position: absolute;
	top: -0.2rem;
	right: -0.22rem;
}

.search-slide-down {
	position: fixed;
	inset: 0;
	padding: clamp(0.85rem, 2vw, 1.5rem);
	background: rgba(15, 23, 42, 0.42);
	backdrop-filter: blur(10px);
	z-index: 1500;
}

.search-container {
	width: min(100% - 2rem, var(--dbp-container));
	max-width: var(--dbp-container);
	margin: clamp(1.75rem, 6vh, 3.5rem) auto 0;
	padding: 1.35rem;
	border: 1px solid var(--dbp-color-border);
	border-radius: var(--dbp-radius-xl);
	position: relative;
	padding-top: 1.35rem;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--dbp-shadow-lg);
}

.search-header {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 0.9rem;
}

.search-input-wrapper {
	flex: 1 1 auto;
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.3rem 0.6rem 0.3rem 1.1rem;
	border: 1px solid var(--dbp-color-border);
	border-radius: 999px;
	background: #fff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 10px 28px rgba(10, 54, 49, 0.06);
}

.search-input {
	border: 0 !important;
	box-shadow: none !important;
	padding: 0.72rem 0 !important;
	background: transparent !important;
	font-size: 1.04rem;
}

.search-input::-webkit-search-decoration,
.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-results-button,
.search-input::-webkit-search-results-decoration {
	-webkit-appearance: none;
	appearance: none;
	display: none;
}

.search-submit-icon,
.search-clear-icon,
.search-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	box-shadow: none;
	line-height: 1;
	flex: 0 0 2.5rem;
}

.search-submit-icon {
	color: #0d5c46;
}

.search-clear-icon {
	color: #95a5a0;
}

.search-clear-icon[hidden] {
	display: none !important;
}

.search-submit-icon:hover,
.search-clear-icon:hover,
.search-clear-icon:focus-visible,
.search-submit-icon:focus-visible,
.search-close:hover,
.search-close:focus-visible {
	background: rgba(13, 92, 70, 0.06);
	color: #0d5c46;
	outline: none;
}

.search-submit-icon svg,
.search-clear-icon svg,
.search-close svg {
	width: 1.2rem;
	height: 1.2rem;
	stroke: currentColor;
	flex: 0 0 auto;
}

.search-close {
	flex: 0 0 2.5rem;
	width: 2.5rem;
	height: 2.5rem;
	min-width: 2.5rem;
	min-height: 2.5rem;
	padding: 0;
	border: 1px solid color-mix(in srgb, var(--c-brand-600) 20%, var(--dbp-color-border));
	border-radius: 999px;
	background: color-mix(in srgb, var(--c-brand-600) 6%, #fff);
	color: var(--c-brand-700);
	aspect-ratio: 1 / 1;
	box-shadow: 0 4px 12px rgba(0, 102, 94, 0.08);
	transform-origin: center;
	position: relative;
	overflow: hidden;
	appearance: none;
	-webkit-appearance: none;
	vertical-align: middle;
	align-self: center;
	transition: transform var(--dbp-transition-base), box-shadow var(--dbp-transition-base), background-color var(--dbp-transition-base), border-color var(--dbp-transition-base), color var(--dbp-transition-base);
}

.search-close:hover,
.search-close:focus-visible {
	background: color-mix(in srgb, var(--c-brand-600) 10%, #fff);
	border-color: color-mix(in srgb, var(--c-brand-600) 32%, var(--dbp-color-border));
	color: var(--c-brand-700);
	box-shadow: 0 6px 16px rgba(0, 102, 94, 0.1);
	transform: translateY(-1px);
}

.search-close::before,
.search-close::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0.9rem;
	height: 1px;
	border-radius: 999px;
	background: currentColor;
	transform-origin: center;
}

.search-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.search-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.search-close svg {
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.search-popular {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.search-results-area {
	display: grid;
	gap: 1rem;
}

.search-discovery-dropdown[hidden],
.search-discovery-dropdown__section[hidden],
.search-discovery[hidden],
.search-live[hidden],
.search-live__footer[hidden],
.search-discovery__section[hidden] {
	display: none !important;
}

.search-discovery-dropdown {
	position: absolute;
	top: calc(100% + 0.55rem);
	left: 0;
	right: 0;
	display: grid;
	gap: 0.55rem;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(13, 92, 70, 0.08);
	border-radius: 1.15rem;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 18px 34px rgba(10, 54, 49, 0.1);
	z-index: 5;
}

.search-discovery-dropdown__section {
	display: grid;
	gap: 0.4rem;
}

.search-discovery,
.search-live {
	display: grid;
	gap: 1rem;
}

.search-discovery__section {
	display: grid;
	gap: 0.4rem;
}

.search-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.search-section-title {
	margin: 0;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #667d75;
}

.search-section-action {
	display: inline;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent !important;
	color: #7a9088;
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1;
	box-shadow: none !important;
	transform: none !important;
	appearance: none;
	-webkit-appearance: none;
}

.search-section-action:hover,
.search-section-action:focus-visible {
	background: transparent !important;
	border-color: transparent !important;
	box-shadow: none !important;
	color: #7a9088;
	transform: none !important;
	outline: none;
	text-decoration: none;
}

.search-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 0.78rem;
	border: 0;
	border-radius: 999px;
	background: rgba(13, 92, 70, 0.035);
	color: #5d736c;
	font-size: 0.84rem;
	font-weight: 500;
	box-shadow: none;
}

.search-chip--recent {
	background: rgba(13, 92, 70, 0.03);
}

.search-chip:hover,
.search-chip:focus-visible {
	background: rgba(13, 92, 70, 0.06);
	color: #0d5c46;
	text-decoration: none;
	outline: none;
}

.search-recent {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.search-featured-products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.85rem;
}

.search-featured-products .dbp-product-card,
.search-group--products .dbp-product-card {
	height: 100%;
}

.search-feedback {
	padding: 0.9rem 1rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, rgba(243, 247, 245, 0.96) 0%, rgba(251, 253, 252, 0.98) 100%);
	color: #45635c;
	font-weight: 600;
	line-height: 1.5;
}

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

.search-feedback:empty {
	display: none;
}

.search-feedback[data-mode='loading'] {
	background: linear-gradient(135deg, rgba(239, 247, 245, 0.96) 0%, rgba(248, 253, 251, 0.98) 100%);
	color: #0c6b63;
}

.search-feedback[data-mode='error'] {
	background: rgba(255, 244, 241, 0.96);
	color: #a04c3b;
}

.search-feedback[data-mode='empty'] {
	background: rgba(249, 246, 240, 0.98);
	color: #6d6558;
}

.search-live__results {
	display: grid;
	gap: 1rem;
	align-items: start;
}

.search-group--loading {
	pointer-events: none;
}

.search-group__list--loading {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
}

.search-group__list--rows {
	gap: 0.75rem;
}

.search-skeleton-card,
.search-skeleton-row {
	display: grid;
	gap: 0.7rem;
}

.search-skeleton-card {
	padding: 0.9rem;
	border: 1px solid rgba(16, 41, 38, 0.06);
	border-radius: 1.3rem;
	background: rgba(255, 255, 255, 0.96);
}

.search-skeleton-row {
	padding: 0.25rem 0;
}

.search-skeleton {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(13, 92, 70, 0.08);
}

.search-skeleton::after {
	content: '';
	position: absolute;
	inset: 0;
	transform: translateX(-100%);
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.75) 45%, transparent 100%);
	animation: dbp-search-skeleton 1.15s ease-in-out infinite;
}

.search-skeleton--media {
	aspect-ratio: 1 / 1;
	border-radius: 1rem;
}

.search-skeleton--line {
	height: 0.72rem;
}

.search-skeleton--title {
	width: 78%;
	height: 0.88rem;
}

.search-skeleton--subtitle {
	width: 62%;
}

.search-skeleton--price {
	width: 34%;
	height: 0.84rem;
}

.search-skeleton--eyebrow {
	width: 38%;
	height: 0.62rem;
}

.search-skeleton--text {
	width: 74%;
	height: 0.82rem;
}

@keyframes dbp-search-skeleton {
	100% {
		transform: translateX(100%);
	}
}

.search-side-rail {
	display: grid;
	gap: 1rem;
}

.search-products-block {
	display: grid;
	gap: 0.75rem;
}

.search-group {
	display: grid;
	gap: 0.75rem;
	padding: 1rem;
	border: 1px solid rgba(16, 41, 38, 0.08);
	border-radius: 1.3rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 249, 0.96) 100%);
	box-shadow: 0 10px 34px rgba(17, 36, 33, 0.05);
}

.search-group__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.search-group__title {
	margin: 0;
	font-weight: 800;
	letter-spacing: 0.03em;
	font-size: 0.92rem;
	color: #17312b;
}

.search-group__title::before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.45rem;
	height: 1.45rem;
	margin-right: 0.55rem;
	border-radius: 999px;
	background: rgba(12, 107, 99, 0.08);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 0.82rem 0.82rem;
	vertical-align: middle;
	content: '';
}

.search-group__title--products::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230c6b63' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7.5h16'/%3E%3Cpath d='M7 7.5v9.5a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V7.5'/%3E%3Cpath d='M9.5 11h5'/%3E%3C/svg%3E");
}

.search-group__title--categories::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230c6b63' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 7h6v6H5z'/%3E%3Cpath d='M13 7h6v4h-6z'/%3E%3Cpath d='M13 13h6v4h-6z'/%3E%3C/svg%3E");
}

.search-group__title--articles::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230c6b63' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 6.5h10'/%3E%3Cpath d='M7 11.5h10'/%3E%3Cpath d='M7 16.5h6'/%3E%3Cpath d='M5 4.5h14v15H5z'/%3E%3C/svg%3E");
}

.search-group__count {
	color: #789089;
	font-weight: 700;
}

.search-group__list {
	display: grid;
	gap: 0.7rem;
}

.search-products-block .search-group__list {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
}

.search-group__footer {
	display: flex;
	justify-content: center;
	padding-top: 0.35rem;
}

.search-result {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.7rem;
	padding: 0.5rem 0.55rem;
	border-radius: 1rem;
	border: 1px solid transparent;
	background: rgba(255, 255, 255, 0.82);
	overflow: hidden;
	text-decoration: none;
	transition: border-color var(--dbp-transition-fast), background-color var(--dbp-transition-fast), transform var(--dbp-transition-fast), box-shadow var(--dbp-transition-fast);
}

.search-result:hover,
.search-result:focus-visible,
.search-result.is-active {
	border-color: rgba(12, 107, 99, 0.18);
	background: rgba(240, 248, 246, 0.98);
	box-shadow: 0 10px 24px rgba(12, 68, 62, 0.08);
	text-decoration: none;
	outline: none;
	transform: translateY(-1px);
}

.search-result--categories,
.search-result--articles {
	grid-template-columns: 1fr auto;
	align-items: center;
	padding: 0.8rem 0.9rem;
	border-radius: 1.15rem;
	border-color: rgba(16, 41, 38, 0.06);
	background: linear-gradient(180deg, rgba(250, 252, 251, 0.98) 0%, rgba(245, 249, 247, 0.96) 100%);
}

.search-result--articles {
	background: linear-gradient(180deg, rgba(245, 250, 248, 0.98) 0%, rgba(238, 246, 243, 0.96) 100%);
}

.search-result__media {
	overflow: hidden;
	width: 3rem;
	height: 3rem;
	border-radius: 0.85rem;
	background: rgba(243, 246, 244, 0.95);
	box-shadow: inset 0 0 0 1px rgba(16, 41, 38, 0.06);
}

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

.search-result__copy {
	display: grid;
	gap: 0.22rem;
	min-width: 0;
}

.search-result__eyebrow {
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #678078;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.search-result__title {
	color: #17312b;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.22;
	display: -webkit-box;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.search-result__accent {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 1.9rem;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: rgba(12, 107, 99, 0.08);
	color: #0c6b63;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

.search-result__subtitle {
	color: #5d766f;
	font-size: 0.8rem;
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.search-result__meta {
	color: #648079;
	font-size: 0.78rem;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.search-result__price {
	justify-self: end;
	font-weight: 800;
	color: #0c6b63;
	text-align: right;
	white-space: nowrap;
	font-size: 0.95rem;
}

.search-result mark {
	padding: 0 0.1em;
	background: rgba(212, 241, 229, 0.86);
	color: inherit;
	border-radius: 0.18rem;
}

.search-live__footer {
	display: flex;
	justify-content: center;
	padding-top: 0.35rem;
}

@media (min-width: 961px) {
	.search-live__results {
		grid-template-columns: minmax(0, 1.55fr) minmax(18rem, 0.9fr);
	}

	.search-products-block .search-group__list {
		gap: 0.85rem;
	}
}

@media (max-width: 960px) {
	.search-featured-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.search-products-block .search-group__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

@media (max-width: 640px) {
	.search-container {
		width: min(100%, 100%);
		max-width: none;
		margin-top: 0.75rem;
		padding: 1rem;
	}

	.search-discovery-dropdown {
		padding: 0.8rem 0.85rem;
	}

	.search-header {
		gap: 0.55rem;
	}

	.search-input-wrapper {
		padding-left: 0.9rem;
	}

	.search-input {
		font-size: 0.98rem;
	}

	.search-featured-products {
		grid-template-columns: 1fr;
		gap: 0.7rem;
	}

	.search-products-block .search-group__list {
		grid-template-columns: 1fr;
	}

	.search-group__list--loading {
		grid-template-columns: 1fr;
	}
}

.search-see-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	min-width: min(100%, 18rem);
	padding: 0.82rem 1.15rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #0b7269 0%, #085d57 100%);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 14px 30px rgba(6, 68, 63, 0.18);
}

.search-see-all:hover,
.search-see-all:focus-visible {
	color: #fff;
	text-decoration: none;
	filter: brightness(1.03);
	outline: none;
}

.dbp-mobile-bottom-nav {
	display: none;
	overflow: visible;
}

.dbp-mobile-bottom-nav__inner {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: end;
	gap: 0.15rem;
	padding: 0.04rem 0.45rem calc(0.02rem + env(safe-area-inset-bottom));
	border: 0;
	border-radius: 1.25rem 1.25rem 0 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(16px);
	box-shadow: 0 -8px 24px rgba(12, 34, 33, 0.08);
	overflow: visible;
}

.dbp-mobile-bottom-nav__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.18rem;
	min-width: 0;
	min-height: 0;
	height: auto;
	margin: 0;
	padding: 0.08rem 0 0.16rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #0b6d66;
	font: inherit;
	line-height: 1;
	text-decoration: none;
	appearance: none;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
	cursor: pointer;
}

button.dbp-mobile-bottom-nav__item,
button.dbp-mobile-bottom-nav__item:hover,
button.dbp-mobile-bottom-nav__item:focus-visible,
button.dbp-mobile-bottom-nav__item:active {
	min-height: 0;
	height: auto;
	padding: 0.08rem 0 0.16rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	transform: none;
}

.dbp-mobile-bottom-nav__item-icon-shell {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 999px;
	background: transparent;
	border: 1px solid transparent;
	transition: background-color var(--dbp-transition-fast), border-color var(--dbp-transition-fast), box-shadow var(--dbp-transition-fast), opacity var(--dbp-transition-fast);
	box-shadow: none;
}

.dbp-mobile-bottom-nav__item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.2rem;
	height: 1.2rem;
}

.dbp-mobile-bottom-nav__item-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	stroke: currentColor;
}

.dbp-mobile-bottom-nav__item-label {
	max-width: 100%;
	font-size: 0.62rem;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0.01em;
	text-align: center;
	color: rgba(11, 109, 102, 0.96);
	text-wrap: balance;
}

.dbp-mobile-bottom-nav__count {
	position: absolute;
	top: -0.12rem;
	right: -0.08rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.1rem;
	width: 1.1rem;
	height: 1.1rem;
	padding: 0;
	border-radius: 999px;
	background: #e74c3c;
	color: #fff;
	font-size: 0.58rem;
	font-weight: 700;
	line-height: 1;
	border: 2px solid var(--c-brand-600);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dbp-mobile-bottom-nav__count.is-empty,
.count-badge.is-empty {
	display: none;
}

.dbp-mobile-bottom-nav__item:hover,
.dbp-mobile-bottom-nav__item:focus-visible {
	text-decoration: none;
	color: #0b6d66;
	outline: none;
}

.dbp-mobile-bottom-nav__item:hover .dbp-mobile-bottom-nav__item-icon-shell,
.dbp-mobile-bottom-nav__item:focus-visible .dbp-mobile-bottom-nav__item-icon-shell,
.dbp-mobile-bottom-nav__item:active .dbp-mobile-bottom-nav__item-icon-shell {
	background: rgba(11, 109, 102, 0.06);
	border-color: rgba(11, 109, 102, 0.08);
	box-shadow: none;
	opacity: 1;
}

.dbp-mobile-bottom-nav__item[data-offcanvas-open][aria-expanded="true"] .dbp-mobile-bottom-nav__item-icon-shell,
.dbp-mobile-bottom-nav__item[data-search-open][aria-expanded="true"] .dbp-mobile-bottom-nav__item-icon-shell {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}

.dbp-mobile-bottom-nav__item--cart {
	margin-top: 0;
	transform: translateY(-0.8rem);
	align-self: start;
	justify-content: flex-start;
	gap: 0;
	padding: 0;
	z-index: 2;
}

.dbp-mobile-bottom-nav__item--cart .dbp-mobile-bottom-nav__item-icon-shell {
	width: 4.1rem;
	height: 4.1rem;
	background: linear-gradient(180deg, #0c7b72 0%, #08635c 100%);
	border: 4px solid rgba(255, 255, 255, 1);
	box-shadow: none;
}

.dbp-mobile-bottom-nav__item--cart .dbp-mobile-bottom-nav__item-icon {
	width: 1.6rem;
	height: 1.6rem;
}

.dbp-mobile-bottom-nav__item--cart,
.dbp-mobile-bottom-nav__item--cart:hover,
.dbp-mobile-bottom-nav__item--cart:focus-visible {
	color: #fff;
}

.dbp-mobile-bottom-nav__item--cart .dbp-mobile-bottom-nav__count {
	top: 0.15rem;
	right: 0.1rem;
}

.dbp-mobile-bottom-nav__item--cart .dbp-mobile-bottom-nav__item-label {
	display: none;
}

.dbp-mobile-bottom-nav__item--cart:hover .dbp-mobile-bottom-nav__item-icon-shell,
.dbp-mobile-bottom-nav__item--cart:focus-visible .dbp-mobile-bottom-nav__item-icon-shell,
.dbp-mobile-bottom-nav__item--cart:active .dbp-mobile-bottom-nav__item-icon-shell {
	background: linear-gradient(180deg, #11877d 0%, #0a6c64 100%);
	border-color: rgba(255, 255, 255, 1);
	box-shadow: none;
	opacity: 1;
}

body.dbp-scroll-lock {
	overflow: hidden;
}

@media (max-width: 960px) {
	.hide-mobile { display: none !important; }
	.show-mobile { display: inline-flex !important; }

	.site-header,
	body.admin-bar .site-header {
		position: relative;
		top: auto;
	}

	.top-bar {
		height: auto;
		padding-block: 0.55rem;
	}

	.top-bar__inner,
	.top-bar__left {
		justify-content: center;
	}

	.top-bar__message .rotator-item {
		white-space: nowrap;
	}

	.top-bar__message.is-marquee {
		height: 1.5rem;
		mask-image: none;
	}

	.top-bar__message.is-marquee .rotator-item {
		white-space: nowrap;
	}

	.top-bar__marquee-set {
		gap: 1.75rem;
		padding-right: 1.75rem;
	}

	.dbp-site-header__inner {
		gap: 1rem;
	}

	.main-navigation {
		justify-content: flex-end;
	}

	.main-navigation > .menu-toggle.show-mobile {
		margin-left: auto;
	}

	body.dbp-has-mobile-bottom-nav {
		padding-bottom: calc(4rem + env(safe-area-inset-bottom));
	}

	.dbp-has-mobile-bottom-nav .dbp-notices {
		bottom: calc(4rem + env(safe-area-inset-bottom));
	}

	.dbp-mobile-bottom-nav {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		transform: none;
		width: 100%;
		z-index: 1300;
	}
}

@media (max-width: 767px) {
	.site-header {
		top: auto;
	}

	.search-slide-down {
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.search-container {
		margin-top: 1rem;
		padding: 1rem;
		display: flex;
		flex-direction: column;
		max-height: calc(100dvh - 2rem);
	}

	.search-header {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 0.65rem;
	}

	.search-input-wrapper {
		width: 100%;
		min-width: 0;
	}

	.search-close {
		justify-self: end;
		align-self: start;
		width: 2.5rem;
		height: 2.5rem;
		min-width: 2.5rem;
		min-height: 2.5rem;
		padding: 0;
	}

	.search-results-area {
		flex: 1 1 auto;
		min-height: 0;
		overflow-y: auto;
		overscroll-behavior: contain;
		padding-right: 0.1rem;
	}

	.search-group {
		padding: 0.85rem;
		border-radius: 1.05rem;
	}

	.search-live__results {
		grid-template-columns: 1fr;
	}

	.search-side-rail {
		gap: 0.85rem;
		grid-template-columns: 1fr;
	}

	.search-featured-products {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}

	.search-products-block .search-group__list,
	.search-group__list--loading {
		grid-template-columns: 1fr;
	}

	.search-featured-products .dbp-product-card__inner,
	.search-products-block .dbp-product-card__inner {
		display: grid;
		grid-template-columns: minmax(6.25rem, 7rem) minmax(0, 1fr);
		align-items: start;
		gap: 0.8rem;
		padding: 0.75rem;
		border-radius: 1.1rem;
	}

	.search-featured-products .dbp-product-card__media-area,
	.search-products-block .dbp-product-card__media-area {
		grid-column: 1;
		grid-row: 1 / span 2;
	}

	.search-featured-products .dbp-product-card__media-link,
	.search-products-block .dbp-product-card__media-link {
		height: 100%;
	}

	.search-featured-products .dbp-product-card__media-frame,
	.search-products-block .dbp-product-card__media-frame {
		min-height: 6.25rem;
		border-radius: 1rem;
	}

	.search-featured-products .dbp-product-card__body,
	.search-products-block .dbp-product-card__body {
		grid-column: 2;
		padding: 0;
		gap: 0.55rem;
	}

	.search-featured-products .dbp-product-card__subtitle,
	.search-products-block .dbp-product-card__subtitle {
		font-size: 0.76rem;
		display: -webkit-box;
		line-clamp: 3;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.search-featured-products .dbp-product-card__title,
	.search-products-block .dbp-product-card__title {
		font-size: 0.98rem;
		line-height: 1.28;
		display: -webkit-box;
		line-clamp: 2;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.search-featured-products .dbp-product-card__footer,
	.search-products-block .dbp-product-card__footer {
		margin-top: 0;
		min-height: 0;
		gap: 0.55rem;
	}

	.search-featured-products .dbp-product-card__metaRow,
	.search-products-block .dbp-product-card__metaRow {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.35rem;
		min-height: 0;
	}

	.search-featured-products .dbp-product-card__rating-row,
	.search-products-block .dbp-product-card__rating-row {
		gap: 0.25rem 0.45rem;
	}

	.search-featured-products .dbp-product-card__price,
	.search-products-block .dbp-product-card__price {
		justify-content: flex-start;
		text-align: left;
	}

	.search-featured-products .dbp-product-card__actions,
	.search-products-block .dbp-product-card__actions {
		position: static;
		inset: auto;
		opacity: 1;
		transform: none;
		pointer-events: auto;
	}

	.search-featured-products .dbp-product-card__cta,
	.search-products-block .dbp-product-card__cta {
		min-height: 2.55rem;
		padding: 0.68rem 0.85rem;
		font-size: 0.69rem;
		letter-spacing: 0.05em;
	}

	.search-featured-products .dbp-product-card__wishlist,
	.search-products-block .dbp-product-card__wishlist,
	.search-featured-products .dbp-product-card__actions,
	.search-products-block .dbp-product-card__actions {
		display: none;
	}

	.search-featured-products .dbp-product-card__footer,
	.search-products-block .dbp-product-card__footer {
		gap: 0.3rem;
	}

	.search-skeleton-card {
		grid-template-columns: minmax(6.25rem, 7rem) minmax(0, 1fr);
		align-items: start;
	}

	.search-skeleton--media {
		grid-column: 1;
		grid-row: 1 / span 3;
		aspect-ratio: auto;
		min-height: 6.25rem;
		border-radius: 1rem;
	}

	.search-skeleton--title,
	.search-skeleton--subtitle,
	.search-skeleton--price {
		grid-column: 2;
	}

	.search-result--articles,
	.search-result--categories {
		grid-template-columns: 1fr;
		gap: 0.55rem;
		padding: 0.85rem;
	}

	.search-result--articles .search-result__copy,
	.search-result--categories .search-result__copy {
		gap: 0.3rem;
	}

	.search-result--articles .search-result__eyebrow,
	.search-result--categories .search-result__eyebrow {
		font-size: 0.72rem;
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
	}

	.search-result--articles .search-result__title,
	.search-result--categories .search-result__title {
		font-size: 1rem;
		line-height: 1.3;
		line-clamp: 2;
		-webkit-line-clamp: 2;
	}

	.search-result--articles .search-result__accent,
	.search-result--categories .search-result__accent {
		justify-self: start;
		min-height: 1.8rem;
		padding: 0.32rem 0.72rem;
		font-size: 0.68rem;
	}

	.search-result__media {
		width: 4rem;
		height: 4rem;
	}

	.search-result__price {
		justify-self: start;
		text-align: left;
	}

	.search-live__footer {
		justify-content: stretch;
	}

	.search-see-all {
		justify-content: center;
		width: 100%;
	}

	.dbp-mobile-bottom-nav {
		width: 100%;
	}

	.dbp-mobile-bottom-nav__inner {
		padding: 0.02rem 0.3rem calc(0.08rem + env(safe-area-inset-bottom));
	}

	.dbp-mobile-bottom-nav__item-label {
		font-size: 0.58rem;
	}

	.dbp-mobile-bottom-nav__item-icon-shell {
		width: 2.3rem;
		height: 2.3rem;
	}

	.dbp-mobile-bottom-nav__item--cart {
		transform: translateY(-0.6rem);
	}

	.dbp-mobile-bottom-nav__item--cart .dbp-mobile-bottom-nav__item-icon-shell {
		width: 3.8rem;
		height: 3.8rem;
	}
}

/* Sticky mobile product bar (product pages, above the bottom nav). Shown by
   single-product.js only while the real buy button is scrolled out of view. */
.dbp-mobile-bottom-nav__product-extension {
	display: none;
}

@media (max-width: 960px) {
	.dbp-mobile-bottom-nav--product.has-product-bar-visible .dbp-mobile-bottom-nav__product-extension {
		display: block;
	}

	.dbp-mobile-bottom-nav__product-extension {
		position: relative;
		padding: 0.9rem 0.6rem 0.45rem;
	}

	.dbp-mobile-product-bar__toggle {
		position: absolute;
		top: -0.2rem;
		left: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 2.2rem;
		height: 2.2rem;
		padding: 0;
		border: 0;
		border-radius: 999px;
		background: #ffffff;
		color: var(--dbp-color-accent);
		box-shadow: 0 4px 14px rgba(12, 34, 33, 0.14);
		transform: translateX(-50%);
		cursor: pointer;
	}

	.dbp-mobile-product-bar__toggle svg {
		width: 1.1rem;
		height: 1.1rem;
		transition: transform 0.2s ease;
	}

	.is-product-bar-collapsed .dbp-mobile-product-bar__toggle svg {
		transform: rotate(180deg);
	}

	.dbp-mobile-product-bar {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		padding: 0.65rem 0.85rem;
		border-radius: 1rem;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(16px);
		box-shadow: 0 -8px 24px rgba(12, 34, 33, 0.08), 0 8px 24px rgba(12, 34, 33, 0.08);
	}

	.is-product-bar-collapsed .dbp-mobile-product-bar {
		display: none;
	}

	.dbp-mobile-product-bar__content {
		flex: 1 1 auto;
		min-width: 0;
	}

	.dbp-mobile-product-bar__title {
		margin: 0;
		font-size: 0.8rem;
		font-weight: 700;
		line-height: 1.25;
		color: var(--dbp-color-text);
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.dbp-mobile-product-bar__meta {
		display: flex;
		align-items: baseline;
		gap: 0.5rem;
		margin-top: 0.1rem;
		min-width: 0;
	}

	.dbp-mobile-product-bar__price {
		font-size: 0.95rem;
		font-weight: 700;
		color: var(--dbp-color-accent-strong);
		white-space: nowrap;
	}

	.dbp-mobile-product-bar__price del {
		margin-right: 0.25rem;
		font-size: 0.75rem;
		font-weight: 500;
		color: var(--dbp-color-muted);
	}

	.dbp-mobile-product-bar__price ins {
		text-decoration: none;
	}

	.dbp-mobile-product-bar__stock {
		margin: 0;
		font-size: 0.72rem;
		color: var(--dbp-color-muted);
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.dbp-mobile-product-bar__stock.is-hidden {
		display: none;
	}

	.dbp-mobile-product-bar__cta {
		flex: 0 0 auto;
		min-height: 2.75rem;
		padding: 0 1.1rem;
		border: 0;
		border-radius: 999px;
		background: var(--dbp-color-accent);
		color: #ffffff;
		font: inherit;
		font-size: 0.85rem;
		font-weight: 700;
		cursor: pointer;
	}

	.dbp-mobile-product-bar__cta:disabled,
	.dbp-mobile-product-bar.is-disabled .dbp-mobile-product-bar__cta {
		opacity: 0.55;
		cursor: not-allowed;
	}

	.dbp-mobile-product-bar__cta.is-loading {
		opacity: 0.7;
		pointer-events: none;
	}
}
.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(17, 24, 39, 0.38);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity var(--dbp-transition-base), visibility var(--dbp-transition-base);
	z-index: 1450;
}

.mobile-menu-panel {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	height: 100dvh;
	width: min(88vw, 26rem);
	background: #fff;
	transform: translateX(-100%);
	transition: transform 0.36s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-shadow: 12px 0 40px rgba(0, 0, 0, 0.12);
	z-index: 1451;
	display: flex;
	flex-direction: column;
}

body.mobile-menu-open .mobile-menu-overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.mobile-menu-open .mobile-menu-panel {
	transform: translateX(0);
}

.mobile-menu-header,
.mobile-menu-footer {
	padding: 1rem 1.125rem;
	border-bottom: 1px solid var(--dbp-color-border);
}

.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.mobile-menu-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	min-width: 2.5rem;
	min-height: 2.5rem;
	flex: 0 0 2.5rem;
	aspect-ratio: 1 / 1;
	padding: 0;
	border: 1px solid color-mix(in srgb, var(--c-brand-600) 20%, var(--dbp-color-border));
	border-radius: 999px;
	background: color-mix(in srgb, var(--c-brand-600) 6%, #fff);
	color: var(--c-brand-700);
	box-shadow: 0 4px 12px rgba(0, 102, 94, 0.08);
	transform-origin: center;
	position: relative;
	overflow: hidden;
	appearance: none;
	-webkit-appearance: none;
	line-height: 1;
	vertical-align: middle;
	align-self: center;
	transition: transform var(--dbp-transition-base), box-shadow var(--dbp-transition-base), background-color var(--dbp-transition-base), border-color var(--dbp-transition-base), color var(--dbp-transition-base);
}

.mobile-menu-close::before,
.mobile-menu-close::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0.9rem;
	height: 1px;
	border-radius: 999px;
	background: currentColor;
	transform-origin: center;
}

.mobile-menu-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
	background: color-mix(in srgb, var(--c-brand-600) 10%, #fff);
	border-color: color-mix(in srgb, var(--c-brand-600) 32%, var(--dbp-color-border));
	box-shadow: 0 6px 16px rgba(0, 102, 94, 0.1);
	transform: translateY(-1px);
}

.mobile-menu-close svg {
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

body.mobile-menu-open .mobile-menu-close {
	animation: dbp-mobile-menu-close-in 0.34s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.mm-logo .site-branding,
.mm-logo .site-logo {
	display: flex;
	align-items: center;
}

.mm-logo img,
.mm-logo .custom-logo {
	max-height: 2.5rem;
	width: auto;
	filter: brightness(0) saturate(100%) invert(18%) sepia(63%) saturate(1486%) hue-rotate(138deg) brightness(92%) contrast(104%);
	transition: filter var(--dbp-transition-base), transform var(--dbp-transition-base);
}

@keyframes dbp-mobile-menu-close-in {
	from {
		opacity: 0;
		transform: translateY(-6px) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.mobile-menu-body {
	flex: 1;
	overflow: auto;
	padding: 0.5rem 0;
	scroll-behavior: smooth;
}

.mobile-accordion-menu,
.mobile-accordion-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-accordion-menu li {
	position: relative;
}

.mobile-accordion-menu > li > a,
.mobile-accordion-menu .sub-menu > li > a,
.mobile-accordion-menu .sub-menu .sub-menu > li > a {
	display: block;
	padding: 0.88rem 1rem;
	color: var(--dbp-color-heading);
	text-decoration: none;
	border-radius: var(--dbp-radius-lg);
	line-height: 1.35;
}

.mobile-accordion-menu > li {
	--mm-toggle-offset: 1.42rem;
	border-top: 1px solid color-mix(in srgb, var(--dbp-color-border) 72%, #ffffff);
}

.mobile-accordion-menu > li:first-child {
	border-top: 0;
}

.mobile-accordion-menu > li:last-child {
	border-bottom: 1px solid color-mix(in srgb, var(--dbp-color-border) 72%, #ffffff);
}

.mobile-accordion-menu .sub-menu > li {
	--mm-toggle-offset: 1.22rem;
}

.mobile-accordion-menu .sub-menu .sub-menu > li {
	--mm-toggle-offset: 1.14rem;
}

.mobile-accordion-menu > li > a {
	font-size: 0.81rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

.mobile-accordion-menu .menu-item-has-children > a {
	padding-right: 3.5rem;
}

.mobile-accordion-menu a:hover,
.mobile-accordion-menu a:focus-visible {
	background: color-mix(in srgb, var(--dbp-color-accent-soft) 50%, #ffffff);
}

.mm-submenu-toggle {
	position: absolute;
	right: 1rem;
	top: var(--mm-toggle-offset, 1.42rem);
	display: block;
	width: 1rem;
	height: 1rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: color-mix(in srgb, var(--c-brand-700) 80%, var(--dbp-color-heading));
	padding: 0;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
	outline: none;
	font-size: 0;
	line-height: 1;
	-webkit-tap-highlight-color: transparent;
	pointer-events: none;
	touch-action: none;
	user-select: none;
	transform: translateY(-50%);
	margin: 0;
	transition: color var(--dbp-transition-base);
}

.mm-submenu-toggle:hover,
.mm-submenu-toggle:focus-visible {
	background: transparent;
	color: var(--c-brand-700);
	box-shadow: none;
}

.mm-submenu-toggle span {
	position: absolute;
	top: 50%;
	width: 0.52rem;
	height: 1.5px;
	border-radius: 999px;
	background: currentColor;
	transition: transform var(--dbp-transition-base), background-color var(--dbp-transition-base);
}

.mm-submenu-toggle span:first-child {
	left: calc(50% - 0.15rem);
	transform: translate(-50%, -50%) rotate(45deg);
}

.mm-submenu-toggle span:last-child {
	left: calc(50% + 0.15rem);
	transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-accordion-menu li.is-open > .mm-submenu-toggle {
	background: transparent;
}

.mobile-accordion-menu li.is-open > .mm-submenu-toggle span:first-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-accordion-menu li.is-open > .mm-submenu-toggle span:last-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-accordion-menu .sub-menu {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-2px);
	transition: max-height var(--dbp-transition-base), opacity var(--dbp-transition-fast), transform var(--dbp-transition-fast);
	padding: 0 0.5rem;
}

.mobile-accordion-menu li.is-open > .sub-menu {
	opacity: 1;
	transform: translateY(0);
}

.mobile-accordion-menu .sub-menu a {
	padding: 0.7rem 1rem 0.7rem 1.25rem;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 600;
	color: var(--dbp-color-text);
}

.mobile-accordion-menu .sub-menu > li > a {
	font-size: 0.765rem;
	line-height: 1.45;
}

.mobile-accordion-menu .sub-menu .sub-menu > li > a {
	padding-left: 1.5rem;
	font-size: 0.72rem;
	font-weight: 500;
	color: color-mix(in srgb, var(--dbp-color-text) 82%, var(--dbp-color-heading));
}

.mobile-menu-footer {
	margin-top: auto;
	display: grid;
	gap: 0.7rem;
	border-bottom: 0;
	border-top: 1px solid var(--dbp-color-border);
	background: var(--dbp-color-surface-alt);
}

.mm-b2b-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-width: 0;
	min-height: 2.625rem;
	padding: 0.68rem 0.9rem;
	border-radius: 999px;
	background: var(--dbp-color-heading);
	color: #fff;
	text-decoration: none;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	line-height: 1.15;
	text-align: center;
}

.mm-b2b-btn.is-greeting {
	text-transform: none;
	letter-spacing: 0.01em;
	font-size: 0.8rem;
}

.mm-b2b-btn.has-long-label {
	font-size: 0.72rem;
}

.mm-b2b-btn__text {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mm-divider {
	height: 1px;
	background: var(--dbp-color-border);
}

.mm-section-title {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--dbp-color-muted);
}

.mm-contact-grid {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0.5rem;
}

.mm-contact-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 0;
	gap: 0.42rem;
	min-width: 0;
	padding: 0.58rem 0.62rem;
	border: 1px solid color-mix(in srgb, var(--c-brand-600) 16%, var(--dbp-color-border));
	border-radius: 14px;
	background: #fff;
	color: var(--c-brand-700);
	text-decoration: none;
	font-size: 0.74rem;
	font-weight: 800;
	line-height: 1.05;
	box-shadow: 0 4px 12px rgba(0, 102, 94, 0.06);
	transition: transform var(--dbp-transition-base), box-shadow var(--dbp-transition-base), border-color var(--dbp-transition-base), background-color var(--dbp-transition-base), color var(--dbp-transition-base);
}

.mm-contact-item:hover,
.mm-contact-item:focus-visible {
	background: color-mix(in srgb, var(--c-brand-600) 6%, #fff);
	border-color: color-mix(in srgb, var(--c-brand-600) 28%, var(--dbp-color-border));
	box-shadow: 0 8px 18px rgba(0, 102, 94, 0.1);
	transform: translateY(-1px);
	text-decoration: none;
}

.mm-contact-item > span:first-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	flex: 0 0 1rem;
	color: var(--c-brand-600);
}

.mm-contact-item > span:first-child.dashicons {
	font-size: 0.95rem;
	line-height: 1;
}

.mm-contact-item > span:last-child {
	min-width: 0;
	white-space: nowrap;
	text-align: center;
}

.mm-b2b-btn svg,
.mm-contact-item svg {
	width: 0.95rem;
	height: 0.95rem;
}
.site-footer {
	margin-top: 4rem;
	background: linear-gradient(180deg, #0a3f3b 0%, #072e2b 100%);
	color: rgba(255, 255, 255, 0.86);
	overflow: clip;
}

.site-footer a {
	color: inherit;
}

.dbp-footer-newsletter {
	display: grid;
	grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
	min-height: 420px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: var(--c-brand-600);
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

.dbp-footer-newsletter__visual {
	min-height: 100%;
	position: relative;
	overflow: hidden;
	z-index: 0;
}

.dbp-footer-newsletter__visual-picture,
.dbp-footer-newsletter__visual-image {
	display: block;

	/* Keep newsletter media as a non-layout-affecting cover layer. */
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.dbp-footer-newsletter__visual-image {
	object-fit: cover;
	object-position: center;
}

.dbp-footer-newsletter__visual::after {
	content: none;
}

.dbp-footer-newsletter__content {
	display: flex;
	align-items: center;
	padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 4vw, 4.75rem);
	position: relative;
	z-index: 1;
	background: transparent;
}

.dbp-footer-newsletter__inner {
	width: min(100%, 640px);
}

.dbp-footer-newsletter__eyebrow {
	display: inline-block;
	margin-bottom: 1rem;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: rgba(214, 236, 232, 0.9);
}

.dbp-footer-newsletter__title {
	margin: 0;
	padding-bottom: 0.45rem;
	border-bottom: 3px solid #d7ab35;
	font-size: clamp(1.9rem, 3.2vw, 2.7rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: #fff;
}

.dbp-footer-newsletter__description {
	margin-top: 0.85rem;
	max-width: 42rem;
	font-size: 0.92rem;
	font-weight: 300;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.84);
}

.dbp-footer-newsletter__description a,
.dbp-footer-newsletter__consent-text a {
	color: #fff;
	font-weight: 500;
	text-decoration-line: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 0.16em;
	text-decoration-color: rgba(255, 255, 255, 0.72);
	text-decoration-skip-ink: auto;
}

.dbp-footer-newsletter__description a:hover,
.dbp-footer-newsletter__description a:focus-visible,
.dbp-footer-newsletter__consent-text a:hover,
.dbp-footer-newsletter__consent-text a:focus-visible {
	text-decoration-color: #ffffff;
	text-decoration-thickness: 2px;
}

.dbp-footer-newsletter__form {
	margin-top: 1.9rem;
	max-width: 40rem;
}

.dbp-footer-newsletter__message {
	position: relative;
	overflow: hidden;
	margin-bottom: 1rem;
	padding: 1rem 1.1rem 1rem 3.25rem;
	border: 1px solid transparent;
	border-radius: calc(var(--dbp-radius-lg) + 0.1rem);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.55;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
	backdrop-filter: blur(10px);
}

.dbp-footer-newsletter__message::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 1rem;
	width: 1.55rem;
	height: 1.55rem;
	border-radius: 999px;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.dbp-footer-newsletter__message::after {
	position: absolute;
	top: 50%;
	left: 1.47rem;
	transform: translateY(-54%);
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1;
}

.dbp-footer-newsletter__message.is-success,
.dbp-notice.is-success {
	background: linear-gradient(135deg, color-mix(in srgb, var(--dbp-color-success-bg) 78%, #ffffff), rgba(255, 255, 255, 0.98));
	border-color: color-mix(in srgb, var(--dbp-color-success) 24%, #ffffff);
	color: #1d6b47;
}

.dbp-footer-newsletter__message.is-success::after {
	content: '✓';
	color: #1d6b47;
}

.dbp-footer-newsletter__message.is-error,
.dbp-notice.is-error {
	background: linear-gradient(135deg, color-mix(in srgb, var(--dbp-color-error-bg) 82%, #ffffff), rgba(255, 255, 255, 0.98));
	border-color: color-mix(in srgb, var(--dbp-color-error) 24%, #ffffff);
	color: #a33a34;
}

.dbp-footer-newsletter__message.is-error::after {
	content: '!';
	color: #a33a34;
}

.dbp-footer-newsletter__message.is-info,
.dbp-notice.is-info {
	background: linear-gradient(135deg, color-mix(in srgb, #dff4f2 88%, #ffffff), rgba(255, 255, 255, 0.98));
	border-color: color-mix(in srgb, var(--c-brand-600) 20%, #ffffff);
	color: #0d4e57;
}

.dbp-footer-newsletter__message.is-info::after {
	content: 'i';
	color: var(--c-brand-700);
}

.dbp-notice.is-warning {
	background: linear-gradient(135deg, color-mix(in srgb, var(--dbp-color-warning-bg) 82%, #ffffff), rgba(255, 255, 255, 0.98));
	border-color: color-mix(in srgb, #c98900 22%, #ffffff);
	color: #8a5a00;
}

.dbp-footer-newsletter__message.is-warning::after {
	content: '!';
	color: #8a5a00;
}

.dbp-footer-newsletter__input-row {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.dbp-footer-newsletter__input-row:focus-within {
	border-color: rgba(255, 255, 255, 0.9);
}

.dbp-footer-newsletter__input-row input {
	padding: 0.15rem 0;
	min-height: auto;
	background: transparent !important;
	background-color: transparent !important;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: #fff;
	caret-color: #fff;
	font-size: 0.98rem;
	font-weight: 300;
	letter-spacing: -0.01em;
	appearance: none;
}

.dbp-footer-newsletter__input-row input::placeholder {
	color: rgba(255, 255, 255, 0.5);
	font-weight: 300;
}

.dbp-footer-newsletter__input-row input:focus {
	outline: 0;
	background: transparent !important;
	background-color: transparent !important;
	border: 0;
	box-shadow: none;
}

.dbp-footer-newsletter__input-row input:-webkit-autofill,
.dbp-footer-newsletter__input-row input:-webkit-autofill:hover,
.dbp-footer-newsletter__input-row input:-webkit-autofill:focus,
.dbp-footer-newsletter__input-row input:-webkit-autofill:active {
	-webkit-text-fill-color: #fff;
	caret-color: #fff;
	transition: background-color 9999s ease-in-out 0s;
	-webkit-box-shadow: 0 0 0 1000px var(--c-brand-600) inset;
	box-shadow: 0 0 0 1000px var(--c-brand-600) inset;
	border-radius: 0;
}

.dbp-footer-newsletter__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #fff;
	transition: transform var(--dbp-transition-base), opacity var(--dbp-transition-base);
}

.dbp-footer-newsletter__submit .dashicons {
	font-size: 1.9rem;
	width: 1.9rem;
	height: 1.9rem;
}

.dbp-footer-newsletter__submit:hover,
.dbp-footer-newsletter__submit:focus-visible {
	transform: translateX(3px);
	opacity: 0.86;
}

.dbp-footer-newsletter__form.is-loading .dbp-footer-newsletter__submit {
	opacity: 0.7;
	pointer-events: none;
}

.dbp-footer-newsletter__consent {
	display: grid;
	grid-template-columns: auto auto 1fr;
	gap: 0.75rem;
	align-items: start;
	margin-top: 1.15rem;
	font-size: 0.8rem;
	font-weight: 300;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.82);
	cursor: pointer;
}

.dbp-footer-newsletter__consent input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.dbp-footer-newsletter__consent-box {
	width: 1rem;
	height: 1rem;
	margin-top: 0.2rem;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.02);
	position: relative;
}

.dbp-footer-newsletter__consent input:checked + .dbp-footer-newsletter__consent-box::after {
	content: '';
	position: absolute;
	left: 0.28rem;
	top: 0.08rem;
	width: 0.28rem;
	height: 0.56rem;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.dbp-footer-main {
	padding: clamp(3rem, 5vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.dbp-footer-main__grid {
	display: grid;
	width: min(100% - 2rem, var(--dbp-container));
	margin-inline: auto;
	grid-template-columns: minmax(220px, 0.92fr) minmax(0, 1.95fr) minmax(220px, 0.62fr);
	gap: clamp(0.9rem, 1.8vw, 1.5rem);
}

.dbp-footer-main__brand {
	display: grid;
	gap: 1rem;
}

.dbp-footer-main__logo img,
.dbp-footer-main__logo svg {
	max-width: 150px;
	height: auto;
	filter: brightness(0) invert(1);
}

.dbp-footer-main__logo a {
	text-decoration: none;
}

.dbp-footer-main__logo-text {
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
}

.dbp-footer-main__company {
	display: grid;
	gap: 0.2rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.74);
}

.dbp-footer-main__company p {
	margin: 0;
}

.dbp-footer-main__company-name {
	font-weight: 600;
	font-size: 0.96rem;
	color: #fff;
}

.dbp-footer-main__made-in {
	margin-top: 0.35rem !important;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

.dbp-footer-main__contact {
	display: grid;
	gap: 0.5rem;
}

.dbp-footer-main__contact a {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	width: fit-content;
	padding: 0.45rem 0.7rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	text-decoration: none;
	font-size: 0.9rem;
	transition: background var(--dbp-transition-base), transform var(--dbp-transition-base);
}

.dbp-footer-main__contact a:hover,
.dbp-footer-main__contact a:focus-visible,
.dbp-footer-main__socials a:hover,
.dbp-footer-main__socials a:focus-visible {
	background: rgba(255, 255, 255, 0.13);
	transform: translateY(-1px);
}

.dbp-footer-main__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.dbp-footer-main__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.55rem;
	height: 2.55rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	transition: background var(--dbp-transition-base), transform var(--dbp-transition-base);
}

.dbp-footer-main__socials svg {
	width: 1.15rem;
	height: 1.15rem;
}

.dbp-footer-main__menus {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 2rem);
}

.dbp-footer__menu-title {
	margin: 0 0 1rem;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
}

.dbp-footer__accordion-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.dbp-footer__accordion-toggle:hover,
.dbp-footer__accordion-toggle:focus-visible {
	background: transparent;
	color: inherit;
	box-shadow: none;
	outline: none;
	transform: none;
}

.dbp-footer__accordion-toggle .dashicons {
	display: none;
	transition: transform var(--dbp-transition-base);
}

.dbp-footer__menu {
	display: grid;
	gap: 0.72rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dbp-footer__menu a {
	color: rgba(255, 255, 255, 0.74);
	text-decoration: none;
	font-size: 0.93rem;
	line-height: 1.55;
	transition: color var(--dbp-transition-base), transform var(--dbp-transition-base);
}

.dbp-footer__menu a:hover,
.dbp-footer__menu a:focus-visible {
	color: #fff;
	transform: translateX(3px);
}

.dbp-footer-main__aside {
	display: grid;
	gap: 1.2rem;
	min-width: 0;
	align-content: start;
	justify-items: end;
}

.dbp-footer-main__trustmate {
	width: min(100%, 300px);
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	overflow: hidden;
}

.dbp-footer-main__trustmate .tm-dodo2 {
	display: block !important;
	width: 100% !important;
	max-width: 100%;
	font-size: 10px;
	--tm-brand-color: #d9b27a !important;
}

.dbp-footer-main__trustmate .tm-dodo2__sticker,
.dbp-footer-main__trustmate .tm-light-mode .tm-dodo2__sticker,
.dbp-footer-main__trustmate .tm-dark-mode .tm-dodo2__sticker,
.dbp-footer-main__trustmate .tm-dodo2--transparent .tm-dodo2__sticker {
	width: 100% !important;
	max-width: 100%;
	padding: 1.45em 2em !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 2rem !important;
	background: rgba(255, 255, 255, 0.06) !important;
	box-shadow: none !important;
	color: #fff !important;
	backdrop-filter: blur(8px);
}

.dbp-footer-main__trustmate .tm-dodo2__grade,
.dbp-footer-main__trustmate .tm-dodo2__text,
.dbp-footer-main__trustmate .tm-dodo2__text span,
.dbp-footer-main__trustmate .tm-light-mode .tm-dodo2__sticker,
.dbp-footer-main__trustmate .tm-dark-mode .tm-dodo2__sticker {
	color: #fff !important;
}

.dbp-footer-main__trustmate .tm-dodo2__text--color {
	color: #d9b27a !important;
	font-weight: 600;
}

.dbp-footer-main__trustmate .tm-dodo2__logo img {
	filter: brightness(0) invert(1) grayscale(1);
	opacity: 0.96;
}

.dbp-footer-main__trustmate .tm-dodo2__link-overlay,
.dbp-footer-main__trustmate .tm-dialog-open {
	border-radius: 2rem;
}

.dbp-footer-main__trustmate > * {
	max-width: 100%;
}

.dbp-footer-main__trustmate iframe {
	width: 100% !important;
	max-width: 100%;
}

.dbp-footer-main__trustmate [id] {
	display: block;
	width: 100% !important;
	max-width: 100%;
	transform: none;
}

.dbp-footer-main__badges-group {
	width: min(100%, 320px);
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.dbp-footer-main__badges-group h3,
.dbp-footer-main__badges-group h4 {
	margin: 0 0 0.85rem;
	font-size: 0.95rem;
	color: #fff;
}

.dbp-footer-main__badges {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 58px));
	gap: 0.55rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dbp-footer-main__badges li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 32px;
	padding: 0;
	background: transparent;
	border: 0;
	min-width: 0;
}

.dbp-footer-main__badges a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.dbp-footer-main__badges img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 58px;
	max-height: 32px;
	object-fit: contain;
	border-radius: 4px;
	filter: brightness(0.74) contrast(1.05) saturate(0.7);
	opacity: 0.96;
}

	.dbp-footer-main__badges li.is-delivery img,
.dbp-footer-main__badges--delivery img {
	width: 100%;
	height: 100%;
}

.dbp-footer-main__seo {
	width: min(100% - 2rem, var(--dbp-container));
	margin-top: clamp(1.8rem, 3vw, 2.5rem);
		margin-inline: auto;
	padding-top: 1.4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.86rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.46);
	text-align: justify;
}

.dbp-footer-bottom {
	padding: 1.15rem 0;
	background: rgba(0, 0, 0, 0.22);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.6);
}

.dbp-footer-bottom__inner {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
}

.dbp-footer-bottom__left,
.dbp-footer-bottom__right {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.9rem 1.2rem;
}

.dbp-footer-bottom__right a {
	font-weight: 600;
	color: #fff;
	text-decoration: none;
}

.dbp-footer-bottom__credit-prefix {
	font-weight: 400;
	font-family: var(--dbp-font-body);
	color: rgba(255, 255, 255, 0.68);
}

.dbp-footer-bottom__credit-link {
	font-family: 'Montserrat', var(--dbp-font-body);
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #fff;
}

.dbp-footer-bottom__left a {
	text-decoration: none;
}

.dbp-footer-bottom__mobile-text {
	display: none;
	margin-top: 0.8rem;
	padding-top: 0.8rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

.dbp-notices {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 1400;
	display: grid;
	gap: 0.9rem;
	width: min(100% - 2rem, 430px);
}

.dbp-notice {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.9rem;
	padding: 1rem 1rem 1rem 1.05rem;
	border: 1px solid transparent;
	border-radius: calc(var(--dbp-radius-lg) + 0.15rem);
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.18);
	backdrop-filter: blur(12px);
	animation: dbp-notice-enter 220ms ease;
}

.dbp-notice::before {
	content: '';
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: currentColor;
	opacity: 0.22;
}

.dbp-notice.is-leaving {
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.dbp-notice__content {
	flex: 1 1 auto;
	font-size: 0.96rem;
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: -0.01em;
}

.dbp-notice__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1;
}

.dbp-notice.is-info .dbp-notice__icon {
	color: var(--c-brand-700);
}

.dbp-notice__close {
	flex: 0 0 auto;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 1px solid currentColor;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.56);
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1;
	color: currentColor;
	opacity: 0.82;
	cursor: pointer;
	transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease;
}

.dbp-notice__close:hover,
.dbp-notice__close:focus-visible {
	opacity: 1;
	background: rgba(255, 255, 255, 0.82);
	transform: scale(1.04);
	outline: 0;
}

@keyframes dbp-notice-enter {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1100px) {
	.dbp-footer-main__grid {
		grid-template-columns: 1fr;
	}

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

	.dbp-footer-main__aside {
		justify-items: start;
	}

	.dbp-footer-main__trustmate,
	.dbp-footer-main__badges-group {
		width: 100%;
	}
}

@media (max-width: 991px) {
	.dbp-footer-newsletter {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.dbp-footer-newsletter__visual {
		min-height: 220px;
	}

	.dbp-footer-newsletter__visual::after {
		content: none;
	}

	.dbp-footer-newsletter__content {
		padding-top: 2.2rem;
		background: transparent;
	}

	.dbp-footer-main__menus {
		grid-template-columns: 1fr;
	}

	.dbp-footer__menu-group {
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		padding-top: 1rem;
	}

	.dbp-footer__accordion-toggle .dashicons {
		display: inline-flex;
	}

	.dbp-footer__accordion-panel {
		overflow: hidden;
		max-height: 0;
		transition: max-height 220ms ease;
	}

	.dbp-footer__menu-group.is-open .dbp-footer__accordion-toggle .dashicons {
		transform: rotate(180deg);
	}

	.dbp-footer-bottom__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.dbp-footer-bottom__mobile-text {
		display: block;
	}

	.dbp-notices {
		left: 1rem;
		right: 1rem;
		width: auto;
	}

	.dbp-notice,
	.dbp-footer-newsletter__message {
		padding-left: 3rem;
	}

	.dbp-notice {
		gap: 0.75rem;
	}
}

@media (max-width: 767px) {
	.dbp-footer-newsletter__title {
		font-size: 1.75rem;
	}

	.dbp-footer-newsletter__input-row {
		gap: 0.5rem;
	}

	.dbp-footer-main__contact a {
		width: 100%;
	}

	.dbp-footer-bottom__left,
	.dbp-footer-bottom__right {
		width: 100%;
	}

	.dbp-footer-bottom__right {
		justify-content: flex-start;
	}
}
.button,
button,
input[type='submit'] {
	cursor: pointer;
}

.button,
.wp-element-button,
button,
input[type='submit'],
input[type='button'],
input[type='reset'] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 3rem;
	padding: 0.75rem 1.25rem;
	border-radius: var(--dbp-radius-lg);
	border: 1px solid transparent;
	background: var(--dbp-color-accent);
	color: #fff;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: transform var(--dbp-transition-fast), background-color var(--dbp-transition-base), border-color var(--dbp-transition-base), box-shadow var(--dbp-transition-base);
}

.dbp-elementor-button-variant-primary .elementor-button,
.dbp-elementor-button-variant-secondary .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 3rem;
	padding: 0.75rem 1.25rem;
	border-radius: var(--dbp-radius-lg);
	border: 1px solid transparent;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: transform var(--dbp-transition-fast), background-color var(--dbp-transition-base), border-color var(--dbp-transition-base), box-shadow var(--dbp-transition-base), color var(--dbp-transition-base);
}

.dbp-elementor-button-variant-primary .elementor-button {
	background: var(--dbp-color-accent);
	border-color: var(--dbp-color-accent);
	color: #fff;
}

.dbp-elementor-button-variant-secondary .elementor-button {
	background: var(--dbp-color-heading);
	border-color: var(--dbp-color-heading);
	color: #fff;
}

.button:hover,
.wp-element-button:hover,
button:hover,
input[type='submit']:hover,
input[type='button']:hover,
input[type='reset']:hover {
	transform: translateY(-1px);
	background: var(--c-brand-700);
	border-color: var(--c-brand-700);
	color: #fff;
	box-shadow: 0 8px 18px rgba(0, 81, 75, 0.18);
	text-decoration: none;
}

.dbp-elementor-button-variant-primary .elementor-button:hover,
.dbp-elementor-button-variant-primary .elementor-button:focus-visible {
	transform: translateY(-1px);
	background: var(--c-brand-700);
	border-color: var(--c-brand-700);
	color: #fff;
	box-shadow: 0 8px 18px rgba(0, 81, 75, 0.18);
	text-decoration: none;
}

.dbp-elementor-button-variant-secondary .elementor-button:hover,
.dbp-elementor-button-variant-secondary .elementor-button:focus-visible {
	transform: translateY(-1px);
	background: #111827;
	border-color: #111827;
	color: #fff;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
	text-decoration: none;
}

.button--secondary,
.button.alt,
.woocommerce a.button.alt {
	background: var(--dbp-color-heading);
	color: #fff;
}

.button--ghost {
	background: transparent;
	border-color: var(--dbp-color-border-strong);
	color: var(--dbp-color-heading);
}
.rank-math-breadcrumb,
.woocommerce-breadcrumb,
.dbp-breadcrumbs,
.hero-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 1rem;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--dbp-color-muted);
}

.rank-math-breadcrumb a,
.woocommerce-breadcrumb a,
.dbp-breadcrumbs a,
.hero-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.rank-math-breadcrumb a:hover,
.woocommerce-breadcrumb a:hover,
.dbp-breadcrumbs a:hover,
.hero-breadcrumbs a:hover {
	color: var(--dbp-color-accent-strong);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.rank-math-breadcrumb p,
.woocommerce-breadcrumb,
.hero-breadcrumbs p {
	margin: 0;
}
.dbp-blog-posts {
	align-items: stretch;
	gap: clamp(1.25rem, 2vw, 2rem);
}

.dbp-blog-card {
	height: 100%;
	min-width: 0;
	border-radius: 1.5rem;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96)),
		linear-gradient(135deg, color-mix(in srgb, var(--c-brand-50) 76%, #ffffff), #ffffff 62%);
		border: 1px solid color-mix(in srgb, var(--c-border) 82%, #ffffff);
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
	overflow: hidden;
	transition: transform var(--dbp-transition-base), box-shadow var(--dbp-transition-base), border-color var(--dbp-transition-base);
}

.dbp-blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
	border-color: color-mix(in srgb, var(--c-brand-100) 60%, var(--c-border));
}

.dbp-blog-card__inner {
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100%;
	min-width: 0;
}

.dbp-blog-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1.18;
	overflow: hidden;
	background: linear-gradient(135deg, color-mix(in srgb, var(--c-brand-50) 82%, #ffffff), color-mix(in srgb, var(--c-brand-100) 24%, #ffffff));
	text-decoration: none;
}

.dbp-blog-card__media:hover {
	text-decoration: none;
}

.dbp-blog-card__media::after {
	content: '';
	position: absolute;
	inset: auto 0 0;
	height: 42%;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.2));
	pointer-events: none;
}

.dbp-blog-card__image,
.dbp-blog-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 320ms ease;
}

.dbp-blog-card:hover .dbp-blog-card__image,
.dbp-blog-card:hover .dbp-blog-card__placeholder {
	transform: scale(1.04);
}

.dbp-blog-card__placeholder {
	display: block;
	background:
		radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 28%),
		linear-gradient(135deg, color-mix(in srgb, var(--c-brand-100) 78%, #ffffff), color-mix(in srgb, var(--c-brand-50) 92%, #ffffff));
}

.dbp-blog-card__category {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(12px);
	color: var(--c-heading);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.dbp-blog-card__content {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	padding: 1.35rem 1.35rem 1.5rem;
	min-width: 0;
	flex: 1 1 auto;
}

.dbp-blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.75rem;
	margin: 0;
	color: var(--c-muted);
	font-size: 0.8rem;
	line-height: 1.4;
}

.dbp-blog-card__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	white-space: nowrap;
}

.dbp-blog-card__meta-item--likes {
	padding: 0.22rem 0.55rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--c-brand-600) 8%, #ffffff);
	color: var(--c-brand-700);
	font-weight: 700;
}

.dbp-blog-card__meta-item--likes::after {
	display: none;
}

.dbp-blog-card__meta-like-icon {
	font-size: 0.78rem;
	line-height: 1;
	color: var(--c-brand-600);
}

.dbp-blog-card__meta-like-count {
	line-height: 1;
}

.dbp-blog-card__meta-item:not(:last-child)::after {
	content: '•';
	color: color-mix(in srgb, var(--c-muted) 72%, #ffffff);
	margin-left: 0.35rem;
	font-size: 0.72rem;
}

.dbp-blog-card__title {
	margin: 0;
	font-size: clamp(1.3rem, 2vw, 1.7rem);
	line-height: 1.24;
	letter-spacing: -0.02em;
}

.dbp-blog-card__title a {
	color: var(--c-heading);
	text-decoration: none;
	text-wrap: balance;
}

.dbp-blog-card__title a:hover {
	color: var(--c-brand-700);
	text-decoration: none;
}

.dbp-blog-card__excerpt {
	margin: 0;
	color: var(--c-slate-600);
	font-size: 0.98rem;
	line-height: 1.72;
	max-width: 44ch;
	text-wrap: pretty;
}

.dbp-blog-card--compact .dbp-blog-card__media {
	aspect-ratio: 1.4;
}

.dbp-blog-card--compact .dbp-blog-card__content {
	gap: 0.75rem;
	padding: 1.1rem 1.1rem 1.2rem;
}

.dbp-blog-card--compact .dbp-blog-card__title {
	font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

.dbp-blog-card--featured {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 248, 0.95)),
		linear-gradient(135deg, color-mix(in srgb, var(--c-brand-50) 88%, #ffffff), #ffffff 58%);
	border-color: color-mix(in srgb, var(--c-brand-100) 58%, var(--c-border));
	box-shadow: 0 24px 64px rgba(0, 102, 94, 0.12);
}

.dbp-blog-card--featured .dbp-blog-card__media {
	aspect-ratio: 1.08;
}

.dbp-blog-card--featured .dbp-blog-card__content {
	padding: 1.6rem 1.6rem 1.7rem;
	gap: 1rem;
}

.dbp-blog-card--featured .dbp-blog-card__title {
	font-size: clamp(1.55rem, 2.3vw, 2.05rem);
}

@media (max-width: 767px) {
	.dbp-blog-posts {
		gap: 1.25rem;
	}

	.dbp-blog-card {
		border-radius: 1.25rem;
	}

	.dbp-blog-card__content {
		padding: 1.1rem 1.1rem 1.25rem;
	}

	.dbp-blog-card__title {
		font-size: 1.25rem;
	}

	.dbp-blog-card__excerpt {
		font-size: 0.95rem;
		max-width: none;
	}
}
.dottore-sidebar-card,
.dottore-toc,
.toc-widget,
#rank-math-toc,
.wp-block-rank-math-toc-block {
	background: var(--dbp-color-surface);
	border: 1px solid var(--dbp-color-border);
	border-radius: var(--dbp-radius-lg);
	box-shadow: var(--dbp-shadow-sm);
}

.dottore-sidebar-card,
#rank-math-toc,
.wp-block-rank-math-toc-block {
	padding: 1rem;
}

.dottore-toc__title,
#rank-math-toc .rank-math-toc-title,
.wp-block-rank-math-toc-block h2,
.wp-block-rank-math-toc-block h3 {
	margin: 0 0 1rem;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--dbp-color-muted);
}

.dottore-toc__list,
#toc-list,
#rank-math-toc nav > ul,
.wp-block-rank-math-toc-block nav > ul {
	margin: 0;
	padding: 0 0 0 1rem;
	border-left: 2px solid color-mix(in srgb, var(--dbp-color-border) 82%, #ffffff);
	list-style: none;
}

.dottore-toc__list li,
#toc-list li,
#rank-math-toc nav > ul li,
.wp-block-rank-math-toc-block nav > ul li {
	position: relative;
	margin: 0;
}

.dottore-toc__list a,
#toc-list a,
#rank-math-toc nav > ul li a,
.wp-block-rank-math-toc-block nav > ul li a {
	display: block;
	padding: 0.55rem 0.75rem 0.55rem 1rem;
	color: var(--dbp-color-muted);
	text-decoration: none;
	font-size: 0.95rem;
	line-height: 1.4;
	border-radius: var(--dbp-radius-md);
	transition: background-color var(--dbp-transition-base), color var(--dbp-transition-base), box-shadow var(--dbp-transition-base);
}

.dottore-toc__list a::before,
#toc-list a::before,
#rank-math-toc nav > ul li a::before,
.wp-block-rank-math-toc-block nav > ul li a::before {
	content: '';
	position: absolute;
	left: -0.38rem;
	top: 50%;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--dbp-color-border-strong) 70%, #ffffff);
	transform: translateY(-50%);
}

.dottore-toc__list a:hover,
#toc-list a:hover,
#rank-math-toc nav > ul li a:hover,
.wp-block-rank-math-toc-block nav > ul li a:hover,
.dottore-toc__list a.is-active,
#toc-list a.is-active,
#toc-list a.active,
#rank-math-toc nav > ul li a.active,
.wp-block-rank-math-toc-block nav > ul li a.active {
	background: color-mix(in srgb, var(--dbp-color-accent-soft) 60%, #ffffff);
	color: var(--dbp-color-heading);
	box-shadow: inset 3px 0 0 var(--dbp-color-accent);
}

.dottore-toc__list a:hover::before,
#toc-list a:hover::before,
#rank-math-toc nav > ul li a:hover::before,
.wp-block-rank-math-toc-block nav > ul li a:hover::before,
.dottore-toc__list a.is-active::before,
#toc-list a.is-active::before,
#toc-list a.active::before,
#rank-math-toc nav > ul li a.active::before,
.wp-block-rank-math-toc-block nav > ul li a.active::before {
	background: var(--dbp-color-accent);
}
body.dbp-modal-open,
body.pdd-modal-open {
	overflow: hidden;
}

.dbp-modal-backdrop,
.pdd-waitlist {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1.125rem;
	background: rgba(17, 24, 39, 0.58);
	backdrop-filter: blur(14px);
	z-index: 9999;
}

.dbp-modal-backdrop.is-open,
.pdd-waitlist.is-open {
	display: flex;
}

.dbp-modal,
.pdd-waitlist__dialog {
	position: relative;
	width: min(100%, 32rem);
	padding: 1.5rem;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: var(--dbp-radius-xl);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--dbp-shadow-lg);
}

.dbp-modal__close,
.pdd-waitlist__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid var(--dbp-color-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--dbp-color-muted);
	cursor: pointer;
}

.pdd-waitlist__title {
	margin: 0;
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	font-weight: 800;
}

.pdd-waitlist__desc,
.pdd-waitlist__message,
.pdd-waitlist__successDesc {
	font-size: 0.95rem;
	color: var(--dbp-color-muted);
}
/**
 * Pre-stretch Elementor "stretched" sections to avoid a layout jump.
 *
 * Elementor stretches sections (the "Stretch Section" option) with its frontend
 * JS on init. With JS deferred (LiteSpeed optm-js_defer) that runs after first
 * paint, so the section visibly widens from container width to full viewport
 * width — the page jumps. Replicating the stretch in CSS makes the section
 * full-bleed immediately; the later JS computes the same width, so there is no
 * shift.
 *
 * body has `overflow-x: hidden` (see base/reset.css), so 100vw never produces a
 * horizontal scrollbar. The inner `.elementor-container` of a boxed section
 * stays centered/boxed — only the section background goes edge to edge, exactly
 * as Elementor intends for a stretched + boxed section.
 *
 * `!important` is required: Elementor's stretch JS resets, then re-measures the
 * element's offset (now 0 because this rule already pulled it full-bleed) and
 * writes inline `margin-left: 0` — which would snap the section back and cause a
 * visible jump. Forcing our values makes those JS inline styles a no-op, so the
 * section never moves from the correct full-bleed position. This assumes the
 * section sits in a horizontally-centered wrapper (`.dbp-container`), which is
 * the theme's content convention.
 */
.elementor-section-stretched {
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
}

body {
	color: var(--dbp-color-text);
	background: var(--dbp-color-background);
}

.dbp-container {
	width: min(100% - 2rem, var(--dbp-container));
	margin-inline: auto;
}

.dbp-container--narrow {
	width: min(100% - 2rem, var(--dbp-container-narrow));
	margin-inline: auto;
}

.dbp-container--wide {
	width: min(100% - 2rem, var(--dbp-container-wide));
	margin-inline: auto;
}

.dbp-container--full {
	width: 100%;
	max-width: none;
}

.dbp-section {
	padding-block: clamp(2.5rem, 6vw, 5rem);
}

.dbp-surface {
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--dbp-color-border);
	border-radius: var(--dbp-radius-xl);
	background: var(--dbp-color-surface);
	box-shadow: var(--dbp-shadow-sm);
}

.dbp-grid {
	display: grid;
	gap: clamp(1rem, 2vw, 1.5rem);
}

.dbp-post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.dbp-flow > * + * {
	margin-top: var(--dbp-space-4);
}

.dbp-site-main,
.site-main {
	min-height: 40vh;
}

@media (max-width: 767px) {
	.dbp-section {
		padding-block: 2.5rem;
	}
}