.vehicle-detail-page {
    background-color: #f7f8fa;
}

.vehicle-title {
    font-size: 2rem;
    color: #13294b;
}

.vehicle-subtitle {
    font-size: 1rem;
}

.vehicle-gallery .gallery-main img {
    border-radius: 24px;
    height: 420px;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.9);
    display: grid;
    place-items: center;
    color: #13294b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-nav:hover { background: #fff; }

.gallery-thumbs .thumb {
    width: 112px;
    height: 84px; /* fixed 4:3 size for uniform thumbs */
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    flex: 0 0 auto;
    background: transparent;
    display: block;
    line-height: 0; /* remove inline button layout gaps */
}

.gallery-thumbs .thumb img {
    display: block;
    width: auto;
    height: auto;
    max-height: 80px; /* enforce consistent thumb height */
    max-width: 112px;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-thumbs .thumb.active {
    border-color: #f26522;
}

.gallery-thumbs .thumb:hover {
    border-color: #e5e9f2;
}

.info-tile {
    background-color: #f9fafc;
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    border: 1px solid #edf0f5;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    justify-content: center;
    align-items: center;
}

.info-tile-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.35rem;
    border: 1px solid #edf0f5;
}

.info-tile-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.info-tile-icon i {
    font-size: 1.4rem;
    color: #f26522;
}

.info-tile span {
    color: #8a93a6;
    font-size: 0.85rem;
}

.info-tile strong {
    font-size: 1.05rem;
    color: #13294b;
}

.description-list li {
    padding: 0.35rem 0;
    border-bottom: 1px solid #f0f1f5;
}

.spec-card {
    border: 1px solid #edf0f5;
    border-radius: 16px;
    padding: 1rem;
    background-color: #fff;
}

.spec-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f7f8fb;
    display: grid;
    place-items: center;
    color: #f26522;
    font-size: 1.25rem;
}

.pickup-box {
    background-color: #fff;
}

.pricing-card .display-5 {
    font-size: 3rem;
}

.text-orange {
    color: #f26522 !important;
}

.btn-orange {
    background-color: #f26522;
    color: #fff;
    border: none;
}

.btn-orange:hover {
    background-color: #d9541c;
    color: #fff;
}

.add-on-list li {
    padding: 0.45rem 0;
    border-bottom: 1px solid #f0f1f5;
}

.add-on-list li:last-child {
    border-bottom: none;
}

.addon-item .form-check-input {
    border-radius: 6px;
    cursor: pointer;
}

.addon-price {
    font-weight: 600;
    color: #13294b;
}

