/*
Theme Name: Camper Rental
Theme URI: https://sardiniarents.com
Author: XCC Customs Informatica
Description: Tema per piattaforma noleggio camper P2P - Design moderno e responsive.
Version: 1.2.8
License: GNU General Public License v2 or later
Text Domain: camper-rental
*/

:root {
	--cr-primary: #06b6d4;
	--cr-primary-hover: #0891b2;
	--cr-primary-light: #cffafe;
	--cr-accent: #f59e0b;
	--cr-accent-hover: #d97706;
	--cr-text: #0f172a;
	--cr-text-muted: #64748b;
	--cr-bg: #ffffff;
	--cr-bg-alt: #f8fafc;
	--cr-bg-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
	--cr-footer-bg: #0f172a;
	--cr-border: #e2e8f0;
	--cr-radius: 16px;
	--cr-radius-sm: 12px;
	--cr-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
	--cr-shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
	--cr-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--cr-font-company: 'Source Serif 4', 'Noto Serif', Georgia, 'Times New Roman', serif;
	--cr-transition: 0.2s ease;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: var(--cr-font); color: var(--cr-text); line-height: 1.6; background: var(--cr-bg); }
a { color: var(--cr-primary); text-decoration: none; transition: color var(--cr-transition); }
a:hover { color: var(--cr-primary-hover); }
img { max-width: 100%; height: auto; display: block; }

.cr-container { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }
.cr-container--wide { max-width: 1400px; }

.cr-header {
	background: rgba(255,255,255,0.98);
	backdrop-filter: blur(12px);
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
	position: sticky;
	top: 0;
	z-index: 100;
}
.cr-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
	gap: 1rem;
}
.cr-logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--cr-primary);
	letter-spacing: -0.02em;
}
.cr-logo:hover { color: var(--cr-primary-hover); text-decoration: none; }
.cr-nav {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	flex-wrap: wrap;
}
.cr-nav a {
	color: var(--cr-text);
	font-weight: 500;
	font-size: 0.95rem;
	padding: 0.5rem 0.75rem;
	border-radius: var(--cr-radius-sm);
	transition: background var(--cr-transition), color var(--cr-transition);
}
.cr-nav a:hover { background: var(--cr-bg-alt); color: var(--cr-primary); text-decoration: none; }
.cr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.25rem;
	border-radius: var(--cr-radius-sm);
	font-weight: 600;
	font-size: 0.95rem;
	transition: all var(--cr-transition);
	cursor: pointer;
	border: none;
	text-decoration: none;
}
.cr-btn-primary {
	background: var(--cr-primary);
	color: #fff;
}
.cr-btn-primary:hover { background: var(--cr-primary-hover); color: #fff; transform: translateY(-1px); text-decoration: none; }
.cr-btn-outline {
	background: transparent;
	color: var(--cr-primary);
	border: 2px solid var(--cr-primary);
}
.cr-btn-outline:hover { background: var(--cr-primary-light); color: var(--cr-primary-hover); text-decoration: none; }
.cr-main { min-height: 60vh; padding: 0; }
.cr-main .cr-container { padding-top: 0; padding-bottom: 0; }
/* Footer - stile fisso su ogni pagina */
.cr-footer {
	background: var(--cr-footer-bg, #0f172a) !important;
	color: rgba(255,255,255,0.9) !important;
	padding: 2.5rem 0 !important;
	margin-top: 3rem !important;
	font-size: 0.9rem !important;
	font-family: var(--cr-font) !important;
	border-top: 1px solid rgba(255,255,255,0.08) !important;
}
.cr-footer .cr-container { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }
.cr-footer-inner {
	display: grid !important;
	grid-template-columns: 1fr auto !important;
	gap: 2rem !important;
	align-items: start !important;
	max-width: 100% !important;
}
.cr-footer p,
.cr-footer-inner > div:first-child p,
.cr-footer-inner > div:first-child strong { margin: 0 0 0.5rem; color: rgba(255,255,255,0.9) !important; }
.cr-footer-inner > div:first-child strong { display: block; font-size: 1.1rem; }
.cr-footer-nav { display: flex !important; gap: 2rem 3rem !important; flex-wrap: wrap !important; }
.cr-footer-nav > div { min-width: 140px; }
.cr-footer-nav p { margin: 0 0 0.5rem; }
.cr-footer-nav strong { color: #fff !important; font-size: 0.95rem !important; }
.cr-footer nav a {
	color: rgba(255,255,255,0.85) !important;
	text-decoration: none !important;
	font-size: 0.9rem !important;
	display: block;
	transition: color 0.2s;
}
.cr-footer nav a:hover { color: #fff !important; }
@media (max-width: 767px) {
	.cr-footer-inner { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
	.cr-footer-nav { flex-direction: column; gap: 1.5rem; }
}

.cr-newsletter-home { padding: 3rem 0; }
.cr-newsletter-box {
	border-radius: 18px;
	padding: 2rem;
	color: #fff;
	box-shadow: 0 16px 28px rgba(2, 6, 23, 0.18);
}
.cr-newsletter-box h2 { margin: 0 0 0.5rem; font-size: clamp(1.4rem, 2.2vw, 2rem); }
.cr-newsletter-box p { margin: 0 0 1rem; color: rgba(255,255,255,0.9); }
.cr-newsletter-form-wrap { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 1rem; backdrop-filter: blur(3px); }

.cr-travel-tips { padding: 3rem 0; position: relative; overflow: hidden; }
.cr-travel-tips .cr-section-title { color: #fff; margin-bottom: 1.2rem; }
.cr-tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
}
.cr-tip-card {
	background: linear-gradient(160deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 16px;
	padding: 1rem;
	backdrop-filter: blur(5px);
	box-shadow: 0 10px 20px rgba(2, 6, 23, 0.2);
	transition: transform .2s ease, box-shadow .2s ease;
}
.cr-tip-card:hover { transform: translateY(-3px); box-shadow: 0 16px 28px rgba(2, 6, 23, 0.25); }
.cr-tip-card h3 { margin: 0 0 0.45rem; font-size: 1.08rem; color: #fff; }
.cr-tip-card p { margin: 0 0 0.7rem; color: rgba(255,255,255,.88); font-size: 0.93rem; }
.cr-tip-card .cr-feature-link { color: #fff; }

.cr-blog-latest { padding: 3rem 0; }
.cr-blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.25rem;
}
.cr-blog-card {
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--cr-border);
	box-shadow: 0 10px 18px rgba(2, 6, 23, 0.06);
}
.cr-blog-thumb { width: 100%; height: 180px; object-fit: cover; }
.cr-blog-thumb--fallback { background: linear-gradient(135deg, #e2e8f0, #cbd5e1); }
.cr-blog-body { padding: 1rem; }
.cr-blog-meta { font-size: 0.8rem; color: var(--cr-text-muted); margin-bottom: 0.35rem; }
.cr-blog-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; line-height: 1.3; }
.cr-blog-card h3 a { color: var(--cr-text); }
.cr-blog-card p { margin: 0 0 0.75rem; color: var(--cr-text-muted); font-size: 0.92rem; }

/* Blog page (home.php) */
.cr-blog-hero {
	position: relative;
	background: linear-gradient(135deg, var(--cr-bg-hero));
	padding: 3.5rem 0 4.5rem;
	color: #fff;
	text-align: center;
}
.cr-blog-hero--has-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.cr-blog-hero-overlay {
	position: absolute;
	inset: 0;
	opacity: 0.75;
	pointer-events: none;
}
.cr-blog-hero .cr-container { position: relative; z-index: 1; }
.cr-blog-hero-inner { max-width: 640px; margin: 0 auto; }
.cr-blog-filter-wrap {
	position: relative;
	z-index: 1;
	margin-top: 1.5rem;
}
.cr-blog-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	background: rgba(255,255,255,0.12);
	backdrop-filter: blur(8px);
	border-radius: var(--cr-radius);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	max-width: max-content;
	margin: 0 auto;
}
.cr-blog-filter-btn {
	appearance: none;
	border: none;
	background: transparent;
	color: rgba(255,255,255,0.9);
	font-size: 0.9rem;
	font-weight: 600;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.cr-blog-filter-btn:hover {
	background: rgba(255,255,255,0.2);
	color: #fff;
}
.cr-blog-filter-btn.active {
	background: rgba(255,255,255,0.95);
	color: var(--cr-primary);
}
.cr-blog-pagination-wrap { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--cr-border); }
.cr-blog-main.cr-blog-loading { position: relative; min-height: 200px; }
.cr-blog-main.cr-blog-loading::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255,255,255,0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
}
.cr-blog-main.cr-blog-loading::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 36px;
	height: 36px;
	margin: -18px 0 0 -18px;
	border: 3px solid var(--cr-border);
	border-top-color: var(--cr-primary);
	border-radius: 50%;
	animation: cr-spin 0.7s linear infinite;
	z-index: 6;
}
@keyframes cr-spin { to { transform: rotate(360deg); } }
.cr-blog-hero-title {
	margin: 0 0 0.5rem;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	letter-spacing: -0.02em;
}
.cr-blog-hero-desc {
	margin: 0;
	font-size: 1.1rem;
	opacity: 0.9;
}
.cr-blog-list { padding: 2.5rem 0 3rem; }
.cr-blog-list-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.75rem;
}
.cr-blog-list-card {
	margin: 0;
	border-radius: var(--cr-radius);
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--cr-border);
	box-shadow: var(--cr-shadow);
	transition: transform var(--cr-transition), box-shadow var(--cr-transition);
}
.cr-blog-list-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--cr-shadow-lg);
}
.cr-blog-list-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.cr-blog-list-card-link:hover { color: inherit; text-decoration: none; }
.cr-blog-list-card-media {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
}
.cr-blog-list-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}
.cr-blog-list-card:hover .cr-blog-list-card-img { transform: scale(1.04); }
.cr-blog-list-card-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(15, 23, 42, 0.35);
}
.cr-blog-list-card-cat {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background: rgba(255,255,255,0.95);
	color: var(--cr-primary);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.3rem 0.6rem;
	border-radius: 6px;
}
.cr-blog-list-card-body { padding: 1.25rem; }
.cr-blog-list-card-date {
	display: block;
	font-size: 0.8rem;
	color: var(--cr-text-muted);
	margin-bottom: 0.5rem;
}
.cr-blog-list-card-title {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.35;
}
.cr-blog-list-card-title a { color: var(--cr-text); }
.cr-blog-list-card:hover .cr-blog-list-card-title a { color: var(--cr-primary); }
.cr-blog-list-card-excerpt {
	margin: 0 0 0.75rem;
	font-size: 0.95rem;
	color: var(--cr-text-muted);
	line-height: 1.5;
}
.cr-blog-list-card-more {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--cr-primary);
}
.cr-blog-pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--cr-border);
}
.cr-blog-pagination .nav-links {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.cr-blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.75rem;
	border-radius: 10px;
	font-weight: 600;
	background: var(--cr-bg-alt);
	color: var(--cr-text);
	transition: all var(--cr-transition);
}
.cr-blog-pagination .page-numbers:hover,
.cr-blog-pagination .page-numbers.current {
	background: var(--cr-primary);
	color: #fff;
	text-decoration: none;
}
.cr-blog-empty {
	text-align: center;
	padding: 4rem 2rem;
	color: var(--cr-text-muted);
}

/* Blog sidebar */
.cr-blog-with-sidebar {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 2.5rem;
	align-items: start;
}
.cr-blog-main { min-width: 0; }
.cr-blog-sidebar {
	position: sticky;
	top: 100px;
}
.cr-blog-sidebar .cr-widget,
.cr-sidebar-widgets .cr-widget {
	background: #fff;
	border: 1px solid var(--cr-border);
	border-radius: var(--cr-radius);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	box-shadow: var(--cr-shadow);
}
.cr-widget-title {
	margin: 0 0 1rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--cr-text);
}
.cr-blog-sidebar ul,
.cr-sidebar-widgets ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.cr-blog-sidebar li,
.cr-sidebar-widgets li {
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--cr-border);
}
.cr-blog-sidebar li:last-child,
.cr-sidebar-widgets li:last-child { border-bottom: none; }
.cr-blog-sidebar .search-form,
.cr-sidebar-widgets .search-form {
	display: flex;
	gap: 0.5rem;
}
.cr-blog-sidebar .search-field,
.cr-sidebar-widgets .search-field {
	flex: 1;
	min-height: 42px;
	padding: 0.5rem 0.75rem;
	border: 1px solid var(--cr-border);
	border-radius: var(--cr-radius-sm);
}
.cr-blog-sidebar .search-submit,
.cr-sidebar-widgets .search-submit {
	padding: 0.5rem 1rem;
	background: var(--cr-primary);
	color: #fff;
	border: none;
	border-radius: var(--cr-radius-sm);
	cursor: pointer;
	font-weight: 600;
}

/* Single post */
.cr-single-post { padding-bottom: 4rem; }

.cr-single-header {
	position: relative;
	overflow: hidden;
}
.cr-single-header--has-image .cr-single-hero {
	position: relative;
	height: 340px;
	min-height: 240px;
	overflow: hidden;
}
.cr-single-hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.cr-single-header:hover .cr-single-hero-img { transform: scale(1.02); }
.cr-single-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(15, 23, 42, 0.95) 0%,
		rgba(15, 23, 42, 0.6) 35%,
		rgba(15, 23, 42, 0.2) 70%,
		transparent 100%
	);
}
.cr-single-header-content {
	position: relative;
	z-index: 2;
	padding: 2rem 0 2.5rem;
}
.cr-single-header--has-image .cr-single-header-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 2.5rem 0 2.5rem;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.4) 0%, transparent 100%);
}
.cr-single-header--no-image .cr-single-header-content {
	background: linear-gradient(135deg, var(--cr-bg-alt) 0%, var(--cr-bg) 100%);
	border-bottom: 1px solid var(--cr-border);
	padding-top: 2.5rem;
}
.cr-single-back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
	transition: color var(--cr-transition), opacity var(--cr-transition);
	margin-bottom: 1.25rem;
}
.cr-single-header--no-image .cr-single-back { color: var(--cr-text-muted); }
.cr-single-back:hover { color: #fff; text-decoration: none; opacity: 1; }
.cr-single-header--no-image .cr-single-back:hover { color: var(--cr-primary); }
.cr-single-back svg { flex-shrink: 0; opacity: 0.9; }
.cr-single-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.25rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}
.cr-single-header--has-image .cr-single-meta { color: rgba(255, 255, 255, 0.9); }
.cr-single-cat {
	display: inline-block;
	padding: 0.3rem 0.75rem;
	background: var(--cr-primary);
	color: #fff !important;
	font-weight: 600;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-radius: 6px;
	transition: background var(--cr-transition), transform var(--cr-transition);
}
.cr-single-header--has-image .cr-single-cat {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}
.cr-single-cat:hover {
	background: var(--cr-primary-hover);
	transform: translateY(-1px);
	text-decoration: none;
	color: #fff !important;
}
.cr-single-header--has-image .cr-single-cat:hover {
	background: rgba(255, 255, 255, 0.35);
}
.cr-single-meta-sep {
	display: inline-block;
	width: 4px;
	height: 4px;
	background: currentColor;
	opacity: 0.5;
	border-radius: 50%;
	flex-shrink: 0;
	align-self: center;
}
.cr-single-header--has-image .cr-single-meta-sep { background: rgba(255, 255, 255, 0.7); }
.cr-single-date {
	font-variant-numeric: tabular-nums;
	opacity: 0.9;
}
.cr-single-author {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}
.cr-single-meta-avatar {
	border-radius: 50%;
	width: 32px;
	height: 32px;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.4);
}
.cr-single-header--no-image .cr-single-meta-avatar { border-color: var(--cr-border); }
.cr-single-title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.9rem, 4.5vw, 2.85rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.03em;
	max-width: 780px;
	color: #fff;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.cr-single-header--no-image .cr-single-title { color: var(--cr-text); text-shadow: none; }
.cr-single-excerpt {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.6;
	opacity: 0.92;
	max-width: 680px;
	color: rgba(255, 255, 255, 0.95);
}
.cr-single-header--no-image .cr-single-excerpt { color: var(--cr-text-muted); }
.cr-single-content-wrap {
	padding: 2.5rem 0 3rem;
	background: linear-gradient(180deg, var(--cr-bg) 0%, var(--cr-bg-alt) 100%);
}
.cr-single-content-inner {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 3rem;
	align-items: start;
	max-width: 1140px;
	margin: 0 auto;
}
.cr-single-main {
	min-width: 0;
	background: #fff;
	border-radius: var(--cr-radius);
	padding: 2rem 2.25rem;
	box-shadow: var(--cr-shadow);
	border: 1px solid var(--cr-border);
}
.cr-single-entry {
	font-size: 1.08rem;
	line-height: 1.8;
	max-width: 65ch;
}
.cr-single-entry > *:first-child { margin-top: 0; }
.cr-single-entry h2 {
	margin: 2.25rem 0 0.85rem;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--cr-text);
}
.cr-single-entry h3 { margin: 1.75rem 0 0.5rem; font-size: 1.2rem; font-weight: 600; }
.cr-single-entry p { margin: 0 0 1.15rem; }
.cr-single-entry ul, .cr-single-entry ol { margin: 0 0 1.15rem; padding-left: 1.5rem; }
.cr-single-entry li { margin-bottom: 0.35rem; }
.cr-single-entry img {
	border-radius: var(--cr-radius-sm);
	max-width: 100%;
	height: auto;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.cr-single-entry figure { margin: 1.5rem 0; }
.cr-single-entry figcaption { font-size: 0.9rem; color: var(--cr-text-muted); margin-top: 0.5rem; }
.cr-single-entry blockquote {
	margin: 2rem 0;
	padding: 1.5rem 1.75rem;
	border-left: 4px solid var(--cr-primary);
	background: linear-gradient(90deg, var(--cr-primary-light) 0%, transparent 100%);
	border-radius: 0 var(--cr-radius-sm) var(--cr-radius-sm) 0;
	font-style: italic;
	color: var(--cr-text);
	font-size: 1.1rem;
}
.cr-single-pages { margin: 1.5rem 0; }
.cr-single-footer-meta {
	margin-top: 2.25rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--cr-border);
}
.cr-single-tags { font-size: 0.9rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.cr-single-tags-label { font-weight: 600; margin-right: 0.25rem; }
.cr-single-tags a {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	background: var(--cr-bg-alt);
	color: var(--cr-primary);
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 500;
	transition: all var(--cr-transition);
}
.cr-single-tags a:hover {
	background: var(--cr-primary);
	color: #fff !important;
	transform: translateY(-1px);
	text-decoration: none;
}
.cr-single-comments {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--cr-border);
}

/* Commenti */
.cr-comments { margin-top: 2rem; }
.cr-comments-title {
	margin: 0 0 1.5rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--cr-text);
}
.cr-comment-list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}
.cr-comment {
	margin-bottom: 1.5rem;
}
.cr-comment-body {
	background: var(--cr-bg-alt);
	border-radius: var(--cr-radius-sm);
	padding: 1.25rem;
	border: 1px solid var(--cr-border);
}
.cr-comment .children {
	list-style: none;
	margin: 1rem 0 0 2rem;
	padding: 0;
}
.cr-comment .children .cr-comment-body {
	background: #fff;
}
.cr-comment-meta {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 0.75rem;
}
.cr-comment-avatar {
	border-radius: 50%;
	width: 56px;
	height: 56px;
	object-fit: cover;
	flex-shrink: 0;
}
.cr-comment-meta-inner { min-width: 0; }
.cr-comment-author {
	font-style: normal;
	font-weight: 600;
	display: block;
	margin-bottom: 0.2rem;
}
.cr-comment-author a { color: var(--cr-text); }
.cr-comment-author a:hover { color: var(--cr-primary); }
.cr-comment-date {
	font-size: 0.85rem;
	color: var(--cr-text-muted);
}
.cr-comment-content {
	line-height: 1.6;
	margin-bottom: 0.75rem;
}
.cr-comment-awaiting {
	font-size: 0.9rem;
	color: var(--cr-accent);
	margin: 0.5rem 0;
}
.cr-comment-reply-link {
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--cr-primary);
}
.cr-comment-reply-link:hover { color: var(--cr-primary-hover); text-decoration: none; }
.cr-comments-closed {
	color: var(--cr-text-muted);
	font-style: italic;
	margin: 1rem 0;
}
.cr-comments .nav-links {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin: 1.5rem 0;
	padding: 1rem 0;
	border-top: 1px solid var(--cr-border);
}
.cr-comments .nav-previous a,
.cr-comments .nav-next a {
	font-weight: 500;
	color: var(--cr-primary);
}
.cr-comments .nav-previous a:hover,
.cr-comments .nav-next a:hover { color: var(--cr-primary-hover); text-decoration: none; }

/* Form commenti */
.cr-comment-form {
	background: linear-gradient(135deg, var(--cr-bg-alt) 0%, #fff 100%);
	border: 1px solid var(--cr-border);
	border-radius: var(--cr-radius);
	padding: 2rem;
	box-shadow: var(--cr-shadow);
}
.cr-comment-reply-title {
	margin: 0 0 1rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--cr-text);
}
.cr-comment-notes {
	font-size: 0.9rem;
	color: var(--cr-text-muted);
	margin: 0 0 1.25rem;
}
.cr-comment-form p {
	margin: 0 0 1.25rem;
}
.cr-comment-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.4rem;
	color: var(--cr-text);
}
.cr-comment-form .required { color: var(--cr-accent); }
.cr-comment-form input[type="text"],
.cr-comment-form input[type="email"],
.cr-comment-form input[type="url"],
.cr-comment-form textarea {
	width: 100%;
	max-width: 100%;
	min-height: 44px;
	padding: 0.6rem 0.85rem;
	border: 1px solid var(--cr-border);
	border-radius: var(--cr-radius-sm);
	font-family: inherit;
	font-size: 1rem;
	transition: border-color var(--cr-transition), box-shadow var(--cr-transition);
}
.cr-comment-form input:focus,
.cr-comment-form textarea:focus {
	outline: none;
	border-color: var(--cr-primary);
	box-shadow: 0 0 0 3px var(--cr-primary-light);
}
.cr-comment-form textarea {
	min-height: 140px;
	resize: vertical;
}
.cr-comment-form-comment { margin-bottom: 1.5rem; }
.cr-comment-form-submit {
	margin: 0;
	padding-top: 0.5rem;
}
.cr-comment-form-submit .cr-btn {
	min-height: 46px;
	padding: 0.65rem 1.5rem;
	font-size: 1rem;
}
.cr-comment-form .comment-form-author,
.cr-comment-form .comment-form-email,
.cr-comment-form .comment-form-url {
	width: 100%;
}
@media (min-width: 640px) {
	.cr-comment-form .comment-form-author,
	.cr-comment-form .comment-form-email,
	.cr-comment-form .comment-form-url {
		display: inline-block;
		width: calc(33.333% - 0.5rem);
		vertical-align: top;
		margin-right: 0.5rem;
	}
	.cr-comment-form .comment-form-url { margin-right: 0; }
}
.cr-single-sidebar { position: sticky; top: 100px; }
.cr-single-sidebar-card {
	background: #fff;
	border: 1px solid var(--cr-border);
	border-radius: var(--cr-radius);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	box-shadow: var(--cr-shadow);
}
.cr-single-author-card { padding: 1.5rem; }
.cr-single-author-bio {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}
.cr-single-author-avatar {
	border-radius: 50%;
	width: 72px;
	height: 72px;
	object-fit: cover;
	flex-shrink: 0;
	border: 3px solid var(--cr-border);
}
.cr-single-author-info { min-width: 0; }
.cr-single-author-bio h3 { margin: 0 0 0.35rem; font-size: 1.05rem; font-weight: 700; }
.cr-single-author-bio p { margin: 0; font-size: 0.9rem; color: var(--cr-text-muted); line-height: 1.55; }
.cr-single-sidebar-title {
	margin: 0 0 1rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--cr-text);
}
.cr-single-related-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.cr-single-related-item {
	border-bottom: 1px solid var(--cr-border);
}
.cr-single-related-item:last-child { border-bottom: none; }
.cr-single-related-link {
	display: flex;
	gap: 0.85rem;
	padding: 0.85rem 0;
	align-items: flex-start;
	text-decoration: none;
	color: inherit;
	transition: background var(--cr-transition);
	border-radius: var(--cr-radius-sm);
	margin: 0 -0.5rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
.cr-single-related-link:hover { background: var(--cr-bg-alt); text-decoration: none; color: inherit; }
.cr-single-related-thumb {
	flex-shrink: 0;
	width: 64px;
	height: 48px;
	border-radius: 8px;
	overflow: hidden;
	background: var(--cr-bg-alt);
}
.cr-single-related-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cr-single-related-text { min-width: 0; display: flex; flex-direction: column; gap: 0.2rem; }
.cr-single-related-title {
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.35;
	color: var(--cr-text);
}
.cr-single-related-link:hover .cr-single-related-title { color: var(--cr-primary); }
.cr-single-related-list time { font-size: 0.78rem; color: var(--cr-text-muted); }

/* Booking summary page - legacy (kept for compatibility) */
.cr-booking-editor-section { background: linear-gradient(135deg, #f8fafc, #eef6ff); border: 1px solid var(--cr-border); }
.cr-booking-date-editor { display: grid; grid-template-columns: repeat(3, minmax(160px, 1fr)); gap: 0.85rem; align-items: end; }
.cr-booking-date-field label { display: block; font-weight: 600; margin-bottom: 0.35rem; }
.cr-booking-date-field input[type="date"] { width: 100%; min-height: 42px; border: 1px solid var(--cr-border); border-radius: 10px; padding: 0.5rem 0.6rem; }
.cr-booking-date-note { margin: 0.75rem 0 0; font-size: 0.92rem; }
.cr-booking-page-grid { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr); gap: 1rem; }
.cr-booking-side { align-self: start; position: sticky; top: 88px; }

/* Checkout prenotazioni - design migliorato */
.cr-checkout-wrap { max-width: 1100px; margin: 0 auto; padding: 0 1rem 3rem; }
.cr-checkout-error {
	text-align: center;
	padding: 3rem 2rem;
	background: linear-gradient(135deg, #fef2f2 0%, #fff 100%);
	border: 1px solid #fecaca;
	border-radius: var(--cr-radius);
}
.cr-checkout-error-icon { color: #dc2626; margin-bottom: 1rem; }
.cr-checkout-error h2 { margin: 0 0 0.5rem; font-size: 1.35rem; color: var(--cr-text); }
.cr-checkout-error p { margin: 0 0 1rem; color: var(--cr-text-muted); }
.cr-checkout-error ul { margin: 0 0 1.5rem; padding-left: 1.5rem; text-align: left; max-width: 400px; margin-left: auto; margin-right: auto; }
.cr-checkout-btn { padding: 0.75rem 1.5rem; font-size: 1rem; }
.cr-checkout-notice { padding: 1rem 1.25rem; border-radius: 10px; margin-bottom: 1.5rem; }
.cr-checkout-notice--warning { background: #fffbeb; border: 1px solid #fcd34d; color: #92400e; }
.cr-checkout-header { margin-bottom: 1.5rem; }
.cr-checkout-steps {
	display: flex;
	align-items: center;
	gap: 0.5rem 1rem;
	margin-bottom: 0.75rem;
	font-size: 0.85rem;
	color: var(--cr-text-muted);
}
.cr-checkout-step { padding: 0.25rem 0.5rem; border-radius: 6px; }
.cr-checkout-step--done { color: #059669; background: #d1fae5; }
.cr-checkout-step--current { color: var(--cr-primary); font-weight: 600; background: var(--cr-primary-light); }
.cr-checkout-title { margin: 0; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; color: var(--cr-text); }
.cr-checkout-date-bar {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border-radius: var(--cr-radius);
	border: 1px solid var(--cr-border);
	margin-bottom: 1.5rem;
}
.cr-checkout-date-bar-top {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 1rem;
}
.cr-checkout-date-fields { display: flex; align-items: flex-end; gap: 0.75rem; flex-wrap: wrap; flex: 1; min-width: 0; }
.cr-checkout-date-field label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--cr-text-muted); }
.cr-checkout-date-field input[type="date"] {
	width: 100%;
	min-width: 140px;
	min-height: 44px;
	border: 1px solid var(--cr-border);
	border-radius: 10px;
	padding: 0.5rem 0.75rem;
	font-size: 0.95rem;
	background: #fff;
}
.cr-checkout-date-sep { color: var(--cr-text-muted); font-weight: 600; padding-bottom: 0.5rem; }
.cr-checkout-refresh { flex-shrink: 0; }
.cr-checkout-date-note { margin: 0.5rem 0 0; font-size: 0.9rem; color: #059669; width: 100%; }
.cr-checkout-date-note--error { color: #dc2626; }
.cr-checkout-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 2rem;
	align-items: start;
}
.cr-checkout-main { display: flex; flex-direction: column; gap: 1.5rem; }
.cr-checkout-vehicle-card {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 1.5rem;
	background: #fff;
	border-radius: var(--cr-radius);
	border: 1px solid var(--cr-border);
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.cr-checkout-vehicle-media {
	aspect-ratio: 4/3;
	overflow: hidden;
	background: var(--cr-bg-alt);
}
.cr-checkout-vehicle-media img { width: 100%; height: 100%; object-fit: cover; }
.cr-checkout-vehicle-media a { display: block; }
.cr-checkout-vehicle-body { padding: 1.25rem 1.5rem 1.25rem 0; display: flex; flex-direction: column; justify-content: center; }
.cr-checkout-vehicle-title { margin: 0 0 0.35rem; font-size: 1.25rem; font-weight: 700; line-height: 1.3; }
.cr-checkout-vehicle-title a { color: var(--cr-text); text-decoration: none; }
.cr-checkout-vehicle-title a:hover { color: var(--cr-primary); }
.cr-checkout-vehicle-location {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0 0 1rem;
	font-size: 0.9rem;
	color: var(--cr-text-muted);
}
.cr-checkout-vehicle-location svg { flex-shrink: 0; opacity: 0.8; }
.cr-checkout-vehicle-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cr-checkout-meta-badge {
	display: inline-block;
	padding: 0.3rem 0.65rem;
	background: var(--cr-bg-alt);
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--cr-text-muted);
}
.cr-checkout-meta-badge--highlight { background: var(--cr-primary-light); color: var(--cr-primary); }
.cr-checkout-meta-badge--ok { background: #d1fae5; color: #059669; }
.cr-checkout-costs {
	background: #fff;
	border-radius: var(--cr-radius);
	border: 1px solid var(--cr-border);
	padding: 1.5rem;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.cr-checkout-section-title { margin: 0 0 1.25rem; font-size: 1.1rem; font-weight: 700; color: var(--cr-text); }
.cr-checkout-costs-table { margin-bottom: 1rem; }
.cr-checkout-cost-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.65rem 0;
	border-bottom: 1px solid var(--cr-border);
	font-size: 0.95rem;
}
.cr-checkout-cost-row:last-child { border-bottom: none; }
.cr-checkout-cost-row--discount { color: #059669; }
.cr-checkout-cost-row--subtotal { font-weight: 600; border-bottom-width: 2px; padding: 0.85rem 0; }
.cr-checkout-cost-row--info { color: var(--cr-text-muted); font-size: 0.9rem; }
.cr-checkout-cost-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem 0 0;
	margin-top: 1rem;
	border-top: 2px solid var(--cr-border);
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--cr-text);
}
.cr-checkout-sidebar { position: sticky; top: 88px; }
.cr-checkout-summary-card {
	background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
	border-radius: var(--cr-radius);
	border: 1px solid var(--cr-border);
	padding: 1.5rem;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.cr-checkout-summary-total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--cr-border);
}
.cr-checkout-summary-label { font-size: 0.95rem; font-weight: 600; color: var(--cr-text-muted); }
.cr-checkout-summary-amount { font-size: 1.75rem; font-weight: 800; color: var(--cr-primary); letter-spacing: -0.02em; }
.cr-checkout-form { display: flex; flex-direction: column; gap: 1rem; }
.cr-checkout-message-field label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--cr-text); }
.cr-checkout-optional { font-weight: 400; color: var(--cr-text-muted); }
.cr-checkout-message-field textarea {
	width: 100%;
	min-height: 80px;
	padding: 0.75rem 1rem;
	border: 1px solid var(--cr-border);
	border-radius: 10px;
	font-size: 0.95rem;
	font-family: inherit;
	resize: vertical;
}
.cr-checkout-message-field textarea:focus { outline: none; border-color: var(--cr-primary); box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15); }
.cr-checkout-submit {
	width: 100%;
	padding: 1rem 1.5rem;
	font-size: 1.05rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}
.cr-checkout-submit:hover { transform: translateY(-1px); }
.cr-checkout-no-payment { margin: 0; padding: 1rem; background: #fef2f2; border-radius: 10px; color: #991b1b; font-size: 0.9rem; }

.cr-checkout-km { margin: 0 0 1.5rem; padding: 1.25rem 1.5rem; background: #f8fafc; border: 1px solid var(--cr-border, #e2e8f0); border-radius: var(--cr-radius, 16px); }
.cr-checkout-options-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
	margin-bottom: 2.25rem;
	align-items: stretch;
}
.cr-checkout-options-row .cr-checkout-km,
.cr-checkout-options-row .cr-checkout-kasko {
	margin-bottom: 0;
	height: 100%;
}
.cr-checkout-kasko {
	padding: 1.25rem 1.5rem;
	background: #f8fafc;
	border: 1px solid var(--cr-border, #e2e8f0);
	border-radius: var(--cr-radius, 16px);
}
.cr-checkout-km-hint { margin: 0 0 1rem; font-size: 0.9rem; color: var(--cr-text-muted, #64748b); line-height: 1.5; }
.cr-checkout-km-options { display: flex; flex-direction: column; gap: 0.65rem; }
.cr-checkout-km-option { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; font-size: 0.95rem; }
.cr-checkout-km-option input { margin: 0.2rem 0 0; accent-color: var(--cr-primary, #f87171); }
.cr-checkout-km-option-ui {
	flex: 1; display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.25rem 1rem;
	padding: 0.65rem 0.9rem; background: #fff; border: 1px solid var(--cr-border, #e2e8f0); border-radius: 12px; transition: border-color 0.2s, box-shadow 0.2s;
}
.cr-checkout-km-option input:focus + .cr-checkout-km-option-ui,
.cr-checkout-km-option input:checked + .cr-checkout-km-option-ui { border-color: var(--cr-primary, #f87171); box-shadow: 0 0 0 1px var(--cr-primary, #f87171); }
.cr-checkout-km-option-title { font-weight: 600; color: var(--cr-text, #0f172a); }
.cr-checkout-km-option-price { font-weight: 600; color: var(--cr-primary, #f87171); }
.cr-checkout-km-option-included { font-size: 0.85rem; color: var(--cr-text-muted, #64748b); }

.cr-checkout-extras-block {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding-top: 1rem;
	border-top: 1px solid var(--cr-border, #e2e8f0);
}
.cr-checkout-extras-title {
	margin: 0 0 0.25rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--cr-text, #0f172a);
}
.cr-checkout-times-block {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1rem;
	margin-bottom: 0.75rem;
	background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
	border: 1px solid var(--cr-border, #e2e8f0);
	border-radius: 14px;
}
.cr-checkout-times-head {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}
.cr-checkout-times-head-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
	border-radius: 12px;
	background: var(--cr-primary-light, #fee2e2);
	color: var(--cr-primary, #f87171);
}
.cr-checkout-times-head .cr-checkout-extras-title { margin: 0; }
.cr-checkout-times-hint {
	margin: 0.2rem 0 0;
	font-size: 0.82rem;
	line-height: 1.4;
	color: var(--cr-text-muted, #64748b);
}
.cr-checkout-times-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.85rem;
}
.cr-checkout-times-grid--header {
	width: 100%;
	padding-top: 0.85rem;
	border-top: 1px solid var(--cr-border, #e2e8f0);
}
.cr-checkout-time-field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 0.85rem;
	background: #fff;
	border: 1px solid var(--cr-border, #e2e8f0);
	border-radius: 12px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cr-checkout-time-field:focus-within {
	border-color: var(--cr-primary, #f87171);
	box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}
.cr-checkout-time-field--pickup { border-top: 3px solid #10b981; }
.cr-checkout-time-field--return { border-top: 3px solid #3b82f6; }
.cr-checkout-time-field label {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	cursor: pointer;
}
.cr-checkout-time-field-label {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--cr-text, #0f172a);
}
.cr-checkout-time-field-sub {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--cr-text-muted, #64748b);
}

/* Selettore orario condiviso (checkout + dashboard) */
.cr-time-select-wrap {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	width: 100%;
}
.cr-time-select-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	flex-shrink: 0;
	border-radius: 10px;
	background: var(--cr-bg-alt, #f1f5f9);
	color: var(--cr-text-muted, #64748b);
}
.cr-time-select-wrap--pickup .cr-time-select-icon {
	background: #ecfdf5;
	color: #059669;
}
.cr-time-select-wrap--return .cr-time-select-icon {
	background: #eff6ff;
	color: #2563eb;
}
.cr-time-select-wrap--outside .cr-time-select-icon {
	background: #fff7ed;
	color: #ea580c;
}
.cr-time-select-control {
	position: relative;
	flex: 1;
	min-width: 0;
}
.cr-time-select {
	width: 100%;
	min-height: 44px;
	padding: 0.55rem 2.25rem 0.55rem 0.85rem;
	border: 1px solid var(--cr-border, #e2e8f0);
	border-radius: 10px;
	background: #fff;
	font-size: 1rem;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.02em;
	color: var(--cr-text, #0f172a);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cr-time-select:hover {
	border-color: #cbd5e1;
}
.cr-time-select:focus {
	outline: none;
	border-color: var(--cr-primary, #f87171);
	box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}
.cr-time-select-chevron {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: var(--cr-text-muted, #64748b);
	display: flex;
	align-items: center;
}

.cr-checkout-outside-time {
	margin: 0.65rem 0 0;
	padding: 0.85rem;
	background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
	border: 1px solid #fed7aa;
	border-left: 4px solid #f97316;
	border-radius: 12px;
	animation: cr-time-slide-in 0.22s ease;
}

.cr-checkout-outside-toggle-wrap {
	width: 100%;
	padding-top: 0.75rem;
}
.cr-checkout-outside-toggle {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	min-height: 44px;
	padding: 0.65rem 0.9rem;
	text-align: left;
	border-color: #fed7aa;
	background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
	color: #9a3412;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.cr-checkout-outside-toggle:hover {
	border-color: #fdba74;
	background: #fff7ed;
	color: #9a3412;
}
.cr-checkout-outside-toggle.is-open {
	border-color: #fb923c;
	box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}
.cr-checkout-outside-toggle-icon {
	flex-shrink: 0;
	color: #ea580c;
}
.cr-checkout-outside-toggle-text {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	flex: 1;
	min-width: 0;
}
.cr-checkout-outside-toggle-label {
	font-size: 0.88rem;
	font-weight: 700;
	color: #9a3412;
}
.cr-checkout-outside-toggle-hint {
	font-size: 0.78rem;
	font-weight: 500;
	color: #c2410c;
	opacity: 0.85;
}
.cr-checkout-outside-toggle-chevron {
	flex-shrink: 0;
	color: #ea580c;
	transition: transform 0.22s ease;
}
.cr-checkout-outside-toggle.is-open .cr-checkout-outside-toggle-chevron {
	transform: rotate(180deg);
}
.cr-checkout-outside-panel {
	width: 100%;
	padding-top: 0.75rem;
	animation: cr-time-slide-in 0.22s ease;
}
.cr-checkout-outside-panel-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.85rem;
}
.cr-checkout-outside-option {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0.85rem;
	background: #fff;
	border: 1px solid #fed7aa;
	border-radius: 12px;
}
.cr-checkout-outside-option--checkin { border-top: 3px solid #f97316; }
.cr-checkout-outside-option--checkout { border-top: 3px solid #fb923c; }
.cr-checkout-outside-option-toggle {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	cursor: pointer;
	margin: 0;
}
.cr-checkout-outside-option-toggle input[type="checkbox"] {
	margin-top: 0.15rem;
	flex-shrink: 0;
	accent-color: #ea580c;
}
.cr-checkout-outside-option-ui {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}
.cr-checkout-outside-option-title {
	font-size: 0.88rem;
	font-weight: 700;
	color: #9a3412;
}
.cr-checkout-outside-option-price {
	font-size: 0.8rem;
	font-weight: 600;
	color: #c2410c;
}
.cr-checkout-outside-unavailable {
	margin: 0;
	padding: 0.85rem 1rem;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid var(--cr-border, #e2e8f0);
	color: var(--cr-text-muted, #64748b);
	font-size: 0.9rem;
}

@media (max-width: 640px) {
	.cr-checkout-outside-panel-grid {
		grid-template-columns: 1fr;
	}
}
.cr-checkout-outside-time-head {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-bottom: 0.65rem;
}
.cr-checkout-outside-time-head label {
	font-size: 0.85rem;
	font-weight: 600;
	color: #9a3412;
}
.cr-checkout-outside-time-badge,
.cr-booking-edit-outside-badge {
	display: inline-flex;
	align-self: flex-start;
	padding: 0.15rem 0.5rem;
	border-radius: 999px;
	background: #ffedd5;
	color: #c2410c;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.cr-booking-edit-field--time label { margin-bottom: 0.35rem; }
.cr-booking-edit-time-label { font-weight: 600; font-size: 0.9rem; }
.cr-booking-edit-outside-time {
	margin: 0.35rem 0 0.75rem 1.5rem;
	padding: 0.85rem;
	background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
	border: 1px solid #fed7aa;
	border-left: 4px solid #f97316;
	border-radius: 12px;
}
.cr-booking-edit-outside-time label {
	display: block;
	margin: 0.35rem 0 0.5rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: #9a3412;
}

@keyframes cr-time-slide-in {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
	.cr-checkout-times-grid,
	.cr-checkout-times-grid--header { grid-template-columns: 1fr; }
	.cr-checkout-date-bar-top { flex-direction: column; align-items: stretch; }
	.cr-checkout-refresh { width: 100%; }
}
.cr-checkout-extra-line {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.45;
	padding: 0.65rem 0.85rem;
	background: #f8fafc;
	border: 1px solid var(--cr-border, #e2e8f0);
	border-radius: 10px;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.cr-checkout-extra-line:has(input:checked) {
	border-color: var(--cr-primary, #f87171);
	box-shadow: 0 0 0 1px var(--cr-primary, #f87171);
}
.cr-checkout-extra-line input {
	margin: 0.15rem 0 0;
	flex-shrink: 0;
	accent-color: var(--cr-primary, #f87171);
}
.cr-checkout-extra-line > span:not(.cr-checkout-extra-price) {
	flex: 1;
	min-width: 0;
}
.cr-checkout-extra-price {
	flex-shrink: 0;
	margin-left: auto;
	font-weight: 600;
	color: var(--cr-primary, #f87171);
	white-space: nowrap;
}

@media (max-width: 960px) {
	.cr-checkout-grid { grid-template-columns: 1fr; }
	.cr-checkout-sidebar { position: static; }
	.cr-checkout-vehicle-card { grid-template-columns: 1fr; }
	.cr-checkout-vehicle-media { aspect-ratio: 16/10; }
	.cr-checkout-vehicle-body { padding: 1.25rem 1.5rem; }
}

/* WooCommerce checkout - design moderno e attrattivo */
.woocommerce-order-pay .cr-container,
.woocommerce-checkout .cr-container,
.woocommerce-checkout .cr-page-content,
.woocommerce-page .cr-container {
	max-width: 1360px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 0 clamp(1rem, 3vw, 1.75rem) 3rem !important;
}
.woocommerce-checkout .cr-page-content > h1 { display: none; }

.cr-wc-checkout-wrap {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 clamp(1rem, 3vw, 1.75rem) 3rem;
}
.cr-wc-checkout-header {
	margin-bottom: 2rem;
}
.cr-wc-checkout-steps {
	display: flex;
	align-items: center;
	gap: 0.5rem 1rem;
	margin-bottom: 0.75rem;
	font-size: 0.85rem;
	color: var(--cr-text-muted);
}
.cr-wc-step {
	padding: 0.3rem 0.65rem;
	border-radius: 8px;
}
.cr-wc-step--done { color: #059669; background: #d1fae5; font-weight: 600; }
.cr-wc-step--current { color: var(--cr-primary); font-weight: 700; background: var(--cr-primary-light); }
.cr-wc-checkout-title {
	margin: 0;
	font-size: 1.85rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--cr-text);
}
.cr-wc-checkout-form { margin-top: 0; }
.cr-wc-checkout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(300px, 1fr);
	gap: 2rem 2.5rem;
	align-items: start;
}
@media (min-width: 1280px) {
	.cr-wc-checkout-grid {
		gap: 2rem 3rem;
		grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.95fr);
	}
}
.cr-wc-checkout-main {
	min-width: 0;
	background: #fff;
	border-radius: var(--cr-radius);
	border: 1px solid var(--cr-border);
	padding: 1.5rem clamp(1.15rem, 2.8vw, 2rem) 2rem;
	box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
}
.cr-wc-customer-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.cr-wc-customer-details .col-1,
.cr-wc-customer-details .col-2 {
	width: 100%;
	float: none;
}
.cr-wc-billing-wrap,
.cr-wc-shipping-wrap {
	background: transparent;
	border-radius: 0;
	border: none;
	padding: 0;
	box-shadow: none;
}
.cr-wc-shipping-wrap .woocommerce-shipping-fields {
	padding-top: 1.5rem;
	margin-top: 0.5rem;
	border-top: 1px solid var(--cr-border);
}
.cr-wc-checkout-main #wc-stripe-payment-request-wrapper,
.cr-wc-checkout-main .wc-stripe-payment-request-wrapper,
.cr-wc-checkout-main #wc-stripe-payment-request-button,
.checkout.cr-wc-checkout-form #wc-stripe-payment-request-wrapper,
.checkout.cr-wc-checkout-form .wc-stripe-payment-request-wrapper {
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}
.cr-wc-checkout-main .woocommerce-checkout-payment-request-separator,
.cr-wc-checkout-main p.woocommerce-checkout-payment-request-separator,
.checkout.cr-wc-checkout-form .woocommerce-checkout-payment-request-separator {
	text-align: center;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--cr-text-muted);
	margin: 0.75rem 0 1rem;
}
.cr-wc-checkout-sidebar {
	position: sticky;
	top: 88px;
	min-width: 0;
}
.cr-wc-order-summary-card {
	background: #fff;
	border-radius: var(--cr-radius);
	border: 1px solid var(--cr-border);
	padding: 1.5rem clamp(1rem, 2vw, 1.5rem);
	box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
}
.cr-wc-order-summary-title {
	margin: 0 0 1.25rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--cr-text);
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--cr-border);
}

/* Form fields */
.woocommerce form .form-row {
	margin-bottom: 1rem;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 10px;
	border: 1px solid var(--cr-border);
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
	outline: none;
	border-color: var(--cr-primary);
	box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}
.woocommerce form .form-row label {
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.4rem;
	display: block;
}
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3 {
	font-size: 1.1rem;
	margin: 0 0 1rem;
	font-weight: 700;
	color: var(--cr-text);
}
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Order review table */
.woocommerce-checkout-review-order-table {
	width: 100%;
	border: none;
	margin: 0 0 1rem;
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
	padding: 0.8rem 0;
	border: none;
	border-bottom: 1px solid var(--cr-border);
	vertical-align: top;
}
.woocommerce-checkout-review-order-table .product-name {
	font-weight: 600;
	color: var(--cr-text);
}
.woocommerce-checkout-review-order-table .product-total { text-align: right; font-weight: 600; }
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
	padding: 1rem 0;
	border-bottom: none;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--cr-primary);
}
.woocommerce-checkout-review-order-table .cart-item {
	font-size: 0.9rem;
	color: var(--cr-text-muted);
	margin-top: 0.25rem;
}
.woocommerce-checkout-review-order-table .product-thumbnail img {
	border-radius: 8px;
}
.woocommerce-checkout-review-order-table .product-thumbnail {
	width: 60px;
}

/* Payment section */
.woocommerce-checkout-payment {
	background: var(--cr-bg-alt);
	border-radius: 12px;
	padding: 1.25rem;
	margin-top: 1rem;
	border: 1px solid var(--cr-border);
}
.woocommerce-checkout-payment .payment_methods {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}
.woocommerce-checkout-payment .payment_methods li {
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--cr-border);
	margin: 0;
}
.woocommerce-checkout-payment .payment_methods li:last-of-type { border-bottom: none; }
.woocommerce-checkout-payment .payment_methods label {
	cursor: pointer;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.woocommerce .woocommerce-order,
.woocommerce #payment,
.woocommerce .woocommerce-order-overview {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
}
.woocommerce #payment .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	width: 100%;
	background: var(--cr-primary);
	color: #fff !important;
	border-radius: 12px;
	padding: 1rem 1.5rem;
	border: none;
	font-weight: 700;
	font-size: 1.05rem;
	transition: background 0.2s, transform 0.2s;
}
.woocommerce #payment .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--cr-primary-hover);
	color: #fff !important;
	transform: translateY(-2px);
}

/* Notices */
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-message {
	border-radius: 12px;
	padding: 1rem 1.25rem;
	margin-bottom: 1rem;
}
.woocommerce .woocommerce-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}
.woocommerce .woocommerce-info {
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	color: #1e40af;
}
.woocommerce .woocommerce-message {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #166534;
}

/* Coupon */
.woocommerce-form-coupon-toggle { margin-bottom: 1rem; }
.woocommerce-form-coupon .form-row { margin-bottom: 0.5rem; }
.woocommerce-form-coupon .input-text {
	padding: 0.65rem 1rem;
	border-radius: 10px;
	border: 1px solid var(--cr-border);
}

@media (max-width: 960px) {
	.cr-wc-checkout-grid { grid-template-columns: 1fr; }
	.cr-wc-checkout-sidebar { position: static; }
}

@media (max-width: 960px) {
	.cr-booking-date-editor {
		grid-template-columns: 1fr;
	}
	.cr-booking-page-grid {
		grid-template-columns: 1fr;
	}
	.cr-booking-side {
		position: static;
	}
	.cr-single-content-inner {
		grid-template-columns: 1fr;
	}
	.cr-single-sidebar { position: static; }
	.cr-single-main { padding: 1.5rem 1.25rem; }
	.cr-single-header--has-image .cr-single-hero { height: 280px; min-height: 200px; }
}
@media (max-width: 960px) {
	.cr-blog-with-sidebar {
		grid-template-columns: 1fr;
	}
	.cr-blog-sidebar { position: static; }
}
@media (max-width: 640px) {
	.cr-blog-list-grid {
		grid-template-columns: 1fr;
	}
	.cr-blog-hero { padding: 2.5rem 0; }
}

/* Pagina Contatti (template Contatti) */
.cr-contact-section {
	padding: 2.5rem 0 3.5rem;
	background: var(--cr-bg-alt);
}
.cr-contact-inner {
	max-width: 1040px;
}
.cr-contact-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem 1.25rem;
	margin: 0 auto 2.5rem;
	max-width: 100%;
}
.cr-contact-btn {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 0.875rem;
	min-height: 3.5rem;
	padding: 0.65rem 1.35rem 0.65rem 0.65rem;
	text-align: left;
	text-decoration: none;
	border-radius: 999px;
	border: 1px solid transparent;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}
.cr-contact-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
	text-decoration: none;
}
.cr-contact-btn-icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	flex-shrink: 0;
	background: rgba(255, 255, 255, 0.22);
}
.cr-contact-btn-icon-wrap svg {
	width: 1.35rem;
	height: 1.35rem;
	flex-shrink: 0;
	stroke: currentColor;
}
.cr-contact-btn-main {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.1rem;
	min-width: 0;
	padding-right: 0.35rem;
}
.cr-contact-btn-text {
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: -0.02em;
	line-height: 1.2;
}
.cr-contact-btn-sub {
	font-size: 0.8125rem;
	opacity: 0.88;
	font-weight: 500;
	line-height: 1.3;
	word-break: break-word;
}
.cr-contact-btn--call {
	background: linear-gradient(135deg, var(--cr-primary) 0%, var(--cr-primary-hover) 100%);
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.2);
}
.cr-contact-btn--call:hover {
	color: #fff !important;
	filter: brightness(1.05);
}
.cr-contact-btn--call .cr-contact-btn-icon-wrap {
	background: rgba(255, 255, 255, 0.2);
}
.cr-contact-btn--whatsapp {
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.15);
}
.cr-contact-btn--whatsapp:hover {
	color: #fff !important;
}
.cr-contact-btn--whatsapp .cr-contact-btn-icon-wrap {
	background: rgba(255, 255, 255, 0.18);
}
.cr-contact-grid {
	display: grid;
	gap: 2rem;
	align-items: start;
}
.cr-contact-grid--with-company {
	grid-template-columns: 1fr;
}
@media (min-width: 900px) {
	.cr-contact-grid--with-company {
		grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
		gap: 2.5rem;
	}
}
.cr-contact-company {
	font-family: var(--cr-font-company);
	background: var(--cr-bg);
	border-radius: var(--cr-radius);
	padding: 1.75rem 1.5rem;
	border: 1px solid var(--cr-border);
	box-shadow: var(--cr-shadow);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--cr-text);
	letter-spacing: 0.01em;
}
.cr-contact-company-kicker {
	font-family: var(--cr-font);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--cr-text-muted);
	margin: 0 0 0.75rem;
	line-height: 1.3;
}
.cr-contact-company-name {
	font-family: var(--cr-font-company);
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 1rem;
	color: var(--cr-text);
	letter-spacing: -0.02em;
}
.cr-contact-company-block {
	margin: 0 0 1rem;
}
.cr-contact-company-block:last-child {
	margin-bottom: 0;
}
.cr-contact-company-block p {
	margin: 0 0 0.5rem;
}
.cr-contact-company-block p:last-child {
	margin-bottom: 0;
}
.cr-contact-company-line {
	margin: 0 0 0.75rem;
	font-size: 0.98rem;
}
.cr-contact-company-line:last-child {
	margin-bottom: 0;
}
.cr-contact-company-label {
	font-family: var(--cr-font);
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--cr-text-muted);
	display: inline-block;
	margin-right: 0.35rem;
	vertical-align: baseline;
}
.cr-contact-company-mail {
	color: var(--cr-primary);
	font-family: var(--cr-font);
	font-weight: 600;
	font-size: 0.95rem;
}
.cr-contact-company-mail:hover {
	color: var(--cr-primary-hover);
}
.cr-contact-main {
	min-width: 0;
}
.cr-contact-form-wrap {
	background: var(--cr-bg);
	border-radius: var(--cr-radius);
	padding: 1.75rem 1.5rem;
	box-shadow: var(--cr-shadow);
	border: 1px solid var(--cr-border);
}
.cr-contact-form-wrap .wpcf7 {
	margin: 0;
	font-family: var(--cr-font);
	width: 100%;
	max-width: 100%;
}

/* Contact Form 7 — tipografia e campi */
.cr-page-contact .cr-contact-form-wrap .wpcf7-form {
	font-size: 1rem;
	line-height: 1.5;
	color: var(--cr-text);
}
.cr-page-contact .cr-contact-form-wrap .wpcf7-form > p {
	margin: 0 0 1.35rem;
}
.cr-page-contact .cr-contact-form-wrap .wpcf7-form > p:last-of-type {
	margin-bottom: 0;
}
.cr-page-contact .cr-contact-form-wrap .wpcf7-form label,
.cr-page-contact .cr-contact-form-wrap .wpcf7-form .wpcf7-form-control-wrap + br {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--cr-text);
}
.cr-page-contact .cr-contact-form-wrap .wpcf7-form-control-wrap {
	display: block;
	margin-top: 0.4rem;
	width: 100%;
}
.cr-page-contact .cr-contact-form-wrap input.wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.cr-page-contact .cr-contact-form-wrap select.wpcf7-form-control,
.cr-page-contact .cr-contact-form-wrap textarea.wpcf7-form-control {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.8rem 1rem;
	font-size: 1rem;
	font-family: inherit;
	line-height: 1.45;
	border: 1px solid var(--cr-border);
	border-radius: 12px;
	background: #f8fafc;
	color: var(--cr-text);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.cr-page-contact .cr-contact-form-wrap textarea.wpcf7-form-control {
	min-height: 150px;
	resize: vertical;
}
.cr-page-contact .cr-contact-form-wrap input.wpcf7-form-control:not([type="submit"]):hover,
.cr-page-contact .cr-contact-form-wrap select.wpcf7-form-control:hover,
.cr-page-contact .cr-contact-form-wrap textarea.wpcf7-form-control:hover {
	border-color: #cbd5e1;
	background: #fff;
}
.cr-page-contact .cr-contact-form-wrap input.wpcf7-form-control:not([type="submit"]):focus,
.cr-page-contact .cr-contact-form-wrap select.wpcf7-form-control:focus,
.cr-page-contact .cr-contact-form-wrap textarea.wpcf7-form-control:focus {
	outline: none;
	border-color: var(--cr-primary);
	background: #fff;
	box-shadow: 0 0 0 3px var(--cr-primary-light);
}
.cr-page-contact .cr-contact-form-wrap input.wpcf7-submit,
.cr-page-contact .cr-contact-form-wrap .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.5rem;
	padding: 0.85rem 1.75rem;
	min-height: 3rem;
	font-size: 1rem;
	font-weight: 700;
	font-family: inherit;
	letter-spacing: -0.02em;
	color: #fff !important;
	background: linear-gradient(135deg, var(--cr-primary) 0%, var(--cr-primary-hover) 100%) !important;
	border: none !important;
	border-radius: 999px;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.cr-page-contact .cr-contact-form-wrap input.wpcf7-submit:hover,
.cr-page-contact .cr-contact-form-wrap .wpcf7-submit:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14);
}
.cr-page-contact .cr-contact-form-wrap input.wpcf7-submit:focus-visible,
.cr-page-contact .cr-contact-form-wrap .wpcf7-submit:focus-visible {
	outline: 2px solid var(--cr-primary);
	outline-offset: 3px;
}
.cr-page-contact .cr-contact-form-wrap .wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}
.cr-page-contact .cr-contact-form-wrap .wpcf7-acceptance label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-weight: 500;
	font-size: 0.9rem;
	cursor: pointer;
}
.cr-page-contact .cr-contact-form-wrap .wpcf7-not-valid-tip {
	display: block;
	margin-top: 0.4rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #dc2626;
}
.cr-page-contact .cr-contact-form-wrap .wpcf7-response-output {
	margin: 1.25rem 0 0;
	padding: 0.9rem 1rem;
	border-radius: 12px;
	font-size: 0.9rem;
	font-weight: 500;
	border-width: 1px;
	border-style: solid;
}
.cr-page-contact .cr-contact-form-wrap .wpcf7-validation-errors,
.cr-page-contact .cr-contact-form-wrap .wpcf7-acceptance-missing {
	color: #991b1b;
	background: #fef2f2;
	border-color: #fecaca;
}
.cr-page-contact .cr-contact-form-wrap .wpcf7-mail-sent-ok {
	color: #166534;
	background: #f0fdf4;
	border-color: #bbf7d0;
}
.cr-page-contact .cr-contact-form-wrap .wpcf7-mail-sent-ng,
.cr-page-contact .cr-contact-form-wrap .wpcf7-aborted {
	color: #92400e;
	background: #fffbeb;
	border-color: #fde68a;
}
.cr-page-contact .cr-contact-form-wrap .wpcf7-spinner {
	margin: 0 0 0 0.5rem;
	vertical-align: middle;
}
.cr-page-contact .cr-contact-form-wrap .ajax-loader {
	display: inline-block;
}
.cr-contact-form-placeholder {
	margin: 0;
	padding: 1.25rem;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: var(--cr-radius-sm);
	color: #92400e;
	font-family: var(--cr-font);
}
.cr-contact-extra {
	padding-bottom: 3rem;
}
