/*
Theme Name: giorgaras.gr
Theme URI: https://giorgaras.gr
Author: Giorgaras
Author URI: https://giorgaras.gr
Description: Giorgaras custom WooCommerce block theme mirrored from the live Dromeas experience.
Version: 1.2.1
Tested up to: 6.6
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: axis-pro
Tags: e-commerce, woocommerce, block-theme, full-site-editing, responsive, fast, modern, luxury, black, white, gold

AXIS PRO is a premium WordPress block theme designed for modern e-commerce with Shopify-level user experience.
Built from scratch for maximum performance, conversion optimization, and resale value.
*/

/* Hidden logo source for JS copying */
.dn-logo-wp-source { display: none !important; }

/* Reset & Base Styles */
:root {
	--wp--preset--color--black: #000000;
	--wp--preset--color--white: #FFFFFF;
	--wp--preset--color--gold: #c3cca6;
	--wp--preset--color--dark-gray: #1A1A1A;
	--wp--preset--color--light-gray: #F5F5F5;
	--wp--preset--font-family--inter: 'Instrument Sans', system-ui, -apple-system, sans-serif;
	--wp--preset--font-family--serif: 'Instrument Serif', Georgia, serif;
	--wp--preset--font-size--small: 0.875rem;
	--wp--preset--font-size--medium: 1rem;
	--wp--preset--font-size--large: 1.25rem;
	--wp--preset--font-size--extra-large: 1.5rem;
	--wp--preset--font-size--heading-3: 2rem;
	--wp--preset--font-size--heading-2: 2.5rem;
	--wp--preset--font-size--heading-1: 3rem;
	
	/* Header Variables */
	--layer-sticky: 1100;
	--layer-lowest: 0;
	--layer-menu-drawer: 1050;
	--layer-heightened: 1000;
	--animation-speed: 0.25s;
	--animation-easing: cubic-bezier(0.25, 0.1, 0.25, 1.0);
	--animation-speed-slow: 0.5s;
	--ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
	--submenu-animation-speed: 0.3s;
	--header-height: 60px;
	--top-row-height: 30px;
	--border-bottom-width: 1px;
	--border-bottom-width-mobile: 1px;
	--gap-xl: 2rem;
	--drawer-height: 100vh;
	--drawer-width: 280px;
	--drawer-max-width: 90vw;
	--style-border-drawer: 1px solid;
	--shadow-drawer: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--drawer-animation-speed: 0.3s;
	--drawer-padding: 1.5rem;
	--padding-sm: 0.5rem;
	--padding-lg: 1.5rem;
	--padding-xs: 0.75rem;
	--padding-3xs: 0.25rem;
	--margin-xs: 0.5rem;
	--margin-md: 1rem;
	--margin-lg: 1.5rem;
	--icon-size-xs: 20px;
	--button-size: 24px;
	--icon-size-md: 20px;
	
	/* Use theme.json colors for background, foreground, border */
	--color-scheme-top-row: var(--wp--preset--color--white);
	--color-scheme-bottom-row: var(--wp--preset--color--white);
	--color-submenu: var(--wp--preset--color--white);
	--color-border: var(--wp--preset--color--light-gray);
	--shadow-popover: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--color-background: var(--wp--preset--color--white);
	--color-foreground: var(--wp--preset--color--black);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--medium);
	line-height: 1.6;
	color: var(--wp--preset--color--black);
	background-color: var(--wp--preset--color--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: #1a3a6b;
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: #1a8ef0;
}

/* WordPress Core Alignment */
.alignwide {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.alignfull {
	max-width: 100%;
	width: 100%;
}

/* Basic WooCommerce Styles */
.woocommerce .woocommerce-breadcrumb {
	margin-bottom: 2rem;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--dark-gray);
}

.woocommerce .price {
	color: var(--wp--preset--color--gold);
	font-weight: 700;
}

/* Utility Classes */
.text-center {
	text-align: center;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Header Sticky Behavior */
.header-section:has(> #header-component[sticky='always']),
.header-section:has(> #header-component[sticky='scroll-up'][data-sticky-state='active']) {
	position: sticky;
	top: -1px;
	z-index: var(--layer-sticky);
}

.header[data-sticky-state] {
	transition: opacity var(--animation-speed) var(--animation-easing);
	opacity: 1;
}

.header[data-sticky-state='active'] {
	view-transition-name: sticky-header;
}

.header[data-sticky-state='idle'] {
	opacity: 0;
}

/* Header Underlays */
.header__underlay {
	position: absolute;
	inset: 0;
}

.header__underlay-closed {
	height: var(--closed-underlay-height, 100%);
	z-index: var(--layer-lowest);
	background: linear-gradient(
		var(--color-scheme-top-row) 0 var(--top-row-height),
		var(--color-scheme-bottom-row) var(--top-row-height) var(--header-height)
	);
	transition: height var(--animation-speed-slow) var(--ease-out-cubic);
}

.header__underlay-open {
	height: var(--full-open-header-height);
	background: linear-gradient(
		var(--color-scheme-top-row) 0 var(--top-row-height),
		var(--color-scheme-bottom-row) var(--top-row-height) var(--header-height),
		var(--color-submenu) var(--header-height) 100%
	);
	transition: height var(--submenu-animation-speed) var(--ease-out-cubic);
}

.header__underlay-open::after {
	content: '';
	position: absolute;
	inset: 0;
	box-shadow: var(--shadow-popover);
	clip-path: inset(var(--header-height) 0 -100px 0);
	transition: height var(--submenu-animation-speed) var(--ease-out-cubic);
}

/* Header Row Styles */
.header__row {
	position: relative;
	background-color: transparent;
}

.header__row--top:not(.divider--page-width),
.header__row--top.divider--page-width .header__columns,
.header__row--bottom {
	border-bottom: var(--border-bottom-width) solid var(--color-border);
}

@media screen and (max-width: 749px) {
	.header__row--top:not(.divider--page-width),
	.header__row--top.divider--page-width .header__columns {
		border-bottom-width: var(--border-bottom-width-mobile);
	}
}

#header-component[data-menu-style='drawer'] .header__row--top:not(.divider--page-width),
#header-component[data-menu-style='drawer'] .header__row--top.divider--page-width .header__columns {
	border-bottom-width: var(--border-bottom-width-mobile);
}

/* Header Column Layout */
.header__column {
	display: flex;
	align-items: center;
}

@media screen and (max-width: 749px) {
	.header__column {
		display: contents;
	}
}

.header__column--left,
.header__column--center {
	gap: var(--gap-xl);
	grid-area: left;
}

.header__column--center {
	justify-content: center;
	grid-area: center;
}

.header__column--right {
	gap: var(--gap-xl);
	justify-content: flex-end;
	grid-area: right;
}

.header__columns {
	/* Three column layout */
	--header-left: 1fr;
	--header-center: auto;
	--header-right: 1fr;
	--header-template-columns: var(--header-left) var(--header-center) var(--header-right);

	/* Mobile layout */
	--header-mobile-bookend: 44px;

	display: grid;
	grid-template-areas: 'left center right';
	grid-gap: var(--gap-xl);
	grid-template-columns: var(--header-template-columns);

	/* If menu is in center column */
	&:has(.header__column--center header-menu) {
		--header-center: auto;
		--header-left: minmax(max-content, 1fr);
		--header-right: minmax(max-content, 1fr);
	}

	/* If there is no center column, make the column the menu is in grow eagerly */
	&:where(:not(:has(.header__column--center))) {
		@media screen and (min-width: 750px) {
			--header-template-columns: var(--header-left) var(--header-right);
			grid-template-areas: 'left right';
		}

		/* If the header-menu is in the right column */
		&:has(.header__column--right header-menu) {
			--header-right: auto;
			--header-left: minmax(max-content, 1fr);
		}

		/* If the header-menu is in the left column */
		&:has(.header__column--left header-menu) {
			--header-left: auto;
			--header-right: minmax(max-content, 1fr);
		}
	}

	@media screen and (max-width: 749px) {
		--header-template-columns: var(--header-mobile-bookend) var(--header-mobile-bookend) 1fr
			var(--header-mobile-bookend) var(--header-mobile-bookend);

		grid-template-areas: 'leftA leftB center rightA rightB';
		grid-column: span 3;
		column-gap: 0;
		align-items: center;
		padding-block: 0;
		padding-inline: 0 var(--padding-3xs);

		.header-logo {
			grid-area: center;
		}

		&:not(:has(header-actions)) .search-action {
			grid-area: leftB;
		}

		&:not(:has(shopify-account)) .search-action {
			grid-area: rightA;
		}

		.search-action {
			grid-area: leftB;
		}

		header-actions {
			grid-area: rightB;
		}
	}
}

/* Mobile Drawer Styles */
.menu-drawer {
	position: fixed;
	transform: translateX(-100%);
	visibility: hidden;
	height: var(--drawer-height);
	width: var(--drawer-width);
	max-width: var(--drawer-max-width);
	z-index: var(--layer-menu-drawer);
	left: 0;
	top: 0;
	padding: 0;
	background-color: var(--color-background);
	overflow: auto;
	display: flex;
	border-right: var(--style-border-drawer);
	box-shadow: var(--shadow-drawer);
	flex-direction: column;

	@media screen and (min-width: 750px) {
		width: 25rem;
	}
}

.menu-drawer.menu-drawer--has-submenu-opened {
	overflow: initial;
}

.menu-drawer__backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100dvh;
	backdrop-filter: brightness(0.75);
	z-index: var(--layer-heightened);
	opacity: 0;
	transition: opacity var(--drawer-animation-speed) ease;

	.menu-open & {
		opacity: 1;
	}
}

.menu-drawer,
.menu-drawer__submenu {
	transition: transform var(--drawer-animation-speed) ease, visibility var(--drawer-animation-speed) ease,
		opacity var(--drawer-animation-speed) ease;
}

.menu-open > .menu-drawer,
.menu-open > .menu-drawer__submenu:not(.menu-drawer__menu--childlist) {
	transform: translateX(0);
	visibility: visible;
	opacity: 1;
	display: flex;
	flex-direction: column;
}

/* Drawer Menu Styles */
.menu-drawer__menu {
	--menu-drawer-inline-padding: calc(var(--padding-sm) + 7px);

	list-style: none;
	padding-inline: var(--drawer-padding);
	margin-inline: 0;
	margin-block-start: 0;
}

.menu-drawer__menu--grid {
	display: grid;
	width: 100%;
	grid-template-columns: 1fr 1fr;
	gap: var(--padding-sm);
	padding-inline-end: var(--menu-drawer-inline-padding);
	padding-block-start: var(--padding-xs);
}

.menu-drawer__menu--childlist:not(.menu-drawer__menu--grid) {
	flex-grow: 1;
}

.menu-drawer__menu.has-submenu,
.menu-drawer__menu--childlist:not(:has(.menu-drawer__animated-element)) {
	margin-block-end: var(--margin-xs);

	@media screen and (min-width: 750px) {
		margin-block-end: 2.5rem;
	}
}

.menu-drawer__list-item--divider {
	border-block-end: 1px solid var(--color-border);
}

.menu-drawer__list-item--deep:not(.menu-drawer__list-item--divider) .menu-drawer__menu {
	margin-block-start: -0.3rem;
}

.menu-drawer__list-item--flat.menu-drawer__list-item--divider .menu-drawer__menu {
	margin-block-start: -0.4rem;
}

.menu-drawer__menu-container--divider {
	border-block-end: 1px solid var(--color-border);
}

.menu-drawer__menu > .menu-drawer__list-item {
	display: flex;
	min-height: calc(2 * var(--padding-lg) + var(--icon-size-xs));
}

.menu-drawer__list-item--deep .menu-drawer__list-item,
.menu-drawer__list-item--flat .menu-drawer__list-item {
	min-height: auto;
}

.menu-drawer__menu .menu-drawer__list-item--flat {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-block-end: var(--margin-md);
}

.menu-drawer__menu--childlist .menu-drawer__list-item--flat {
	margin-block-end: var(--margin-sm);

	@media screen and (min-width: 750px) {
		margin-block-end: var(--margin-lg);
	}
}

.menu-drawer__menu--childlist .menu-drawer__list-item--flat.menu-drawer__list-item--divider {
	margin-block-end: 0;
}

.menu-drawer__list-item--flat .menu-drawer__menu--childlist {
	width: 100%;
	padding-inline: 0;
}

.menu-drawer__menu-item {
	display: flex;
	padding: var(--padding-2xs) 0;
	position: relative;
	text-decoration: none;
	justify-content: space-between;
	align-items: center;
}

.menu-drawer__menu-item-text {
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Drawer Animation */
.menu-drawer-container[open] .menu-drawer__animated-element {
	animation: menu-drawer-nav-open var(--drawer-animation-speed) ease-in-out;
	animation-delay: calc(var(--drawer-animation-speed) + (var(--menu-drawer-animation-index) - 1) * 0.1s);
	animation-fill-mode: backwards;
}

@keyframes menu-drawer-nav-open {
	0% {
		visibility: hidden;
		opacity: 0;
		transform: translateX(-0.5rem);
	}
	100% {
		visibility: visible;
		opacity: 1;
		transform: translateX(0);
	}
}

/* Header Action Button Styles */
.header-actions__action {
	--button-color: var(--color-foreground);
	color: var(--button-color);
	cursor: pointer;
	display: flex;
	justify-content: center;

	&:hover {
		--button-color: var(--color-foreground);
	}
}

.header-actions__action:not(.account-button) .svg-wrapper {
	height: var(--button-size);
	width: var(--button-size);
}

.header-actions__action:not(.account-button) svg {
	width: var(--icon-size-md);
	height: var(--icon-size-md);
}

/* Main Content Padding */
.main-content {
	padding-top: var(--header-height);
	min-height: calc(100vh - var(--header-height));
}

/* Responsive */
@media (max-width: 768px) {
	.container {
		padding: 0 0.75rem;
	}
}

/* =========================================
   ADDITIONAL HEADER ENHANCEMENTS
   ========================================= */

/* Transparent Header Color Inheritance */
[data-transparent-color-scheme='top']:hover,
[data-transparent-color-scheme='top']:focus-within,
[data-transparent-color-scheme='both']:hover,
[data-transparent-color-scheme='both']:focus-within {
	:is(.header__underlay-open, .header__underlay-closed) {
		--color-scheme-top-row: var(--color-background);
	}
}

[data-transparent-color-scheme='bottom']:hover,
[data-transparent-color-scheme='bottom']:focus-within,
[data-transparent-color-scheme='both']:hover,
[data-transparent-color-scheme='both']:focus-within {
	:is(.header__underlay-open, .header__underlay-closed) {
		--color-scheme-bottom-row: var(--color-background);
	}
}

/* Submenu Overlap Handling */
[data-submenu-overlap-bottom-row] {
	.header__underlay-open {
		background: linear-gradient(
			var(--color-scheme-top-row) 0 var(--top-row-height),
			var(--color-submenu) var(--top-row-height) 100%
		);
	}

	.header__row--bottom {
		z-index: var(--layer-lowest);
	}
}

/* Header Row Hover Effects */
@media (hover: hover) {
	.header__column:has(header-menu:hover),
	.header__column:has(.header-actions__action:hover),
	.header__column:has(.header__icon--menu:hover) {
		header-menu:not(:hover),
		.header-actions__action:not(:hover),
		.header__icon--menu:not(:hover) {
			opacity: var(--opacity-subdued-text);
			transition: opacity var(--animation-speed) var(--animation-easing);
		}
	}
}

/* Ensure smooth transitions for interactive elements */
header-menu,
.header-actions__action,
.header__icon--menu {
	transition: opacity var(--animation-speed) var(--animation-easing);
}

/* wp-block-navigation specific styles */
.wp-block-navigation {
	display: flex;
	gap: var(--gap-xl);
	align-items: center;
}

.wp-block-navigation__container {
	display: flex;
	gap: var(--gap-xl);
	align-items: center;
}

.wp-block-navigation__responsive-container-open {
	display: none;
}

.wp-block-navigation-item {
	display: flex;
	align-items: center;
}

.wp-block-navigation-item a {
	color: var(--color-foreground);
	text-decoration: none;
	transition: color var(--animation-speed) var(--animation-easing);
}

.wp-block-navigation-item a:hover {
	color: var(--color-primary);
}

.wp-block-navigation-submenu {
	background-color: var(--color-background);
	border: var(--style-border-width) solid var(--color-border);
	box-shadow: var(--shadow-popover);
	border-radius: var(--style-border-radius);
}

.wp-block-navigation__responsive-container-close {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--color-background);
	z-index: var(--layer-menu-drawer);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

/* Mobile menu toggle button */
.menu-drawer-button {
	display: flex;
	align-items: center;
	justify-content: center;
}

.header__icon--menu {
	--button-color: var(--color-foreground);
	color: var(--button-color);
	cursor: pointer;
	display: flex;
	justify-content: center;
	background: none;
	border: none;
	padding: 0;
}

.header__icon--menu:hover {
	--button-color: var(--color-foreground);
}

/* Site Logo */
.wp-block-site-logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.wp-block-site-logo img {
	max-height: 40px;
	width: auto;
}

/* Sticky header underlay animation */
body:has(.header[transparent]) .content-for-layout > .shopify-section:first-child {
	margin-top: calc(var(--header-group-height) * -1);
}

body:has(.header[transparent]) #header-group > .header-section {
	z-index: var(--layer-sticky);
}

body:has(.header[transparent]) #header-group > *:not(.header-section) {
	z-index: calc(var(--layer-sticky) - 1);
}

/* View transition support */
@view-transition {
	navigation: auto;
}

::view-transition {
	pointer-events: none;
}

html:active-view-transition-type(page-navigation) main[data-page-transition-enabled='true'] {
	view-transition-name: main-content;
}

::view-transition-old(main-content) {
	animation: var(--view-transition-old-main-content);
}

::view-transition-new(main-content) {
	animation: var(--view-transition-new-main-content);
}

/* Icon rotation for open/close */
.icon-plus {
	transition: transform var(--animation-speed) var(--animation-easing);
}

details[open] .icon-plus {
	transform: rotate(45deg);
}

/* =========================================
   FOOTER STYLES (from Shopify reference)
   ========================================= */

/* Footer Reset */
.dr-footer *,
.dr-footer *::before,
.dr-footer *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Footer Main */
.dr-footer {
	font-family: var(--wp--preset--font-family--inter);
	background: #0b0c10;
	color: #fff;
	position: relative;
	overflow: hidden;
}

/* Top gradient line */
.dr-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, #38e8f5 30%, #1a8ef0 55%, #0a2fb8 80%, transparent 100%);
}

/* Subtle radial glow */
.dr-footer::after {
	content: '';
	position: absolute;
	top: -120px;
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	height: 300px;
	background: radial-gradient(ellipse, rgba(26, 142, 240, 0.12) 0%, transparent 70%);
	pointer-events: none;
}

/* Footer Body */
.dr-footer__body {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 64px 40px 48px;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 64px;
}

/* Brand Block */
.dr-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.dr-footer__logo {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	text-decoration: none;
}

.dr-footer__logo-mark {
	width: 8px;
	height: 8px;
	background: #c0392b;
	border-radius: 2px;
	flex-shrink: 0;
}

.dr-footer__logo-name {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #fff;
}

.dr-footer__logo-sub {
	font-size: 10px;
	font-weight: 300;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #555;
	margin-left: 4px;
}

.dr-footer__tagline {
	font-size: 13px;
	font-weight: 300;
	color: #666;
	line-height: 1.7;
	margin-bottom: 28px;
	max-width: 220px;
}

/* Newsletter */
.dr-footer__nl-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #444;
	margin-bottom: 10px;
}

.dr-footer__nl-form {
	display: flex;
	gap: 0;
	margin-bottom: 10px;
}

.dr-footer__nl-form input[type="email"] {
	flex: 1;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-right: none;
	border-radius: 10px 0 0 10px;
	padding: 10px 14px;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 12.5px;
	color: #fff;
	outline: none;
	transition: border-color 0.2s, background 0.2s;
}

.dr-footer__nl-form input[type="email"]::placeholder {
	color: #444;
}

.dr-footer__nl-form input[type="email"]:focus {
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(56, 232, 245, 0.4);
}

.dr-footer__nl-form button {
	background: linear-gradient(135deg, #1a8ef0, #0a2fb8);
	border: none;
	border-radius: 0 10px 10px 0;
	padding: 10px 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s;
}

.dr-footer__nl-form button:hover {
	opacity: 0.85;
}

.dr-footer__nl-form button svg {
	width: 15px;
	height: 15px;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.dr-footer__nl-success {
	font-size: 12px;
	color: #38e8f5;
	margin-bottom: 10px;
}

.dr-footer__nl-error {
	font-size: 12px;
	color: #f06;
	margin-top: 4px;
}

.dr-footer__nl-wrap {
	margin-bottom: 32px;
}

/* Socials */
.dr-footer__socials {
	display: flex;
	gap: 8px;
}

.dr-footer__social-btn {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, transform 0.2s;
	text-decoration: none;
	color: #b8b8b8;
}

.dr-footer__social-btn:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.18);
	color: #fff;
	transform: translateY(-2px);
}

.dr-footer__social-btn svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

/* Link Columns */
.dr-footer__links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.dr-footer__col-title {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 18px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dr-footer__col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.dr-footer__col ul li a {
	font-size: 13px;
	font-weight: 300;
	color: #fff;
	text-decoration: none;
	transition: color 0.18s;
	display: flex;
	align-items: center;
	gap: 6px;
	opacity: 0.75;
}

.dr-footer__col ul li a:hover {
	color: #fff;
	opacity: 1;
}

.dr-footer__col ul li a::before {
	content: '';
	width: 3px;
	height: 3px;
	background: #2a6ef0;
	border-radius: 50%;
	flex-shrink: 0;
	opacity: 0;
	transition: opacity 0.18s;
}

.dr-footer__col ul li a:hover::before {
	opacity: 1;
}

/* Bottom Bar */
.dr-footer__bottom {
	position: relative;
	z-index: 1;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.dr-footer__copy {
	font-size: 12px;
	font-weight: 300;
	color: #3a3a3a;
}

.dr-footer__copy span {
	color: #555;
}

.dr-footer__legal {
	display: flex;
	gap: 20px;
}

.dr-footer__legal a {
	font-size: 12px;
	font-weight: 300;
	color: #fff;
	text-decoration: none;
	transition: color 0.18s;
	opacity: 0.75;
}

.dr-footer__legal a:hover {
	opacity: 1;
}

.dr-footer__legal a:hover {
	color: #b8b8b8;
}

.dr-footer__badge {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 300;
	color: #2e2e2e;
}

.dr-footer__badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: linear-gradient(135deg, #38e8f5, #1a8ef0);
	flex-shrink: 0;
}

/* Footer Responsive */
@media (max-width: 1024px) {
	.dr-footer__body {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.dr-footer__links {
		grid-template-columns: repeat(2, 1fr);
	}
	.dr-footer__tagline {
		max-width: 100%;
	}
}

@media (max-width: 600px) {
	.dr-footer__body {
		padding: 48px 20px 36px;
	}
	.dr-footer__links {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	.dr-footer__bottom {
		padding: 16px 20px;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.dr-footer__badge {
		display: none;
	}
}

/* =========================================
   DYNAMIC ISLAND NAVIGATION
   ========================================= */

/* Body offset — island is fixed, not in flow */
body {
	padding-top: 82px !important;
}
@media (max-width: 1024px) {
	body { padding-top: 72px !important; }
}

/* Wipe out old header styles that conflict */
.main-content { padding-top: 0; }

/* ── Reset for all island elements ── */
.dn-island a, .dn-island a:link, .dn-island a:visited, .dn-island a:hover, .dn-island a:active,
.dn-island button,
.dn-drawer a, .dn-drawer a:link, .dn-drawer button,
.dn-call-popup a, .dn-call-popup a:link,
.dn-sr-panel a, .dn-sr-panel a:link,
.dn-mobile-bar a, .dn-mobile-bar button {
	background: transparent !important;
	color: inherit;
	text-decoration: none;
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
/* ── Restore call popup button backgrounds (override the reset above) ── */
.dn-call-popup .dn-call-number,
.dn-call-popup .dn-call-number:link,
.dn-call-popup .dn-call-number:visited,
.dn-call-popup .dn-call-number:hover,
.dn-call-popup .dn-call-number:active {
	background: linear-gradient(135deg, #22c55e, #16a34a) !important;
	color: #fff !important;
}
.dn-call-popup .dn-viber-btn,
.dn-call-popup .dn-viber-btn:link,
.dn-call-popup .dn-viber-btn:visited,
.dn-call-popup .dn-viber-btn:hover,
.dn-call-popup .dn-viber-btn:active {
	background: linear-gradient(135deg, #7360f2, #5b4de8) !important;
	color: #fff !important;
}

/* ── Desktop Island ── */
.dn-island {
	--dn-h: 54px;
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	position: fixed;
	top: 12px; left: 50%; transform: translateX(-50%);
	width: calc(100vw - 40px); min-width: 860px; max-width: 1200px;
	height: var(--dn-h);
	background: rgba(255,255,255,0.92);
	border: 1px solid rgba(255,255,255,0.55);
	border-radius: 50px;
	box-shadow: 0 4px 28px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.7);
	z-index: 9000;
	overflow: hidden;
	transition: height 0.48s cubic-bezier(0.32,0.72,0,1),
	            border-radius 0.48s cubic-bezier(0.32,0.72,0,1),
	            width 0.35s cubic-bezier(0.32,0.72,0,1),
	            box-shadow 0.3s ease;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}
.dn-island.dn-scrolled {
	background: rgba(255,255,255,0.96);
	box-shadow: 0 8px 40px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.6);
}
.dn-island.dn-open {
	border-radius: 22px;
	box-shadow: 0 12px 50px rgba(0,0,0,0.13), 0 4px 12px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.5);
}

.dn-row {
	display: flex; align-items: center; justify-content: center;
	height: var(--dn-h);
	padding: 0 8px;
	position: relative; z-index: 2;
}
.dn-left  { display: flex; align-items: center; flex: 1; justify-content: flex-end; gap: 2px; }
.dn-right { display: flex; align-items: center; flex: 1; justify-content: flex-start; gap: 2px; }

.dn-logo {
	display: flex; align-items: center; justify-content: center;
	padding: 0 14px; flex-shrink: 0;
	text-decoration: none !important;
}
.dn-logo img { height: 30px; width: auto; display: block; transition: transform 0.2s ease; }
.dn-logo:hover img { transform: scale(1.04); }

.dn-nav-btn {
	display: flex; align-items: center; gap: 3px;
	height: 34px; padding: 0 13px;
	font-size: 13px; font-weight: 500; letter-spacing: -0.01em;
	color: #444;
	border-radius: 50px; border: none; background: transparent !important;
	cursor: pointer; white-space: nowrap;
	transition: all 0.18s ease;
	font-family: 'Inter', system-ui, sans-serif;
}
.dn-nav-btn:hover { color: #111; background: rgba(0,0,0,0.05) !important; }
.dn-nav-btn.dn-active { color: #111; background: rgba(0,0,0,0.07) !important; }
.dn-nav-btn svg {
	width: 9px; height: 9px; stroke: currentColor; fill: none; stroke-width: 2.5;
	stroke-linecap: round; stroke-linejoin: round;
	transition: transform 0.3s cubic-bezier(0.32,0.72,0,1); opacity: 0.5;
}
.dn-nav-btn.dn-active svg { transform: rotate(180deg); opacity: 0.8; }
.dn-nav-btn.dn-hot { color: #1a3a6b; font-weight: 600; }

.dn-icon {
	width: 34px; height: 34px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	border: none; background: transparent !important; cursor: pointer;
	color: #555; position: relative;
	transition: all 0.18s ease;
}
.dn-icon:hover { background: rgba(0,0,0,0.06) !important; color: #111; }
.dn-icon svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.dn-badge {
	position: absolute; top: 2px; right: 2px;
	min-width: 14px; height: 14px;
	background: #1a3a6b; color: #fff;
	font-size: 8px; font-weight: 700; border-radius: 99px;
	display: flex; align-items: center; justify-content: center;
	padding: 0 3px; border: 1.5px solid #fff; line-height: 1;
}
.dn-badge:empty { display: none; }

/* ── Dropdown panel ── */
.dn-drop {
	position: relative;
	opacity: 0;
	transition: opacity 0.25s ease 0.05s;
	padding: 0 20px 18px;
}
.dn-island.dn-open .dn-drop { opacity: 1; }
.dn-drop::before {
	content: ''; display: block;
	height: 1px; background: rgba(0,0,0,0.06);
	margin: 0 4px 16px;
}
.dn-panel { display: none; }
.dn-panel.dn-visible { display: block; }

.dn-sub-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 160px));
	gap: 10px;
}
.dn-sub-card {
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	padding: 8px; border-radius: 16px;
	cursor: pointer; text-decoration: none !important;
	transition: background 0.15s ease, transform 0.2s ease;
}
.dn-sub-card:hover { background: rgba(0,0,0,0.04); transform: translateY(-2px); }
.dn-sub-img {
	width: 100%; aspect-ratio: 1; border-radius: 14px; overflow: hidden;
	background: #f3f1ec;
	display: flex; align-items: center; justify-content: center;
	font-size: 32px;
}
.dn-sub-img img { width: 88%; height: 88%; object-fit: contain; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.10)); transition: transform 0.3s ease; }
.dn-sub-card:hover .dn-sub-img img { transform: scale(1.06); }
.dn-sub-name { font-size: 12px; font-weight: 500; color: #333; text-align: center; line-height: 1.25; }

.dn-see-all {
	display: inline-flex; align-items: center; gap: 5px;
	margin-top: 12px;
	font-size: 12.5px; font-weight: 600; color: #1a3a6b !important;
	cursor: pointer; transition: gap 0.2s ease;
}
.dn-see-all:hover { gap: 8px; }
.dn-see-all svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Premium desktop header */
@media (min-width: 1025px) {
	body { padding-top: 204px !important; }

	.dn-desktop-header {
		--dn-cream: #f7f4ee;
		--dn-ink: #181610;
		--dn-muted: #746f66;
		--dn-line: rgba(24, 22, 16, 0.1);
		top: 0; left: 0; right: 0;
		transform: none;
		width: 100%;
		min-width: 0;
		max-width: none;
		height: auto;
		background: var(--dn-cream);
		border: 0;
		border-radius: 0;
		box-shadow: 0 10px 34px rgba(24, 18, 10, 0.08);
		overflow: hidden;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		transition: box-shadow 0.24s ease, height 0.36s cubic-bezier(0.32,0.72,0,1);
	}

	.dn-desktop-header.dn-scrolled {
		background: rgba(247, 244, 238, 0.96);
		box-shadow: 0 16px 44px rgba(24, 18, 10, 0.12);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
	}

	.dn-desktop-header.dn-open {
		border-radius: 0;
		box-shadow: 0 22px 70px rgba(24, 18, 10, 0.18);
	}

	.dn-topbar {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
		min-height: 54px;
		padding: 0 clamp(28px, 4vw, 54px);
		background: #17150f;
		color: rgba(255,255,255,0.68);
		font-size: 15px;
		transition: min-height 0.24s ease, opacity 0.2s ease;
	}

	.dn-island.dn-scrolled .dn-topbar {
		min-height: 0;
		height: 0;
		opacity: 0;
		overflow: hidden;
	}

	.dn-topbar-side {
		display: flex;
		align-items: center;
		gap: 18px;
	}

	.dn-topbar-side--right { justify-content: flex-end; }

	.dn-topbar-link,
	.dn-topbar-center {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		color: inherit !important;
		font-weight: 500;
		white-space: nowrap;
	}

	.dn-topbar-center {
		color: #efe9db !important;
		font-weight: 700;
		letter-spacing: 0.01em;
	}

	.dn-topbar svg {
		width: 17px; height: 17px;
		stroke: currentColor; fill: none; stroke-width: 1.7;
		stroke-linecap: round; stroke-linejoin: round;
	}

	.dn-topbar-dot { color: rgba(255,255,255,0.28); }

	.dn-brand-row {
		display: grid;
		grid-template-columns: minmax(260px, 420px) 1fr minmax(300px, 420px);
		align-items: center;
		gap: 24px;
		min-height: 112px;
		padding: 0 clamp(28px, 4vw, 54px);
		border-bottom: 1px solid var(--dn-line);
		transition: min-height 0.24s ease, padding 0.24s ease;
	}

	.dn-island.dn-scrolled .dn-brand-row { min-height: 76px; }

	.dn-search-pill {
		width: min(420px, 100%);
		height: 58px;
		display: inline-flex;
		align-items: center;
		gap: 16px;
		padding: 0 24px;
		border: 1px solid rgba(24,22,16,0.12);
		border-radius: 999px;
		background: rgba(255,255,255,0.62) !important;
		color: #716a60;
		cursor: pointer;
		font-family: Georgia, 'Times New Roman', serif !important;
		font-size: 18px;
		font-style: italic;
		text-align: left;
		box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
		transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
	}

	.dn-search-pill:hover {
		border-color: rgba(24,22,16,0.26);
		background: #fff !important;
		transform: translateY(-1px);
	}

	.dn-search-pill svg,
	.dn-action-link svg {
		width: 22px; height: 22px;
		stroke: currentColor; fill: none; stroke-width: 1.65;
		stroke-linecap: round; stroke-linejoin: round;
	}

	.dn-brand-row .dn-logo {
		justify-self: center;
		padding: 0;
	}

	.dn-brand-row .dn-logo-img {
		height: 58px;
		max-width: 320px;
		object-fit: contain;
		transition: height 0.24s ease, transform 0.2s ease;
	}

	.dn-island.dn-scrolled .dn-brand-row .dn-logo-img { height: 44px; }

	.dn-action-row {
		justify-self: end;
		display: flex;
		align-items: center;
		gap: clamp(18px, 2.1vw, 34px);
	}

	.dn-action-link {
		position: relative;
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		gap: 7px;
		color: var(--dn-muted) !important;
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		white-space: nowrap;
		transition: color 0.18s ease, transform 0.18s ease;
	}

	.dn-action-link:hover {
		color: var(--dn-ink) !important;
		transform: translateY(-1px);
	}

	.dn-action-link .dn-badge {
		top: -8px;
		right: 6px;
		background: #b92d2b;
		border-color: var(--dn-cream);
	}

	.dn-cat-row {
		display: flex;
		align-items: stretch;
		justify-content: center;
		gap: clamp(6px, 0.6vw, 14px);
		min-height: 88px;
		padding: 0 clamp(20px, 3vw, 48px);
		border-bottom: 1px solid var(--dn-line);
		background: rgba(255,255,255,0.28);
		overflow-x: auto;
		scrollbar-width: none;
	}

	.dn-cat-row::-webkit-scrollbar { display: none; }
	.dn-island.dn-scrolled .dn-cat-row { min-height: 64px; }

	.dn-cat-row .dn-nav-btn {
		position: relative;
		height: auto;
		padding: 0 13px;
		border-radius: 0;
		color: #17150f;
		font-size: clamp(15px, 1.08vw, 21px);
		font-weight: 500;
		letter-spacing: -0.02em;
		white-space: nowrap;
	}

	.dn-cat-row .dn-nav-btn:hover,
	.dn-cat-row .dn-nav-btn.dn-active {
		background: transparent !important;
		color: #000;
	}

	.dn-cat-row .dn-nav-btn::after {
		content: '';
		position: absolute;
		left: 12px; right: 12px; bottom: 0;
		height: 2px;
		background: #17150f;
		transform: scaleX(0);
		transform-origin: center;
		transition: transform 0.22s ease;
	}

	.dn-cat-row .dn-nav-btn:hover::after,
	.dn-cat-row .dn-nav-btn.dn-active::after { transform: scaleX(1); }

	.dn-cat-row .dn-nav-btn.dn-hot {
		color: #b92d2b;
		font-weight: 700;
	}

	.dn-drop {
		position: relative;
		opacity: 0;
		padding: 0;
		background: var(--dn-cream);
		transition: opacity 0.22s ease;
	}

	.dn-island.dn-open .dn-drop { opacity: 1; }
	.dn-drop::before { display: none; }
	.dn-panel { display: none; }
	.dn-panel.dn-visible { display: block; }

	.dn-mega {
		display: grid;
		grid-template-columns: minmax(250px, 310px) minmax(560px, 1fr) minmax(210px, 250px);
		gap: 24px;
		padding: 28px 34px 26px;
		border-bottom: 1px solid var(--dn-line);
		align-items: start;
	}

	.dn-mega-feature {
		position: relative;
		min-height: 360px;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		padding: 22px 24px 24px;
		border-radius: 22px;
		overflow: hidden;
		background:
			linear-gradient(180deg, rgba(255,247,238,0.08), rgba(120,86,56,0.88)),
			linear-gradient(135deg, #d8c8b4 0%, #ccb297 48%, #9e7857 100%);
		color: #fff !important;
		box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
	}

	.dn-mega-feature::before,
	.dn-mega-feature::after {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		pointer-events: none;
	}

	.dn-mega-feature::before {
		top: 46%;
		height: 24%;
		background:
			radial-gradient(circle at 20% 100%, rgba(255,255,255,0.82) 0 20%, transparent 21%),
			radial-gradient(circle at 50% 100%, rgba(255,255,255,0.78) 0 20%, transparent 21%),
			radial-gradient(circle at 80% 100%, rgba(255,255,255,0.75) 0 20%, transparent 21%);
		opacity: 0.52;
	}

	.dn-mega-feature::after {
		bottom: 72px;
		height: 46px;
		background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
	}

	.dn-mega-feature .dn-mega-kicker {
		position: relative;
		z-index: 1;
		align-self: flex-start;
		margin-bottom: auto;
		padding: 9px 16px;
		border-radius: 999px;
		background: rgba(255,255,255,0.92);
		color: #17150f;
		font-size: 11px;
		font-weight: 800;
		letter-spacing: 0.18em;
		text-transform: uppercase;
	}

	.dn-mega-feature strong {
		position: relative;
		z-index: 1;
		max-width: 280px;
		font-family: Georgia, 'Times New Roman', serif;
		font-size: clamp(30px, 2.6vw, 46px);
		font-weight: 400;
		line-height: 0.96;
		text-shadow: 0 10px 30px rgba(40, 23, 8, 0.42);
	}

	.dn-mega-feature em {
		position: relative;
		z-index: 1;
		display: inline-flex;
		align-items: center;
		gap: 12px;
		align-self: flex-start;
		margin-top: 14px;
		padding: 13px 18px;
		border-radius: 999px;
		background: #1f1a14;
		color: #fff;
		font-style: normal;
		font-size: 12px;
		font-weight: 800;
		letter-spacing: 0.05em;
		text-transform: uppercase;
		opacity: 1;
		box-shadow: 0 12px 24px rgba(22, 16, 10, 0.24);
	}

	.dn-mega .dn-sub-grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(145px, 1fr));
		align-content: start;
		gap: 8px 26px;
		padding-top: 2px;
	}

	.dn-mega .dn-sub-card {
		align-items: flex-start;
		gap: 8px;
		min-height: 42px;
		padding: 6px 0 9px;
		border-radius: 0;
		border-bottom: 1px solid rgba(24,22,16,0.14);
	}

	.dn-mega .dn-sub-card:hover {
		background: transparent !important;
		transform: translateX(4px);
	}

	.dn-mega .dn-sub-img { display: none; }

	.dn-mega .dn-sub-name {
		color: #4d473f;
		font-size: 12px;
		font-weight: 600;
		line-height: 1.28;
		text-align: left;
		text-wrap: pretty;
		text-transform: none;
		word-break: normal;
		overflow-wrap: anywhere;
		hyphens: auto;
	}

	.dn-mega-side {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		padding-top: 2px;
	}

	.dn-mega-side-title {
		display: inline-flex;
		padding-bottom: 10px;
		border-bottom: 2px solid #29352f;
		color: #29352f;
		font-size: 11px;
		font-weight: 900;
		letter-spacing: 0.24em;
		text-transform: uppercase;
	}

	.dn-mega-side-link {
		display: grid;
		grid-template-columns: 82px minmax(0, 1fr);
		align-items: center;
		gap: 14px;
		width: 100%;
		padding: 10px 12px;
		border: 1px solid rgba(24,22,16,0.06);
		border-radius: 18px;
		background: rgba(187, 160, 129, 0.08);
		color: #2f2922 !important;
		font-size: 12px;
		font-weight: 500;
		line-height: 1.25;
	}

	.dn-mega-side-link::before {
		content: '';
		display: block;
		width: 82px;
		height: 82px;
		border-radius: 14px;
		background:
			linear-gradient(180deg, rgba(255,255,255,0.18), rgba(124,91,61,0.2)),
			linear-gradient(135deg, #d6c4b0 0%, #cbb49a 100%);
		box-shadow: inset 0 -18px 28px rgba(124,91,61,0.18);
	}

	.dn-mega-side-link:hover {
		color: #17150f !important;
		transform: translateY(-1px);
	}

	.dn-mega-side .dn-see-all {
		margin-top: 6px;
		padding-bottom: 4px;
		border-bottom: 2px solid #17150f;
		color: #17150f !important;
		font-size: 12px;
		font-weight: 900;
		letter-spacing: 0.18em;
		text-transform: uppercase;
	}

	.dn-trust-strip {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 12px 24px;
		min-height: 52px;
		padding: 12px 34px;
		background: #eee8dc;
		border-top: 1px solid rgba(24,22,16,0.08);
		color: #554f46;
		font-size: 13px;
		font-weight: 600;
	}

	.dn-trust-strip span,
	.dn-trust-strip a {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		white-space: nowrap;
	}

	.dn-trust-strip a {
		margin-left: auto;
		color: #17150f !important;
		font-size: 11px;
		font-weight: 900;
		letter-spacing: 0.18em;
		text-transform: uppercase;
	}

	.dn-trust-strip svg {
		width: 20px; height: 20px;
		stroke: currentColor; fill: none; stroke-width: 1.7;
		stroke-linecap: round; stroke-linejoin: round;
	}

	@media (max-width: 1420px) {
		.dn-mega {
			grid-template-columns: minmax(220px, 270px) minmax(460px, 1fr) minmax(190px, 230px);
		}

		.dn-mega .dn-sub-grid {
			grid-template-columns: repeat(3, minmax(130px, 1fr));
		}
	}

	.dn-sr-panel { top: 76px; }
}

/* ── Overlay ── */
.dn-overlay { position: fixed; inset: 0; z-index: 8998; display: none; }
.dn-overlay.dn-on { display: block; }

/* ── Search Panel ── */
.dn-sr-panel {
	position: fixed;
	top: 74px; left: 50%;
	transform: translateX(-50%) translateY(-10px);
	width: 480px; max-width: calc(100vw - 32px);
	background: rgba(255,255,255,0.98);
	border: 1px solid rgba(0,0,0,0.07);
	border-radius: 20px; padding: 14px 10px 10px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.13), 0 4px 14px rgba(0,0,0,0.06);
	opacity: 0; pointer-events: none;
	transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.32,0.72,0,1);
	z-index: 9100;
}
.dn-sr-panel.dn-sr-open { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dn-sr-input-wrap { display: flex; align-items: center; gap: 8px; padding: 0 10px; margin-bottom: 10px; }
.dn-sr-input-wrap svg { width: 15px; height: 15px; stroke: #aaa; fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
.dn-sr-input { border: none; outline: none; background: none; width: 100%; font-family: 'Inter', sans-serif; font-size: 14px; color: #111; }
.dn-sr-input::placeholder { color: #bbb; }
.dn-sr-divider { height: 1px; background: rgba(0,0,0,0.06); margin: 6px 8px; }
.dn-sr-label { font-size: 9px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: #ccc; padding: 4px 10px 6px; }
.dn-sr-item { display: flex; align-items: center; gap: 10px; padding: 6px 10px; border-radius: 12px; text-decoration: none !important; transition: background 0.12s; cursor: pointer; }
.dn-sr-item:hover { background: rgba(0,0,0,0.04); }
.dn-sr-thumb { width: 42px; height: 42px; border-radius: 10px; background: #f3f1ec; flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.dn-sr-thumb img { width: 86%; height: 86%; object-fit: contain; }
.dn-sr-name { font-size: 13px; font-weight: 500; color: #111; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dn-sr-empty { padding: 20px; text-align: center; font-size: 13px; color: #999; display: none; }

/* ── Mobile Bar ── */
.dn-mobile-bar {
	display: none;
	font-family: 'Inter', system-ui, sans-serif;
	position: fixed; top: 10px; left: 12px; right: 12px;
	height: 54px; z-index: 9000;
	background: rgba(255,255,255,0.96);
	border: 1px solid rgba(230,230,230,0.9);
	border-radius: 50px;
	box-shadow: 0 4px 28px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.7);
	padding: 0 8px 0 18px;
	align-items: center; justify-content: space-between;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}
.dn-m-logo { display: flex; align-items: center; text-decoration: none !important; }
.dn-m-logo img { height: 26px; width: auto; display: block; }
.dn-m-actions { display: flex; align-items: center; gap: 2px; }
.dn-m-btn {
	width: 38px; height: 38px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	border: none; background: transparent !important; cursor: pointer; color: #444;
	transition: all 0.15s ease; position: relative;
}
.dn-m-btn:hover { background: rgba(0,0,0,0.05) !important; }
.dn-m-btn svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.dn-m-badge {
	position: absolute; top: 3px; right: 3px;
	min-width: 14px; height: 14px; background: #1a3a6b; color: #fff;
	font-size: 8px; font-weight: 700; border-radius: 99px;
	display: flex; align-items: center; justify-content: center;
	padding: 0 3px; border: 1.5px solid #fff; line-height: 1;
}
.dn-m-badge:empty { display: none; }

.dn-hamburger { flex-direction: column; gap: 0; justify-content: center; }
.dn-hamburger span { display: block; width: 18px; height: 1.8px; background: #444; border-radius: 2px; transition: all 0.3s cubic-bezier(0.32,0.72,0,1); }
.dn-hamburger span + span { margin-top: 4.5px; }
.dn-hamburger.dn-ham-open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.dn-hamburger.dn-ham-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.dn-hamburger.dn-ham-open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* ── Drawer ── */
.dn-drawer {
	font-family: 'Inter', system-ui, sans-serif;
	position: fixed; top: 0; left: 0; right: 0; bottom: 0;
	background: #fff; z-index: 9500;
	overflow-y: auto; overflow-x: hidden;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.32,0.72,0,1);
	padding: 0 0 100px;
}
.dn-drawer.dn-drawer-open { transform: translateY(0); }

.dn-drawer-head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid rgba(0,0,0,0.06);
	position: sticky; top: 0; background: #fff; z-index: 2;
}
.dn-drawer-head-logo { text-decoration: none !important; }
.dn-drawer-close {
	width: 38px; height: 38px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	border: none; background: rgba(0,0,0,0.04) !important; cursor: pointer;
	color: #666; transition: all 0.15s ease;
}
.dn-drawer-close:hover { background: rgba(0,0,0,0.08) !important; color: #111; }
.dn-drawer-close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.dn-drawer-search {
	margin: 16px 20px 8px;
	display: flex; align-items: center; gap: 10px;
	background: #f5f5f5; border-radius: 14px;
	padding: 0 14px; height: 46px;
	border: 1px solid transparent;
	transition: border-color 0.15s, background 0.15s;
}
.dn-drawer-search:focus-within { background: #fff; border-color: rgba(0,0,0,0.12); }
.dn-drawer-search svg { width: 16px; height: 16px; stroke: #999; fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
.dn-drawer-search-input { border: none; outline: none; background: none; width: 100%; font-family: 'Inter', sans-serif; font-size: 14px; color: #111; }
.dn-drawer-search-input::placeholder { color: #bbb; }

.dn-drawer-section { border-bottom: 1px solid rgba(0,0,0,0.05); }
.dn-drawer-toggle {
	display: flex; align-items: center;
	width: 100%; padding: 15px 20px;
	font-size: 14.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
	color: #111; border: none; background: transparent !important; cursor: pointer;
	font-family: 'Inter', sans-serif; gap: 12px;
}
.dn-drawer-arrow { width: 20px; height: 20px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #1a3a6b; }
.dn-drawer-arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dn-drawer-chev { margin-left: auto; width: 18px; height: 18px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #bbb; transition: transform 0.3s cubic-bezier(0.32,0.72,0,1), color 0.2s; }
.dn-drawer-chev svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dn-drawer-toggle.dn-acc-open .dn-drawer-chev { transform: rotate(180deg); color: #1a3a6b; }

.dn-drawer-subs { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.32,0.72,0,1); background: #fafafa; }
.dn-drawer-subs.dn-acc-open { max-height: 600px; }

.dn-drawer-all { display: block; padding: 13px 20px; font-size: 15px; font-weight: 700; color: #1a3a6b !important; border-bottom: 1px solid rgba(0,0,0,0.05); letter-spacing: -0.01em; }
.dn-drawer-sub { display: block; padding: 12px 20px; font-size: 15px; font-weight: 400; color: #444; border-bottom: 1px solid rgba(0,0,0,0.04); }
.dn-drawer-sub:last-child { border-bottom: none; }
.dn-drawer-sub:hover { color: #1a3a6b; background: rgba(26,58,107,0.04); }

.dn-drawer-bottom { padding: 12px 0; border-top: 1px solid rgba(0,0,0,0.06); margin-top: 4px; }
.dn-drawer-blink { display: flex; align-items: center; gap: 12px; padding: 14px 20px; font-size: 14.5px; font-weight: 500; color: #333; transition: background 0.12s; }
.dn-drawer-blink:hover { background: rgba(0,0,0,0.02); }
.dn-drawer-blink svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; opacity: 0.5; }
.dn-drawer-blink.dn-drawer-hot { color: #1a3a6b; font-weight: 600; }
.dn-drawer-blink.dn-drawer-hot svg { opacity: 0.8; stroke: #1a3a6b; }

/* ── Call FAB ── */
.dn-call-fab {
	position: fixed; bottom: 24px; right: 24px;
	height: 50px; border-radius: 50px;
	padding: 0 18px 0 14px;
	background: linear-gradient(135deg, #22c55e, #16a34a);
	color: #fff; border: none; cursor: pointer;
	display: flex; align-items: center; justify-content: center; gap: 8px;
	box-shadow: 0 4px 20px rgba(22,163,74,0.35), 0 2px 6px rgba(0,0,0,0.1);
	z-index: 8000;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}
.dn-call-fab:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(22,163,74,0.45), 0 3px 8px rgba(0,0,0,0.12); }
.dn-call-fab svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.dn-call-fab-label { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.01em; }
.dn-call-fab::before {
	content: ''; position: absolute; inset: -6px;
	border-radius: 50px; border: 2px solid rgba(34,197,94,0.4);
	animation: dn-pulse 2s ease-out infinite;
}
@keyframes dn-pulse {
	0% { transform: scale(0.97); opacity: 1; }
	100% { transform: scale(1.12); opacity: 0; }
}

.dn-call-popup {
	position: fixed; bottom: 92px; right: 24px;
	width: 300px;
	background: #fff;
	border-radius: 20px;
	border: 1px solid rgba(0,0,0,0.07);
	box-shadow: 0 16px 50px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06);
	z-index: 8001;
	padding: 22px 20px 20px;
	text-align: center;
	font-family: 'Inter', sans-serif;
	opacity: 0; pointer-events: none;
	transform: translateY(10px) scale(0.95);
	transition: all 0.25s cubic-bezier(0.32,0.72,0,1);
}
.dn-call-popup.dn-call-open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
.dn-call-popup-title { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 4px; }
.dn-call-sub { font-size: 12.5px; color: #888; margin-bottom: 14px; line-height: 1.4; }
.dn-call-number {
	display: flex; align-items: center; justify-content: center; gap: 8px;
	font-size: 20px; font-weight: 800; color: #fff !important;
	letter-spacing: 0.02em; margin-bottom: 6px;
	background: linear-gradient(135deg, #22c55e, #16a34a) !important;
	border-radius: 12px; padding: 12px 16px;
	transition: opacity 0.15s; text-decoration: none !important;
}
.dn-call-number:hover { opacity: 0.9; }
.dn-call-number svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.dn-viber-btn {
	display: flex; align-items: center; justify-content: center; gap: 8px;
	font-size: 15px; font-weight: 700; color: #fff !important;
	background: linear-gradient(135deg, #7360f2, #5b4de8) !important;
	border-radius: 12px; padding: 11px 16px; margin-bottom: 6px;
	transition: opacity 0.15s; text-decoration: none !important;
}
.dn-viber-btn:hover { opacity: 0.9; }
.dn-viber-btn svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.dn-call-tap-hint { font-size: 11px; color: #16a34a; font-weight: 600; margin-bottom: 12px; letter-spacing: 0.01em; }
.dn-call-hours-title { display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 12px; font-weight: 600; color: #333; margin-bottom: 6px; }
.dn-call-hours-title svg { width: 14px; height: 14px; stroke: #666; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dn-call-hours { font-size: 12px; color: #777; line-height: 1.7; }

/* ── Responsive ── */
@media (max-width: 1024px) {
	.dn-island { display: none !important; }
	.dn-mobile-bar { display: flex; }
	.dn-sr-panel { top: 68px; }
	.dn-call-fab { left: 24px; right: auto; }
	.dn-call-popup { left: 24px; right: auto; }
	.dn-call-fab-label { display: none; }
	.dn-call-fab { width: 50px; height: 50px; padding: 0; border-radius: 50%; justify-content: center; }
}
@media (max-width: 400px) {
	.dn-call-popup { width: calc(100vw - 32px); left: 16px; right: auto; }
	.dn-call-fab { bottom: 80px; left: 16px; right: auto; }
}

/* =========================================
   HERO SECTION
   ========================================= */
.dr-hero-section {
	font-family: 'Outfit', 'Inter', sans-serif;
}
.dr-hero-section *,
.dr-hero-section *::before,
.dr-hero-section *::after { box-sizing: border-box; margin: 0; padding: 0; }

.dr-hero {
	display: grid;
	grid-template-columns: 1fr 380px;
	grid-template-rows: 1fr 210px;
	gap: 10px;
	max-width: 1440px;
	margin: 0 auto;
	padding: 10px;
	height: 560px;
}
/* Hide spurious <p>/<br> injected by wpautop inside the grid */
.dr-hero > p, .dr-hero > br { display: none !important; }
/* Explicit grid placement for hero children */
.dr-hero .carousel    { grid-column: 1; grid-row: 1 / 3; }
.dr-hero .promo-card  { grid-column: 2; grid-row: 1; }
.dr-hero .cat-strip   { grid-column: 2; grid-row: 2; }

/* ── Carousel ── */
.dr-hero .carousel {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: #111;
}
.dr-hero .carousel-slides { position: relative; width: 100%; height: 100%; }
.dr-hero .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.dr-hero .slide.active { opacity: 1; }

.dr-hero .slide-bg {
	position: absolute; inset: 0;
	transform: scale(1);
}
.dr-hero .slide-media {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.dr-hero-section.kb-ready .slide-bg { transition: transform 7s ease; }
.dr-hero .slide.active .slide-bg { transform: scale(1.06); }

.dr-hero .slide-overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.15) 50%, transparent 100%),
		linear-gradient(to right, rgba(0,0,0,0.2) 0%, transparent 50%);
}

.dr-hero .slide-progress {
	position: absolute; bottom: 0; left: 0;
	height: 2px; background: rgba(255,255,255,0.9); width: 0%;
	z-index: 10; transition: none;
}
.dr-hero .slide-progress.running { width: 100%; transition: width 6.1s linear; }

.dr-hero .slide-content { position: absolute; bottom: 44px; left: 40px; right: 40px; z-index: 5; }
.dr-hero .slide-counter { font-size: 11px; font-weight: 400; letter-spacing: 0.18em; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.dr-hero .slide-content h2 { font-size: clamp(24px, 2.6vw, 40px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 8px; letter-spacing: -0.5px; }
.dr-hero .slide-content p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.6); margin-bottom: 22px; letter-spacing: 0.01em; }
.dr-hero .slide-btn {
	display: inline-flex; align-items: center; gap: 9px;
	background: rgba(0,0,0,0.38); border: 1px solid rgba(255,255,255,0.22);
	color: #fff; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 500;
	padding: 11px 22px; min-height: 44px; border-radius: 99px; cursor: pointer;
	transition: background 0.22s, border-color 0.22s, transform 0.22s;
	letter-spacing: 0.02em; text-decoration: none;
}
.dr-hero .slide-btn:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.38); transform: translateY(-1px); }
.dr-hero .slide-btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; transition: transform 0.2s; }
.dr-hero .slide-btn:hover svg { transform: translateX(3px); }

.dr-hero .carousel-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dr-hero .dot { width: 18px; height: 18px; min-width: 18px; min-height: 18px; border-radius: 99px; background: rgba(255,255,255,0.35); border: 5px solid transparent; background-clip: content-box; cursor: pointer; padding: 0; transition: background 0.25s, width 0.35s cubic-bezier(.4,0,.2,1); }
.dr-hero .dot.active { background: #fff; width: 32px; }
.dr-hero .dot:hover:not(.active) { background: rgba(255,255,255,0.6); }

.dr-hero .carousel-arrow {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
	width: 48px; height: 48px; border-radius: 99px;
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(12px) saturate(160%);
	-webkit-backdrop-filter: blur(12px) saturate(160%);
	border: 1.5px solid rgba(255,255,255,0.35);
	color: #fff; display: flex; align-items: center; justify-content: center;
	cursor: pointer; transition: background 0.2s, transform 0.2s, border-color 0.2s;
	box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.dr-hero .carousel-arrow:hover {
	background: rgba(255,255,255,0.28);
	border-color: rgba(255,255,255,0.6);
	transform: translateY(-50%) scale(1.08);
}
.dr-hero .carousel-arrow svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.dr-hero .carousel-arrow.prev { left: 20px; }
.dr-hero .carousel-arrow.next { right: 20px; }

/* ── Promo card ── */
.dr-hero .promo-card {
	border-radius: 20px; overflow: hidden; position: relative;
	cursor: pointer; background: #1a1a2e; text-decoration: none; display: block;
	height: 100%; min-height: 0; align-self: stretch;
}
.dr-hero .promo-bg {
	position: absolute; inset: 0;
	background: linear-gradient(135deg, #1a1a2e 0%, #11366b 100%);
	transition: transform 0.55s ease;
}
.dr-hero .promo-card:hover .promo-bg { transform: scale(1.05); }
.dr-hero .promo-content {
	position: absolute; inset: 0; display: flex; flex-direction: column;
	align-items: center; justify-content: center; padding: 20px; text-align: center;
	z-index: 1;
}
.dr-hero .promo-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.dr-hero .promo-headline { font-size: clamp(18px, 2vw, 28px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 12px; }
.dr-hero .promo-sub { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.55); }

/* ── Category strip ── */
.dr-hero .cat-strip {
	border-radius: 20px; background: #0d2150;
	display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr;
	overflow: hidden; position: relative;
	height: 100%; min-height: 0; align-self: stretch;
}
.dr-hero .cat-strip::before,
.dr-hero .cat-strip::after { display: none; }
.dr-hero .cat-btn {
	display: flex; flex-direction: row; align-items: center;
	gap: 12px; padding: 0 18px; cursor: pointer; text-decoration: none;
	position: relative; transition: background 0.18s;
	border-bottom: 1px solid rgba(255,255,255,0.07);
	border-right: 1px solid rgba(255,255,255,0.07);
}
.dr-hero .cat-btn:nth-child(2n)   { border-right: none; }
.dr-hero .cat-btn:nth-last-child(-n+2) { border-bottom: none; }
.dr-hero .cat-btn::after,
.dr-hero .cat-btn + .cat-btn::before { display: none; }
.dr-hero .cat-btn:hover { background: rgba(255,255,255,0.07); }
.dr-hero .cat-btn:hover .cat-label { color: #fff; }
.dr-hero .cat-icon {
	width: 38px; height: 38px; flex-shrink: 0;
	background: rgba(255,255,255,0.1); border-radius: 10px;
	display: inline-flex; align-items: center; justify-content: center;
	vertical-align: middle;
	transition: background 0.18s;
}
.dr-hero .cat-btn:hover .cat-icon { background: rgba(255,255,255,0.2); }
.dr-hero .cat-icon svg {
	width: 18px; height: 18px; fill: none;
	stroke: rgba(255,255,255,0.9); stroke-width: 1.7;
	stroke-linecap: round; stroke-linejoin: round;
}
.dr-hero .cat-label {
	font-size: 13px; font-weight: 600;
	color: rgba(255,255,255,0.82); letter-spacing: 0.01em;
	transition: color 0.18s; white-space: nowrap;
}

/* ── Trust bar ── */
.trust-bar {
	max-width: 1440px; margin: 0 auto; padding: 0 10px 10px;
	display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
}
.trust-item {
	background: rgba(255,255,255,0.88); border: 1px solid rgba(255,255,255,0.9);
	border-radius: 14px; padding: 14px 18px;
	display: flex; align-items: center; gap: 13px;
}
.trust-icon {
	width: 34px; height: 34px; border-radius: 10px; background: #11366b;
	display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-icon svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.trust-text strong { display: block; font-size: 13px; font-weight: 600; color: #111; margin-bottom: 1px; }
.trust-text p { font-size: 11.5px; font-weight: 300; color: #666; margin: 0; }

/* ── Featured products section ── */
.featured-products-section { padding: 0 1.5rem 2rem; }
.featured-products-section .wp-block-heading { margin-top: 24px !important; margin-bottom: 4px !important; }
.featured-products-section p.has-text-align-center { margin-top: 6px !important; margin-bottom: 16px !important; }
.dr-home-products__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.dr-home-products__card {
	background: #fff;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
	display: flex;
	flex-direction: column;
	height: 100%;
}
.dr-home-products__image {
	display: block;
	aspect-ratio: 1 / 1;
	background: #f7f7f5;
}
.dr-home-products__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.dr-home-products__body {
	padding: 14px 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.dr-home-products__tag {
	align-self: flex-start;
	padding: 0.32rem 0.7rem;
	border-radius: 999px;
	background: #dcfce7;
	color: #166534;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}
.dr-home-products__title {
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.35;
}
.dr-home-products__title a {
	color: #111827;
	text-decoration: none;
}
.dr-home-products__price {
	color: var(--wp--preset--color--gold);
	font-weight: 700;
	font-size: 0.98rem;
}
.dr-home-products__price .amount {
	color: inherit;
}
.dr-home-products__cta {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	background: #102a43;
	color: #fff;
	font-size: 0.88rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}
.dr-home-products__cta:hover {
	background: #16395c;
	transform: translateY(-1px);
}

/* ── Hero responsive ── */
@media (max-width: 960px) {
	.dr-hero { grid-template-columns: 1fr; grid-template-rows: 320px auto; height: auto; }
	.dr-hero .carousel    { grid-column: 1; grid-row: 1; }
	.dr-hero .promo-card  { display: none; }
	.dr-hero .cat-strip   { grid-column: 1; grid-row: 2; }
	.trust-bar { grid-template-columns: repeat(2, 1fr); }
	/* 5-col grid: regular items top row, Ετοιμοπαράδοτα full-width below */
	.dr-hero .cat-strip {
		display: grid !important;
		grid-template-columns: repeat(5, 1fr);
		grid-auto-rows: auto;
		height: auto !important;
		padding: 0 !important;
		gap: 0;
		border-radius: 0 0 20px 20px;
		overflow: hidden;
	}
	.dr-hero .cat-btn {
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 6px !important;
		padding: 14px 8px !important;
		border-right: 1px solid rgba(255,255,255,0.07) !important;
		border-bottom: 1px solid rgba(255,255,255,0.07) !important;
		min-height: 80px !important;
	}
	.dr-hero .cat-btn:nth-child(5n) { border-right: none !important; }
	.dr-hero .cat-btn.cat-featured {
		grid-column: 1 / -1 !important;
		flex-direction: row !important;
		justify-content: center !important;
		gap: 10px !important;
		padding: 12px 20px !important;
		min-height: 50px !important;
		border-right: none !important;
		border-bottom: none !important;
		border-top: 1px solid rgba(255,255,255,0.10) !important;
		background: rgba(255,209,70,0.10) !important;
	}
	.dr-hero .cat-label {
		font-size: 10px !important;
		white-space: normal !important;
		text-align: center !important;
		line-height: 1.25 !important;
		word-break: break-word !important;
		max-width: 55px !important;
		display: inline-block !important;
	}
	.dr-hero .cat-featured .cat-label { font-size: 12px !important; font-weight: 700 !important; }
	.dr-hero .cat-icon { width: 34px !important; height: 34px !important; border-radius: 10px !important; }
	.dr-hero .cat-icon svg { width: 17px !important; height: 17px !important; }
}
@media (max-width: 560px) {
	.dr-hero { grid-template-rows: 260px auto; }
	.dr-hero .cat-strip { grid-template-columns: repeat(5, 1fr) !important; }
	.dr-hero .cat-btn {
		padding: 12px 4px !important;
		min-height: 72px !important;
		gap: 5px !important;
	}
	.dr-hero .cat-btn.cat-featured {
		padding: 10px 16px !important;
		min-height: 44px !important;
	}
	.dr-hero .cat-label {
		font-size: 9px !important;
		word-break: break-word !important;
		max-width: 50px !important;
		display: inline-block !important;
	}
	.dr-hero .cat-icon { width: 28px !important; height: 28px !important; border-radius: 8px !important; }
	.trust-bar { grid-template-columns: 1fr 1fr; gap: 6px; }
	.trust-item { padding: 10px 10px; gap: 8px; }
	.trust-item-title { font-size: 12px; }
	.trust-item-sub { font-size: 10px; }
	.dr-hero .slide-content { left: 20px; right: 20px; bottom: 28px; }
	.dr-hero .slide-content h2 { font-size: clamp(18px, 5vw, 28px); margin-bottom: 4px; }
	.dr-hero .slide-content p { margin-bottom: 14px; font-size: 12px; }
	.dr-hero .slide-btn { font-size: 11px; padding: 9px 16px; }
	.dr-hero .carousel-dots { right: 20px; bottom: 16px; }
	.dr-hero .carousel-arrow { width: 36px; height: 36px; }
	.dr-hero .carousel-arrow.prev { left: 10px; }
	.dr-hero .carousel-arrow.next { right: 10px; }
}

/* ── WooCommerce category page: hide sidebar on mobile, full-width products ── */
@media (max-width: 768px) {
	/* Classic WC sidebar */
	.woocommerce-sidebar,
	.widget-area,
	.woocommerce aside,
	aside.woocommerce-sidebar { display: none !important; }
	/* Block-based WC sidebar/filters */
	.wp-block-woocommerce-collection-filters-overlay-navigation,
	.wp-block-woocommerce-product-collection-filter { display: none !important; }
	/* Make product collection fill full width */
	.wp-block-woocommerce-product-collection,
	.wc-block-product-collection { width: 100% !important; max-width: 100% !important; }
	/* Featured products title on mobile */
	.featured-products-section .wp-block-heading { font-size: clamp(22px, 5vw, 32px) !important; }
	.dr-home-products__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
	/* Reviews wall side padding on desktop/tablet */
	#dr-reviews-wall { padding-left: 20px; padding-right: 20px; }
}

/* WordPress Block Navigation Menu in Footer */
.dr-footer__menu {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.dr-footer__menu li a {
	font-size: 13px;
	font-weight: 300;
	color: #555;
	text-decoration: none;
	transition: color 0.18s;
	display: flex;
	align-items: center;
	gap: 6px;
}

.dr-footer__menu li a:hover {
	color: #d0d8ff;
}

.dr-footer__legal-menu {
	display: flex;
	gap: 20px;
}

.dr-footer__legal-menu li a {
	font-size: 12px;
	font-weight: 300;
	color: #3a3a3a;
	text-decoration: none;
	transition: color 0.18s;
}

.dr-footer__legal-menu li a:hover {
	color: #888;
}

/* =========================================================
   CUSTOMER REVIEWS SECTION
   ========================================================= */
.dr-reviews-section {
	background: #f8f7f4;
	padding: 5rem 1.5rem;
}
.dr-reviews-inner {
	max-width: 1200px;
	margin: 0 auto;
}
.dr-reviews-header {
	text-align: center;
	margin-bottom: 3rem;
}
.dr-reviews-eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #b89a6a;
	margin: 0 0 10px;
}
.dr-reviews-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #111;
	margin: 0 0 16px;
	line-height: 1.15;
}
.dr-reviews-stars-summary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}
.dr-reviews-star-row {
	color: #f59e0b;
	font-size: 1.125rem;
	letter-spacing: 2px;
}
.dr-reviews-avg {
	font-size: 1rem;
	font-weight: 700;
	color: #111;
}
.dr-reviews-count {
	font-size: 0.875rem;
	color: #888;
}
.dr-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.dr-review-card {
	background: #fff;
	border: 1px solid #eae8e3;
	border-radius: 16px;
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: box-shadow 0.2s, transform 0.2s;
}
.dr-review-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}
.dr-review-stars {
	color: #f59e0b;
	font-size: 1rem;
	letter-spacing: 2px;
}
.dr-review-text {
	font-size: 0.9375rem;
	color: #444;
	line-height: 1.65;
	margin: 0;
	font-style: italic;
	flex: 1;
}
.dr-review-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 1rem;
	border-top: 1px solid #f0ede8;
}
.dr-review-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #1a3a6b;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	letter-spacing: 0.04em;
}
.dr-review-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.dr-review-info strong {
	font-size: 0.875rem;
	font-weight: 700;
	color: #111;
}
.dr-review-info span {
	font-size: 0.75rem;
	color: #999;
}
@media (max-width: 768px) {
	.dr-reviews-grid {
		grid-template-columns: 1fr;
	}
}
@media (min-width: 769px) and (max-width: 1024px) {
	.dr-reviews-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.dr-reviews-grid .dr-review-card:last-child {
		grid-column: 1 / -1;
		max-width: 50%;
		margin: 0 auto;
	}
}

/* =========================================================
   REVIEWS MARQUEE
   ========================================================= */
.dr-marquee-section {
	background: #f8f7f4;
	border-top: 1px solid #ede9e2;
	border-bottom: 1px solid #ede9e2;
	overflow: hidden;
	padding: 14px 0;
}
.dr-marquee-track {
	display: flex;
	align-items: center;
	gap: 0;
	animation: dr-marquee-scroll 40s linear infinite;
	white-space: nowrap;
	width: max-content;
}
.dr-marquee-track:hover { animation-play-state: paused; }
@keyframes dr-marquee-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
.dr-marquee-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0 32px;
	flex-shrink: 0;
}
.dr-marquee-stars {
	color: #f5a623;
	font-size: 0.75rem;
	letter-spacing: 1px;
	flex-shrink: 0;
}
.dr-marquee-quote {
	font-size: 0.875rem;
	color: #3a3732;
	font-style: italic;
}
.dr-marquee-author {
	font-size: 0.75rem;
	font-weight: 600;
	color: #8a8478;
	flex-shrink: 0;
}
.dr-marquee-sep {
	font-size: 0.5rem;
	color: #c8c3bb;
	flex-shrink: 0;
	padding: 0 8px;
}
@media (prefers-reduced-motion: reduce) {
	.dr-marquee-track { animation: none; }
}

/* ── Vertical masonry scrolling reviews wall (matches scrolling-reviews.liquid) ── */
#dr-reviews-wall {
	background: #f6f7f9;
	padding: 36px 40px 40px;
	overflow: hidden;
	font-family: inherit;
}
#dr-reviews-wall .rev-label {
	text-align: center;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #9b9b9b;
	margin: 0 0 14px;
}
#dr-reviews-wall .rev-title {
	text-align: center;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(38px, 5vw, 64px);
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 20px;
	line-height: 1.08;
}
#dr-reviews-wall .rev-outer {
	position: relative;
	max-width: 1160px;
	margin: 0 auto;
}
/* Top and bottom gradient fade — the "fade from top/bottom" effect */
#dr-reviews-wall .rev-outer::before,
#dr-reviews-wall .rev-outer::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 130px;
	pointer-events: none;
	z-index: 2;
}
#dr-reviews-wall .rev-outer::before {
	top: 0;
	background: linear-gradient(to bottom, #f6f7f9 0%, transparent 100%);
}
#dr-reviews-wall .rev-outer::after {
	bottom: 0;
	background: linear-gradient(to top, #f6f7f9 0%, transparent 100%);
}
#dr-reviews-wall .rev-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	overflow: hidden;
	height: 680px;
}
#dr-reviews-wall .rev-col { overflow: hidden; }
#dr-reviews-wall .rev-inner {
	display: flex;
	flex-direction: column;
	gap: 16px;
	will-change: transform;
}
@keyframes drRevScroll {
	from { transform: translateY(0); }
	to   { transform: translateY(-50%); }
}
#dr-reviews-wall .rev-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 20px 22px;
	flex-shrink: 0;
	box-shadow: 0 1px 4px rgba(0,0,0,0.05);
	transition: box-shadow 0.22s ease, transform 0.22s ease;
}
#dr-reviews-wall .rev-card:hover {
	box-shadow: 0 6px 20px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}
#dr-reviews-wall .rev-stars {
	display: flex;
	gap: 3px;
	margin-bottom: 11px;
}
#dr-reviews-wall .star {
	font-size: 15px;
	line-height: 1;
	color: #e5e7eb;
}
#dr-reviews-wall .star.on { color: #f59e0b; }
#dr-reviews-wall .rev-text {
	font-size: 14px;
	color: #2d2d2d;
	line-height: 1.65;
	margin-bottom: 13px;
}
#dr-reviews-wall .rev-name {
	font-size: 13px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 2px;
}
#dr-reviews-wall .rev-date {
	font-size: 11.5px;
	color: #9b9b9b;
}
@media (max-width: 860px) {
	#dr-reviews-wall { padding: 28px 16px 32px; }
	#dr-reviews-wall .rev-cols { grid-template-columns: repeat(2, 1fr); height: 460px; }
	#dr-reviews-wall .rev-col:last-child { display: none; }
	#dr-reviews-wall .rev-title { font-size: clamp(28px, 6vw, 42px); margin: 0 0 14px; }
}
@media (max-width: 520px) {
	#dr-reviews-wall { padding: 20px 12px 24px; }
	#dr-reviews-wall .rev-cols { grid-template-columns: 1fr; height: 380px; }
	#dr-reviews-wall .rev-col:nth-child(2) { display: none; }
	#dr-reviews-wall .rev-label { margin: 0 0 8px; }
}
@media (prefers-reduced-motion: reduce) {
	#dr-reviews-wall .rev-inner { animation: none !important; }
}

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */
#dr-announce-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	min-height: 40px;
	padding: 8px 48px;
	background: var(--dr-announce-bg, #1a3a6b);
	color: var(--dr-announce-color, #fff);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-align: center;
	z-index: 10001;
	box-sizing: border-box;
}
#dr-announce-bar a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}
#dr-announce-bar strong { font-weight: 700; }

/* Scrolling marquee variant (when data-scroll="true") */
#dr-announce-bar[data-scroll="true"] {
	overflow: hidden;
	padding: 8px 0;
}
#dr-announce-bar[data-scroll="true"] .dr-announce-track {
	display: flex;
	animation: dr-announce-scroll 28s linear infinite;
	white-space: nowrap;
	gap: 0;
}
#dr-announce-bar[data-scroll="true"] .dr-announce-track:hover {
	animation-play-state: paused;
}
.dr-announce-item {
	flex-shrink: 0;
	padding: 0 48px;
}
.dr-announce-item::after {
	content: '✦';
	margin-left: 48px;
	opacity: 0.5;
}
@keyframes dr-announce-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Close button */
.dr-announce-close {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	color: inherit;
	opacity: 0.7;
	padding: 4px;
	line-height: 1;
	display: flex;
	align-items: center;
}
.dr-announce-close:hover { opacity: 1; }

@media (max-width: 600px) {
	#dr-announce-bar { font-size: 0.75rem; min-height: 36px; padding: 6px 40px; }
	.dr-announce-item { padding: 0 32px; }
}


/* =============================================
   DR-BLOG — Archive / Home template
   ============================================= */

.dr-blog-page {
	background: #f5f3ef;
	min-height: 80vh;
}

/* ── Hero ── */
.dr-blog-hero {
	background: linear-gradient(135deg, #1a3a6b 0%, #0f2347 100%);
	color: #fff;
	padding: 72px 24px 64px;
	text-align: center;
}
.dr-blog-eyebrow {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.55);
	margin-bottom: 14px;
}
.dr-blog-title {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(28px, 5vw, 52px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0 0 16px;
	color: #fff;
}
.dr-blog-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: clamp(14px, 1.8vw, 17px);
	color: rgba(255,255,255,0.65);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ── Container ── */
.dr-blog-container {
	max-width: 1200px !important;
	margin: 0 auto !important;
	padding: 52px 24px 72px !important;
}

/* ── Grid ── */
.dr-blog-grid.wp-block-post-template {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 28px !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* ── Card ── */
.dr-blog-card {
	background: #fff !important;
	border-radius: 14px !important;
	overflow: hidden !important;
	border: 1px solid rgba(0,0,0,0.07) !important;
	box-shadow: 0 2px 12px rgba(0,0,0,0.05) !important;
	transition: box-shadow 0.22s ease, transform 0.22s ease !important;
	display: flex !important;
	flex-direction: column !important;
	padding: 0 !important;
}
.dr-blog-card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,0.10) !important;
	transform: translateY(-2px) !important;
}

/* ── Card image ── */
.dr-blog-card-img .wp-block-post-featured-image,
.dr-blog-card .wp-block-post-featured-image {
	margin: 0 !important;
	padding: 0 !important;
	border-radius: 0 !important;
}
.dr-blog-card .wp-block-post-featured-image a,
.dr-blog-card .wp-block-post-featured-image img {
	display: block !important;
	width: 100% !important;
	aspect-ratio: 16/9 !important;
	object-fit: cover !important;
	border-radius: 0 !important;
}
.dr-blog-card .wp-block-post-featured-image:empty,
.dr-blog-card .wp-block-post-featured-image a:empty {
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, #e8e4dc, #d4cfc6);
	display: block;
}

/* ── Card body ── */
.dr-blog-card-body {
	padding: 22px 24px 24px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
	flex: 1 !important;
}

/* ── Date ── */
.dr-blog-date .wp-block-post-date,
.dr-blog-card .wp-block-post-date {
	font-family: 'Inter', sans-serif !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	color: #9ca3af !important;
	margin: 0 !important;
}

/* ── Title ── */
.dr-blog-card-title.wp-block-post-title,
.dr-blog-card .wp-block-post-title {
	font-family: 'Outfit', sans-serif !important;
	font-size: clamp(15px, 1.4vw, 18px) !important;
	font-weight: 700 !important;
	letter-spacing: -0.02em !important;
	line-height: 1.3 !important;
	color: #111 !important;
	margin: 0 !important;
}
.dr-blog-card .wp-block-post-title a {
	color: inherit !important;
	text-decoration: none !important;
}
.dr-blog-card .wp-block-post-title a:hover {
	color: #1a3a6b !important;
}

/* ── Excerpt ── */
.dr-blog-excerpt .wp-block-post-excerpt,
.dr-blog-card .wp-block-post-excerpt {
	font-family: 'Inter', sans-serif !important;
	font-size: 13px !important;
	line-height: 1.65 !important;
	color: #4b5563 !important;
	margin: 0 !important;
}
.dr-blog-card .wp-block-post-excerpt__excerpt {
	margin: 0 !important;
}
.dr-blog-card .wp-block-post-excerpt__more-link {
	display: inline-block !important;
	margin-top: 10px !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	color: #1a3a6b !important;
	text-decoration: none !important;
	letter-spacing: 0.02em !important;
}
.dr-blog-card .wp-block-post-excerpt__more-link:hover {
	color: #1a8ef0 !important;
}

/* ── Pagination ── */
.dr-blog-pagination.wp-block-query-pagination {
	margin-top: 52px !important;
	display: flex !important;
	justify-content: center !important;
	gap: 8px !important;
}
.dr-blog-pagination .wp-block-query-pagination-numbers a,
.dr-blog-pagination .wp-block-query-pagination-previous,
.dr-blog-pagination .wp-block-query-pagination-next {
	font-family: 'Inter', sans-serif !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	padding: 8px 16px !important;
	border-radius: 99px !important;
	background: #fff !important;
	border: 1px solid rgba(0,0,0,0.10) !important;
	color: #1a3a6b !important;
	text-decoration: none !important;
	transition: all 0.2s ease !important;
}
.dr-blog-pagination .wp-block-query-pagination-numbers .current,
.dr-blog-pagination a:hover {
	background: #1a3a6b !important;
	color: #fff !important;
	border-color: #1a3a6b !important;
}

/* ── No featured image placeholder ── */
.dr-blog-card .wp-block-post-featured-image:not(:has(img)) {
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, #1a3a6b22, #1a3a6b0a);
	display: block;
}

/* ── Responsive ── */
@media (max-width: 960px) {
	.dr-blog-grid.wp-block-post-template {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.dr-blog-hero { padding: 52px 20px 44px; }
}
@media (max-width: 600px) {
	.dr-blog-grid.wp-block-post-template {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
	}
	.dr-blog-container { padding: 32px 16px 48px !important; }
	.dr-blog-hero { padding: 40px 16px 36px; }
	.dr-blog-card-body { padding: 18px 18px 20px !important; }
}


/* =============================================
   DR-ARTICLE — Single post template
   ============================================= */

.dr-article-page {
	background: #f5f3ef;
}

/* ── Hero image ── */
.dr-article-hero.wp-block-post-featured-image {
	margin: 0 !important;
	padding: 0 !important;
	line-height: 0 !important;
	max-height: 480px;
	overflow: hidden;
}
.dr-article-hero.wp-block-post-featured-image img {
	width: 100% !important;
	max-height: 480px !important;
	object-fit: cover !important;
	object-position: center !important;
	display: block !important;
	border-radius: 0 !important;
}

/* ── Header ── */
.dr-article-header {
	background: #1a3a6b;
	padding: 44px 24px 40px !important;
}
.dr-article-header .wp-block-group {
	max-width: 780px;
	margin: 0 auto;
}
.dr-article-date.wp-block-post-date,
.dr-article-header .wp-block-post-date {
	font-family: 'Inter', sans-serif !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	color: rgba(255,255,255,0.45) !important;
	margin: 0 0 14px !important;
	display: block !important;
}
.dr-article-title.wp-block-post-title,
.dr-article-header .wp-block-post-title {
	font-family: 'Outfit', sans-serif !important;
	font-size: clamp(24px, 4vw, 42px) !important;
	font-weight: 700 !important;
	letter-spacing: -0.03em !important;
	line-height: 1.15 !important;
	color: #fff !important;
	margin: 0 0 20px !important;
}
.dr-article-meta-row {
	gap: 12px !important;
	flex-wrap: wrap !important;
	margin-top: 4px !important;
}
.dr-article-cats.wp-block-post-terms,
.dr-article-tags.wp-block-post-terms {
	font-family: 'Inter', sans-serif !important;
	font-size: 11px !important;
	color: rgba(255,255,255,0.45) !important;
}
.dr-article-cats .wp-block-post-terms__term,
.dr-article-tags .wp-block-post-terms__term {
	color: rgba(255,255,255,0.6) !important;
	text-decoration: none !important;
}

/* ── Body wrapper ── */
.dr-article-body {
	padding: 52px 24px 64px !important;
	max-width: 780px !important;
	margin: 0 auto !important;
}
.dr-article-body > .wp-block-group {
	max-width: 780px !important;
	margin: 0 auto !important;
}

/* ── Content typography ── */
.dr-article-content,
.dr-article-content.wp-block-post-content {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.75;
	color: #1f2937;
}
.dr-article-content h1,
.dr-article-content h2,
.dr-article-content h3 {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #111;
	margin: 2em 0 0.6em;
	line-height: 1.25;
}
.dr-article-content h2 {
	font-size: clamp(18px, 2.2vw, 24px);
	border-left: 3px solid #1a3a6b;
	padding-left: 14px;
}
.dr-article-content h3 {
	font-size: clamp(15px, 1.8vw, 19px);
	color: #1a3a6b;
}
.dr-article-content p {
	margin: 0 0 1.25em;
}
.dr-article-content ul,
.dr-article-content ol {
	padding-left: 1.5em;
	margin: 0 0 1.25em;
}
.dr-article-content li {
	margin-bottom: 0.4em;
}
.dr-article-content strong {
	font-weight: 600;
	color: #111;
}

/* ── Definition blockquote ── */
.dr-article-content blockquote.definition {
	background: linear-gradient(135deg, #1a3a6b08, #1a3a6b14);
	border: none;
	border-left: 4px solid #1a3a6b;
	border-radius: 0 10px 10px 0;
	padding: 22px 26px;
	margin: 2em 0;
	font-family: 'Outfit', sans-serif;
	font-size: clamp(15px, 1.6vw, 18px);
	font-weight: 500;
	line-height: 1.55;
	color: #1a3a6b;
	font-style: normal;
}
.dr-article-content blockquote:not(.definition) {
	border-left: 3px solid #e5e7eb;
	padding: 12px 20px;
	margin: 1.5em 0;
	color: #6b7280;
	font-style: italic;
}

/* ── Table of contents ── */
.dr-article-content .toc,
.dr-article-content nav.toc {
	background: #fff;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 12px;
	padding: 22px 26px;
	margin: 2em 0;
}
.dr-article-content .toc p strong {
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #9ca3af;
}
.dr-article-content .toc ol,
.dr-article-content .toc ul {
	margin: 10px 0 0;
	padding-left: 1.2em;
}
.dr-article-content .toc li {
	margin-bottom: 6px;
	font-size: 14px;
}
.dr-article-content .toc a {
	color: #1a3a6b !important;
	text-decoration: none !important;
	font-weight: 500 !important;
}
.dr-article-content .toc a:hover {
	text-decoration: underline !important;
}

/* ── Product / internal links ── */
.dr-article-content a[href*="dromeasrho.gr/product"],
.dr-article-content a[href*="dromeasrho.gr/product-category"],
.dr-article-content a[href^="/product"],
.dr-article-content a[href^="/product-category"] {
	color: #1a3a6b !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	border-bottom: 2px solid #1a8ef033 !important;
	padding-bottom: 1px !important;
	transition: border-color 0.18s, color 0.18s !important;
}
.dr-article-content a[href*="dromeasrho.gr/product"]:hover,
.dr-article-content a[href*="dromeasrho.gr/product-category"]:hover,
.dr-article-content a[href^="/product"]:hover,
.dr-article-content a[href^="/product-category"]:hover {
	color: #1a8ef0 !important;
	border-bottom-color: #1a8ef0 !important;
}
.dr-article-content a[href*="dromeasrho.gr/product"]::after,
.dr-article-content a[href^="/product"]::after {
	content: ' →';
	font-size: 0.85em;
	opacity: 0.6;
}

/* ── CTA block ── */
.dr-article-content .cta-block {
	background: linear-gradient(135deg, #1a3a6b, #0f2347);
	color: #fff;
	border-radius: 14px;
	padding: 32px 36px;
	margin: 2.5em 0;
	text-align: center;
}
.dr-article-content .cta-block p {
	color: rgba(255,255,255,0.85);
	font-size: 15px;
	margin-bottom: 0.8em;
}
.dr-article-content .cta-block p:last-child {
	margin-bottom: 0;
}
.dr-article-content .cta-block a {
	display: inline-block !important;
	background: linear-gradient(135deg, #1a8ef0, #0a2fb8) !important;
	color: #fff !important;
	font-family: 'Inter', sans-serif !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	padding: 11px 28px !important;
	border-radius: 99px !important;
	text-decoration: none !important;
	border: none !important;
	margin-top: 8px !important;
	transition: opacity 0.2s !important;
}
.dr-article-content .cta-block a:hover {
	opacity: 0.88 !important;
}
.dr-article-content .cta-block a::after {
	content: none !important;
}

/* ── FAQ section ── */
.dr-article-content .faq-section {
	background: #fff;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 14px;
	padding: 28px 32px;
	margin: 2.5em 0;
}
.dr-article-content .faq-section h3,
.dr-article-content .faq-section > p strong:first-child {
	font-family: 'Outfit', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #9ca3af;
	margin-bottom: 20px;
	display: block;
}
.dr-article-content .faq-section h4,
.dr-article-content .faq-section dt {
	font-family: 'Outfit', sans-serif !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #111 !important;
	margin: 1.2em 0 0.4em !important;
	padding-left: 0 !important;
	border: none !important;
}
.dr-article-content .faq-section h4:first-child,
.dr-article-content .faq-section dt:first-child {
	margin-top: 0 !important;
}
.dr-article-content .faq-section p,
.dr-article-content .faq-section dd {
	font-size: 14px !important;
	color: #4b5563 !important;
	margin: 0 0 0.5em !important;
	line-height: 1.65 !important;
}

/* ── Back link ── */
.dr-article-back-wrap {
	padding: 0 24px 52px !important;
}
.dr-article-back {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #1a3a6b;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	opacity: 0.7;
	transition: opacity 0.18s;
}
.dr-article-back:hover { opacity: 1; }

/* ── Responsive ── */
@media (max-width: 768px) {
	.dr-article-hero.wp-block-post-featured-image { max-height: 280px; }
	.dr-article-hero.wp-block-post-featured-image img { max-height: 280px !important; }
	.dr-article-header { padding: 32px 20px 28px !important; }
	.dr-article-body { padding: 36px 20px 48px !important; }
	.dr-article-content .cta-block { padding: 24px 22px; }
	.dr-article-content .faq-section { padding: 22px 20px; }
}
@media (max-width: 480px) {
	.dr-article-hero.wp-block-post-featured-image { max-height: 220px; }
	.dr-article-hero.wp-block-post-featured-image img { max-height: 220px !important; }
}


/* =============================================
   DR-LANDING — Local SEO landing pages
   ============================================= */

.dr-landing-page { background: #f5f3ef; }

/* ── Hero ── */
.dr-lp-hero {
	background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6b 60%, #1e4a8a 100%);
	padding: 80px 24px 72px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.dr-lp-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 70% 50%, rgba(26,142,240,0.12) 0%, transparent 60%);
	pointer-events: none;
}
.dr-lp-hero-inner {
	max-width: 780px;
	margin: 0 auto;
	position: relative;
}
.dr-lp-eyebrow {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
	margin-bottom: 16px;
}
.dr-lp-h1 {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(28px, 5.5vw, 54px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: #fff;
	margin: 0 0 18px;
}
.dr-lp-tagline {
	font-family: 'Inter', sans-serif;
	font-size: clamp(14px, 1.8vw, 17px);
	color: rgba(255,255,255,0.65);
	line-height: 1.6;
	margin: 0 auto 36px;
	max-width: 580px;
}
.dr-lp-btns {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}
.dr-lp-btn-primary {
	display: inline-block;
	background: linear-gradient(135deg, #1a8ef0, #0a2fb8);
	color: #fff !important;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 15px;
	padding: 14px 32px;
	border-radius: 99px;
	text-decoration: none !important;
	transition: opacity 0.2s, transform 0.2s;
	box-shadow: 0 4px 20px rgba(26,142,240,0.35);
}
.dr-lp-btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.dr-lp-btn-secondary {
	display: inline-block;
	background: rgba(255,255,255,0.10);
	color: #fff !important;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 15px;
	padding: 14px 32px;
	border-radius: 99px;
	text-decoration: none !important;
	border: 1px solid rgba(255,255,255,0.25);
	transition: background 0.2s;
}
.dr-lp-btn-secondary:hover { background: rgba(255,255,255,0.18); }

/* ── Stats bar ── */
.dr-lp-stats {
	background: #fff;
	border-bottom: 1px solid rgba(0,0,0,0.06);
}
.dr-lp-stats-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 28px 24px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}
.dr-lp-stat {
	text-align: center;
	padding: 0 16px;
	border-right: 1px solid rgba(0,0,0,0.07);
}
.dr-lp-stat:last-child { border-right: none; }
.dr-lp-stat strong {
	display: block;
	font-family: 'Outfit', sans-serif;
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 800;
	color: #1a3a6b;
	letter-spacing: -0.03em;
	line-height: 1;
}
.dr-lp-stat span {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	color: #6b7280;
	margin-top: 5px;
	line-height: 1.3;
}

/* ── Categories ── */
.dr-lp-cats {
	max-width: 1100px;
	margin: 0 auto;
	padding: 64px 24px 48px;
}
.dr-lp-section-label {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #9ca3af;
	margin-bottom: 10px;
}
.dr-lp-section-title {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #111;
	margin: 0 0 36px;
	line-height: 1.2;
}
.dr-lp-cat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.dr-lp-cat-card {
	background: #fff;
	border: 1px solid rgba(0,0,0,0.07);
	border-radius: 14px;
	padding: 28px 24px 24px;
	text-decoration: none !important;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: box-shadow 0.22s, transform 0.22s;
	color: inherit !important;
}
.dr-lp-cat-card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,0.10);
	transform: translateY(-2px);
}
.dr-lp-cat-icon {
	width: 44px;
	height: 44px;
	background: #f0f4ff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.dr-lp-cat-icon svg {
	width: 22px;
	height: 22px;
	stroke: #1a3a6b;
	fill: none;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.dr-lp-cat-card strong {
	font-family: 'Outfit', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #111;
	line-height: 1.2;
}
.dr-lp-cat-card span {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	color: #6b7280;
	line-height: 1.4;
}
.dr-lp-cat-arrow {
	margin-top: auto;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #1a3a6b;
	display: flex;
	align-items: center;
	gap: 4px;
}

/* ── Features ── */
.dr-lp-features {
	background: #1a3a6b;
	padding: 64px 24px;
}
.dr-lp-features-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.dr-lp-features .dr-lp-section-label { color: rgba(255,255,255,0.4); }
.dr-lp-features .dr-lp-section-title { color: #fff; margin-bottom: 40px; }
.dr-lp-feat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.dr-lp-feat {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px;
	padding: 24px 20px;
}
.dr-lp-feat-icon {
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.10);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}
.dr-lp-feat-icon svg {
	width: 20px;
	height: 20px;
	stroke: #fff;
	fill: none;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.dr-lp-feat strong {
	display: block;
	font-family: 'Outfit', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 6px;
}
.dr-lp-feat p {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: rgba(255,255,255,0.55);
	line-height: 1.55;
	margin: 0;
}

/* ── FAQ ── */
.dr-lp-faq {
	max-width: 780px;
	margin: 0 auto;
	padding: 64px 24px;
}
.dr-lp-faq .dr-lp-section-title { margin-bottom: 32px; }
.dr-lp-faq-item {
	background: #fff;
	border: 1px solid rgba(0,0,0,0.07);
	border-radius: 12px;
	padding: 22px 24px;
	margin-bottom: 10px;
}
.dr-lp-faq-q {
	font-family: 'Outfit', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #111;
	margin: 0 0 10px;
}
.dr-lp-faq-a {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 1.65;
	color: #4b5563;
	margin: 0;
}
.dr-lp-faq-a a { color: #1a3a6b !important; font-weight: 500 !important; }

/* ── Bottom CTA ── */
.dr-lp-bottom-cta {
	background: linear-gradient(135deg, #0d1f3c, #1a3a6b);
	padding: 72px 24px;
	text-align: center;
}
.dr-lp-bottom-cta h2 {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(22px, 3.5vw, 36px);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #fff;
	margin: 0 0 14px;
}
.dr-lp-bottom-cta p {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: rgba(255,255,255,0.6);
	margin: 0 auto 32px;
	max-width: 520px;
	line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 960px) {
	.dr-lp-cat-grid { grid-template-columns: repeat(2, 1fr); }
	.dr-lp-feat-grid { grid-template-columns: repeat(2, 1fr); }
	.dr-lp-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
	.dr-lp-stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); padding: 16px; }
	.dr-lp-stat:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.07); }
	.dr-lp-stat:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 600px) {
	.dr-lp-hero { padding: 52px 20px 48px; }
	.dr-lp-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.dr-lp-feat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
	.dr-lp-cats { padding: 44px 20px 32px; }
	.dr-lp-features { padding: 44px 20px; }
	.dr-lp-faq { padding: 44px 20px; }
	.dr-lp-bottom-cta { padding: 52px 20px; }
	.dr-lp-feat { padding: 18px 16px; }
}

/* =========================================
   Global Mobile Hardening
   ========================================= */
html,
body {
	max-width: 100%;
	overflow-x: clip;
}

body,
.wp-site-blocks,
main,
.site-main,
.is-layout-constrained,
.is-layout-flow,
.wp-block-group,
.wp-block-columns,
.wp-block-column,
.wp-block-cover__inner-container {
	min-width: 0;
}

.wp-site-blocks,
.wp-block-group,
.wp-block-columns,
.wp-block-column,
.entry-content,
main,
.site-main {
	max-width: 100%;
}

img,
svg,
video,
canvas,
iframe {
	max-width: 100%;
}

.wp-block-table,
table,
pre {
	max-width: 100%;
}

.wp-block-table {
	overflow-x: auto;
}

pre {
	overflow-x: auto;
	white-space: pre-wrap;
	word-break: break-word;
}

input,
select,
textarea,
button {
	max-width: 100%;
	font: inherit;
}

.wp-block-button__link,
button,
input,
select,
textarea,
a {
	overflow-wrap: anywhere;
}

@media (max-width: 768px) {
	.container,
	.wp-site-blocks > *,
	.is-layout-constrained > * {
		max-width: 100%;
	}

	.wp-block-group,
	.wp-block-columns {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.wp-block-columns {
		gap: 1rem !important;
	}

	.dr-footer__body {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 40px 20px 32px;
	}

	.dr-footer__body > * {
		min-width: 0;
	}
}

/* =========================================
   B2B Program Page
   ========================================= */
.dr-b2b-program-page {
	padding: 2rem 1rem 4rem;
}

.dr-b2b-program-hero {
	padding: 1rem 0 2rem;
}

.dr-b2b-program-hero h1 {
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1.08;
	margin: 0.4rem 0 0.9rem;
	max-width: 14ch;
}

.dr-b2b-program-hero p:last-child {
	max-width: 760px;
	font-size: 1rem;
	color: #5b6472;
	line-height: 1.7;
}

.dr-b2b-program-process {
	padding-top: 2.5rem;
}

.dr-b2b-program-process h2 {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	margin-bottom: 1rem;
}

/* Desktop header hard override: keep the PC header as one full-width stack. */
@media (min-width: 1025px) {
	body {
		padding-top: 322px !important;
	}

	nav#dn-island.dn-island.dn-desktop-header {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		transform: none !important;
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		height: auto !important;
		border-radius: 0 !important;
		overflow: visible !important;
		background: #f7f4ee !important;
		border: 0 !important;
	}

	nav#dn-island.dn-island.dn-desktop-header .dn-topbar {
		border-radius: 0 !important;
	}

	nav#dn-island.dn-island.dn-desktop-header .dn-brand-row,
	nav#dn-island.dn-island.dn-desktop-header .dn-cat-row,
	nav#dn-island.dn-island.dn-desktop-header .dn-trust-strip {
		visibility: visible !important;
		opacity: 1 !important;
	}

	nav#dn-island.dn-island.dn-desktop-header .dn-drop {
		display: none !important;
		position: absolute !important;
		top: 100% !important;
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
		opacity: 0 !important;
		box-shadow: 0 28px 70px rgba(24, 18, 10, 0.18);
	}

	nav#dn-island.dn-island.dn-desktop-header.dn-open .dn-drop {
		display: block !important;
		opacity: 1 !important;
	}

	nav#dn-island.dn-island.dn-desktop-header.dn-scrolled {
		height: auto !important;
	}

	nav#dn-island.dn-island.dn-desktop-header.dn-scrolled:not(.dn-open) .dn-topbar,
	nav#dn-island.dn-island.dn-desktop-header.dn-scrolled:not(.dn-open) .dn-trust-strip {
		height: 0 !important;
		min-height: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		opacity: 0 !important;
		overflow: hidden !important;
	}
}

