/* --- Fahrzeug-Detail-Modal: Zweispaltiges Layout --- */
.vehicle-detail-flex {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
}
.vehicle-detail-left {
    flex: 1 1 340px;
    min-width: 220px;
    /* max-width entfernt */
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.vehicle-detail-right {
    flex: 1 1 320px;
    min-width: 220px;
    /* max-width entfernt */
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.vehicle-modal-content {
    max-height: 90vh;
    overflow-y: auto;
}
.vehicle-detail-right .vehicle-header {
    margin-bottom: 18px;
}
.vehicle-detail-right .vehicle-price {
    text-align: right;
    font-size: 2rem;
    color: #e17709;
    font-weight: bold;
    margin-bottom: 18px;
}
.vehicle-detail-right .vehicle-title {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 0.5em;
}
@media (max-width: 900px) {
    .vehicle-detail-flex {
        flex-direction: column;
        gap: 16px;
    }
    .vehicle-detail-left, .vehicle-detail-right {
        max-width: 100%;
        min-width: 0;
    }
    .vehicle-detail-right .vehicle-price {
        text-align: left;
        font-size: 1.5rem;
    }
}
/* Vehicles Page Styles */

.vehicles-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #e17709 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vehicles-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
        background-image: url('../pic/bike/bike4.jpg');
        background-size: cover;
    }
        /* --- NEUES LAYOUT: Fahrzeugdetails unter den Bildern, einspaltig --- */
        .vehicle-modal-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
    
        .vehicle-modal-images {
            width: 100%;
            margin-bottom: 12px;
        }
    
        .vehicle-modal-details {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
        }
    
        .vehicle-title {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 8px;
            margin-top: 0;
        }
    
        .vehicle-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2e7d32;
            margin-bottom: 12px;
        }
    
        .vehicle-specs {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 12px;
        }
    
        .vehicle-description {
            margin-bottom: 12px;
        }
    
        .vehicle-accessories {
            margin-bottom: 12px;
        }
    
        .contact-buttons {
            display: flex;
            gap: 16px;
            margin-top: 16px;
            flex-wrap: wrap;
        }
    
        @media (max-width: 900px) {
            .vehicle-title {
                font-size: 1.3rem;
            }
            .vehicle-price {
                font-size: 1.1rem;
            }
            .contact-buttons {
                flex-direction: column;
                gap: 10px;
            }
            .vehicle-modal-content {
                gap: 16px;
            }
        }
.nav-logo {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid #d06608;
    height: 50px;
    object-fit: contain;
}

.nav-logo.left {
    height: 49px;
    width: 62px;
    border-radius: 50%;
}

.nav-logo.right {
    width: 50px;
    border-radius: 50% / 25%;
}

.nav-links a {
    display: inline-block;
    background-color: #e17709;
    color: #fff;
    padding: 0.8rem 1rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    background-clip: padding-box;
}

.nav-links a:hover, .nav-links a.active, .nav-links a:focus {
    background-color: #d06608;
    color: #fff;
    outline: none;
    transform: scale(1.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    .nav-links {
        flex-direction: column;
        background-color: #333 !important;
        padding: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        width: 50%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }
    .nav-logo {
        display: none !important;
    }
    .nav-links a {
        background-color: #e17709;
        color: #fff;
        padding: 0.8rem 1.5rem;
        text-align: center;
        margin: 0.5rem 0;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (min-width: 1201px) {
    .nav-links {
        background-color: #333;
    }
    .nav-links a {
        background-color: #e17709;
        color: #fff;
        margin: 0 5px;
    }
}

/* Header-Logo mittig wie auf index.html */
.vehicles-header .header-logo {
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    border: 2px solid #e17709;
    width: 120px;
    height: 120px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

/* Filter Section */
.filter-section {
    background: #f8f9fa;
    padding: 30px 0;
    border-bottom: 3px solid #e17709;
}

.filter-container {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-container h3 {
    color: #e17709;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.filter-form {
    width: 100%;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.filter-group select {
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: white;
    transition: border-color 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: #e17709;
}

.filter-btn, .reset-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.filter-btn {
    background: #e17709;
    color: white;
}

.filter-btn:hover {
    background: #d16008;
    transform: translateY(-2px);
}

.reset-btn {
    background: #6c757d;
    color: white;
}

.reset-btn:hover {
    background: #545b62;
}

/* Vehicles Section */
.vehicles-section {
    padding: 40px 0;
}

.vehicles-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.view-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-btn {
    padding: 8px 16px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    border-color: #e17709;
    background: #e17709;
    color: white;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-controls select {
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    background: white;
}

/* Loading Spinner */
.loading-container {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #e17709;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Vehicles Grid */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.vehicles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Vehicle Card */
.vehicle-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: visible;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0,0,0,0.06);
}

/* Overflow hidden nur für Grid-Ansicht, nicht für List-Ansicht */
.vehicle-card:not(.list-view) {
    overflow: hidden;
}

.vehicle-card.list-view .vehicle-image {
    overflow: hidden;
    border-radius: 15px 0 0 15px;
}
.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e17709, #000000);
    z-index: 2;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.16);
    border-color: rgba(0,0,0,0.12);
}

.vehicle-card.featured::before {
    content: '⭐ FEATURED';
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e17709;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.vehicle-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.vehicle-info {
    padding: 25px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* Fahrzeugname in der Detailansicht groß und präsent */
/* Titel in Karten mittig und größer - IMMER 2 Zeilen für symmetrische Darstellung */
.vehicle-card .vehicle-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: center;
    /* Feste Höhe für exakt 2 Zeilen */
    height: 4.08rem; /* 1.7rem * 1.2 line-height * 2 Zeilen = 4.08rem */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 480px) {
    .vehicle-card .vehicle-title {
        font-size: 1.4rem;
        line-height: 1.25;
        /* Feste Höhe für exakt 2 Zeilen auf Mobile */
        height: 3.5rem; /* 1.4rem * 1.25 line-height * 2 Zeilen = 3.5rem */
    }
}


.vehicle-card .vehicle-subtitle {
    color: #666;
    margin-bottom: 12px;
    font-size: 1rem;
    text-align: center;
}

.vehicle-card .vehicle-specs-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    column-gap: 16px;
    row-gap: 8px;
    margin-bottom: 20px;
    border-top: 1px dashed #e6e6e6;
    padding-top: 12px;
}

.vehicle-card .spec-preview {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 8px;
    font-size: 1.05rem;
    line-height: 1.4;
    color: #333;
    width: 100%;
    text-align: left;
}

.vehicle-card .spec-preview .spec-label {
    display: inline-block;
    min-width: 120px;
    color: #333;
    font-weight: 600;
}
.vehicle-card .spec-preview .spec-value {
    color: #111;
    font-weight: 500;
    flex: 1 1 auto;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.vehicle-card .vehicle-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e17709;
    text-align: center;
    margin-bottom: 15px;
    border-bottom: 1px dashed #f0f0f0;
    padding-bottom: 10px;
}

.vehicle-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.primary-btn {
    background: #e17709;
    color: white;
}

.primary-btn:hover {
    background: #d16008;
    transform: translateY(-2px);
}

.secondary-btn {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #ddd;
}

.secondary-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

/* List View Styles */
.vehicle-card.list-view {
    display: flex;
    flex-direction: row;
    min-height: 200px;
    height: auto;
}

.vehicle-card.list-view .vehicle-image {
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    object-fit: cover;
}

.vehicle-card.list-view .vehicle-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 25px;
    min-height: 200px;
}

.vehicle-card.list-view .vehicle-specs-preview {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 15px;
    flex-shrink: 0;
}

.vehicle-card.list-view .vehicle-actions {
    margin-top: auto;
    flex-shrink: 0;
    padding-top: 10px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 40px 0;
}

.no-results-content h3 {
    color: #e17709;
    font-size: 2rem;
    margin-bottom: 15px;
}

.no-results-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 10px 15px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    text-decoration: none;
}

.pagination-btn:hover {
    border-color: #e17709;
    background: #e17709;
    color: white;
}

.pagination-btn.active {
    background: #e17709;
    border-color: #e17709;
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: white;
    margin: 0 auto;
    border-radius: 15px;
    position: relative;
    max-width: 1200px;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    z-index: 10;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #e17709;
}

/* Vehicle Detail Modal */
.vehicle-modal-content {
    max-width: 1000px;
    padding: 0;
    overflow: hidden;
}

.vehicle-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 70vh;
}

/* Image Section */
.vehicle-image-section {
    background: #f8f9fa;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.main-vehicle-image {
    width: 100%;
    max-height: 300px;
    height: auto;
    object-fit: cover;
    display: block;
}

.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.image-nav:hover {
    background: rgba(225,119,9,0.9);
}

.prev-btn {
    left: 15px;
    border-radius: 0 50px 50px 0;
}

.next-btn {
    right: 15px;
    border-radius: 50px 0 0 50px;
}

.image-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #e17709;
    transform: scale(1.05);
}

/* Vehicle Info Section */
.vehicle-info-section {
    padding: 40px;
    overflow-y: auto;
}

.vehicle-header {
    border-bottom: 2px solid #e17709;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.vehicle-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.vehicle-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e17709;
}

/* Vehicle Specs */
.vehicle-specs {
    margin-bottom: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding-right: 8px;
}

.vehicle-specs h3 {
    color: #e17709;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8px;
    background: none;
    border-radius: 0;
    border-left: 4px solid #e17709;
    font-size: 1em;
}

.spec-label {
    font-weight: bold;
    color: #555;
}

.spec-value {
    color: #333;
    font-weight: 500;
}

/* Vehicle Description */
.vehicle-description {
    margin-bottom: 30px;
}

.vehicle-description h3 {
    color: #e17709;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vehicle-description div {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    line-height: 1.6;
    color: #333;
}

/* Vehicle Accessories */
.vehicle-accessories {
    margin-bottom: 30px;
}

.vehicle-accessories h3 {
    color: #e17709;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.accessory-category {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #e17709;
}

.accessory-category h4 {
    color: #e17709;
    margin-bottom: 10px;
    font-size: 1rem;
}

.accessory-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.accessory-item:last-child {
    border-bottom: none;
}

.accessory-name {
    font-weight: 500;
    color: #333;
}

.accessory-price {
    color: #e17709;
    font-weight: bold;
}

/* Contact Buttons */
.contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.contact-btn {
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.phone-btn {
    background: #28a745;
    color: white;
}

.phone-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

.email-btn {
    background: #007bff;
    color: white;
}

.email-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.inquiry-btn {
    background: #e17709;
    color: white;
}

.inquiry-btn:hover {
    background: #d16008;
    transform: translateY(-2px);
}

/* Inquiry Modal */
.inquiry-modal-content {
    max-width: 600px;
    padding: 40px;
}

.inquiry-modal-content h2 {
    color: #e17709;
    margin-bottom: 25px;
    text-align: center;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e17709;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.submit-btn {
    flex: 1;
    padding: 15px;
    background: #e17709;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #d16008;
    transform: translateY(-2px);
}

.cancel-btn {
    flex: 1;
    padding: 15px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: #545b62;
}

/* --- Disclaimer & Footer wie auf index.html --- */
.disclaimer-section {
    background: #fffbe6;
    border-top: 2px solid #e17709;
    border-bottom: 2px solid #e17709;
    padding: 40px 0 20px 0;
    margin-top: 40px;
}
.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.disclaimer-content h3 {
    color: #e17709;
    font-size: 1.5em;
    margin-bottom: 12px;
}
.disclaimer-text {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 10px;
}
.disclaimer-note {
    color: #b85c00;
    font-size: 1em;
    margin-top: 8px;
}

.footer {
    background: #222;
    color: #fff;
    padding: 40px 0 20px 0;
    border-top: 4px solid #e17709;
}
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    justify-content: space-between;
}
.footer-section {
    flex: 1 1 200px;
    min-width: 180px;
}
.footer-section h3 {
    color: #e17709;
    margin-bottom: 12px;
    font-size: 1.1em;
}
.footer-section p, .footer-section a {
    color: #fff;
    font-size: 1em;
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
    pointer-events: auto !important;
    position: relative;
    z-index: 20;
}
.footer-section a:hover {
    color: #e17709;
    text-decoration: underline;
}
@media (max-width: 900px) {
    .footer .container, .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .vehicle-detail-container {
        grid-template-columns: 1fr;
    }
    
    .vehicle-image-section {
        order: 1;
    }
    
    .vehicle-info-section {
        order: 2;
    }
}

@media (max-width: 768px) {
    .vehicles-header h1 {
        font-size: 2rem;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
    }
    
    .vehicles-controls {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .view-controls,
    .sort-controls {
        justify-content: center;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-card.list-view {
        flex-direction: column;
        height: auto;
    }
    
    .vehicle-card.list-view .vehicle-image {
        width: 100%;
        height: 200px;
    }
    
    .vehicle-card.list-view .vehicle-specs-preview {
        grid-template-columns: 1fr 1fr;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        grid-template-columns: 1fr;
    }
    
    .vehicle-image-section {
        padding: 20px;
    }
    
    .vehicle-info-section {
        padding: 20px;
    }
    
    .main-vehicle-image {
        max-height: 250px;
        height: auto;
    }
    
    .modal {
        padding: 10px;
    }
    
    .form-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .vehicles-header {
        padding: 60px 0 40px;
    }
    
    .filter-container {
        padding: 20px;
    }
    
    .vehicle-info {
        padding: 20px;
    }
    
    .vehicle-price {
        font-size: 1.3rem;
    }
    
    .vehicle-header h2 {
        font-size: 1.5rem;
    }
    
    .vehicle-price {
        font-size: 2rem;
    }
}

/* Mobile-Override: Prev/Nächste Fahrzeug-Buttons nicht fixiert mitscrollen lassen */
@media (max-width: 768px) {
    .vehicle-navigation {
        position: static !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .vehicle-navigation .nav-vehicle-btn,
    #prev-vehicle-btn,
    #next-vehicle-btn {
        position: static !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
    }
}