/* ==========================================================================
   Alligator Rent — Modern Design System
   A refined, editorial look inspired by Tilda / Webflow showcase sites.
   Adds tokens, components and motion on top of the existing Tailwind build.
   ========================================================================== */

:root {
	/* ----- Brand palette -----
	   Premium automotive monochrome. The reference is Rolls-Royce / Aston
	   Martin Lagonda / Polestar / B&O — confident black, paper-clean white
	   and platinum greys, no chromatic accent.

	   The `--gold-*` token names are kept for backwards-compatibility with
	   the rest of the theme; the values are now neutral graphite, so every
	   "gold" button, badge, hover, divider and ring renders as understated
	   black-and-grey. */
	--ink:          #0A0A0A;   /* Primary near-black */
	--ink-soft:     #18181B;
	--graphite:     #27272A;
	--smoke:        #52525B;
	--mist:         #A1A1AA;

	/* Neutral surface scale (kept the `--sand-*` token names for compat) */
	--sand-50:      #FAFAFA;
	--sand-100:     #F4F4F5;
	--sand-200:     #E4E4E7;
	--sand-300:     #D4D4D8;

	/* Primary CTA token (was warm gold — now pure graphite black) */
	--gold:         #0A0A0A;
	--gold-soft:    #F4F4F5;
	--gold-hover:   #27272A;
	--gold-strong:  #000000;

	/* Semantic aliases */
	--accent:        var(--gold);
	--accent-hover:  var(--gold-hover);
	--accent-soft:   var(--gold-soft);
	--accent-strong: var(--gold-strong);

	--line:         #E4E4E7;
	--line-soft:    #F4F4F5;

	--bg-base:      #FFFFFF;
	--bg-soft:      #FAFAFA;
	--bg-cream:     #F4F4F5;
	--bg-dark:      #0A0A0A;
	--bg-graphite:  #18181B;

	--success:      #16A34A;
	--danger:       #DC2626;

	/* ----- Radii ----- */
	--r-xs:  4px;
	--r-sm:  6px;
	--r-md:  10px;
	--r-lg:  16px;
	--r-xl:  22px;
	--r-pill: 999px;

	/* ----- Shadows ----- */
	--shadow-xs:    0 1px 2px rgba(10,10,10,.04);
	--shadow-sm:    0 4px 12px rgba(10,10,10,.05);
	--shadow-md:    0 12px 28px rgba(10,10,10,.07);
	--shadow-lg:    0 28px 60px rgba(10,10,10,.12);
	--shadow-gold:  0 14px 32px rgba(10,10,10,.18);  /* legacy name */
	--shadow-accent: var(--shadow-gold);

	/* ----- Motion ----- */
	--ease-out:    cubic-bezier(.16,.84,.31,1);
	--ease-in-out: cubic-bezier(.65,.05,.36,1);
	--t-fast: 160ms var(--ease-out);
	--t-base: 280ms var(--ease-out);
	--t-slow: 520ms var(--ease-out);

	/* ----- Header ----- */
	--header-h: 84px;
	--topbar-h: 36px;
}

/* ==========================================================================
   Base typography
   ========================================================================== */
html { scroll-behavior: smooth; }

body {
	color: var(--ink);
	background: var(--bg-base);
	font-feature-settings: "ss01" on, "kern" on;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h-display {
	font-family: var(--second-family);
	letter-spacing: -.01em;
	color: var(--ink);
}

/* Editorial headlines (overrides where used) */
.h-display {
	font-weight: 600;
	line-height: 1.05;
	font-size: clamp(2.25rem, 4.5vw + .5rem, 4.75rem);
	letter-spacing: -.02em;
}

.h-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-family);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gold-strong);
}

.h-eyebrow::before {
	content: "";
	width: 24px;
	height: 1px;
	background: var(--gold);
}

/* Section heading wrapper */
.section-head {
	max-width: 720px;
	margin-bottom: 32px;
}

@media (min-width: 768px) {
	.section-head { margin-bottom: 48px; }
}

.section-head__title {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: clamp(1.75rem, 2.3vw + .75rem, 2.75rem);
	line-height: 1.1;
	letter-spacing: -.015em;
	color: var(--ink);
	margin: 8px 0 0;
}

.section-head__subtitle {
	margin-top: 16px;
	color: var(--smoke);
	font-size: clamp(.95rem, .25vw + .85rem, 1.0625rem);
	line-height: 1.65;
	max-width: 60ch;
}

/* Section vertical rhythm */
.section { padding: 64px 0; }
.section-tight { padding: 48px 0; }
.section-lg { padding: 80px 0; }

@media (min-width: 1024px) {
	.section { padding: 96px 0; }
	.section-tight { padding: 64px 0; }
	.section-lg { padding: 120px 0; }
}

/* ==========================================================================
   Container refinement
   ========================================================================== */
.container {
	width: 100%;
	margin-inline: auto;
	padding-inline: 20px;
	max-width: 1280px;
}

@media (min-width: 768px) {
	.container { padding-inline: 32px; }
}

@media (min-width: 1280px) {
	.container { padding-inline: 40px; }
}

/* ==========================================================================
   Buttons (modern, no gradient pills)
   ========================================================================== */
.c-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 26px;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 15px;
	line-height: 1;
	border: 1.5px solid transparent;
	border-radius: var(--r-md);
	cursor: pointer;
	transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
	text-decoration: none !important;
	white-space: nowrap;
	letter-spacing: .005em;
}

.c-btn:hover { transform: translateY(-1px); }
.c-btn:active { transform: translateY(0); }
.c-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.c-btn--primary {
	background: var(--ink);
	color: #fff;
}
.c-btn--primary:hover { background: var(--ink-soft); box-shadow: var(--shadow-md); }

.c-btn--gold {
	background: var(--gold);
	color: #fff;
}
.c-btn--gold:hover { background: var(--gold-hover); box-shadow: var(--shadow-gold); color: #fff; }

.c-btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--ink);
}
.c-btn--ghost:hover { background: var(--ink); color: #fff; }

.c-btn--gold-ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--gold);
}
.c-btn--gold-ghost:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

.c-btn--light {
	background: #fff;
	color: var(--ink);
	border-color: var(--line);
}
.c-btn--light:hover { background: var(--sand-50); border-color: var(--ink); }

.c-btn--sm { padding: 10px 18px; font-size: 13.5px; }
.c-btn--lg { padding: 18px 32px; font-size: 16px; }
.c-btn--block { width: 100%; }
.c-btn--icon { padding: 12px; }

/* WhatsApp affordance — refined deep brand green, matches CTA height.
   Targets links/buttons rendered by the `[product_button_book_now]` shortcode
   and any other WhatsApp link styled like a button. */
.cost a[href*="wa.me"],
.cost a[href*="whatsapp"],
.product-card a[href*="wa.me"],
.product-card a[href*="whatsapp"],
a.btn-whatsapp,
button.btn-whatsapp,
a.whatsapp-btn,
button.whatsapp-btn,
.bg-green-500.text-white,
.bg-green-600.text-white,
.bg-emerald-500.text-white,
.bg-emerald-600.text-white {
	background: #128C7E !important;
	background-image: none !important;
	color: #fff !important;
	border-color: transparent !important;
	border-radius: var(--r-md) !important;
	font-weight: 500 !important;
	padding: 14px 22px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	font-size: 15px !important;
	line-height: 1 !important;
	width: 100%;
	box-shadow: none !important;
	transition: background var(--t-fast) !important;
}
.cost a[href*="wa.me"]:hover,
.cost a[href*="whatsapp"]:hover,
.product-card a[href*="wa.me"]:hover,
.product-card a[href*="whatsapp"]:hover,
a.btn-whatsapp:hover,
button.btn-whatsapp:hover,
a.whatsapp-btn:hover,
button.whatsapp-btn:hover { background: #075E54 !important; text-decoration: none !important; }

/* "Booking" CTA next to WhatsApp — keep the same compact height */
.cost .c-btn--block,
.product-card .c-btn--block { padding: 14px 22px; font-size: 15px; }

/* Override common Tailwind button utilities used in the theme to avoid the “AI gradient” look. */
.bg-gradient-to-r.from-amber-700\/90.to-red-700\/80,
.from-amber-700\/90,
.to-red-700\/80 {
	background: var(--ink) !important;
	background-image: none !important;
}

a.bg-amber-700,
button.bg-amber-700,
.bg-amber-700.bg-gradient-to-r {
	background: var(--ink) !important;
	color: #fff !important;
}
a.bg-amber-700:hover,
button.bg-amber-700:hover,
.bg-amber-700.bg-gradient-to-r:hover {
	background: var(--ink-soft) !important;
	box-shadow: var(--shadow-md);
}

/* Soft CTA — light surface, subtle hover (Search Now, View details) */
.search-btn,
button.search-btn,
.search-form__submit,
.car-horizontal__details {
	background: #fff !important;
	color: var(--ink) !important;
	border: 1px solid var(--line) !important;
	background-image: none !important;
	box-shadow: none !important;
	font-weight: 500;
	letter-spacing: .01em;
}
.search-btn:hover,
.search-form__submit:hover,
.car-horizontal__details:hover {
	background: var(--sand-50) !important;
	color: var(--ink) !important;
	border-color: var(--sand-300) !important;
	box-shadow: var(--shadow-xs) !important;
}
.search-form__submit svg {
	opacity: .65;
	transition: opacity var(--t-fast);
}
.search-form__submit:hover svg { opacity: .9; }

/* Retarget Tailwind's amber/yellow palette CSS variables to a neutral
   monochrome ramp so legacy `bg-amber-700`, `text-amber-700`,
   `hover:text-amber-800`, `text-yellow-500`, etc. throughout the templates
   render as graphite black — no chromatic accent. */
:root {
	--color-amber-50:  #FAFAFA;
	--color-amber-100: #F4F4F5;
	--color-amber-200: #E4E4E7;
	--color-amber-300: #D4D4D8;
	--color-amber-400: #A1A1AA;
	--color-amber-500: #52525B;
	--color-amber-600: #27272A;
	--color-amber-700: #18181B;
	--color-amber-800: #0A0A0A;
	--color-amber-900: #000000;
	--color-amber-950: #000000;

	--color-yellow-50:  #FAFAFA;
	--color-yellow-100: #F4F4F5;
	--color-yellow-200: #E4E4E7;
	--color-yellow-300: #D4D4D8;
	--color-yellow-400: #A1A1AA;
	--color-yellow-500: #0A0A0A;
	--color-yellow-600: #18181B;
	--color-yellow-700: #000000;
}

/* Stop Tailwind from painting the amber → red gradient on buttons. */
.bg-gradient-to-r.from-amber-700\/90.to-red-700\/80,
.from-amber-700\/90.to-red-700\/80 {
	background-image: none !important;
	background-color: var(--ink) !important;
	color: #fff !important;
}

/* Tailwind amber utility safety net (in case the vars above aren’t resolved) */
.text-amber-700,
.text-amber-800,
.hover\:text-amber-800:hover,
.hover\:text-yellow-500:hover { color: var(--gold) !important; }
.bg-amber-600,
.bg-amber-700,
.hover\:bg-amber-600:hover { background-color: var(--gold) !important; color: #fff !important; }
.form-checkbox.text-amber-700,
.form-radio.text-amber-700 { accent-color: var(--gold); }

/* ==========================================================================
   Surfaces & cards
   ========================================================================== */
.c-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.c-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: var(--sand-300);
}

.c-card--dark {
	background: var(--ink);
	color: #fff;
	border-color: rgba(255,255,255,.06);
}

/* ==========================================================================
   Refined badges
   ========================================================================== */
.c-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	border-radius: var(--r-pill);
	line-height: 1;
}
.c-badge--hot { background: var(--ink); color: var(--gold-soft); }
.c-badge--featured { background: var(--gold); color: #fff; }

/* ==========================================================================
   Scroll reveal animation
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
	[data-reveal] {
		opacity: 0;
		transform: translateY(28px);
		transition:
			opacity .9s var(--ease-out),
			transform .9s var(--ease-out);
		will-change: opacity, transform;
	}
	[data-reveal].is-visible {
		opacity: 1;
		transform: translateY(0);
	}
	[data-reveal="fade"] { transform: none; }
	[data-reveal="left"] { transform: translateX(-28px); }
	[data-reveal="right"] { transform: translateX(28px); }
	[data-reveal="left"].is-visible,
	[data-reveal="right"].is-visible { transform: translateX(0); }
	[data-reveal-delay="100"] { transition-delay: 100ms; }
	[data-reveal-delay="200"] { transition-delay: 200ms; }
	[data-reveal-delay="300"] { transition-delay: 300ms; }
	[data-reveal-delay="400"] { transition-delay: 400ms; }
	[data-reveal-delay="500"] { transition-delay: 500ms; }
}

/* ==========================================================================
   Header (scroll-shrink + modern bar)
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: saturate(1.1) blur(14px);
	-webkit-backdrop-filter: saturate(1.1) blur(14px);
	border-bottom: 1px solid transparent;
	transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.site-header.is-scrolled {
	background: rgba(255, 255, 255, .96);
	border-bottom-color: var(--line);
	box-shadow: var(--shadow-xs);
}
.site-header__topbar {
	background: var(--ink);
	color: rgba(255,255,255,.85);
	font-size: 13px;
}
.site-header__topbar a { color: rgba(255,255,255,.85); transition: color var(--t-fast); }
.site-header__topbar a:hover { color: var(--gold-soft); text-decoration: none; }
.site-header__topbar .dropdown button {
	background: transparent;
	border: 1px solid rgba(255,255,255,.18);
	color: rgba(255,255,255,.85);
}
.site-header__topbar .dropdown:hover button {
	border-color: var(--gold);
	color: #fff;
}
.site-header__topbar .dropdown-content {
	background: var(--ink-soft);
	border: 1px solid rgba(255,255,255,.08);
	box-shadow: var(--shadow-lg);
}
.site-header__topbar .dropdown-content a { color: rgba(255,255,255,.85); }
.site-header__topbar .dropdown-content a:hover { background: rgba(255,255,255,.06); color: #fff; }

.site-header__main {
	min-height: var(--header-h);
}
.site-header__main > .container {
	align-items: center;
}
.site-header__main .custom-logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	transform: translateY(3px);
}
@media (min-width: 769px) {
	.site-header__main .custom-logo-link {
		transform: translateY(4px);
	}
}
.site-header__main .custom-logo-link img {
	max-height: 58px;
	max-width: clamp(200px, 18vw, 280px);
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}
@media (min-width: 769px) {
	.site-header__main .custom-logo-link img {
		max-height: 68px;
		max-width: clamp(195px, 14vw, 265px);
	}
}
@media (min-width: 1024px) {
	:root { --header-h: 88px; }
}

.site-header__book {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
	font-weight: 500;
	box-shadow: none;
}
.site-header__book:hover {
	background: var(--sand-50);
	color: var(--ink);
	border-color: var(--sand-300);
	box-shadow: none;
	transform: none;
}
.mobile-menu__cta .site-header__book {
	padding: 14px 22px;
}

/* Primary nav */
.site-nav > ul { display: flex; gap: 6px; }
.site-nav a {
	position: relative;
	padding: 10px 14px;
	font-weight: 500;
	font-size: 15px;
	color: var(--ink);
	transition: color var(--t-fast);
}
.site-nav a:hover { color: var(--gold-strong); text-decoration: none; }
.site-nav a::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 4px;
	height: 1.5px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--t-base);
}
.site-nav a:hover::after { transform: scaleX(1); }

.site-nav .dropdown-content {
	min-width: 220px;
	padding: 8px;
	border-radius: var(--r-md);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-md);
}
.site-nav .dropdown-content a {
	padding: 10px 12px;
	border-radius: var(--r-sm);
	font-size: 14px;
}
.site-nav .dropdown-content a:hover { background: var(--sand-50); }
.site-nav .dropdown-content a::after { display: none; }

/* ==========================================================================
   Mobile menu — full-height premium drawer
   ========================================================================== */
.mobile-menu {
	position: fixed;
	inset: 0;
	width: 100%;
	max-width: 100%;
	height: 100%;
	max-height: 100dvh;
	background: #fff;
	display: flex;
	flex-direction: column;
	z-index: 70;
	box-shadow: none;
	transform: translateX(-100%);
	transition: transform .35s var(--ease-out);
	overflow: hidden;
	padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-menu.active { transform: translateX(0); }

.mobile-menu__head {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 14px 16px 12px;
	gap: 12px;
	border-bottom: 1px solid var(--line);
	background: #fff;
	flex-shrink: 0;
	position: relative;
}
.mobile-menu__chips {
	display: flex;
	gap: 10px;
	position: relative;
	margin-right: auto;
}
.mobile-menu__chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid var(--line);
	border-radius: var(--r-pill);
	background: #fff;
	color: var(--ink);
	font-weight: 500;
	font-size: 13px;
	cursor: pointer;
	transition: border-color var(--t-fast);
}
.mobile-menu__chip:hover { border-color: var(--ink); }
.mobile-menu__chip-dropdown {
	position: absolute;
	left: 0;
	top: 100%;
	margin-top: 6px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	box-shadow: var(--shadow-md);
	overflow: hidden;
	min-width: 120px;
	z-index: 5;
}
.mobile-menu__chip-dropdown a {
	display: block;
	padding: 10px 16px;
	color: var(--ink);
	font-size: 14px;
}
.mobile-menu__chip-dropdown a:hover { background: var(--sand-100); text-decoration: none; }

.mobile-menu__close {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	color: var(--ink);
	border-radius: var(--r-sm);
	font-size: 22px;
	cursor: pointer;
	flex-shrink: 0;
	margin-left: auto;
	transition: background var(--t-fast);
}
.mobile-menu__close:hover { background: var(--sand-100); }

.mobile-menu__nav {
	flex: 1;
	overflow-y: auto;
	padding: 16px 8px 8px;
	-webkit-overflow-scrolling: touch;
}
.mobile-menu__nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu__nav > ul > li { border-bottom: 1px solid var(--line-soft); }
.mobile-menu__nav > ul > li:last-child { border-bottom: 0; }
.mobile-menu__nav > ul > li > a,
.mobile-menu__nav > ul > li > div > a {
	display: block;
	padding: 16px 16px;
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 18px;
	color: var(--ink) !important;
	border-radius: var(--r-sm);
	letter-spacing: -.01em;
	transition: background var(--t-fast), color var(--t-fast);
}
.mobile-menu__nav > ul > li > a:hover,
.mobile-menu__nav > ul > li > div > a:hover { background: var(--sand-100); text-decoration: none; }
.mobile-menu__nav > ul > li > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-right: 12px;
}
.mobile-menu__nav .submenu-toggle {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	color: var(--smoke);
	border-radius: var(--r-sm);
	cursor: pointer;
	transition: background var(--t-fast), color var(--t-fast);
}
.mobile-menu__nav .submenu-toggle:hover { background: var(--sand-100); color: var(--ink); }
.mobile-menu__nav .submenu {
	max-height: 0;
	overflow: hidden;
	padding: 0 12px;
	transition: max-height .3s ease;
}
.mobile-menu__nav .submenu.active { max-height: 1000px; padding: 4px 12px 12px; }
.mobile-menu__nav .submenu a {
	display: block;
	padding: 10px 16px;
	color: var(--smoke) !important;
	font-size: 15px;
	border-radius: var(--r-sm);
	transition: background var(--t-fast), color var(--t-fast);
}
.mobile-menu__nav .submenu a:hover { background: var(--sand-50); color: var(--ink) !important; text-decoration: none; }

.mobile-menu__cta {
	padding: 16px 20px;
	border-top: 1px solid var(--line);
	background: #fff;
	flex-shrink: 0;
}

.mobile-menu__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 18px 20px;
	background: var(--bg-dark);
	color: #fff;
	flex-shrink: 0;
}
.mobile-menu__phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fff !important;
	font-weight: 500;
	font-size: 15px;
}
.mobile-menu__phone:hover { color: #fff !important; text-decoration: none; }
.mobile-menu__phone i { color: rgba(255,255,255,.7); font-size: 13px; }
.mobile-menu__socials { display: flex; gap: 10px; }
.mobile-menu__socials a {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,.08);
	border-radius: var(--r-pill);
	color: #fff !important;
	font-size: 16px;
	transition: background var(--t-fast);
}
.mobile-menu__socials a:hover { background: rgba(255,255,255,.18); text-decoration: none; }

#overlay { z-index: 55; }
#overlay.hidden { display: none; }

/* ==========================================================================
   Hero block (chero)
   ========================================================================== */
.chero {
	background:
		radial-gradient(80% 60% at 50% 0%, rgba(10,10,10,.04), transparent 70%),
		linear-gradient(180deg, #fff 0%, var(--sand-50) 100%);
	overflow-x: clip;
	overflow-y: visible;
}
.chero::after {
	opacity: .08;
	width: min(110vw, 1400px);
	height: min(110vw, 1400px);
}

/* Neutralise any colour the editor may have set inside the H1 (e.g. blue spans). */
.chero__title,
.chero__title span,
.chero__title em,
.chero__title strong,
.chero__title b,
.chero__title i,
.chero__title a {
	color: var(--ink) !important;
}
.chero__title em,
.chero__title i { font-style: italic; font-weight: 600; color: var(--smoke) !important; }
.chero__title {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: clamp(2.25rem, 4.2vw + 1rem, 4.75rem);
	line-height: 1.04;
	letter-spacing: -.02em;
	color: var(--ink);
	margin: 0 0 18px;
}
.chero__subtitle {
	color: var(--smoke);
	font-size: clamp(1rem, .35vw + .9rem, 1.125rem);
	line-height: 1.6;
	max-width: 56ch;
	margin: 0 auto;
}
.chero__image {
	margin-top: 12px;
	width: 100%;
	max-width: 800px;
	margin-inline: auto;
}
.chero__image img {
	width: auto;
	max-width: min(100%, 800px);
	height: auto;
	display: block;
	margin-inline: auto;
	object-fit: contain;
	object-position: center;
	filter: drop-shadow(0 30px 60px rgba(10,10,10,.16));
	animation: chero-float 6s ease-in-out infinite;
}
@media (min-width: 768px) {
	.chero__image img {
		max-width: 800px;
	}
}
@keyframes chero-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
	.chero__image img { animation: none; }
}

/* Search form */
.search-form {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-md);
	padding: 8px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4px;
	max-width: 100%;
	overflow: visible;
}
.search-form__field {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	padding: 14px 18px;
	border-radius: var(--r-md);
	min-width: 0;
	overflow: visible;
}
@media (min-width: 768px) {
	.search-form__field { border-radius: 0; }
}
@media (min-width: 1024px) {
	.search-form__field { border-right: 1px solid var(--line-soft); }
	.search-form__field:last-child,
	.search-form__submit-wrap { border-right: none; }
}

/* Hover — без заливки ячейки; лёгкий акцент на подписи и chevron */
.search-form__field:not(.search-form__submit-wrap):not(.search-form__price):hover .search-form__label {
	color: var(--ink);
	opacity: 0.5;
}
.search-form__field:has(.type-options):hover .dropdown-caret {
	opacity: 0.85 !important;
}

/* Body Types dropdown — must escape the form card without being clipped */
.search-form .type-options { position: relative; }
.search-form .type-options.open { z-index: 30; }
.search-form__field:has(.type-options.open) {
	position: relative;
	z-index: 30;
}
.search-form .type-options .dropdown-content {
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	width: 100%;
	min-width: 200px;
	max-height: min(300px, 50vh);
	overflow-y: auto;
	overflow-x: hidden;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	z-index: 100;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	box-shadow: var(--shadow-lg);
	padding: 6px 0;
	background: #fff;
}
.search-form .type-options .dropdown-content a {
	padding: 12px 18px;
	white-space: nowrap;
	color: var(--ink);
	font-size: 15px;
	font-weight: 500;
}
.search-form .type-options .dropdown-content a:hover {
	background: var(--sand-100);
	text-decoration: none;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
	.search-form {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 0;
		padding: 6px;
	}
	.search-form__field:nth-child(1) { grid-column: 1; border-right: 1px solid var(--line-soft); }
	.search-form__field:nth-child(2) { grid-column: 2; border-right: 1px solid var(--line-soft); }
	.search-form__field:nth-child(3) { grid-column: 3; }
	.search-form__price {
		grid-column: 1 / -1;
		border-top: 1px solid var(--line-soft);
		border-right: none !important;
	}
	.search-form__submit-wrap {
		grid-column: 1 / -1;
		border-top: 1px solid var(--line-soft);
	}
}

/* Desktop: 5 columns — body | pickup | dropoff | price | submit */
@media (min-width: 1024px) {
	.search-form {
		grid-template-columns: minmax(140px, 1.15fr) minmax(110px, 0.85fr) minmax(110px, 0.85fr) minmax(200px, 1.55fr) auto;
		gap: 0;
		padding: 10px 12px;
		align-items: center;
	}
	.search-form__field {
		padding: 10px 16px;
		min-height: 56px;
	}
}

.search-form__label {
	display: block;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--smoke);
	margin-bottom: 0;
	line-height: 1.2;
	transition: color var(--t-fast), opacity var(--t-fast);
}
.search-form__value {
	font-size: 15px;
	font-weight: 500;
	color: var(--ink);
	width: 100%;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	text-align: left;
}
.search-form__value::placeholder { color: var(--mist); }

/* Price range */
.search-form__price { min-width: 0; }
.search-form__price-inner { display: flex; flex-direction: column; justify-content: center; gap: 8px; min-width: 0; max-width: 100%; }
.search-form__price-row {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--ink);
	font-weight: 500;
	font-size: 14px;
	min-width: 0;
	width: 100%;
}
.search-form__price-value {
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
	font-size: 13px;
	flex-shrink: 0;
	min-width: 72px;
}
.search-form__price-value:first-child { text-align: left; }
.search-form__price-value:last-child { text-align: right; }
.search-form__slider {
	flex: 1 1 auto;
	min-width: 60px;
	max-width: 100%;
	display: block;
	height: 28px;
}
@media (min-width: 1024px) {
	.search-form__price-inner { gap: 8px; }
	.search-form__price-row { gap: 12px; }
	.search-form__price-value { font-size: 13px; min-width: 72px; }
	.search-form__slider { height: 28px; min-width: 80px; }
}

/* Submit button cell */
.search-form__submit-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
}
@media (min-width: 1024px) {
	.search-form__submit-wrap {
		padding: 0 6px 0 10px;
		align-self: center;
		justify-content: flex-end;
		min-height: 0;
	}
}
.search-form__submit {
	width: 100%;
	padding: 12px 20px;
	border-radius: var(--r-md);
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	white-space: nowrap;
	transition: background var(--t-base), color var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
@media (min-width: 1024px) {
	.search-form__submit {
		width: auto;
		height: auto;
		min-height: 0;
		min-width: 0;
		padding: 10px 16px;
		font-size: 13.5px;
		gap: 7px;
	}
	.search-form__submit svg {
		width: 15px;
		height: 15px;
	}
}
.search-form__submit:active { box-shadow: none !important; }

/* Mobile */
@media (max-width: 767.98px) {
	.chero { overflow-x: clip; overflow-y: visible; }
	.chero .container { padding-left: 16px; padding-right: 16px; }
	.form-container { max-width: 100%; overflow: visible; }
	.search-form { padding: 6px; max-width: 100%; }
	.search-form__field { padding: 16px 18px; min-width: 0; }
	.search-form__label { font-size: 12px; margin-bottom: 6px; text-align: left; }
	.search-form__value { font-size: 16px; text-align: left; }
	.search-form__field .dropdown-content { left: 0; right: 0; min-width: 100%; transform: none; max-height: min(260px, 42vh); }
	.search-form__price { padding: 16px 18px 18px; }
	.search-form__price-row { gap: 10px; }
	.search-form__price-value { font-size: 13px; min-width: 64px; }
	.search-form__submit-wrap { padding: 4px 6px 6px; }
	.search-form__submit { padding: 16px 22px; font-size: 16px; }
}

/* Defensive: confine the toolcool web component to its parent width */
tc-range-slider {
	max-width: 100%;
	box-sizing: border-box;
}

/* ==========================================================================
   Categories block
   ========================================================================== */
.cat-block {
	background: var(--sand-50);
}
.cat-block__media {
	position: relative;
	overflow: hidden;
	border-radius: var(--r-lg);
	aspect-ratio: 4/5;
	background: var(--sand-100);
}
@media (min-width: 768px) { .cat-block__media { aspect-ratio: 4/4.5; } }
.cat-block__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s var(--ease-out);
}
.cat-block__card:hover .cat-block__media img { transform: scale(1.04); }
.cat-block__panel {
	background: #fff;
	border-radius: var(--r-lg);
	padding: 28px;
	border: 1px solid var(--line);
}
@media (min-width: 768px) { .cat-block__panel { padding: 40px; } }

.cat-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2px;
	border-radius: var(--r-md);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--line);
}
@media (min-width: 640px) { .cat-list { grid-template-columns: 1fr 1fr; } }
.cat-list__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background: #fff;
	transition: background var(--t-fast), color var(--t-fast);
	text-decoration: none;
}
.cat-list__item:hover { background: var(--sand-50); text-decoration: none; }
.cat-list__label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--smoke); display: block; margin-bottom: 2px; }
.cat-list__name { font-weight: 500; color: var(--ink); }
.cat-list__arrow {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--r-pill);
	background: var(--sand-100);
	color: var(--ink);
	transition: background var(--t-fast), color var(--t-fast), transform var(--t-base);
}
.cat-list__item:hover .cat-list__arrow { background: var(--ink); color: var(--gold-soft); transform: translateX(3px); }

/* ==========================================================================
   Features block
   ========================================================================== */
.features {
	background: linear-gradient(180deg, #080808 0%, var(--ink) 40%, #0e0e10 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.features::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 10% 20%, rgba(255,255,255,.04), transparent 60%),
		radial-gradient(ellipse 60% 50% at 90% 80%, rgba(255,255,255,.03), transparent 55%);
	pointer-events: none;
}
.features > .container { position: relative; z-index: 1; }
.features__hero {
	background:
		linear-gradient(145deg, #222225 0%, #141416 45%, var(--ink) 100%);
	border-radius: var(--r-lg);
	padding: 36px;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.06);
}
.features__hero::before {
	content: "";
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse 70% 80% at 0% 100%, rgba(255,255,255,.08), transparent 65%),
		radial-gradient(ellipse 50% 60% at 100% 0%, rgba(255,255,255,.05), transparent 55%),
		linear-gradient(180deg, transparent 40%, rgba(0,0,0,.25) 100%);
	pointer-events: none;
}
.features__hero::after {
	content: "";
	position: absolute;
	top: -40%;
	right: -20%;
	width: 60%;
	height: 80%;
	background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
	pointer-events: none;
}
.features__hero-title {
	position: relative;
	z-index: 1;
	font-family: var(--second-family);
	font-weight: 600;
	font-size: clamp(1.5rem, 1.8vw + .75rem, 2.25rem);
	line-height: 1.1;
	letter-spacing: -.015em;
}
.features__item {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.06);
	border-radius: var(--r-lg);
	padding: 28px;
	transition: background var(--t-base), border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.features__item::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .85;
	pointer-events: none;
	transition: opacity var(--t-base);
}
.features__item::after {
	content: "";
	position: absolute;
	top: -30%;
	right: -15%;
	width: 50%;
	height: 60%;
	background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
	pointer-events: none;
	opacity: 0;
	transition: opacity var(--t-base);
}
.features__item:nth-child(1)::before { background: linear-gradient(145deg, #2a2a2e 0%, #1a1a1d 100%); }
.features__item:nth-child(2)::before { background: linear-gradient(155deg, #242428 0%, #161619 100%); }
.features__item:nth-child(3)::before { background: linear-gradient(135deg, #1e1e22 0%, #28282c 100%); }
.features__item:nth-child(4)::before { background: linear-gradient(160deg, #202024 0%, #141417 100%); }
.features__item > * { position: relative; z-index: 1; }
.features__item:hover {
	border-color: rgba(255,255,255,.14);
	transform: translateY(-4px);
	box-shadow: 0 20px 48px rgba(0,0,0,.35);
}
.features__item:hover::after { opacity: 1; }
.features__icon {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--r-md);
	background: rgba(255,255,255,.08);
	color: #fff;
	margin-bottom: 20px;
	transition: background var(--t-base), color var(--t-base);
	border: 1px solid rgba(255,255,255,.08);
}
.features__item:hover .features__icon { background: #fff; color: var(--ink); border-color: #fff; }
.features__item-title {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 1.125rem;
	color: #fff;
	margin: 0 0 8px;
}
.features__item-text { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.6; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
	background: var(--ink);
	color: #fff;
}
.testimonials .section-head__title { color: #fff; }
.testimonials .section-head__subtitle { color: rgba(255,255,255,.65); }
.testimonial-card {
	background: var(--ink-soft);
	border: 1px solid rgba(255,255,255,.06);
	color: rgba(255,255,255,.85);
	border-radius: var(--r-lg);
	padding: 28px;
	transition: border-color var(--t-base), transform var(--t-base), background var(--t-base);
}
.testimonial-card:hover {
	background: var(--graphite);
	border-color: rgba(255,255,255,.16);
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.testimonial-card__text {
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255,255,255,.85);
	margin-bottom: 20px;
}
.testimonial-card__name { color: #fff; font-weight: 600; font-size: 15px; }
.testimonial-card__country { color: rgba(255,255,255,.55); font-size: 13px; }
.testimonial-card__avatar {
	width: 48px;
	height: 48px;
	border-radius: var(--r-pill);
	overflow: hidden;
	flex-shrink: 0;
	border: 1.5px solid rgba(255,255,255,.18);
	background: var(--graphite);
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card .star-rating,
.star-rating,
.testimonial-stars { color: #B89968 !important; }
.testimonial-card .star-rating i,
.star-rating i { text-shadow: 0 0 0.5px rgba(184,153,104,.45); }

/* ==========================================================================
   Single-product attribute items
   ========================================================================== */
.attr-item {
	display: flex;
	align-items: center;
	gap: 14px;
}
.attr-item__icon {
	width: 44px;
	height: 44px;
	border-radius: var(--r-md);
	background: #fff;
	border: 1px solid var(--line);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--ink);
	font-size: 18px;
}
.attr-item__body { min-width: 0; }
.attr-item__label {
	color: var(--smoke);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-weight: 500;
	margin: 0 0 4px;
}
.attr-item__value {
	color: var(--ink);
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 17px;
	letter-spacing: -.005em;
	margin: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { border-top: 1px solid var(--line); }
.faq-item {
	border-bottom: 1px solid var(--line);
	padding: 20px 0;
	transition: padding var(--t-base);
}
.faq-item__btn {
	display: flex;
	width: 100%;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	background: transparent;
	border: 0;
	padding: 0;
	text-align: left;
	cursor: pointer;
}
.faq-item__question {
	font-family: var(--second-family);
	font-weight: 600;
	color: var(--ink);
	font-size: clamp(1rem, .5vw + .85rem, 1.25rem);
	line-height: 1.35;
	margin: 0;
}
.faq-item__icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--r-pill);
	color: var(--ink);
	border: 1.5px solid var(--ink);
	transition: transform var(--t-base), background var(--t-base), color var(--t-base);
	font-size: 11px;
}
.faq-item.is-open .faq-item__icon { background: var(--ink); color: var(--gold-soft); transform: rotate(180deg); }

.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .42s var(--ease-out);
}
.faq__answer-inner {
	padding: 14px 0 4px;
	color: var(--smoke);
	font-size: 15px;
	line-height: 1.7;
	max-width: 70ch;
}

/* ==========================================================================
   Product cards
   ========================================================================== */
.product-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: none;
	transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
	display: flex;
	flex-direction: column;
	height: 100%;
}
.product-card > .p-5,
.product-card > .p-6,
.product-card > [class*="p-5"],
.product-card > [class*="p-6"] {
	flex: 1;
	display: flex;
	flex-direction: column;
	/* Extra bottom breathing room so the price + CTA arrow row sits comfortably
	   away from the card edge — and all cards line up to the same height. */
	padding-bottom: 24px !important;
}

/* Ensure the "price + arrow" group inside cards has space above (separates from
   the period tabs) and rests slightly lower from the card bottom edge. */
.product-card .mt-auto > div + div,
.product-card .mt-auto > div + .flex {
	margin-top: 12px;
}
.product-card .mt-auto .flex.items-end {
	padding-top: 4px;
}
/* Swiper / grid containers — stretch slides; clip overflow so cards never spill right. */
.products .swiper,
.freq .swiper,
.frequently-cars .swiper {
	overflow: hidden !important;
	width: 100%;
}
.products .swiper-wrapper,
.freq .swiper-wrapper,
.frequently-cars .swiper-wrapper { align-items: stretch; }
.products .swiper-slide,
.freq .swiper-slide,
.frequently-cars .swiper-slide,
.swiper-slide.product-slide,
.products-grid > * { height: auto; display: flex; align-items: stretch; }
.products .swiper-slide > *,
.freq .swiper-slide > *,
.frequently-cars .swiper-slide > * { width: 100%; display: flex; }
.product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--sand-300);
}
.product-card__image {
	display: block;
	position: relative;
	background: var(--sand-50);
	aspect-ratio: 4/3;
	height: auto !important;
	overflow: hidden;
}
.product-card__image > img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	transition: transform 1s var(--ease-out);
}
.product-card:hover .product-card__image > img { transform: scale(1.04); }
.product-card__image .year-badge {
	position: absolute;
	bottom: 12px;
	right: 16px;
	color: #fff;
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 1.5rem;
	letter-spacing: -.01em;
	text-shadow: 0 4px 16px rgba(0,0,0,.5);
}

.product-card__title {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 1.25rem;
	color: var(--ink);
	margin: 0 0 14px;
	letter-spacing: -.005em;
	min-height: 3.2em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.product-card__title a {
	color: inherit;
	text-decoration: none;
	background-image: linear-gradient(currentColor, currentColor);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 1px;
	transition: background-size var(--t-base), color var(--t-fast);
}
.product-card__title a:hover {
	color: var(--ink);
	background-size: 100% 1px;
}
.product-card__title a:focus-visible {
	outline: 2px solid var(--ink);
	outline-offset: 3px;
	border-radius: 2px;
}

.product-card__price {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 1.5rem;
	color: var(--ink);
	letter-spacing: -.01em;
}
.product-card__cta {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--r-pill);
	background: var(--ink);
	color: #fff;
	transition: background var(--t-base), transform var(--t-base);
}
.product-card__cta:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateX(3px); }

/* ==========================================================================
   Horizontal car card (archive list)
   ----------------------------------------------------------------------------
   Native CSS-grid layout that doesn't depend on Tailwind `md:` utilities — keeps
   image and content side-by-side at proper proportions and stacks cleanly on
   mobile. Image ≈ 42 %, content ≈ 58 % at ≥ 768 px.
   ========================================================================== */
.product-card.car-horizontal {
	display: grid;
	grid-template-columns: 1fr;
	height: auto;
	overflow: hidden;
}
@media (min-width: 768px) {
	.product-card.car-horizontal {
		grid-template-columns: minmax(0, 42%) minmax(0, 58%);
		align-items: stretch;
	}
}
.car-horizontal__media {
	position: relative;
	display: block;
	background: var(--sand-50);
	overflow: hidden;
	aspect-ratio: 4/3;
	height: auto !important;
	min-height: 240px;
}
@media (min-width: 768px) {
	.car-horizontal__media {
		aspect-ratio: auto;
		min-height: 320px;
		height: 100% !important;
	}
}
.car-horizontal__media img,
.car-horizontal__media .primary-image,
.car-horizontal__media .secondary-image {
	position: absolute !important;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: center center;
	transition: transform 1s var(--ease-out), opacity .35s var(--ease-out);
}
.product-card.car-horizontal:hover .car-horizontal__media .secondary-image { opacity: 1; }
.product-card.car-horizontal:hover .car-horizontal__media .primary-image { transform: scale(1.04); }
.car-horizontal__media .secondary-image { opacity: 0; }
.car-horizontal__media .year-badge {
	position: absolute;
	bottom: 14px;
	right: 18px;
	color: #fff;
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 1.625rem;
	letter-spacing: -.01em;
	text-shadow: 0 4px 16px rgba(0,0,0,.5);
	z-index: 2;
}

.car-horizontal__body {
	display: flex;
	flex-direction: column;
	padding: 28px 28px 28px;
	gap: 20px;
	min-width: 0;
}
@media (min-width: 768px) {
	.car-horizontal__body { padding: 32px 36px; gap: 22px; }
}
.car-horizontal__header { min-width: 0; }
.car-horizontal__title {
	margin: 0 !important;
	font-size: 1.5rem !important;
	min-height: 0 !important;
	display: block !important;
	-webkit-line-clamp: unset !important;
	overflow: visible !important;
	line-height: 1.2;
	letter-spacing: -.01em;
}
@media (min-width: 768px) {
	.car-horizontal__title { font-size: 1.625rem !important; }
}

.car-horizontal__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: start;
	min-width: 0;
}
@media (min-width: 900px) {
	.car-horizontal__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 28px; }
}

.car-horizontal__pricing { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.car-horizontal__pricing .period-tabs { width: 100%; max-width: 100%; }
.car-horizontal .period-tabs--compact .tab-btn {
	padding: 9px 4px 11px;
	font-size: 10px;
	letter-spacing: .13em;
}
@media (min-width: 768px) {
	.car-horizontal .period-tabs--compact .tab-btn {
		font-size: 10.5px;
		padding: 10px 6px 12px;
		letter-spacing: .14em;
	}
}

.car-horizontal__price { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.car-horizontal__price-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
}
.car-horizontal__price-row .atr-oldprice { font-size: 13.5px; }
.car-horizontal__price-row .atr-oldprice__cur { font-size: 11px; margin-left: 2px; }
.car-horizontal__price-row .product-card__price { font-size: 1.75rem; line-height: 1; }
.car-horizontal__cur { font-size: 0.95rem; font-weight: 500; color: var(--smoke); }
.car-horizontal__period { font-size: 0.875rem; color: var(--smoke); }
.car-horizontal__daily { font-size: 0.825rem; color: var(--smoke); }

.car-horizontal__attrs {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 8px 18px;
	margin: 0;
	font-size: 0.9375rem;
	color: var(--ink-soft);
	align-self: start;
	min-width: 0;
}
.car-horizontal__attrs dt {
	color: var(--smoke);
	font-weight: 500;
	margin: 0;
}
.car-horizontal__attrs dd {
	color: var(--ink);
	font-weight: 500;
	margin: 0;
	min-width: 0;
	word-wrap: break-word;
}

.car-horizontal__actions {
	display: flex;
	justify-content: flex-end;
	margin-top: auto;
	padding-top: 8px;
}
.car-horizontal__details {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 28px;
	min-width: 168px;
	font-size: 14.5px;
	text-decoration: none !important;
	white-space: nowrap;
	border-radius: var(--r-md);
	transition: background var(--t-base), color var(--t-base), border-color var(--t-base), box-shadow var(--t-base), gap var(--t-fast);
}
.car-horizontal__details:hover { gap: 10px; }
.car-horizontal__details i {
	font-size: 11px;
	opacity: .55;
	transition: transform var(--t-fast), opacity var(--t-fast);
}
.car-horizontal__details:hover i {
	opacity: .85;
	transform: translateX(2px);
}

/* Card price block — unified layout for carousel + archive cards */
.card-price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	min-width: 0;
}
.card-price__old {
	display: inline-block;
	align-self: flex-start;
	width: auto;
	max-width: 100%;
	font-size: 13px;
	line-height: 1.2;
	color: var(--mist);
	letter-spacing: .01em;
	text-decoration: none;
}
.card-price__old[hidden] { display: none !important; }
.card-price__main {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px;
	line-height: 1;
}
.card-price__amount {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 1.5rem;
	color: var(--ink);
	letter-spacing: -.01em;
}
.car-horizontal .card-price__amount { font-size: 1.75rem; }
.card-price__suffix {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	font-size: 14px;
	font-weight: 500;
	color: var(--smoke);
}
.card-price__daily {
	margin: 0;
	font-size: 12px;
	line-height: 1.35;
	color: var(--smoke);
}
.card-price__daily.is-hidden { display: none; }

/* Period tabs — luxury underline (Mercedes / RR style) */
.period-tabs {
	--period-active: 0;
	--period-count: 3;
	display: grid;
	grid-template-columns: repeat(var(--period-count, 3), minmax(0, 1fr));
	border: none;
	border-bottom: 1px solid var(--line-soft);
	border-radius: 0;
	padding: 0;
	gap: 0;
	background: transparent;
	max-width: 100%;
	width: 100%;
	position: relative;
	isolation: isolate;
}
.period-tabs::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: calc(100% / var(--period-count, 3));
	height: 2px;
	background: var(--ink);
	transform: translateX(calc(var(--period-active, 0) * 100%));
	transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
	z-index: 1;
}
.period-tabs .tab-btn {
	min-width: 0;
	padding: 11px 8px 13px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	border-radius: 0;
	color: var(--mist);
	background: transparent;
	border: 0;
	transition: color var(--t-base);
	cursor: pointer;
	white-space: nowrap;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
	z-index: 0;
}
@media (min-width: 1024px) {
	.period-tabs .tab-btn {
		font-size: 11.5px;
		padding: 12px 10px 14px;
		letter-spacing: .15em;
	}
}
.period-tabs .tab-btn:hover:not(.tab-active) { color: var(--smoke); background: transparent; }
.period-tabs .tab-btn.tab-active {
	background: transparent !important;
	color: var(--ink) !important;
	font-weight: 600;
	box-shadow: none !important;
	background-image: none !important;
}
.period-tabs .tab-btn:focus-visible {
	outline: 2px solid var(--ink);
	outline-offset: 3px;
	z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
	.period-tabs::after { transition: none; }
}

.tab-btn + .tab-btn { border-left: 0 !important; }

/* Old price strike — single line via main.css ::after pseudo */
.atr-oldprice {
	display: inline-block;
	width: auto;
	max-width: 100%;
	color: var(--mist);
	font-weight: 400;
	text-decoration: none !important;
}

/* Single product — separate bordered cards (not pill tabs) */
.cost .car-Card__prices {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	background: transparent;
	border: none;
	padding: 0;
	max-width: 100%;
	width: 100%;
}
.cost .car-Card__prices .car-Card__prices-period {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 14px 8px !important;
	border: 1px solid var(--line) !important;
	background: #fff !important;
	border-radius: var(--r-md) !important;
	min-width: 0;
	cursor: pointer;
	overflow: hidden;
	transition: border-color var(--t-fast), color var(--t-fast);
}
.cost .car-Card__prices-period-name {
	display: block;
	font-size: 10px !important;
	font-weight: 600;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--smoke);
	line-height: 1.2;
}
.cost .car-Card__prices-period-price {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	min-width: 0;
	width: 100%;
}
.cost .car-Card__prices-period-old {
	font-size: 10px;
	line-height: 1.2;
	opacity: .75;
	text-decoration: none !important;
}
.cost .car-Card__prices-period .js__aed {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: .95rem;
	line-height: 1.15;
	color: var(--ink);
	word-break: break-word;
}
.cost .car-Card__prices-period-price-per-day {
	font-size: 10px;
	color: var(--smoke);
	line-height: 1.2;
}
.cost .car-Card__prices-period:not(.car-Card__prices-period_active):hover {
	border-color: var(--sand-300) !important;
}
.cost .car-Card__prices-period.car-Card__prices-period_active {
	position: relative;
	border-color: var(--sand-300) !important;
	background: #fff !important;
	box-shadow: none !important;
}
.cost .car-Card__prices-period.car-Card__prices-period_active::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: var(--ink);
	border-radius: 0;
	opacity: 1;
}
.cost .car-Card__prices-period.car-Card__prices-period_active .car-Card__prices-period-name { color: var(--smoke) !important; }
.cost .car-Card__prices-period.car-Card__prices-period_active .js__aed { color: var(--ink) !important; font-weight: 700; }
.cost .car-Card__prices-period.car-Card__prices-period_active .car-Card__prices-period-old { color: var(--mist) !important; opacity: 1; }
.cost .car-Card__prices-period.car-Card__prices-period_active .car-Card__prices-period-price-per-day { color: var(--smoke) !important; }

/* Carousel / archive period tabs (pill grid) */
.car-Card__prices.period-tabs .car-Card__prices-period {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 12px 6px !important;
	border: 0 !important;
	background: transparent !important;
	border-radius: var(--r-sm) !important;
	min-width: 0;
	cursor: pointer;
}
.car-Card__prices-period-name {
	display: block;
	font-size: 10px !important;
	font-weight: 600;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--smoke);
	line-height: 1.2;
}
.car-Card__prices-period-price {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	min-width: 0;
	width: 100%;
}
.car-Card__prices-period-old {
	font-size: 10px;
	line-height: 1.2;
	opacity: .8;
	text-decoration: none !important;
}
.car-Card__prices-period .js__aed {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: .95rem;
	line-height: 1.15;
	color: var(--ink);
	word-break: break-word;
}
.car-Card__prices-period-price-per-day {
	font-size: 10px;
	color: var(--smoke);
	line-height: 1.2;
}
.car-Card__prices.period-tabs .car-Card__prices-period.tab-active,
.car-Card__prices.period-tabs .car-Card__prices-period.car-Card__prices-period_active {
	background: var(--ink) !important;
}
.car-Card__prices.period-tabs .car-Card__prices-period.tab-active .car-Card__prices-period-name,
.car-Card__prices.period-tabs .car-Card__prices-period.car-Card__prices-period_active .car-Card__prices-period-name { color: rgba(255,255,255,.72) !important; }
.car-Card__prices.period-tabs .car-Card__prices-period.tab-active .js__aed,
.car-Card__prices.period-tabs .car-Card__prices-period.car-Card__prices-period_active .js__aed { color: #fff !important; }
.car-Card__prices.period-tabs .car-Card__prices-period.tab-active .car-Card__prices-period-old,
.car-Card__prices.period-tabs .car-Card__prices-period.car-Card__prices-period_active .car-Card__prices-period-old { color: rgba(255,255,255,.55) !important; }
.car-Card__prices.period-tabs .car-Card__prices-period.tab-active .car-Card__prices-period-price-per-day,
.car-Card__prices.period-tabs .car-Card__prices-period.car-Card__prices-period_active .car-Card__prices-period-price-per-day { color: rgba(255,255,255,.65) !important; }

/* ==========================================================================
   Brands slider
   ========================================================================== */
.brands {
	background: #fff;
	border-top: 1px solid var(--line-soft);
	border-bottom: 1px solid var(--line-soft);
}
.brands .swiper-slide a {
	filter: grayscale(100%);
	opacity: .55;
	transition: filter var(--t-base), opacity var(--t-base);
}
.brands .swiper-slide a:hover {
	filter: grayscale(0%);
	opacity: 1;
}

/* ==========================================================================
   News / blog cards
   ========================================================================== */
.post-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.post-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--sand-300);
}
.post-card__image {
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/10;
	background: var(--sand-50);
}
.post-card__image img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1s var(--ease-out);
}
.post-card:hover .post-card__image img { transform: scale(1.04); }
.post-card__body { padding: 22px 24px 24px; }
.post-card__meta { font-size: 12px; color: var(--smoke); letter-spacing: .04em; text-transform: uppercase; }
.post-card__title {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.3;
	margin: 8px 0 12px;
}
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--gold-strong); text-decoration: none; }
.post-card__excerpt { color: var(--smoke); font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; }
.post-card__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ink);
	font-weight: 500;
	font-size: 14.5px;
	transition: color var(--t-fast), gap var(--t-fast);
}
.post-card__more:hover { color: var(--gold-strong); gap: 10px; text-decoration: none; }

/* ==========================================================================
   Text & Image block
   ========================================================================== */
.tandi {
	background: #fff;
}
.tandi:before { background: radial-gradient(circle at 30% 0%, rgba(10,10,10,.04), transparent 70%); }
.tandi__image-wrap {
	position: relative;
	border-radius: var(--r-lg);
	overflow: hidden;
	aspect-ratio: 4/3;
	background: var(--sand-100);
}
.tandi__image-wrap img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
}

/* ==========================================================================
   Requirements block
   ========================================================================== */
.reqs__card {
	background: var(--sand-50);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 28px;
	transition: border-color var(--t-base), transform var(--t-base);
}
.reqs__card:hover {
	border-color: var(--sand-300);
	transform: translateY(-3px);
}
.reqs__title {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 1.25rem;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	color: var(--ink);
}
.reqs__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.reqs__list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 14.5px;
	color: var(--ink-soft);
	line-height: 1.55;
}
.reqs__check {
	flex-shrink: 0;
	width: 22px; height: 22px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: var(--r-pill);
	background: var(--ink);
	color: var(--gold-soft);
	font-size: 10px;
	margin-top: 1px;
}

/* ==========================================================================
   SEO text section
   ========================================================================== */
.seo-section { background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.seo-content { color: var(--smoke); line-height: 1.75; }
.seo-content::after { background: linear-gradient(to bottom, rgba(250,250,247,0), var(--bg-soft)); }
.seo-section .js-show-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ink);
	font-weight: 500;
	border-bottom: 1.5px solid var(--gold);
	padding-bottom: 2px;
}
.seo-section .js-show-more:hover { color: var(--gold-strong); text-decoration: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: var(--ink);
	color: rgba(255,255,255,.7);
}
.site-footer__heading {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: .04em;
	color: #fff;
	margin: 0 0 16px;
	text-transform: uppercase;
}
.site-footer a {
	color: rgba(255,255,255,.65);
	transition: color var(--t-fast);
	text-decoration: none;
}
.site-footer a:hover {
	color: rgba(255,255,255,.92);
	text-decoration: none;
}
.site-footer__map {
	border-radius: var(--r-md);
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.08);
}
.site-footer__map iframe { width: 100%; height: 100%; min-height: 220px; display: block; border: 0; }
.site-footer__divider { border-top: 1px solid rgba(255,255,255,.08); }
.site-footer .accent { color: rgba(255,255,255,.78); }
.site-footer .accent:hover { color: #fff; text-decoration: none; }
.site-footer .social {
	width: 38px; height: 38px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: var(--r-pill);
	border: 1px solid rgba(255,255,255,.12);
	color: rgba(255,255,255,.7);
	transition: border-color var(--t-base), background var(--t-base), color var(--t-base);
}
.site-footer .social:hover {
	border-color: rgba(255,255,255,.32);
	background: rgba(255,255,255,.1);
	color: #fff;
}
.site-footer__bottom {
	background: var(--bg-graphite);
	color: rgba(255,255,255,.55);
	font-size: 13px;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumbs {
	background: var(--bg-soft);
	border-bottom: 1px solid var(--line-soft);
	padding: 14px 0;
}
.breadcrumbs a { color: var(--smoke); }
.breadcrumbs a:hover { color: var(--ink); text-decoration: none; }
.breadcrumbs [aria-current="page"] span { color: var(--ink); font-weight: 500; }

/* ==========================================================================
   Pagination
   ========================================================================== */
nav.inline-flex.rounded-md a,
nav.inline-flex.rounded-md a:hover,
.pagination-item,
.pagination-item:hover {
	text-decoration: none !important;
}
.pagination-item {
	min-width: 44px;
	padding: 10px 14px !important;
	border-color: var(--line) !important;
	color: var(--ink) !important;
	transition: background var(--t-fast), color var(--t-fast);
}
.pagination-item:hover { background: var(--sand-50) !important; }
.pagination-item.bg-gradient-to-r,
nav .px-4.py-2.bg-gradient-to-r {
	background: var(--ink) !important;
	color: #fff !important;
	border-color: var(--ink) !important;
	background-image: none !important;
}

/* ==========================================================================
   Booking modal
   ========================================================================== */
#booking-modal {
	border-radius: var(--r-lg) !important;
	max-width: 480px !important;
	width: 92vw !important;
	padding: 0 !important;
}
#booking-modal .booking-form {
	border-radius: var(--r-lg);
	padding: 36px 32px !important;
	background: #fff;
}
#booking-modal .cpopup__title {
	font-family: var(--second-family);
	font-weight: 600;
	color: var(--ink);
	font-size: 1.625rem;
	letter-spacing: -.015em;
	margin: 0 0 24px;
	text-align: center;
}
#booking-modal .cinput {
	display: block;
	margin-bottom: 18px;
}
#booking-modal .cinput__label {
	display: block;
	color: var(--smoke);
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 8px;
}
#booking-modal .cinput__field {
	display: block;
	width: 100%;
	border: 1px solid var(--line) !important;
	border-radius: var(--r-md) !important;
	background: #fff !important;
	padding: 14px 16px !important;
	font-size: 15px;
	color: var(--ink);
	line-height: 1.3;
	outline: none;
	box-shadow: none;
	transition: border-color var(--t-fast), box-shadow var(--t-fast);
	-webkit-appearance: none;
	appearance: none;
}
#booking-modal .cinput__field::placeholder { color: var(--mist); opacity: 1; }
#booking-modal .cinput__field:hover { border-color: var(--mist) !important; }
#booking-modal .cinput__field:focus,
#booking-modal .cinput__field:focus-visible {
	border-color: var(--ink) !important;
	box-shadow: 0 0 0 4px rgba(10,10,10,.06) !important;
	outline: none !important;
}
#booking-modal .cinput__field:required:invalid { box-shadow: none; }
#booking-modal .cinput__action { margin-top: 8px; }
#booking-modal .btn.btn--main,
#booking-modal .btn--main,
#booking-modal button.btn--main[type="submit"] {
	display: block;
	width: 100%;
	background: var(--ink) !important;
	background-image: none !important;
	color: #fff !important;
	border: 1px solid var(--ink) !important;
	border-radius: var(--r-md) !important;
	box-shadow: none !important;
	padding: 16px 24px !important;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: .01em;
	cursor: pointer;
	transition: background var(--t-fast), box-shadow var(--t-fast);
}
#booking-modal .btn--main:hover {
	background: var(--ink-soft) !important;
	color: #fff !important;
	box-shadow: var(--shadow-md) !important;
}
/* Flatpickr inside the booking modal — premium monochrome */
.flatpickr-calendar { box-shadow: var(--shadow-lg); border-radius: var(--r-md); border: 1px solid var(--line); }
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
	background: var(--ink) !important;
	border-color: var(--ink) !important;
	color: #fff !important;
}
.flatpickr-day.inRange { background: var(--sand-100) !important; border-color: var(--sand-100) !important; box-shadow: -5px 0 0 var(--sand-100), 5px 0 0 var(--sand-100) !important; color: var(--ink) !important; }
.flatpickr-day:hover { background: var(--sand-100); }

/* ==========================================================================
   Gallery (single product)
   ========================================================================== */
.gallery__main .swiper-slide img {
	width: 100%;
	max-height: 540px;
	object-fit: cover;
	border-radius: var(--r-lg);
}
.gallery__main .swiper-button-next,
.gallery__main .swiper-button-prev {
	color: var(--ink);
	background: rgba(255,255,255,.95);
	width: 44px; height: 44px;
	border-radius: var(--r-pill);
	box-shadow: var(--shadow-md);
}
.gallery__main .swiper-button-next:after,
.gallery__main .swiper-button-prev:after { font-size: 14px; font-weight: 700; }
.gallery__track .swiper-slide {
	max-width: none;
	cursor: pointer;
	border-radius: var(--r-md);
	overflow: hidden;
	opacity: .65;
	transition: opacity var(--t-base);
}
.gallery__track .swiper-slide:hover,
.gallery__track .swiper-slide-thumb-active { opacity: 1; }
.gallery__track .swiper-slide img {
	border-radius: var(--r-md);
	height: 80px; object-fit: cover; width: 100%;
}
@media (min-width: 768px) {
	.gallery__track .swiper-slide img { height: 90px; }
}

/* Cost / sidebar */
.cost {
	background: var(--sand-50) !important;
	border: 1px solid var(--line);
	border-radius: var(--r-lg) !important;
	padding: 28px !important;
}
.cost-benefits__check {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--r-sm);
	background: linear-gradient(160deg, #fff 0%, var(--sand-50) 100%);
	border: 1px solid var(--sand-200);
	color: var(--graphite);
	font-size: 9px;
	margin-top: 1px;
	box-shadow: var(--shadow-xs);
	transition: border-color var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.cost-benefits li:hover .cost-benefits__check {
	border-color: var(--sand-300);
	color: var(--ink);
	box-shadow: var(--shadow-sm);
	transform: translateY(-1px);
}
.cost .site-header__book {
	background: #fff;
}

/* Single product attribute block */
.single-product .c-content,
.single-product .prose { color: var(--ink-soft); }

/* ==========================================================================
   Filter sidebar (shop)
   ========================================================================== */
.shop-sidebar {
	background: var(--sand-50) !important;
	border: 1px solid var(--line);
}
@media (max-width: 1023.98px) {
	#filter-sidebar.shop-sidebar {
		top: var(--header-h);
		bottom: 0;
		height: auto;
		max-height: none;
		z-index: 50;
		padding-top: 20px;
	}
}
.shop-sidebar .widget_block + .widget_block { border-top-color: var(--line); }

#filter-toggle {
	background: var(--sand-50);
	color: var(--smoke);
	border-color: var(--line);
	box-shadow: none;
	font-weight: 500;
}
#filter-toggle:hover {
	background: #fff;
	color: var(--ink);
	border-color: var(--sand-300);
	box-shadow: none;
	transform: none;
}
#filter-toggle i { opacity: .65; font-size: 12px; }

/* Sidebar always visible from lg — hide the mobile toggle */
@media (min-width: 1024px) {
	#filter-toggle {
		display: none !important;
	}
}

/* ==========================================================================
   Slider nav buttons
   ========================================================================== */
.slider-m-mod .slider-nav,
.products.section .slider-nav,
.freq .slider-nav {
	margin-top: 36px;
}
.slider-nav__button {
	border-color: var(--line);
	color: var(--ink);
	background: #fff;
	transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.slider-nav__button:hover {
	background: var(--ink);
	color: var(--gold-soft);
	border-color: var(--ink);
}

/* ==========================================================================
   Misc fixes
   ========================================================================== */
/* Hero layout typo fix (n-flex → flex) */
.chero .n-flex { display: flex; }
.chero .n-flex-col { flex-direction: column; }
.chero .n-items-center { align-items: center; }
@media (min-width: 1024px) {
	.chero .n-lg\:flex-row { flex-direction: row; }
}

/* Improve Flatpickr to match palette */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover {
	background: var(--ink) !important;
	border-color: var(--ink) !important;
	color: #fff !important;
}
.flatpickr-day.inRange { background: var(--sand-100) !important; border-color: var(--sand-100) !important; color: var(--ink) !important; }

/* Range slider knobs */
.noUi-connect { background: var(--ink) !important; }
.noUi-handle { background: var(--ink) !important; border-color: #fff !important; }

/* Old gold text fallback */
.gold-text { color: var(--gold-strong); }

/* Smooth in/out for tab transitions */
.tab-btn { transition: background var(--t-fast), color var(--t-fast); }

/* Section transitions */
section, footer, header { transition: background var(--t-base); }

/* Form-container override (hero search) — structural wrapper only */
.form-container { box-shadow: none; background: transparent; }

/* Better focus outline */
:where(a, button, input, select, textarea):focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
}

/* Inline page article (page.php) */
.content-wrapper {
	box-shadow: none !important;
	border: 1px solid var(--line);
	border-radius: var(--r-lg) !important;
}

/* Back-to-top button restyle (created in JS) */
button[aria-label="Back to top"],
.back-to-top {
	background: var(--ink) !important;
	background-image: none !important;
	box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Utility helpers (fallback for missing Tailwind classes)
   ========================================================================== */
.aspect-4-3 { aspect-ratio: 4/3; }
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-1-1 { aspect-ratio: 1/1; }
.screen-reader-text { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.min-w-\[220px\] { min-width: 220px; }
.min-w-\[200px\] { min-width: 200px; }

@media (min-width: 1024px) {
	.lg\:flex { display: flex; }
}
@media (min-width: 768px) {
	.md\:flex-1 { flex: 1; }
	.md\:inline-flex { display: inline-flex; }
	.md\:items-center { align-items: center; }
	.md\:items-end { align-items: flex-end; }
	.md\:justify-between { justify-content: space-between; }
	.md\:w-auto { width: auto; }
}

/* Spacing utility fallbacks (in case compiled Tailwind misses them) */
.mb-10 { margin-bottom: 2.5rem; }
.mt-10 { margin-top: 2.5rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
@media (min-width: 768px) {
	.md\:mb-10 { margin-bottom: 2.5rem; }
	.md\:mt-10 { margin-top: 2.5rem; }
	.md\:gap-10 { gap: 2.5rem; }
	.md\:gap-12 { gap: 3rem; }
}
@media (min-width: 1024px) {
	.lg\:mb-10 { margin-bottom: 2.5rem; }
}

.divider {
	height: 1px;
	background: var(--line);
	margin: 16px 0;
}

.ink { color: var(--ink); }
.smoke { color: var(--smoke); }
.gold { color: var(--gold-strong); }

/* Print-friendly */
@media print {
	[data-reveal] { opacity: 1 !important; transform: none !important; }
	.site-header, .site-footer { background: #fff !important; color: #000 !important; }
}

/* ==========================================================================
   Mobile refinements
   ========================================================================== */
@media (max-width: 767px) {
	.section { padding: 56px 0; }
	.section-lg { padding: 64px 0; }
	.section-tight { padding: 40px 0; }
	.product-card__title { font-size: 1.125rem; }
	.product-card__price { font-size: 1.25rem; }
	.chero { padding-bottom: 8px; }
	.chero__image img { animation: none; }
}

/* Print/no-JS fallback */
.no-js [data-reveal] { opacity: 1 !important; transform: none !important; }
