/**
 * Fahrzeuge Custom Styles
 *
 * CSS for vehicle archive and single templates
 * Mobile-first responsive design
 *
 * @package GeneratePress Child
 * @since 1.0.0
 */

/* ==========================================================================
   Accessibility - Skip Link (WCAG 2.4.1)
   ========================================================================== */

/* Screen-reader-only text (visible only to assistive technologies) */
.screen-reader-text,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip-link becomes visible on keyboard focus */
.skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 12px 20px;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background-color: #005fcc;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    z-index: 100000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.skip-link:focus:hover {
    background-color: #004399;
}

/* ==========================================================================
   Archive Page - Vehicle Listings
   ========================================================================== */

.fahrzeuge-archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.fahrzeuge-archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.fahrzeuge-archive-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--contrast-3);
}

.fahrzeuge-archive-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
}

.fahrzeuge-count {
    font-size: 0.95rem;
    color: #888;
    font-weight: 500;
}

/* Vehicle Grid Layout */
.fahrzeuge-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .fahrzeuge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fahrzeuge-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Vehicle Card */
.fahrzeug-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fahrzeug-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Vehicle Image */
.fahrzeug-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f5f5f5;
}

.fahrzeug-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fahrzeug-card:hover .fahrzeug-image img {
    transform: scale(1.05);
}

.fahrzeug-no-image .no-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

/* Vehicle Content */
.fahrzeug-content {
    padding: 20px;
}

.fahrzeug-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.fahrzeug-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fahrzeug-title a:hover {
    color: #667eea;
}

/* Meta Highlights */
.fahrzeug-meta-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.fahrzeug-meta-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #666;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 6px;
}

.fahrzeug-meta-highlights svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

/* Price */
.fahrzeug-preis {
    font-size: 1.75rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

/* Details Link */
.fahrzeug-details-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.fahrzeug-details-link:hover {
    background: #5568d3;
    transform: translateX(4px);
}

.fahrzeug-details-link svg {
    transform: rotate(-90deg);
}

/* No Results */
.fahrzeuge-no-results {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.fahrzeuge-no-results h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.fahrzeuge-no-results p {
    color: #666;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination .page-numbers {
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
}

/* ==========================================================================
   Single Page - Vehicle Detail
   ========================================================================== */

.fahrzeug-single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.fahrzeug-single-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e5e5e5;
}

.fahrzeug-single-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.fahrzeug-reference {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 20px;
}

.fahrzeug-single-preis {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.fahrzeug-preis-note {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: #666;
    margin-top: 5px;
}

/* Content Layout */
.fahrzeug-single-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .fahrzeug-single-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Gallery Section */
.fahrzeug-gallery-section {
    grid-column: 1 / -1;
}

.fahrzeug-featured-image {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.fahrzeug-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.fahrzeug-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (min-width: 640px) {
    .fahrzeug-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .fahrzeug-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fahrzeug-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.fahrzeug-gallery-item:hover {
    transform: scale(1.05);
}

.fahrzeug-gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

/* Main Info Section */
.fahrzeug-main-info {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fahrzeug-main-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

/* Quick Facts */
.fahrzeug-quick-facts {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
}

.fahrzeug-facts-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fahrzeug-fact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--base-2);
}

.fahrzeug-fact:last-child {
    border-bottom: none;
}

.fact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--accent);
    opacity: 0.85;
}

.fact-icon svg {
    width: 100%;
    height: 100%;
}

.fact-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.fact-label {
    font-size: 0.9rem;
    color: var(--contrast-2);
    font-weight: 500;
    min-width: 150px;
    flex-shrink: 0;
}

.fact-value {
    color: var(--contrast-3);
    font-weight: 600;
    text-align: left;
}

/* Technical Details Table */
.fahrzeug-technical-details {
    background: #fff;
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
}

.fahrzeug-details-table {
    width: 100%;
    border-collapse: collapse;
}

.fahrzeug-details-table tr {
    border-bottom: 1px solid #e5e5e5;
}

.fahrzeug-details-table tr:last-child {
    border-bottom: none;
}

.fahrzeug-details-table td {
    padding: 12px 0;
}

.detail-label {
    font-weight: 600;
    color: #666;
    width: 40%;
}

.detail-value {
    color: #1a1a1a;
}

/* Description */
.fahrzeug-beschreibung {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
}

.fahrzeug-content-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

/* Contact Section */
.fahrzeug-contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.fahrzeug-contact-section h2 {
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.fahrzeug-contact-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.fahrzeug-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

@media (min-width: 640px) {
    .fahrzeug-contact-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.fahrzeug-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    min-width: 200px;
    justify-content: center;
}

.fahrzeug-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fahrzeug-button svg {
    width: 20px;
    height: 20px;
}

/* Navigation */
.fahrzeug-navigation {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #e5e5e5;
}

.fahrzeug-nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.fahrzeug-nav-prev,
.fahrzeug-nav-next,
.fahrzeug-nav-archive {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.fahrzeug-nav-prev:hover,
.fahrzeug-nav-next:hover {
    background: #667eea;
    color: #fff;
}

.fahrzeug-nav-archive {
    background: #667eea;
    color: #fff;
}

.fahrzeug-nav-archive:hover {
    background: #5568d3;
}

.nav-arrow {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Mobile Responsive Adjustments */
@media (max-width: 639px) {
    .fahrzeuge-archive-title,
    .fahrzeug-single-title {
        font-size: 1.75rem;
    }

    .fahrzeug-single-preis {
        font-size: 2rem;
    }

    .fahrzeug-nav-links {
        flex-direction: column;
    }

    .fahrzeug-nav-prev,
    .fahrzeug-nav-next,
    .fahrzeug-nav-archive {
        width: 100%;
        justify-content: center;
    }

    .fahrzeug-contact-buttons {
        width: 100%;
    }

    .fahrzeug-button {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .fahrzeug-navigation,
    .fahrzeug-contact-section,
    .fahrzeug-details-link {
        display: none;
    }

    .fahrzeug-single {
        max-width: 100%;
    }

    .fahrzeug-single-content {
        display: block;
    }
}


/* ==========================================================================
   SINGLE PAGE STYLES (from single-fahrzeuge.css)
   Added during safe merge - 18.11.2025
   ========================================================================== */

/**
 * Single Fahrzeuge - Minimal Clean Design
 * Using GeneratePress Theme Variables
 *
 * Design Philosophy:
 * - Minimal styling, maximum flexibility
 * - Theme variables for automatic dark/light mode
 * - Clean typography and spacing
 * - Subtle hover animations
 * - Mobile-first responsive
 *
 * @package GeneratePress Child
 * @version 2.0.0
 * @updated 18.11.2025
 */

/* ============================================
   LAYOUT
   ============================================ */

.fahrzeug-single-improved {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem;
}

.fahrzeug-single-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.fahrzeug-single-main {
    flex: 1;
    min-width: 0;
}

.fahrzeug-single-sidebar {
    flex: 0 0 320px;
    position: sticky;
    top: 1.25rem;
}

@media (max-width: 1024px) {
    .fahrzeug-single-wrapper {
        flex-direction: column;
    }

    .fahrzeug-single-sidebar {
        position: static;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============================================
   BREADCRUMB
   ============================================ */

.fahrzeug-breadcrumb {
    padding: 0.75rem 0;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--contrast-2);
}

.fahrzeug-breadcrumb a {
    color: var(--contrast);
    text-decoration: none;
    transition: color 0.2s;
}

.fahrzeug-breadcrumb a:hover {
    color: var(--accent);
}

.fahrzeug-breadcrumb .separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* ============================================
   HEADER
   ============================================ */

.fahrzeug-single-header {
    margin-bottom: 1.5rem;
}

.fahrzeug-single-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--contrast-3);
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

.fahrzeug-reference {
    font-size: 0.875rem;
    color: var(--contrast-2);
    margin-bottom: 1rem;
}

/* Meta Badges */
.fahrzeug-meta-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1rem;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: var(--base-2);
    border: 1px solid var(--base-3);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--contrast-2);
}

.meta-badge svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

/* Status Badges */
.fahrzeug-status-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--base);
    border: 1px solid var(--base-2);
    border-radius: 0.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--base-2);
    border: 1px solid var(--contrast);
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--contrast-2);
}

.status-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Highlight Badges (mobile.de CSV highlights) */
.fahrzeug-highlights-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--base-2);
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--contrast);
    color: var(--base);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: opacity 0.2s;
}

.highlight-badge:hover {
    opacity: 0.85;
}

.highlight-badge svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   IMAGES
   ============================================ */

.fahrzeug-gallery-section {
    margin-bottom: 2rem;
}

.fahrzeug-featured-image {
    position: relative;
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--base-2);
    margin-bottom: 1rem;
}

.fahrzeug-featured-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.fahrzeug-zoom-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: var(--base);
    border: 1px solid var(--base-2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    opacity: 0.9;
}

.fahrzeug-zoom-btn:hover {
    opacity: 1;
}

.fahrzeug-zoom-btn svg {
    width: 36px;
    height: 36px;
    color: var(--contrast);
}

.fahrzeug-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
}

.gallery-thumb {
    width: 100%;
    height: 80px;
    border-radius: 0.375rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--base-2);
    transition: border-color 0.2s, transform 0.2s;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--contrast);
    transform: scale(1.05);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.fahrzeug-quick-facts,
.fahrzeug-beschreibung,
.fahrzeug-technical-details {
    background: var(--base);
    border: 1px solid var(--base-2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fahrzeug-quick-facts h2,
.fahrzeug-beschreibung h2,
.fahrzeug-technical-details h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--contrast-3);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--base-2);
}

/* Facts Grid */
.fahrzeug-facts-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fahrzeug-fact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--base-2);
}

.fahrzeug-fact:last-child {
    border-bottom: none;
}

.fact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--accent);
    opacity: 0.85;
}

.fact-icon svg {
    width: 100%;
    height: 100%;
}

.fact-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.fact-label {
    font-size: 0.9rem;
    color: var(--contrast-2);
    font-weight: 500;
    min-width: 140px;
    flex-shrink: 0;
}

.fact-value {
    font-size: 1rem;
    color: var(--contrast-3);
    font-weight: 600;
    text-align: left;
}

/* Description */
.fahrzeug-content-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--contrast-2);
}

.fahrzeug-content-text p {
    margin-bottom: 1rem;
}

.fahrzeug-content-text ul,
.fahrzeug-content-text ol {
    margin-left: 1.25rem;
    margin-bottom: 1rem;
}

/* Technical Details Table */
.fahrzeug-details-table {
    width: 100%;
    border-collapse: collapse;
}

.fahrzeug-details-table tr {
    border-bottom: 1px solid var(--base-2);
}

.fahrzeug-details-table tr:last-child {
    border-bottom: none;
}

.fahrzeug-details-table td {
    padding: 0.875rem 1rem;
}

.detail-label {
    font-weight: 500;
    color: var(--contrast-2);
    width: 40%;
}

.detail-value {
    font-weight: 600;
    color: var(--contrast-3);
    width: 60%;
}

/* ============================================
   EQUIPMENT SECTION
   ============================================ */

.fahrzeug-equipment-section {
    background: var(--base);
    border: 1px solid var(--base-2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fahrzeug-equipment-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--contrast-3);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--base-2);
}

.equipment-group {
    margin-bottom: 1.5rem;
}

.equipment-group:last-child {
    margin-bottom: 0;
}

.equipment-group-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--contrast);
    margin: 0 0 0.875rem 0;
    padding-left: 0.75rem;
    border-left: 3px solid var(--contrast);
}

.equipment-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
}

.equipment-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem;
    background: var(--base-2);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: var(--contrast-2);
    transition: background 0.2s;
}

.equipment-feature:hover {
    background: var(--base-3);
}

.equipment-feature svg.feature-check {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.equipment-feature span {
    flex: 1;
}

/* ============================================
   CONSUMPTION & EMISSION SECTION
   ============================================ */

.fahrzeug-consumption-section {
    background: var(--base);
    border: 1px solid var(--base-2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fahrzeug-consumption-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--contrast-3);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--base-2);
}

.fahrzeug-consumption-section .fahrzeug-details-table {
    margin-bottom: 1.25rem;
}

.fahrzeug-consumption-section .fahrzeug-details-table td {
    padding: 0.875rem 1rem;
}

.consumption-note {
    margin-top: 1.25rem;
    padding: 1rem;
    background: var(--base-2);
    border-radius: 0.375rem;
    border-left: 3px solid var(--accent);
}

.consumption-note small {
    display: block;
    color: var(--contrast-2);
    font-size: 0.8125rem;
    line-height: 1.5;
}

/* Efficiency Badge */
.efficiency-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: var(--base-2);
    color: var(--contrast-3);
    border: 1px solid var(--base-3);
}

/* ============================================
   DIMENSIONS SECTION
   ============================================ */

.fahrzeug-dimensions-section {
    background: var(--base);
    border: 1px solid var(--base-2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fahrzeug-dimensions-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--contrast-3);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--base-2);
}

.fahrzeug-dimensions-section .fahrzeug-details-table td {
    padding: 0.875rem 1rem;
}

/* ============================================
   RELATED VEHICLES
   ============================================ */

.fahrzeug-related-section {
    background: var(--base);
    border: 1px solid var(--base-2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fahrzeug-related-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--contrast-3);
    margin: 0 0 1.25rem 0;
}

.fahrzeug-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    .fahrzeug-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .fahrzeug-related-grid {
        grid-template-columns: 1fr;
    }
}

.fahrzeug-related-card {
    background: var(--base);
    border: 1px solid var(--base-2);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.fahrzeug-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.related-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--base-2);
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.fahrzeug-related-card:hover .related-card-image img {
    transform: scale(1.05);
}

.related-card-content {
    padding: 1rem;
}

.related-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--contrast-3);
    margin: 0 0 0.625rem 0;
    line-height: 1.3;
}

.related-card-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--contrast-2);
    margin-bottom: 0.625rem;
}

.related-card-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--contrast);
}

/* ============================================
   SIDEBAR - PRICE BOX
   ============================================ */

.fahrzeug-price-box {
    background: var(--base);
    border: 1px solid var(--base-2);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.price-box-price {
    text-align: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--base-2);
    margin-bottom: 1.25rem;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--contrast-2);
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--contrast);
    line-height: 1;
}

.price-note {
    display: block;
    font-size: 0.75rem;
    color: var(--contrast-2);
    margin-top: 0.5rem;
}

/* Contact Buttons */
.price-box-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--contrast);
    color: var(--base);
    border: none;
}

.btn-primary:hover {
    background: var(--contrast-2);
    color: var(--base);
}

.btn-secondary {
    background: var(--base);
    color: var(--contrast);
    border: 1px solid var(--contrast);
}

.btn-secondary:hover {
    background: var(--base-2);
    color: var(--contrast);
}

.btn-phone {
    background: var(--accent);
    color: var(--base);
    border: none;
}

.btn-phone:hover {
    background: var(--accent);
    color: var(--base);
    opacity: 0.9;
}

/* Utility Buttons */
.price-box-utility {
    display: flex;
    gap: 0.625rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--base-2);
    margin-bottom: 1.25rem;
}

.utility-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.625rem;
    background: var(--base-2);
    border: 1px solid var(--base-2);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--contrast-2);
    cursor: pointer;
    transition: background 0.2s;
}

.utility-btn:hover {
    background: var(--base-3);
    color: var(--contrast);
}

.utility-btn svg {
    width: 16px;
    height: 16px;
}

/* Trust Items */
.price-box-trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--contrast-2);
}

.trust-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.7;
}

/* ============================================
   NAVIGATION
   ============================================ */

.fahrzeug-navigation {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--base-2);
}

.fahrzeug-nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.fahrzeug-nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--base);
    border: 1px solid var(--base-2);
    border-radius: 0.375rem;
    color: var(--contrast);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s, transform 0.2s;
}

.fahrzeug-nav-links a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.fahrzeug-nav-archive {
    margin: 0 auto;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.rzf-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    top: 1.25rem;
    right: 1.25rem;
}

.lightbox-prev {
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 640px) {
    .fahrzeug-single-improved {
        padding: 0.75rem;
    }

    .fahrzeug-single-title {
        font-size: 1.5rem;
    }

    .meta-badge,
    .status-badge {
        font-size: 0.8125rem;
        padding: 0.375rem 0.75rem;
    }

    .fahrzeug-gallery-thumbs {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }

    .gallery-thumb {
        height: 60px;
    }

    .fahrzeug-facts-grid,
    .equipment-features-grid {
        grid-template-columns: 1fr;
    }

    .price-value {
        font-size: 1.75rem;
    }

    .price-box-utility {
        flex-direction: column;
    }

    .fahrzeug-nav-links {
        flex-direction: column;
    }

    .fahrzeug-nav-archive {
        order: -1;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .fahrzeug-breadcrumb,
    .fahrzeug-navigation,
    .fahrzeug-related-section,
    .price-box-actions,
    .price-box-utility,
    .fahrzeug-zoom-btn {
        display: none;
    }

    .fahrzeug-single-wrapper {
        flex-direction: column;
    }

    .fahrzeug-single-sidebar {
        position: static;
        width: 100%;
    }

    .fahrzeug-price-box,
    .fahrzeug-quick-facts,
    .fahrzeug-technical-details,
    .fahrzeug-beschreibung,
    .fahrzeug-equipment-section,
    .fahrzeug-consumption-section {
        page-break-inside: avoid;
    }
}

/* ============================================
   DISCLAIMER
   ============================================ */

.fahrzeug-disclaimer {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background: var(--base-2);
    border-left: 3px solid var(--contrast-3);
    border-radius: 0.375rem;
}

.fahrzeug-disclaimer p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--contrast-3);
}

@media (max-width: 640px) {
    .fahrzeug-disclaimer {
        padding: 0.875rem 1rem;
        margin-top: 1.5rem;
    }

    .fahrzeug-disclaimer p {
        font-size: 0.6875rem;
    }
}
