body {
	font-family: 'Inter', sans-serif;
	background-color: #f8f9fa;
	color: #333;
}

/* Typography tokens */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	letter-spacing: -0.02em;
}

/* Top bar styling */
.top-bar {
	background-color: #ffffff;
	color: #333333;
	font-size: 0.85rem;
	border-bottom: 1px solid #eeeeee;
}

/* Navbar styling */
.main-nav {
	background-color: #ffffff;
	border-bottom: 1px solid #eeeeee;
}

.main-nav .nav-link {
	font-size: 0.95rem;
	transition: opacity 0.2s;
}

.main-nav .nav-link:hover {
	opacity: 0.8;
}

/* Hero Section */
.hero-section {
	position: relative;
	height: 600px;
	color: white;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 4rem;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.hero-feature-pill {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 500;
}

.hero-feature-pill i {
	color: #f3c623;
	margin-right: 0.5rem;
}

/* Car Card */
.car-card {
	border: 1px solid #eee;
	border-radius: 12px;
	background: white;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}

.car-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.car-card-img-wrapper {
	position: relative;
	height: 200px;
	overflow: hidden;
	background: #f0f0f0;
}

.car-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.car-card-rating {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: white;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.car-card-rating i {
	color: #f3c623;
}

.car-card-body {
	padding: 1.5rem;
}

.car-card-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.car-card-location {
	color: #6c757d;
	font-size: 0.85rem;
	margin-bottom: 1rem;
}

.car-card-specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	font-size: 0.85rem;
	color: #495057;
	margin-bottom: 1.5rem;
}

.car-card-specs div {
	display: flex;
	align-items: center;
	gap: 6px;
}

.car-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #eee;
	padding-top: 1rem;
}

.car-card-price {
	font-size: 1.25rem;
	font-weight: 700;
}

.car-card-price span {
	font-size: 0.85rem;
	color: #6c757d;
	font-weight: 400;
}

.btn-book {
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 8px;
	padding: 6px 16px;
	font-size: 0.85rem;
	font-weight: 600;
	transition: all 0.2s;
}

.btn-book:hover {
	background: #e9ecef;
}

/* Detail Page */
.detail-gallery-main {
	width: 100%;
	height: 450px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 10px;
}

.detail-thumb {
	width: 100%;
	height: 80px;
	object-fit: cover;
	border-radius: 4px;
	cursor: pointer;
	border: 2px solid transparent;
}

.detail-thumb:hover,
.detail-thumb.active {
	border-color: #0d6efd;
}

.spec-table {
	width: 100%;
}

.spec-table tr {
	border-bottom: 1px solid #eee;
}

.spec-table th {
	padding: 10px 0;
	color: #6c757d;
	font-weight: 500;
	width: 40%;
}

.spec-table td {
	padding: 10px 0;
	font-weight: 600;
}

.seller-box {
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 20px;
	background: white;
}

/* Dropdown Hover */
.dropdown-hover:hover > .dropdown-menu {
	display: block !important;
	margin-top: 0;
	z-index: 1050;
}

.dropdown-item:hover, .dropdown-item:focus {
	background-color: #f8f9fa;
	color: #f3c623;
}

/* Multi-level Dropdown */
.dropdown-submenu {
	position: relative;
}

.dropdown-submenu > .dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -6px;
	margin-left: -1px;
	border-radius: 0.25rem;
}

.dropdown-submenu:hover > .dropdown-menu {
	display: block !important;
}