/* Global Styles */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #014421;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #39FF14;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: #FFFFFF;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #39FF14;
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: #39FF14;
}

/* Lightbox Gallery Styles */
#lightbox-gallery .swiper-button-prev,
#lightbox-gallery .swiper-button-next {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
}

#lightbox-gallery .swiper-button-prev:hover,
#lightbox-gallery .swiper-button-next:hover {
    border-color: #39FF14;
    transform: scale(1.1);
}

#lightbox-gallery .swiper-button-prev::after,
#lightbox-gallery .swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
}

#lightbox-gallery .swiper-slide img {
    max-height: calc(100vh - 8rem);
}

/* Prevent text selection in lightbox */
#lightbox-gallery {
    user-select: none;
    -webkit-user-select: none;
}

/* Loading animation */
.swiper-lazy-preloader {
    border-color: #39FF14 transparent #39FF14 transparent;
}

/* Vehicle Highlight Utility Classes */
.spec-label {
    color: #39FF14;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    line-height: 1rem;
    margin-bottom: 0.25rem;
    display: block;
}

.desc-heading {
    color: #39FF14;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    border-left: 3px solid #39FF14;
    padding-left: 10px;
}