/*
Theme Name: Novaride Child
Template:   novaride
Theme URI: https://themeforest.net/user/awaiken
Description: Novaride Child Theme
Author: Awaiken
Author URI: https://awaiken.com/
Version: 1.0.0
Text Domain: novaride-child
*/

/* Car Gallery Container */
.car-gallery-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

/* Individual Gallery Item */
.gallery-item {
    width: 110px;
    height: 80px;
    border: 2px solid #transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Image Styling */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Effects */
.gallery-item:hover {
    border-color: #ff5a5f; /* Aapke theme ka color yahan change kar sakte hain */
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-item {
        width: calc(33.33% - 10px); /* Mobile par 3 images ek line mein */
        height: 70px;
    }
}