/**
 * Single vehicle details page — aligned with site Elementor kit colors:
 * Primary #0F172A | Secondary #1E293B | Accent #D4AF37 | Bg #F8FAFC | Gray #6B7280
 */

.scudo-vs-wrap {
	--vs-primary: #0f172a;
	--vs-secondary: #1e293b;
	--vs-accent: #d4af37;
	--vs-accent-2: #b8942d;
	--vs-bg: #f8fafc;
	--vs-gray: #6b7280;
	--vs-border: rgba(15, 23, 42, 0.1);
	--vs-white: #ffffff;
	background: var(--vs-bg);
	color: var(--vs-primary);
}

.scudo-vs-wrap * {
	box-sizing: border-box;
}

.scudo-vs-container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Hero */
.scudo-vs-hero {
	position: relative;
	min-height: 480px;
	background-color: var(--vs-secondary);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.scudo-vs-hero__overlay {
	display: flex;
	align-items: flex-end;
	min-height: 480px;
	padding: 60px 0 48px;
	background: linear-gradient(
		180deg,
		rgba(15, 23, 42, 0.35) 0%,
		rgba(15, 23, 42, 0.55) 45%,
		rgba(15, 23, 42, 0.95) 100%
	);
}

.scudo-vs-hero__inner {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
	color: var(--vs-white);
}

.scudo-vs-breadcrumb {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.scudo-vs-breadcrumb:hover {
	color: var(--vs-accent);
}

.scudo-vs-status {
	display: inline-flex;
	align-items: center;
	margin-bottom: 14px;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: rgba(212, 175, 55, 0.14);
	border: 1px solid rgba(212, 175, 55, 0.55);
	color: var(--vs-accent);
}

.scudo-vs-status--booked {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.28);
	color: var(--vs-white);
}

.scudo-vs-status--disabled {
	background: rgba(248, 113, 113, 0.14);
	border-color: rgba(248, 113, 113, 0.45);
	color: #fca5a5;
}

.scudo-vs-hero__title {
	margin: 0 0 14px;
	font-size: 44px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.01em;
}

.scudo-vs-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
}

.scudo-vs-hero__price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 24px;
}

.scudo-vs-hero__price strong {
	font-size: 34px;
	font-weight: 800;
	color: var(--vs-accent);
	letter-spacing: -0.02em;
}

.scudo-vs-hero__price span {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
}

/* Buttons */
.scudo-vs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 30px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.scudo-vs-btn--primary {
	background: linear-gradient(135deg, var(--vs-accent), var(--vs-accent-2));
	color: #111;
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.32);
}

.scudo-vs-btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 34px rgba(212, 175, 55, 0.4);
}

/* Sections */
.scudo-vs-section {
	padding: 64px 0;
}

.scudo-vs-section--booking {
	background: var(--vs-primary);
}

.scudo-vs-section--policy {
	background: var(--vs-white);
	border-top: 1px solid var(--vs-border);
}

.scudo-vs-eyebrow {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--vs-accent);
}

.scudo-vs-heading {
	margin: 0 0 20px;
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--vs-primary);
}

.scudo-vs-section--booking .scudo-vs-heading {
	color: var(--vs-white);
}

.scudo-vs-intro {
	max-width: 640px;
	margin: 0 0 32px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
	line-height: 1.6;
}

.scudo-vs-icon {
	width: 22px;
	height: 22px;
}

/* Description */
.scudo-vs-description {
	max-width: 760px;
	margin-bottom: 28px;
	color: var(--vs-gray);
	font-size: 15.5px;
	line-height: 1.75;
}

.scudo-vs-description p:last-child {
	margin-bottom: 0;
}

.scudo-vs-container--wide {
	max-width: 100%;
	padding-left: 24px;
	padding-right: 24px;
}

/* Full-width professional detail table */
.scudo-vs-table-card {
	width: 100%;
	max-width: 100%;
	border: 1px solid var(--vs-border);
	border-radius: 16px;
	background: var(--vs-white);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
	overflow: hidden;
}

.scudo-vs-table-card__head {
	background: linear-gradient(160deg, #0f172a, #1e293b);
	border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.scudo-vs-table-card__title {
	margin: 0;
	padding: 18px 28px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.01em;
	color: #ffffff;
}

.scudo-vs-table-wrap {
	width: 100%;
	overflow-x: auto;
}

.scudo-vs-table {
	width: 100%;
	min-width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.scudo-vs-table thead th {
	padding: 18px 28px;
	font-size: 24px !important;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.01em;
	color: #ffffff !important;
	background: linear-gradient(160deg, #0f172a, #1e293b);
	border-bottom: 1px solid rgba(212, 175, 55, 0.4);
	text-align: left;
}

.scudo-vs-table thead th:last-child {
	text-align: right;
}

.scudo-vs-table tbody th,
.scudo-vs-table tbody td {
	padding: 15px 28px;
	font-size: 15px;
	line-height: 1.45;
	border-bottom: 1px solid var(--vs-border);
	vertical-align: middle;
}

.scudo-vs-table tbody tr:last-child th,
.scudo-vs-table tbody tr:last-child td {
	border-bottom: 0;
}

.scudo-vs-table tbody tr:nth-child(even) {
	background: rgba(248, 250, 252, 0.95);
}

.scudo-vs-table tbody tr:hover {
	background: rgba(212, 175, 55, 0.08);
}

.scudo-vs-table tbody th {
	width: 42%;
	font-weight: 600;
	color: var(--vs-gray);
	text-align: left;
}

.scudo-vs-table tbody td {
	width: 58%;
	font-weight: 700;
	color: var(--vs-primary);
	text-align: right;
}

/* Booking embed */
.scudo-vs-section--booking .scudo-booking {
	margin: 0 auto;
	max-width: 100%;
}

/* Policy grid */
.scudo-vs-policy-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.scudo-vs-policy-card {
	padding: 24px;
	border-radius: 18px;
	border: 1px solid var(--vs-border);
	background: var(--vs-bg);
}

.scudo-vs-policy-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 14px;
	border-radius: 12px;
	background: rgba(15, 23, 42, 0.06);
	color: var(--vs-accent-2);
}

.scudo-vs-policy-card h3 {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	color: var(--vs-primary);
}

.scudo-vs-policy-card p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--vs-gray);
}

/* Responsive */
@media (max-width: 1024px) {
	.scudo-vs-hero__title {
		font-size: 36px;
	}
}

@media (max-width: 767px) {
	.scudo-vs-hero {
		min-height: 400px;
	}

	.scudo-vs-hero__overlay {
		min-height: 400px;
		padding: 40px 0 32px;
	}

	.scudo-vs-section {
		padding: 44px 0;
	}

	.scudo-vs-container,
	.scudo-vs-container--wide,
	.scudo-vs-hero__inner {
		padding: 0 18px;
	}

	.scudo-vs-table-card {
		max-width: 100%;
		width: 100%;
	}

	.scudo-vs-table thead th {
		padding: 14px 16px;
		font-size: 24px !important;
		color: #ffffff !important;
	}

	.scudo-vs-table tbody th,
	.scudo-vs-table tbody td {
		padding: 12px 16px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.scudo-vs-hero__title,
	.scudo-vs-heading {
		font-size: 24px !important;
		line-height: 1.25;
	}

	.scudo-vs-table-card__title {
		font-size: 24px;
		padding: 16px 18px;
		color: #ffffff;
	}

	.scudo-vs-table th,
	.scudo-vs-table td {
		padding: 12px 16px;
		font-size: 14px;
	}

	.scudo-vs-table th {
		width: 48%;
	}

	.scudo-vs-hero__price strong {
		font-size: 26px;
	}

	.scudo-vs-hero__meta {
		font-size: 12.5px;
	}

	.scudo-vs-intro {
		font-size: 14px;
	}

	.scudo-vs-btn {
		width: 100%;
		padding: 13px 22px;
	}

	.scudo-vs-policy-grid {
		grid-template-columns: 1fr;
	}

	.scudo-vs-policy-card h3 {
		font-size: 15px;
	}
}
