/* ==========================================================================
   Boise Car Rentals — Design System
   Bootstrap 5 is loaded first; this file layers brand tokens + components.
   ========================================================================== */

:root {
	--bcr-primary: #f5a623;
	--bcr-primary-dark: #d4891a;
	--bcr-primary-light: #fef3e2;
	--bcr-secondary: #1a1a2e;
	--bcr-secondary-dark: #0f0f1e;
	--bcr-accent: #e74c3c;
	--bcr-accent-dark: #c0392b;
	--bcr-green: #27ae60;
	--bcr-bg: #f8f9fa;
	--bcr-surface: #ffffff;
	--bcr-text: #2c3e50;
	--bcr-text-muted: #7f8c8d;
	--bcr-border: #e9ecef;
	--bcr-radius-sm: 8px;
	--bcr-radius: 16px;
	--bcr-radius-lg: 24px;
	--bcr-shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
	--bcr-shadow: 0 8px 24px rgba(26, 26, 46, 0.10);
	--bcr-shadow-lg: 0 16px 48px rgba(26, 26, 46, 0.15);
	--bcr-font-heading: "Plus Jakarta Sans", "Inter", sans-serif;
	--bcr-font-body: "Inter", sans-serif;
	--bcr-transition: all 0.3s ease;
}

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

body {
	font-family: var(--bcr-font-body);
	color: var(--bcr-text);
	background: var(--bcr-bg);
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--bcr-font-heading);
	font-weight: 700;
	color: var(--bcr-secondary);
	line-height: 1.2;
}

a { color: var(--bcr-primary-dark); text-decoration: none; transition: var(--bcr-transition); }
a:hover { color: var(--bcr-primary); }

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

.container { max-width: 1240px; }

::selection { background: var(--bcr-primary); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
	font-family: var(--bcr-font-heading);
	font-weight: 600;
	border-radius: var(--bcr-radius-sm);
	padding: 0.75rem 1.5rem;
	transition: var(--bcr-transition);
}
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

.bcr-btn-primary { background: var(--bcr-primary); border-color: var(--bcr-primary); color: #fff; }
.bcr-btn-primary:hover { background: var(--bcr-primary-dark); border-color: var(--bcr-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3); }

.bcr-btn-accent { background: var(--bcr-primary); border-color: var(--bcr-primary); color: #fff; }
.bcr-btn-accent:hover { background: var(--bcr-primary-dark); border-color: var(--bcr-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3); }

.bcr-btn-outline { background: transparent; border: 2px solid var(--bcr-secondary); color: var(--bcr-secondary); }
.bcr-btn-outline:hover { background: var(--bcr-secondary); color: #fff; }

.bcr-btn-white { background: #fff; color: var(--bcr-secondary); border: 2px solid #fff; }
.bcr-btn-white:hover { background: var(--bcr-primary-light); color: var(--bcr-secondary); border-color: var(--bcr-primary); }

.bcr-btn-dark { background: var(--bcr-secondary); border-color: var(--bcr-secondary); color: #fff; }
.bcr-btn-dark:hover { background: var(--bcr-secondary-dark); color: #fff; }

/* ---------- Announcement Bar ---------- */
.bcr-announcement-bar {
	background: var(--bcr-secondary);
	color: #fff;
	font-size: 0.85rem;
	text-align: center;
	padding: 0.5rem 0;
	position: relative;
	z-index: 1031;
}

/* ---------- Header ---------- */
.bcr-header {
	background: var(--bcr-surface);
	box-shadow: var(--bcr-shadow-sm);
	position: sticky;
	top: 0;
	z-index: 1030;
	transition: var(--bcr-transition);
}
.bcr-header.bcr-header-scrolled { box-shadow: var(--bcr-shadow); }

.bcr-navbar { padding: 0.85rem 0; }

.bcr-logo-text {
	font-family: var(--bcr-font-heading);
	font-weight: 800;
	font-size: 1.4rem;
	color: var(--bcr-secondary);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.bcr-logo-text i { color: var(--bcr-primary); }
.bcr-logo-text img { max-height: 40px; width: auto; }

.bcr-nav-menu { gap: 0.5rem; }
.bcr-nav-menu a {
	color: var(--bcr-text);
	font-weight: 600;
	padding: 0.5rem 0.9rem !important;
	border-radius: var(--bcr-radius-sm);
	transition: var(--bcr-transition);
}
.bcr-nav-menu a:hover { background: var(--bcr-primary-light); color: var(--bcr-primary-dark); }
.bcr-nav-menu .current-menu-item a { color: var(--bcr-primary-dark); }

.navbar-toggler { border: none; font-size: 1.6rem; color: var(--bcr-secondary); }
.navbar-toggler:focus { box-shadow: none; }

/* ---------- Breadcrumbs ---------- */
.bcr-breadcrumbs { padding: 0.75rem 0; }
.bcr-breadcrumbs .breadcrumb { margin: 0; font-size: 0.88rem; }
.bcr-breadcrumbs .breadcrumb-item + .breadcrumb-item::before { color: var(--bcr-text-muted); }
.bcr-breadcrumbs a { color: var(--bcr-text-muted); }
.bcr-breadcrumbs a:hover { color: var(--bcr-primary-dark); }
.bcr-breadcrumbs .breadcrumb-item.active { color: var(--bcr-text); }

/* ---------- Hero ---------- */
.bcr-hero { position: relative; color: #fff; overflow: hidden; }

.bcr-hero-slide {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.bcr-hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(26, 26, 46, 0.4) 100%);
}

.bcr-hero-inner { position: relative; z-index: 2; padding: 8rem 0 10rem; }

.bcr-hero-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
	font-size: 0.8rem;
	color: var(--bcr-primary);
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	padding: 0.3rem 1rem;
	border-radius: 999px;
	backdrop-filter: blur(4px);
}

.bcr-hero-title {
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	color: #fff;
	margin: 1rem 0 1.2rem;
	line-height: 1.1;
}

.bcr-hero-subtitle {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.85);
	max-width: 600px;
	line-height: 1.6;
}

.bcr-hero .carousel-indicators { bottom: 2rem; }
.bcr-hero .carousel-indicators [data-bs-target] {
	background: #fff;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	opacity: 0.5;
	border: 2px solid transparent;
	transition: var(--bcr-transition);
}
.bcr-hero .carousel-indicators .active { opacity: 1; border-color: var(--bcr-primary); }

/* ---------- Floating Search Form ---------- */
.bcr-search-wrap { position: relative; z-index: 10; margin-top: -7rem; }

.bcr-search-form {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius-lg);
	box-shadow: var(--bcr-shadow-lg);
	padding: 2rem;
	backdrop-filter: blur(10px);
}

.bcr-search-form .form-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--bcr-text-muted);
	margin-bottom: 0.3rem;
}

.bcr-search-form .form-control,
.bcr-search-form .form-select {
	border-radius: var(--bcr-radius-sm);
	border: 1.5px solid var(--bcr-border);
	padding: 0.7rem 1rem;
	font-size: 0.95rem;
	transition: var(--bcr-transition);
}
.bcr-search-form .form-control:focus,
.bcr-search-form .form-select:focus {
	border-color: var(--bcr-primary);
	box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.15);
}

.bcr-search-pickup-field {
	background: var(--bcr-primary-light);
	border-radius: var(--bcr-radius-sm);
	padding: 0.7rem 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--bcr-secondary);
	font-weight: 700;
	font-size: 0.95rem;
	height: 100%;
	min-height: 46px;
}
.bcr-search-pickup-field i { color: var(--bcr-primary); font-size: 1.1rem; }

.bcr-search-submit { height: 100%; min-height: 50px; font-weight: 700; }

.bcr-search-form-check { font-size: 0.88rem; color: var(--bcr-text-muted); }
.bcr-search-form-check input[type="checkbox"] { margin-right: 0.4rem; }

/* ---------- Sections ---------- */
.bcr-section { padding: 5rem 0; }
.bcr-section-alt { background: var(--bcr-surface); }

.bcr-section-eyebrow {
	color: var(--bcr-primary-dark);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.8rem;
}

.bcr-section-title {
	margin-top: 0.4rem;
	margin-bottom: 0.75rem;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.bcr-section-subtitle {
	color: var(--bcr-text-muted);
	max-width: 640px;
	margin: 0 auto 2.5rem;
	font-size: 1.05rem;
}

.bcr-section-header { text-align: center; margin-bottom: 3rem; }

/* ---------- Why Choose Us ---------- */
.bcr-feature-card {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	padding: 2rem;
	height: 100%;
	box-shadow: var(--bcr-shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
}
.bcr-feature-card:hover { transform: translateY(-6px); box-shadow: var(--bcr-shadow); }

.bcr-feature-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: var(--bcr-primary-light);
	color: var(--bcr-primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	margin: 0 auto 1.2rem;
	transition: var(--bcr-transition);
}
.bcr-feature-card:hover .bcr-feature-icon { background: var(--bcr-primary); color: #fff; }

.bcr-feature-title { font-size: 1.1rem; margin-bottom: 0.5rem; }
.bcr-feature-text { color: var(--bcr-text-muted); font-size: 0.92rem; }

/* ---------- Locations ---------- */
.bcr-location-card {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	overflow: hidden;
	box-shadow: var(--bcr-shadow-sm);
	display: block;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bcr-location-card:hover { transform: translateY(-6px); box-shadow: var(--bcr-shadow); }

.bcr-location-card-img {
	height: 180px;
	background-size: cover;
	background-position: center;
	position: relative;
}
.bcr-location-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(26, 26, 46, 0.6) 0%, transparent 60%);
}

.bcr-location-card-body { padding: 1.25rem; }
.bcr-location-card-title { font-size: 1.05rem; margin-bottom: 0.2rem; color: var(--bcr-secondary); }
.bcr-location-card-sub { font-size: 0.85rem; color: var(--bcr-text-muted); }

/* ---------- Car Categories ---------- */
.bcr-category-card {
	text-align: center;
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	padding: 2rem 1.25rem;
	box-shadow: var(--bcr-shadow-sm);
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}
.bcr-category-card:hover { transform: translateY(-6px); box-shadow: var(--bcr-shadow); }

.bcr-category-icon {
	font-size: 2.5rem;
	color: var(--bcr-primary);
	margin-bottom: 0.8rem;
	display: block;
}
.bcr-category-name { font-size: 1rem; font-weight: 700; color: var(--bcr-secondary); }
.bcr-category-count { font-size: 0.85rem; color: var(--bcr-text-muted); }

/* ---------- Brands ---------- */
.bcr-brands-strip {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
	padding: 1rem 0;
}
.bcr-brand-logo {
	max-height: 40px;
	opacity: 0.6;
	filter: grayscale(100%);
	transition: opacity 0.3s, filter 0.3s;
}
.bcr-brand-logo:hover { opacity: 1; filter: none; }

/* ---------- Featured Deals ---------- */
.bcr-deal-card {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	overflow: hidden;
	box-shadow: var(--bcr-shadow-sm);
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bcr-deal-card:hover { transform: translateY(-6px); box-shadow: var(--bcr-shadow); }

.bcr-deal-img {
	height: 200px;
	background-size: cover;
	background-position: center;
	position: relative;
}
.bcr-deal-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--bcr-accent);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.3rem 0.8rem;
	border-radius: 999px;
}
.bcr-deal-body { padding: 1.25rem; }
.bcr-deal-price { color: var(--bcr-primary-dark); font-weight: 800; font-size: 1.2rem; }

/* ---------- Testimonials ---------- */
.bcr-testimonial-card {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	padding: 2rem;
	box-shadow: var(--bcr-shadow-sm);
	height: 100%;
	position: relative;
}
.bcr-testimonial-quote {
	color: var(--bcr-primary);
	font-size: 2rem;
	opacity: 0.3;
	position: absolute;
	top: 1rem;
	right: 1.5rem;
}
.bcr-testimonial-text { font-style: italic; color: var(--bcr-text); margin-bottom: 1.2rem; }
.bcr-testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.bcr-testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.bcr-testimonial-name { font-weight: 700; font-size: 0.95rem; }
.bcr-testimonial-role { font-size: 0.82rem; color: var(--bcr-text-muted); }
.bcr-stars { color: var(--bcr-primary); font-size: 0.9rem; }

/* ---------- Statistics ---------- */
.bcr-stats-section {
	background: var(--bcr-secondary);
	color: #fff;
	padding: 4rem 0;
}
.bcr-stat-item { text-align: center; padding: 1rem; }
.bcr-stat-number {
	font-family: var(--bcr-font-heading);
	font-size: 2.8rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
}
.bcr-stat-label { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; margin-top: 0.4rem; }
.bcr-stat-icon { font-size: 1.8rem; color: var(--bcr-primary); margin-bottom: 0.6rem; display: block; }

/* ---------- Partner Logos ---------- */
.bcr-partner-logos { padding: 3rem 0; }
.bcr-partner-logo-item {
	text-align: center;
	padding: 1rem;
	transition: var(--bcr-transition);
}
.bcr-partner-logo-item img {
	max-height: 50px;
	opacity: 0.5;
	filter: grayscale(100%);
	transition: var(--bcr-transition);
}
.bcr-partner-logo-item:hover img { opacity: 1; filter: none; }
.bcr-partner-name { font-weight: 600; color: var(--bcr-text-muted); font-size: 0.9rem; }

/* ---------- App Promotion ---------- */
.bcr-app-promo {
	background: linear-gradient(135deg, var(--bcr-secondary), var(--bcr-secondary-dark));
	border-radius: var(--bcr-radius-lg);
	color: #fff;
	padding: 3.5rem;
	overflow: hidden;
	position: relative;
}
.bcr-app-promo::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(245, 166, 35, 0.08);
}
.bcr-app-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.bcr-app-badges img { height: 44px; }
.bcr-app-qr { background: #fff; padding: 10px; border-radius: 12px; display: inline-block; }
.bcr-app-qr img { width: 100px; height: 100px; }

/* ---------- CTA Banner ---------- */
.bcr-cta-banner {
	background: linear-gradient(135deg, var(--bcr-primary), var(--bcr-primary-dark));
	border-radius: var(--bcr-radius-lg);
	color: #fff;
	padding: 3.5rem;
	text-align: center;
}
.bcr-cta-banner h2 { color: #fff; font-size: 2rem; }
.bcr-cta-banner p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; }

/* ---------- FAQ ---------- */
.bcr-faq .accordion-item {
	border: none;
	border-radius: var(--bcr-radius) !important;
	overflow: hidden;
	margin-bottom: 1rem;
	box-shadow: var(--bcr-shadow-sm);
}
.bcr-faq .accordion-button {
	font-family: var(--bcr-font-heading);
	font-weight: 700;
	color: var(--bcr-secondary);
	padding: 1.25rem 1.5rem;
	font-size: 1rem;
}
.bcr-faq .accordion-button:not(.collapsed) {
	background: var(--bcr-primary-light);
	color: var(--bcr-primary-dark);
	box-shadow: none;
}
.bcr-faq .accordion-button:focus { box-shadow: none; }
.bcr-faq .accordion-body { padding: 1.25rem 1.5rem; color: var(--bcr-text-muted); }

/* ---------- Newsletter Section ---------- */
.bcr-newsletter-section { padding: 4rem 0; }
.bcr-newsletter-wrap {
	background: linear-gradient(135deg, var(--bcr-secondary), var(--bcr-secondary-dark));
	border-radius: var(--bcr-radius-lg);
	padding: 3rem;
	color: #fff;
}
.bcr-newsletter-title { color: #fff; font-size: 1.6rem; margin-bottom: 0.5rem; }
.bcr-newsletter-subtitle { color: rgba(255, 255, 255, 0.8); }
.bcr-newsletter-form .input-group { max-width: 500px; }
.bcr-newsletter-input {
	border-radius: var(--bcr-radius-sm) 0 0 var(--bcr-radius-sm) !important;
	border: none;
	padding: 0.8rem 1.2rem;
	font-size: 1rem;
}
.bcr-newsletter-btn {
	border-radius: 0 var(--bcr-radius-sm) var(--bcr-radius-sm) 0 !important;
	padding: 0.8rem 1.5rem;
	font-weight: 700;
}
.bcr-newsletter-feedback { font-size: 0.85rem; }

/* ---------- Footer ---------- */
.bcr-footer {
	background: var(--bcr-secondary-dark);
	color: rgba(255, 255, 255, 0.75);
	padding: 4rem 0 0;
}
.bcr-footer-logo { max-height: 36px; margin-bottom: 1rem; }
.bcr-footer-about { font-size: 0.9rem; line-height: 1.7; }
.bcr-footer-heading { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 0.05em; }
.bcr-footer-links { list-style: none; padding: 0; margin: 0; }
.bcr-footer-links li { margin-bottom: 0.6rem; }
.bcr-footer-links a { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; transition: var(--bcr-transition); }
.bcr-footer-links a:hover { color: var(--bcr-primary); padding-left: 4px; }
.bcr-footer-contact { list-style: none; padding: 0; margin: 0; }
.bcr-footer-contact li { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.5rem; }
.bcr-footer-contact i { color: var(--bcr-primary); width: 16px; }

.bcr-social-links { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.bcr-social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: var(--bcr-transition);
	font-size: 1.1rem;
}
.bcr-social-icon:hover { background: var(--bcr-primary); color: #fff; transform: translateY(-2px); }

.bcr-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 1.5rem 0;
	margin-top: 3rem;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
}
.bcr-legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.bcr-legal-links a { color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; }
.bcr-legal-links a:hover { color: var(--bcr-primary); }

/* ---------- Back to Top ---------- */
.bcr-back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--bcr-secondary);
	color: #fff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--bcr-shadow);
	z-index: 1040;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.bcr-back-to-top--visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.bcr-back-to-top:hover { background: var(--bcr-primary); transform: translateY(-3px); }

/* ---------- Cookie Notice ---------- */
.bcr-cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--bcr-secondary);
	color: #fff;
	padding: 1rem 0;
	z-index: 1050;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}
.bcr-cookie-notice-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}
.bcr-cookie-notice-text { font-size: 0.88rem; flex: 1; }
.bcr-cookie-notice-link { color: var(--bcr-primary); text-decoration: underline; }
.bcr-cookie-accept { white-space: nowrap; }

/* ---------- Blog ---------- */
.bcr-page-title { font-size: 2rem; margin-bottom: 1.5rem; }
.bcr-page-body { font-size: 1.05rem; line-height: 1.8; }
.bcr-page-body h2 { margin-top: 2rem; margin-bottom: 1rem; }
.bcr-page-body h3 { margin-top: 1.5rem; margin-bottom: 0.8rem; }
.bcr-page-body img { border-radius: var(--bcr-radius-sm); margin: 1.5rem 0; }
.bcr-page-body ul, .bcr-page-body ol { margin-bottom: 1.5rem; }

.bcr-blog-card {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	overflow: hidden;
	box-shadow: var(--bcr-shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bcr-blog-card:hover { transform: translateY(-4px); box-shadow: var(--bcr-shadow); }

.bcr-blog-card-img { display: block; height: 200px; overflow: hidden; }
.bcr-blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.bcr-blog-card:hover .bcr-blog-card-img img { transform: scale(1.05); }

.bcr-blog-card-body { padding: 1.25rem; }
.bcr-blog-card-meta { font-size: 0.82rem; color: var(--bcr-text-muted); display: flex; gap: 1rem; margin-bottom: 0.5rem; }
.bcr-blog-card-title { font-size: 1.1rem; margin-bottom: 0.5rem; }
.bcr-blog-card-title a { color: var(--bcr-secondary); }
.bcr-blog-card-title a:hover { color: var(--bcr-primary-dark); }
.bcr-blog-card-excerpt { color: var(--bcr-text-muted); font-size: 0.9rem; line-height: 1.6; }

.bcr-post-cat {
	display: inline-block;
	background: var(--bcr-primary-light);
	color: var(--bcr-primary-dark);
	font-weight: 700;
	font-size: 0.78rem;
	padding: 0.3rem 0.8rem;
	border-radius: 999px;
	margin-bottom: 0.8rem;
}

.bcr-post-title { font-size: 2.2rem; margin-bottom: 0.5rem; }
.bcr-post-meta { display: flex; flex-wrap: wrap; gap: 1.25rem; color: var(--bcr-text-muted); font-size: 0.88rem; margin-bottom: 1.5rem; }
.bcr-post-meta i { margin-right: 0.3rem; }
.bcr-post-meta a { color: var(--bcr-text-muted); }
.bcr-post-meta a:hover { color: var(--bcr-primary-dark); }

.bcr-post-thumb { margin-bottom: 2rem; }
.bcr-post-thumb img { border-radius: var(--bcr-radius); width: 100%; }

.bcr-entry-content { font-size: 1.05rem; line-height: 1.8; }
.bcr-entry-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.bcr-entry-content h3 { margin-top: 1.8rem; margin-bottom: 0.8rem; }
.bcr-entry-content img { border-radius: var(--bcr-radius-sm); max-width: 100%; height: auto; }
.bcr-entry-content p { margin-bottom: 1.2rem; }
.bcr-entry-content ul, .bcr-entry-content ol { margin-bottom: 1.5rem; }
.bcr-entry-content blockquote {
	border-left: 4px solid var(--bcr-primary);
	padding: 1rem 1.5rem;
	margin: 1.5rem 0;
	background: var(--bcr-primary-light);
	border-radius: 0 var(--bcr-radius-sm) var(--bcr-radius-sm) 0;
	font-style: italic;
}

.bcr-toc {
	background: var(--bcr-surface);
	border: 1px solid var(--bcr-border);
	border-radius: var(--bcr-radius);
	padding: 1.5rem;
	margin-bottom: 2rem;
}
.bcr-toc strong { font-size: 1rem; margin-bottom: 0.8rem; display: block; }
.bcr-toc ul { list-style: none; padding: 0; margin: 0; }
.bcr-toc li { margin-bottom: 0.4rem; }
.bcr-toc a { color: var(--bcr-text-muted); font-size: 0.92rem; }
.bcr-toc a:hover { color: var(--bcr-primary-dark); }

.bcr-post-tags { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.bcr-tag {
	display: inline-block;
	background: var(--bcr-bg);
	border: 1px solid var(--bcr-border);
	padding: 0.3rem 0.8rem;
	border-radius: 999px;
	font-size: 0.82rem;
	color: var(--bcr-text-muted);
	transition: var(--bcr-transition);
}
.bcr-tag:hover { background: var(--bcr-primary-light); border-color: var(--bcr-primary); color: var(--bcr-primary-dark); }

.bcr-author-box {
	background: var(--bcr-surface);
	border: 1px solid var(--bcr-border);
	border-radius: var(--bcr-radius);
	padding: 1.5rem;
	margin-top: 2.5rem;
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
}
.bcr-author-avatar { border-radius: 50%; flex-shrink: 0; }
.bcr-author-info h5 { margin-bottom: 0.3rem; }
.bcr-author-info p { font-size: 0.9rem; color: var(--bcr-text-muted); }

.bcr-related-posts { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--bcr-border); }

/* ---------- Sidebar ---------- */
.bcr-sidebar-box {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	box-shadow: var(--bcr-shadow-sm);
}
.bcr-sidebar-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--bcr-secondary); }
.bcr-sidebar-search { display: flex; }
.bcr-sidebar-search input { border-radius: var(--bcr-radius-sm) 0 0 var(--bcr-radius-sm); border: 1px solid var(--bcr-border); }
.bcr-sidebar-search button { border: none; background: var(--bcr-secondary); color: #fff; padding: 0 1rem; border-radius: 0 var(--bcr-radius-sm) var(--bcr-radius-sm) 0; }
.bcr-sidebar-categories { list-style: none; padding: 0; margin: 0; }
.bcr-sidebar-categories li { border-bottom: 1px solid var(--bcr-border); }
.bcr-sidebar-categories li:last-child { border-bottom: none; }
.bcr-sidebar-categories a { color: var(--bcr-text); display: block; padding: 0.5rem 0; font-size: 0.9rem; }
.bcr-sidebar-categories a:hover { color: var(--bcr-primary-dark); }
.bcr-sidebar-recent { list-style: none; padding: 0; margin: 0; }
.bcr-sidebar-recent li { padding: 0.5rem 0; border-bottom: 1px solid var(--bcr-border); }
.bcr-sidebar-recent li:last-child { border-bottom: none; }
.bcr-sidebar-recent a { color: var(--bcr-text); font-size: 0.9rem; display: flex; gap: 0.75rem; align-items: center; }
.bcr-sidebar-recent a:hover { color: var(--bcr-primary-dark); }
.bcr-sidebar-thumb { width: 52px; height: 52px; object-fit: cover; border-radius: var(--bcr-radius-sm); flex-shrink: 0; }
.bcr-sidebar-newsletter { background: var(--bcr-secondary); color: #fff; }
.bcr-sidebar-newsletter .bcr-sidebar-title { color: #fff; }
.bcr-sidebar-newsletter input { border: none; margin-bottom: 0.5rem; }

/* ---------- Comments ---------- */
.bcr-comments { margin-top: 3rem; }
.bcr-comments-title { font-size: 1.3rem; margin-bottom: 1.5rem; }
.bcr-comment-list { list-style: none; padding: 0; }
.bcr-comment-list .comment-body { background: var(--bcr-surface); border-radius: var(--bcr-radius); padding: 1.25rem; margin-bottom: 1rem; box-shadow: var(--bcr-shadow-sm); }
.bcr-comment-list .comment-meta { font-size: 0.85rem; color: var(--bcr-text-muted); margin-bottom: 0.5rem; }
.bcr-comment-list .comment-author { font-weight: 700; color: var(--bcr-secondary); }
.bcr-comment-list .comment-content { font-size: 0.95rem; }
.comment-reply-link { font-size: 0.85rem; font-weight: 600; color: var(--bcr-primary-dark); }

/* ---------- 404 Page ---------- */
.bcr-404-page { text-align: center; padding: 6rem 0; }
.bcr-404-icon { font-size: 5rem; color: var(--bcr-primary); margin-bottom: 1rem; }
.bcr-404-title { font-size: 3rem; margin-bottom: 0.5rem; }
.bcr-404-text { color: var(--bcr-text-muted); font-size: 1.1rem; margin-bottom: 2rem; }

/* ---------- Thank You Page ---------- */
.bcr-thank-you-page { text-align: center; padding: 5rem 0; }
.bcr-thank-you-icon { font-size: 4rem; color: var(--bcr-green); margin-bottom: 1rem; }
.bcr-thank-you-title { font-size: 2rem; margin-bottom: 0.5rem; }
.bcr-thank-you-text { color: var(--bcr-text-muted); font-size: 1.1rem; margin-bottom: 2rem; }

/* ---------- Search Results ---------- */
.bcr-results-sidebar { background: var(--bcr-surface); border-radius: var(--bcr-radius); padding: 1.5rem; box-shadow: var(--bcr-shadow-sm); }
.bcr-filter-group { border-bottom: 1px solid var(--bcr-border); padding-bottom: 1.25rem; margin-bottom: 1.25rem; }
.bcr-filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.bcr-filter-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--bcr-secondary); }
.bcr-filter-group .form-check { margin-bottom: 0.4rem; }
.bcr-filter-group .form-check-label { font-size: 0.9rem; color: var(--bcr-text); }

.bcr-results-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.25rem;
}
.bcr-results-toolbar #bcr-results-count { font-weight: 700; font-size: 1rem; }

.bcr-car-card {
	background: var(--bcr-surface);
	border-radius: var(--bcr-radius);
	box-shadow: var(--bcr-shadow-sm);
	margin-bottom: 1.5rem;
	padding: 1.5rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bcr-car-card:hover { transform: translateY(-2px); box-shadow: var(--bcr-shadow); }

.bcr-car-card-img { height: 120px; display: flex; align-items: center; justify-content: center; }
.bcr-car-card-img img { max-height: 100%; max-width: 100%; object-fit: contain; }

.bcr-car-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.6rem; }
.bcr-badge {
	font-size: 0.72rem;
	font-weight: 700;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	background: var(--bcr-bg);
	color: var(--bcr-text-muted);
}
.bcr-badge-success { background: #e8f8f0; color: var(--bcr-green); }
.bcr-badge-warning { background: var(--bcr-primary-light); color: var(--bcr-primary-dark); }

.bcr-car-name { font-size: 1.15rem; margin-bottom: 0.1rem; }
.bcr-supplier-block { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.bcr-supplier-logo { height: 24px; }
.bcr-car-price-col { text-align: right; }
.bcr-car-price { font-size: 1.5rem; font-weight: 800; color: var(--bcr-secondary); }
.bcr-car-price-sub { font-size: 0.78rem; color: var(--bcr-text-muted); }
.bcr-skeleton {
	background: linear-gradient(90deg, #eee 25%, #f5f5f5 37%, #eee 63%);
	background-size: 400% 100%;
	animation: bcr-skeleton 1.4s ease infinite;
	border-radius: var(--bcr-radius);
	height: 180px;
	margin-bottom: 1.5rem;
}
@keyframes bcr-skeleton { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* ---------- Vehicle Details ---------- */
.bcr-vd-gallery-main { border-radius: var(--bcr-radius); overflow: hidden; height: 380px; }
.bcr-vd-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.bcr-vd-gallery-thumbs { display: flex; gap: 0.6rem; margin-top: 0.6rem; overflow-x: auto; }
.bcr-vd-gallery-thumbs img { width: 84px; height: 60px; object-fit: cover; border-radius: var(--bcr-radius-sm); cursor: pointer; opacity: 0.6; transition: var(--bcr-transition); }
.bcr-vd-gallery-thumbs img.active, .bcr-vd-gallery-thumbs img:hover { opacity: 1; outline: 2px solid var(--bcr-primary); }
.bcr-vd-box { background: var(--bcr-surface); border-radius: var(--bcr-radius); padding: 1.5rem; box-shadow: var(--bcr-shadow-sm); margin-bottom: 1.5rem; }
.bcr-vd-spec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; }
.bcr-vd-spec-item { text-align: center; background: var(--bcr-bg); border-radius: var(--bcr-radius-sm); padding: 1rem 0.5rem; }
.bcr-vd-spec-item i { font-size: 1.3rem; color: var(--bcr-primary); }
.bcr-vd-feature-list { columns: 2; list-style: none; padding: 0; }
.bcr-vd-feature-list li { margin-bottom: 0.5rem; font-size: 0.92rem; }
.bcr-vd-feature-list i { color: var(--bcr-green); margin-right: 0.4rem; }
.bcr-vd-sticky-summary { position: sticky; top: 100px; }
.bcr-vd-map { border-radius: var(--bcr-radius); overflow: hidden; height: 260px; }
.bcr-vd-package-card { border: 1.5px solid var(--bcr-border); border-radius: var(--bcr-radius); padding: 1.25rem; margin-bottom: 1rem; cursor: pointer; transition: var(--bcr-transition); }
.bcr-vd-package-card:hover { border-color: var(--bcr-primary); }
.bcr-vd-package-card.active { border-color: var(--bcr-primary); background: var(--bcr-primary-light); }

/* ---------- Pagination ---------- */
.bcr-pagination { margin-top: 2rem; }
.bcr-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--bcr-radius-sm); background: var(--bcr-surface); color: var(--bcr-text); font-weight: 600; margin: 0 0.2rem; border: 1px solid var(--bcr-border); transition: var(--bcr-transition); }
.bcr-pagination .page-numbers.current { background: var(--bcr-primary); color: #fff; border-color: var(--bcr-primary); }
.bcr-pagination .page-numbers:hover { background: var(--bcr-primary-light); border-color: var(--bcr-primary); }

/* ---------- Utilities ---------- */
.bcr-loader { display: flex; align-items: center; justify-content: center; padding: 3rem 0; }
.bcr-alert-empty { background: var(--bcr-surface); border-radius: var(--bcr-radius); padding: 3rem; text-align: center; box-shadow: var(--bcr-shadow-sm); }
.bcr-alert-empty i { display: block; margin-bottom: 0.5rem; }
.text-muted { color: var(--bcr-text-muted) !important; }
.bg-light { background-color: var(--bcr-bg) !important; }
.rounded { border-radius: var(--bcr-radius) !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
	.bcr-vd-feature-list { columns: 1; }
}
@media (max-width: 991.98px) {
	.bcr-search-wrap { margin-top: -3rem; }
	.bcr-hero-slide { min-height: 70vh; }
	.bcr-nav-menu { padding: 1rem 0; }
	.bcr-vd-sticky-summary { position: static; }
	.bcr-footer { text-align: center; }
	.bcr-footer-contact li { justify-content: center; }
	.bcr-social-links { justify-content: center; }
	.bcr-legal-links { justify-content: center; }
}
@media (max-width: 767.98px) {
	.bcr-search-form { padding: 1.25rem; }
	.bcr-hero-inner { padding: 4rem 0 8rem; }
	.bcr-hero-slide { min-height: 60vh; }
	.bcr-app-promo, .bcr-cta-banner { padding: 2rem; text-align: center; }
	.bcr-car-price-col { text-align: left; margin-top: 1rem; }
	.bcr-section { padding: 3rem 0; }
	.bcr-newsletter-wrap { padding: 2rem; }
	.bcr-cookie-notice-inner { flex-direction: column; text-align: center; }
	.bcr-author-box { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 575.98px) {
	.bcr-hero-title { font-size: 1.8rem; }
	.bcr-stat-number { font-size: 2rem; }
	.bcr-post-meta { gap: 0.75rem; font-size: 0.82rem; }
}
