.car-grid-item {
            position: relative;
            overflow: hidden;
            height: 300px;
            border-radius: 4px;
            transition: transform 0.3s ease;
         }
         
         .car-grid-item:hover {
            transform: scale(1.05);
         }
         
         .car-grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
         }
         
         .car-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
         }
         
         .car-grid-item:hover .car-overlay {
            opacity: 1;
         }
         
         .car-info {
            width: 100%;
            color: white;
            text-align: center;
         }
         
         .car-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: white;
         }
         
         .car-link {
            display: inline-block;
            background: #c00000;
            color: white;
            padding: 8px 15px;
            border-radius: 3px;
            text-decoration: none;
            font-size: 14px;
            transition: background 0.3s ease;
         }
         
         .car-link:hover {
            background: #900000;
            text-decoration: none;
            color: white;
         }
         
         .car-section {
            padding: 60px 0;
         }
         
         .car-section .section-title {
            margin-bottom: 50px;
         }

         /* Mobile - Overlay always visible */
         @media (max-width: 768px) {
            .car-overlay {
               opacity: 1;
            }

            /* Mobile - Link interaction feedback */
            .car-link {
               transition: all 0.2s ease;
            }

            .car-link:active {
               transform: scale(0.95);
               background: #900000;
            }
         }