/**
 * Single vehicle template styles.
 *
 * @package Webinane_Vehicle_Booking
 */

.wbvb-vehicle-single {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 16px 48px;
}

.wbvb-vehicle-single__inner {
	width: 100%;
}

.wbvb-vehicle-single__meta-bar {
	margin-bottom: 16px;
}

.wbvb-vehicle-single__meta-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.wbvb-chip {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	background: #f3f4f6;
	color: #111827;
	font-size: 13px;
	font-weight: 500;
}

.wbvb-chip--muted {
	background: #e5e7eb;
	color: #374151;
}

.wbvb-chip--warn {
	background: #fef2f2;
	color: #b91c1c;
}

.wbvb-vehicle-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 32px;
	align-items: start;
}

.wbvb-vehicle-single__image {
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 20px;
	background: #f3f4f6;
}

.wbvb-vehicle-single__image img {
	display: block;
	width: 100%;
	height: auto;
}

.wbvb-vehicle-single__title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px 24px;
	margin-bottom: 24px;
}

.wbvb-vehicle-single__title {
	margin: 0;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 700;
	color: #111827;
}

.wbvb-vehicle-single__price-main {
	font-size: 1.35rem;
	font-weight: 700;
	color: #da3a32;
}

.wbvb-spec-grid {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
}

.wbvb-spec-item {
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 14px 16px;
	background: #fff;
}

.wbvb-spec-item__label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin-bottom: 6px;
}

.wbvb-spec-item__value {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #111827;
}

.wbvb-vehicle-single__about-title {
	font-size: 1.25rem;
	margin: 0 0 12px;
	color: #111827;
}

.wbvb-vehicle-single__about-body {
	font-size: 15px;
	line-height: 1.65;
	color: #374151;
}

.wbvb-vehicle-single__sidebar {
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.wbvb-sidebar-card {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 18px 20px;
	background: #fff;
}

.wbvb-sidebar-card--details {
	padding-bottom: 16px;
}

.wbvb-sidebar-card__rate {
	margin: 0 0 8px;
	font-size: 1.1rem;
	font-weight: 600;
	color: #111827;
}

.wbvb-sidebar-card__note {
	margin: 0;
	font-size: 13px;
	color: #6b7280;
	line-height: 1.5;
}

.wbvb-sidebar-card__title {
	margin: 0 0 12px;
	font-size: 1rem;
	font-weight: 700;
	color: #111827;
}

.wbvb-price-lines {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
}

.wbvb-price-lines li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid #f3f4f6;
	color: #374151;
}

.wbvb-price-lines li:last-child {
	border-bottom: 0;
}

.wbvb-reserve-btn {
	display: block;
	width: 100%;
	text-align: center;
	padding: 14px 20px;
	border-radius: 8px;
	background: #da3a32;
	color: #fff !important;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: background 0.2s ease;
}

.wbvb-reserve-btn:hover,
.wbvb-reserve-btn:focus {
	background: #b91c1c;
	color: #fff !important;
	text-decoration: none;
}

.wbvb-sidebar-footnote {
	margin: 0;
	font-size: 12px;
	color: #6b7280;
	line-height: 1.5;
}

.wbvb-sidebar-unavailable {
	margin: 0;
	padding: 16px;
	border-radius: 10px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	font-size: 14px;
	color: #4b5563;
}

@media (max-width: 900px) {
	.wbvb-vehicle-single__layout {
		grid-template-columns: 1fr;
	}

	.wbvb-vehicle-single__sidebar {
		position: static;
	}
}
