/**
 * Site design tokens + shared vehicle detail chrome (public pages).
 * Linked from header.php / header1.php after /style.css.
 */
:root {
    --color-brand: #cc0001;
    --font-heading: 'Roboto', sans-serif;
    --shadow-vehicle-nav: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    --shadow-vehicle-nav-soft: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    --z-sticky-nav: 8888;
}

.vehicle-detail-hero-title-wrap {
    text-align: center;
}

.vehicle-detail-model-title {
    color: var(--color-brand);
    font-family: var(--font-heading);
    font-weight: 600;
}

.vehicle-detail-hr-img {
    max-width: 100%;
}

.vehicle-detail-hero-container {
    text-align: center;
}

.vehicle-detail-banner-wrap {
    width: 100%;
    position: relative;
}

.vehicle-detail-banner-img {
    width: 100%;
    object-fit: cover;
}

.vehicle-detail-nav {
    position: absolute;
    width: 100%;
    background-color: #fff;
    color: #000;
    font-weight: 600;
}

.vehicle-detail-nav--top {
    top: 0;
    box-shadow: var(--shadow-vehicle-nav);
}

.vehicle-detail-nav--bottom {
    bottom: 10px;
    right: 10px;
    left: auto;
    width: 50%;
    opacity: 0.5;
    box-shadow: var(--shadow-vehicle-nav);
}

.vehicle-detail-nav-link {
    text-decoration: none;
    color: #000;
}

.vehicle-detail-nav-logo-wrap {
    text-decoration: none;
    color: #000;
}

.vehicle-detail-nav-logo {
    width: auto;
    height: 1.5rem;
}

.vehicle-detail-page div.sticky {
    z-index: var(--z-sticky-nav);
}
