/**
 * AutoPieces60 - Custom Styles
 *
 * Consolidated CSS from all 4 maquette HTML files.
 * This file contains every style needed for the WordPress theme.
 *
 * Structure:
 *  1. CSS Variables (:root) - All DS tokens
 *  2. Reset & Base styles
 *  3. Typography
 *  4. Layout Utilities
 *  5. Buttons
 *  6. [DS-04-01] Top Bar
 *  7. [DS-04-02] Header / Navbar
 *  8. Mobile Menu
 *  9. [DS-04-03] Hero Section
 * 10. Section generic styles
 * 11. [DS-04-04] Cards Vehicules + vehicles-grid
 * 12. [DS-04-05] Filters Sidebar
 * 13. Page Header + Breadcrumb
 * 14. Catalogue Layout + Toolbar + Pagination
 * 15. [DS-04-06] Vehicle Detail
 * 16. Similar Vehicles section
 * 17. Contact section
 * 18. FAQ Section
 * 19. CTA Section
 * 20. [DS-04-07] Reassurance Section
 * 21. [DS-04-08] Footer
 * 22. [DS-05] Animations
 * 23. No Results state
 * 24. Form success state
 * 25. Active filters
 *
 * @package AutoPieces60
 * @since 1.0.0
 */

/* ==========================================================================
   1. [DS-01] CSS Variables - Design System Tokens
   ========================================================================== */
:root {
    /* Couleurs principales */
    --primary: #1E3A5F;
    --primary-dark: #152A45;
    --primary-light: #2D4A6F;
    --accent: #F97316;
    --accent-dark: #EA580C;
    --accent-light: #FDBA74;

    /* Couleurs neutres */
    --text-primary: #1C1917;
    --text-secondary: #57534E;
    --text-muted: #A8A29E;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F4;
    --bg-tertiary: #E7E5E4;

    /* Couleurs semantiques */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    /* [DS-02] Typographies */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* [DS-03] Espacements */
    --space-2xs: 0.125rem;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
    --space-5xl: 6rem;

    /* Border radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   2. Reset & Base styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ==========================================================================
   3. [DS-02] Typography
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: 2rem; font-weight: 800; }
h2 { font-size: 1.5rem; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }

@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.125rem; }
}

/* ==========================================================================
   4. Layout Utilities (.container, .sr-only)
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container { padding: 0 var(--space-lg); }
}

@media (min-width: 1024px) {
    .container { padding: 0 var(--space-xl); }
}

.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;
}

/* ==========================================================================
   5. Buttons (.btn, .btn--primary, .btn--secondary, .btn--ghost, .btn--lg)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 200ms ease;
    white-space: nowrap;
}

.btn i { width: 18px; height: 18px; }

.btn--primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}
.btn--primary:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #C2410C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn--secondary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}
.btn--secondary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0F1D2F 100%);
    transform: translateY(-1px);
}

.btn--ghost {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.btn--ghost:hover {
    background-color: var(--primary);
    color: white;
}

.btn--lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

/* Hide text on mobile for some buttons */
.btn__text {
    display: none;
}
@media (min-width: 640px) {
    .btn__text { display: inline; }
}

/* ==========================================================================
   6. [DS-04-01] Top Bar - Bandeau reassurance
   ========================================================================== */
.top-bar {
    background-color: var(--primary);
    padding: var(--space-sm) var(--space-md);
}

.top-bar__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.top-bar__item i {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

@media (max-width: 767px) {
    .top-bar__content { gap: var(--space-md); }
    .top-bar__item span { display: none; }
    .top-bar__item i { width: 20px; height: 20px; }
}

@media (min-width: 768px) {
    .top-bar__content {
        justify-content: center;
        gap: var(--space-3xl);
    }
}

/* ==========================================================================
   7. [DS-04-02] Header / Navbar
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg-primary);
    border-bottom: 3px solid var(--accent);
    box-shadow: var(--shadow-md);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    gap: var(--space-md);
}

@media (min-width: 1024px) {
    .header__container { height: 4.5rem; }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 54px;
    width: auto;
}

@media (min-width: 768px) {
    .logo img { height: 54px; }
}

@media (min-width: 1024px) {
    .logo img { height: 54px; }
}

/* Navigation Desktop */
.header__nav {
    display: none;
    align-items: center;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .header__nav { display: flex; }
}

.header__nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 150ms ease;
    position: relative;
    padding: var(--space-sm) 0;
}

.header__nav-link:hover { color: var(--primary); }

.header__nav-link--active {
    color: var(--primary);
}

.header__nav-link--active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--accent);
    border-radius: var(--radius-full);
}

/* Search bar (desktop) */
.header__search {
    display: none;
    flex: 1;
    max-width: 300px;
}

@media (min-width: 1200px) {
    .header__search { display: block; }
}

.search-input {
    position: relative;
    width: 100%;
}

.search-input__icon {
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
}

.search-input__field {
    width: 100%;
    padding: var(--space-sm) var(--space-md) var(--space-sm) 2.5rem;
    background-color: var(--bg-secondary);
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: all 150ms ease;
}

.search-input__field:focus {
    outline: none;
    background-color: var(--bg-primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.search-input__field::placeholder { color: var(--text-muted); }

/* Header actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .header__actions { gap: var(--space-md); }
}

.header__phone {
    display: none;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 150ms ease;
}

.header__phone:hover { color: var(--accent); }
.header__phone i { width: 18px; height: 18px; }

@media (min-width: 768px) {
    .header__phone { display: flex; }
}

.header__cta {
    display: none;
}

@media (min-width: 640px) {
    .header__cta { display: inline-flex; }
}

/* Menu burger button */
.header__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-primary);
    border-radius: var(--radius-lg);
    transition: background-color 150ms ease;
}

.header__menu-btn:hover {
    background-color: var(--bg-secondary);
}

.header__menu-btn i { width: 24px; height: 24px; }

@media (min-width: 1024px) {
    .header__menu-btn { display: none; }
}

/* ==========================================================================
   8. Mobile Menu
   ========================================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 300ms, opacity 300ms ease;
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 300ms ease;
}

.mobile-menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-2xl);
    transform: translateX(100%);
    transition: transform 300ms ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    border-bottom: 1px solid var(--bg-tertiary);
}

.mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-primary);
    border-radius: var(--radius-lg);
}

.mobile-menu__close:hover {
    background-color: var(--bg-secondary);
}

.mobile-menu__nav {
    flex: 1;
    padding: var(--space-lg);
    overflow-y: auto;
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    color: var(--text-primary);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: background-color 150ms ease;
}

.mobile-menu__link:hover {
    background-color: var(--bg-secondary);
}

.mobile-menu__link--active {
    background-color: rgba(30, 58, 95, 0.1);
    color: var(--primary);
}

.mobile-menu__link i { width: 20px; height: 20px; opacity: 0.7; }

.mobile-menu__divider {
    height: 1px;
    background-color: var(--bg-tertiary);
    margin: var(--space-md) 0;
}

.mobile-menu__footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--bg-tertiary);
}

.mobile-menu__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-menu__contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.mobile-menu__contact-item i {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.mobile-menu__contact-item a {
    color: var(--primary);
    font-weight: 500;
}

/* Search in mobile menu */
.mobile-menu__search {
    padding: 0 var(--space-lg) var(--space-lg);
}

.mobile-menu__search .search-input__field {
    width: 100%;
}

/* ==========================================================================
   9. [DS-04-03] Hero Section
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--space-2xl) 0 var(--space-3xl);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero { padding: var(--space-3xl) 0 var(--space-4xl); }
}

@media (min-width: 1024px) {
    .hero { padding: var(--space-4xl) 0 var(--space-5xl); }
}

/* Decorative pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero__container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background-color: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.hero__badge i { width: 16px; height: 16px; }

.hero__title {
    color: white;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero__title span { color: var(--accent); }

.hero__subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

@media (min-width: 768px) {
    .hero__subtitle { font-size: 1.125rem; margin-bottom: var(--space-2xl); }
}

/* Search form */
.hero__search {
    background-color: var(--bg-primary);
    padding: var(--space-sm);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.hero__search-form {
    display: grid;
    gap: var(--space-sm);
}

@media (min-width: 640px) {
    .hero__search-form { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .hero__search-form { grid-template-columns: repeat(4, 1fr) auto; }
}

.form-select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background-color: var(--bg-secondary);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 150ms ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A8A29E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 2.5rem;
}

.form-select:hover { border-color: var(--text-muted); }

.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.hero__search-btn {
    padding: var(--space-sm) var(--space-xl);
    white-space: nowrap;
}

@media (min-width: 640px) {
    .hero__search-btn { grid-column: span 2; }
}

@media (min-width: 1024px) {
    .hero__search-btn { grid-column: auto; padding: var(--space-sm) var(--space-2xl); }
}

/* Stats */
.hero__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .hero__stats { gap: var(--space-lg); margin-top: var(--space-2xl); }
}

.hero__stat {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.hero__stat strong { color: white; font-weight: 600; }

.hero__stat-divider {
    display: none;
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .hero__stat-divider { display: block; }
}

/* ==========================================================================
   10. Section generic styles
   ========================================================================== */
.section {
    padding: var(--space-2xl) 0;
}

@media (min-width: 768px) {
    .section { padding: var(--space-3xl) 0; }
}

@media (min-width: 1024px) {
    .section { padding: var(--space-4xl) 0; }
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .section__header { margin-bottom: var(--space-2xl); }
}

.section__title { margin-bottom: var(--space-sm); }

.section__subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* View all button */
.section__footer {
    text-align: center;
    margin-top: var(--space-xl);
}

@media (min-width: 768px) {
    .section__footer { margin-top: var(--space-2xl); }
}

/* ==========================================================================
   11. [DS-04-04] Cards Vehicules + vehicles-grid
   ========================================================================== */
.vehicles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .vehicles-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
}

/* Override for catalogue context: 3 columns at wider breakpoint */
.catalogue__content .vehicles-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .catalogue__content .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .catalogue__content .vehicles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }
}

.card-vehicule {
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 200ms ease-out;
    border: 1px solid var(--bg-tertiary);
}

.card-vehicule:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.15);
    border-color: var(--accent-light);
}

.card-vehicule__image {
    position: relative;
    aspect-ratio: 4 / 3;
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.card-vehicule__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.card-vehicule:hover .card-vehicule__image img {
    transform: scale(1.05);
}

.card-vehicule__badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-vehicule__badge--disponible { background-color: var(--success); color: white; }
.card-vehicule__badge--reserve { background-color: var(--warning); color: white; }
.card-vehicule__badge--vendu { background-color: var(--danger); color: white; }

.card-vehicule__content {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .card-vehicule__content { padding: var(--space-lg); }
}

.card-vehicule__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-vehicule__title a {
    color: inherit;
    text-decoration: none;
}

.card-vehicule__title a:hover {
    color: var(--accent);
}

a.card-vehicule__image {
    display: block;
}

@media (min-width: 768px) {
    .card-vehicule__title { font-size: 1.125rem; }
}

.card-vehicule__specs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

@media (min-width: 768px) {
    .card-vehicule__specs { gap: var(--space-md); font-size: 0.875rem; }
}

.card-vehicule__spec {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.card-vehicule__spec i { width: 14px; height: 14px; opacity: 0.7; }

@media (min-width: 768px) {
    .card-vehicule__spec i { width: 16px; height: 16px; }
}

.card-vehicule__ref {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-vehicule__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid var(--bg-tertiary);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.card-vehicule__price {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--accent);
}

@media (min-width: 768px) {
    .card-vehicule__price { font-size: 1.5rem; }
}

.card-vehicule__price-suffix {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-left: var(--space-xs);
}

@media (min-width: 768px) {
    .card-vehicule__price-suffix { font-size: 0.875rem; }
}

.card-vehicule__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 150ms ease;
}

.card-vehicule__link:hover { color: var(--accent); }
.card-vehicule__link i { width: 18px; height: 18px; transition: transform 150ms ease; }
.card-vehicule__link:hover i { transform: translateX(3px); }

/* -- Vue Liste (catalogue) -- */
.vehicles-grid.is-list-view {
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.vehicles-grid.is-list-view .card-vehicule {
    display: flex;
    flex-direction: row;
}

.vehicles-grid.is-list-view .card-vehicule:hover {
    transform: none;
}

.vehicles-grid.is-list-view .card-vehicule__image {
    flex-shrink: 0;
    width: 260px;
    aspect-ratio: 4 / 3;
}

.vehicles-grid.is-list-view .card-vehicule__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-lg) var(--space-xl);
    gap: var(--space-sm);
}

.vehicles-grid.is-list-view .card-vehicule__title {
    font-size: 1.125rem;
    white-space: normal;
}

.vehicles-grid.is-list-view .card-vehicule__footer {
    margin-top: auto;
}

@media (min-width: 768px) {
    .vehicles-grid.is-list-view .card-vehicule__image {
        width: 300px;
    }

    .vehicles-grid.is-list-view .card-vehicule__title {
        font-size: 1.25rem;
    }
}

/* Responsive : retour en vertical sur petit écran en mode liste */
@media (max-width: 639px) {
    .vehicles-grid.is-list-view .card-vehicule {
        flex-direction: column;
    }

    .vehicles-grid.is-list-view .card-vehicule__image {
        width: 100%;
    }
}

/* ==========================================================================
   12. [DS-04-05] Filters Sidebar (from catalogue.html)
   ========================================================================== */
.filters {
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    height: fit-content;
}

@media (max-width: 1023px) {
    .filters {
        display: none;
    }
    .filters.is-open {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 150;
        border-radius: 0;
        overflow-y: auto;
    }
}

.filters__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--bg-tertiary);
}

.filters__title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.filters__title i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.filters__reset {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: color 150ms ease;
}

.filters__reset:hover {
    color: var(--accent);
}

.filters__close {
    display: none;
}

@media (max-width: 1023px) {
    .filters__close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        color: var(--text-secondary);
    }
}

.filter-group {
    margin-bottom: var(--space-lg);
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group__label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background-color: var(--bg-secondary);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: all 150ms ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.filter-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}

.filter-checkbox span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.filters__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--bg-tertiary);
}

/* ==========================================================================
   13. Page Header + Breadcrumb (from catalogue.html, fiche-vehicule.html, contact.html)
   ========================================================================== */

/* --- Page Header (standard) --- */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--space-xl) 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .page-header { padding: var(--space-2xl) 0; }
}

@media (min-width: 1024px) {
    .page-header { padding: var(--space-2xl) 0 var(--space-xl); }
}

.page-header__breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

.page-header__breadcrumb a:hover {
    text-decoration: underline;
}

.page-header__breadcrumb i {
    width: 14px;
    height: 14px;
}

.page-header__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .page-header__content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.page-header__title {
    margin: 0;
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .page-header__title { font-size: 2rem; }
}

@media (min-width: 1024px) {
    .page-header__title { font-size: 2.5rem; }
}

.page-header__subtitle {
    opacity: 0.9;
    max-width: 600px;
    font-size: 0.875rem;
    margin-top: var(--space-xs);
}

@media (min-width: 768px) {
    .page-header__subtitle { font-size: 1rem; }
}

@media (min-width: 1024px) {
    .page-header__subtitle { font-size: 1.125rem; }
}

.page-header__count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.page-header__count strong {
    color: var(--accent);
    font-weight: 600;
}

/* --- Page Header Compact (fiche-vehicule.html) --- */
.page-header--compact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--space-md) 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header--compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.page-header--compact .container {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .page-header--compact { padding: var(--space-lg) 0; }
}

.page-header--compact .breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    flex-wrap: wrap;
    margin: 0;
    opacity: 0.9;
}

.page-header--compact .breadcrumb a {
    transition: color 150ms ease;
}

.page-header--compact .breadcrumb a:hover {
    text-decoration: underline;
}

.page-header--compact .breadcrumb__separator {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.page-header--compact .breadcrumb__current {
    color: white;
}

/* --- Breadcrumb (legacy support) --- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.breadcrumb a {
    transition: color 150ms ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb__separator {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

.breadcrumb__current {
    color: white;
}

/* ==========================================================================
   14. Catalogue Layout + Toolbar + Pagination (from catalogue.html)
   ========================================================================== */
.catalogue {
    padding: var(--space-xl) 0 var(--space-2xl);
}

@media (min-width: 768px) {
    .catalogue { padding: var(--space-2xl) 0 var(--space-3xl); }
}

.catalogue__layout {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .catalogue__layout {
        grid-template-columns: 280px 1fr;
        gap: var(--space-2xl);
    }
}

/* Catalogue Content */
.catalogue__content {
    min-width: 0;
}

.catalogue__toolbar {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

@media (min-width: 640px) {
    .catalogue__toolbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.catalogue__toolbar-left {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.filter-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background-color: var(--bg-primary);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 150ms ease;
}

.filter-toggle:hover {
    border-color: var(--primary);
}

.filter-toggle i {
    width: 18px;
    height: 18px;
}

@media (min-width: 1024px) {
    .filter-toggle { display: none; }
}

.catalogue__sort {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.catalogue__sort-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.catalogue__sort-select {
    min-width: 180px;
}

.catalogue__view-toggle {
    display: none;
    align-items: center;
    gap: var(--space-xs);
    background-color: var(--bg-primary);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: var(--space-xs);
}

@media (min-width: 640px) {
    .catalogue__view-toggle { display: flex; }
}

.view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: all 150ms ease;
}

.view-btn:hover {
    color: var(--text-primary);
}

.view-btn.is-active {
    background-color: var(--primary);
    color: white;
}

.view-btn i {
    width: 18px;
    height: 18px;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

@media (min-width: 640px) {
    .pagination { gap: var(--space-sm); margin-top: var(--space-2xl); }
}

.pagination__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--bg-primary);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 150ms ease;
}

@media (min-width: 640px) {
    .pagination__btn { width: 40px; height: 40px; }
}

.pagination__btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination__btn.is-active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination__btn.is-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.pagination__btn i {
    width: 18px;
    height: 18px;
}

.pagination__ellipsis {
    color: var(--text-muted);
    padding: 0 var(--space-xs);
}

/* ==========================================================================
   15. [DS-04-06] Vehicle Detail - Gallery + Info + Specs + CTA + Description + Equipments
       (from fiche-vehicule.html)
   ========================================================================== */
.vehicle-detail {
    padding: var(--space-xl) 0 var(--space-2xl);
}

@media (min-width: 768px) {
    .vehicle-detail { padding: var(--space-2xl) 0 var(--space-3xl); }
}

.vehicle-detail__layout {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .vehicle-detail__layout { gap: var(--space-xl); }
}

@media (min-width: 1024px) {
    .vehicle-detail__layout {
        grid-template-columns: 1fr 400px;
        gap: var(--space-2xl);
        align-items: start;
    }
}

/* Gallery */
.vehicle-gallery {
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-sm);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .vehicle-gallery { padding: var(--space-md); }
}

.vehicle-gallery__main {
    position: relative;
    aspect-ratio: 4 / 3;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
    .vehicle-gallery__main { margin-bottom: var(--space-md); }
}

.vehicle-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-gallery__badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--success);
    color: white;
}

@media (min-width: 768px) {
    .vehicle-gallery__badge {
        top: var(--space-md);
        left: var(--space-md);
        padding: var(--space-xs) var(--space-md);
        font-size: 0.875rem;
    }
}

.vehicle-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    transition: all 150ms ease;
}

@media (min-width: 768px) {
    .vehicle-gallery__nav { width: 44px; height: 44px; }
}

.vehicle-gallery__nav:hover {
    background-color: white;
    box-shadow: var(--shadow-lg);
}

.vehicle-gallery__nav--prev { left: var(--space-sm); }
.vehicle-gallery__nav--next { right: var(--space-sm); }

@media (min-width: 768px) {
    .vehicle-gallery__nav--prev { left: var(--space-md); }
    .vehicle-gallery__nav--next { right: var(--space-md); }
}

.vehicle-gallery__nav i { width: 18px; height: 18px; }

@media (min-width: 768px) {
    .vehicle-gallery__nav i { width: 20px; height: 20px; }
}

.vehicle-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-xs);
}

@media (min-width: 768px) {
    .vehicle-gallery__thumbs { gap: var(--space-sm); }
}

.vehicle-gallery__thumb {
    aspect-ratio: 4 / 3;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 150ms ease;
}

@media (min-width: 768px) {
    .vehicle-gallery__thumb { border-radius: var(--radius-md); }
}

.vehicle-gallery__thumb:hover {
    border-color: var(--primary);
}

.vehicle-gallery__thumb.is-active {
    border-color: var(--accent);
}

.vehicle-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Vehicle Info */
.vehicle-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .vehicle-info { gap: var(--space-lg); }
}

@media (min-width: 1024px) {
    .vehicle-info {
        position: sticky;
        top: 100px;
        height: fit-content;
    }
}

.vehicle-info__card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .vehicle-info__card { padding: var(--space-lg); }
}

.vehicle-info__header {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--bg-tertiary);
}

@media (min-width: 768px) {
    .vehicle-info__header {
        margin-bottom: var(--space-lg);
        padding-bottom: var(--space-lg);
    }
}

.vehicle-info__ref {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.vehicle-info__title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
    .vehicle-info__title {
        font-size: 1.75rem;
        margin-bottom: var(--space-md);
    }
}

.vehicle-info__price {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 2rem;
    color: var(--accent);
    line-height: 1;
}

@media (min-width: 768px) {
    .vehicle-info__price { font-size: 2.5rem; }
}

.vehicle-info__price-suffix {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-left: var(--space-xs);
}

@media (min-width: 768px) {
    .vehicle-info__price-suffix { font-size: 1rem; }
}

/* Specs Grid */
.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
    .vehicle-specs {
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }
}

.vehicle-spec {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.vehicle-spec__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    color: var(--primary);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .vehicle-spec__icon { width: 36px; height: 36px; }
}

.vehicle-spec__icon i { width: 16px; height: 16px; }

@media (min-width: 768px) {
    .vehicle-spec__icon i { width: 18px; height: 18px; }
}

.vehicle-spec__content {
    min-width: 0;
}

.vehicle-spec__label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .vehicle-spec__label { font-size: 0.75rem; }
}

.vehicle-spec__value {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .vehicle-spec__value { font-size: 1rem; }
}

/* CTA */
.vehicle-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.vehicle-cta__btn {
    width: 100%;
}

.vehicle-cta__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-weight: 600;
    transition: all 150ms ease;
}

.vehicle-cta__phone:hover {
    background-color: var(--bg-tertiary);
}

.vehicle-cta__phone i { width: 20px; height: 20px; color: var(--accent); }

/* Description Card */
.vehicle-description {
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .vehicle-description { padding: var(--space-lg); }
}

.vehicle-description__title {
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .vehicle-description__title { font-size: 1.25rem; }
}

.vehicle-description__title i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.vehicle-description__content {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .vehicle-description__content { font-size: 0.9375rem; }
}

.vehicle-description__content p {
    margin-bottom: var(--space-md);
}

.vehicle-description__content p:last-child {
    margin-bottom: 0;
}

/* Equipments */
.vehicle-equipments {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--bg-tertiary);
}

@media (min-width: 768px) {
    .vehicle-equipments {
        margin-top: var(--space-lg);
        padding-top: var(--space-lg);
    }
}

.vehicle-equipments__title {
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .vehicle-equipments__title { font-size: 1.125rem; }
}

.vehicle-equipments__title i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.vehicle-equipments__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

@media (min-width: 640px) {
    .vehicle-equipments__list { grid-template-columns: repeat(2, 1fr); }
}

.vehicle-equipment {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .vehicle-equipment { font-size: 0.875rem; }
}

.vehicle-equipment i {
    width: 16px;
    height: 16px;
    color: var(--success);
    flex-shrink: 0;
}

/* ==========================================================================
   16. Similar Vehicles section (from fiche-vehicule.html)
   ========================================================================== */
.similar-vehicles {
    padding: var(--space-2xl) 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--bg-tertiary);
}

@media (min-width: 768px) {
    .similar-vehicles { padding: var(--space-3xl) 0; }
}

.similar-vehicles__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .similar-vehicles__header { margin-bottom: var(--space-2xl); }
}

.similar-vehicles__title {
    margin-bottom: var(--space-sm);
}

.similar-vehicles__subtitle {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .similar-vehicles__subtitle { font-size: 1rem; }
}

.similar-vehicles__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .similar-vehicles__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .similar-vehicles__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }
}

/* ==========================================================================
   17. Contact section - Form + Info cards + Horaires + Map (from contact.html)
   ========================================================================== */
.contact-section {
    padding: var(--space-2xl) 0;
}

@media (min-width: 768px) {
    .contact-section { padding: var(--space-3xl) 0; }
}

@media (min-width: 1024px) {
    .contact-section { padding: var(--space-4xl) 0; }
}

.contact-grid {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
        align-items: start;
    }
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--bg-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
    .contact-form-wrapper { padding: var(--space-xl); }
}

@media (min-width: 768px) {
    .contact-form-wrapper { padding: var(--space-2xl); }
}

.contact-form-wrapper h2 {
    margin-bottom: var(--space-sm);
}

.contact-form-wrapper > p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .form-row--2 {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.form-group label .required {
    color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2357534E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 44px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    transition: background-color 0.2s ease, transform 0.2s ease;
    width: 100%;
}

.form-submit:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #C2410C 100%);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.form-submit:active {
    transform: scale(0.98);
}

@media (min-width: 640px) {
    .form-submit {
        width: auto;
        align-self: flex-start;
    }
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .contact-info { gap: var(--space-xl); }
}

.contact-info-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
    .contact-info-card { padding: var(--space-xl); }
}

.contact-info-card h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    color: var(--primary);
}

.contact-info-card h3 i {
    color: var(--accent);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--bg-tertiary);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-item:first-of-type {
    padding-top: 0;
}

.contact-info-item__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-item__content {
    flex: 1;
}

.contact-info-item__label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-2xs);
}

.contact-info-item__value {
    font-weight: 500;
    color: var(--text-primary);
}

.contact-info-item__value a {
    color: var(--primary);
    transition: color 0.2s ease;
}

.contact-info-item__value a:hover {
    color: var(--accent);
}

/* Horaires */
.horaires-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.horaires-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px dashed var(--bg-tertiary);
}

.horaires-item:last-child {
    border-bottom: none;
}

.horaires-item__day {
    font-weight: 500;
    color: var(--text-primary);
}

.horaires-item__time {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.horaires-item--closed .horaires-item__time {
    color: var(--danger);
    font-weight: 500;
}

.horaires-note {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.horaires-note i {
    color: var(--accent);
    flex-shrink: 0;
}

/* Map */
.map-container {
    background-color: var(--bg-primary);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--bg-tertiary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .map-placeholder { height: 300px; }
}

.map-placeholder i {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
}

.map-placeholder a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background-color: var(--primary);
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: var(--radius-lg);
    transition: background-color 0.2s ease;
}

.map-placeholder a:hover {
    background-color: var(--primary-dark);
}

/* ==========================================================================
   18. FAQ Section (from contact.html)
   ========================================================================== */
.faq-section {
    padding: var(--space-2xl) 0;
    background-color: var(--bg-primary);
}

@media (min-width: 768px) {
    .faq-section { padding: var(--space-3xl) 0; }
}

@media (min-width: 1024px) {
    .faq-section { padding: var(--space-4xl) 0; }
}

.faq-section__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .faq-section__header { margin-bottom: var(--space-2xl); }
}

.faq-section__header h2 {
    margin-bottom: var(--space-sm);
}

.faq-section__header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .faq-grid { gap: var(--space-lg); }
}

.faq-item {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

@media (min-width: 768px) {
    .faq-item__question { padding: var(--space-lg); }
}

.faq-item__question:hover {
    background-color: var(--bg-tertiary);
}

.faq-item__question i {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.2s ease;
}

.faq-item.is-open .faq-item__question i {
    transform: rotate(180deg);
}

.faq-item__answer {
    display: none;
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.is-open .faq-item__answer {
    display: block;
}

/* ==========================================================================
   19. CTA Section
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: linear-gradient(135deg, rgba(249,115,22,0.2) 0%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
}

@media (min-width: 768px) {
    .cta-section { padding: var(--space-3xl) 0; }
}

.cta-section__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section__title {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-section__text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .cta-section__text { margin-bottom: var(--space-xl); }
}

.cta-section__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

@media (min-width: 640px) {
    .cta-section__buttons { flex-direction: row; justify-content: center; }
}

.cta-section .btn--primary {
    background-color: var(--accent);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.cta-section .btn--ghost {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-section .btn--ghost:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ==========================================================================
   20. [DS-04-07] Reassurance Section
   ========================================================================== */
.reassurance {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--bg-tertiary);
    border-bottom: 1px solid var(--bg-tertiary);
}

.reassurance__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .reassurance__grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); }
}

.reassurance__item {
    text-align: center;
    padding: var(--space-sm);
}

@media (min-width: 768px) {
    .reassurance__item { padding: var(--space-md); }
}

.reassurance__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-xl);
    color: white;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

@media (min-width: 768px) {
    .reassurance__icon { width: 56px; height: 56px; margin-bottom: var(--space-md); }
}

.reassurance__icon i { width: 22px; height: 22px; }

@media (min-width: 768px) {
    .reassurance__icon i { width: 26px; height: 26px; }
}

.reassurance__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

@media (min-width: 768px) {
    .reassurance__title { font-size: 1rem; }
}

.reassurance__desc {
    color: var(--text-secondary);
    font-size: 0.75rem;
    display: none;
}

@media (min-width: 768px) {
    .reassurance__desc { display: block; font-size: 0.875rem; }
}

/* ==========================================================================
   21. [DS-04-08] Footer
   ========================================================================== */
.footer {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 4px solid var(--accent);
}

@media (min-width: 768px) {
    .footer { padding: var(--space-3xl) 0 var(--space-xl); }
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
    .footer__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-2xl); margin-bottom: var(--space-2xl); }
}

@media (min-width: 1024px) {
    .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; }
}

.footer__brand { max-width: 280px; }

.footer__logo {
    display: block;
    margin-bottom: var(--space-md);
}

.footer__logo img {
    height: 48px;
    width: auto;
}

.footer__desc { font-size: 0.875rem; line-height: 1.6; }

.footer__title {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
    .footer__title { margin-bottom: var(--space-lg); }
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__link {
    font-size: 0.875rem;
    transition: color 150ms ease;
}

.footer__link:hover { color: var(--accent); }

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
}

.footer__contact-item i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}

.footer__contact-item a { transition: color 150ms ease; color: var(--text-primary); }
.footer__contact-item a:hover { color: var(--accent); }

.footer__bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--bg-tertiary);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding-top: var(--space-xl);
    }
}

.footer__copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer__legal {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .footer__legal { justify-content: flex-end; gap: var(--space-lg); }
}

.footer__legal a {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: color 150ms ease;
}

.footer__legal a:hover { color: var(--accent); }

/* ==========================================================================
   22. [DS-05] Animations (skeleton shimmer)
   ========================================================================== */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-tertiary) 50%, var(--bg-secondary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

/* ==========================================================================
   23. No Results state (from catalogue.html)
   ========================================================================== */
.no-results {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
}

@media (min-width: 768px) {
    .no-results { padding: var(--space-3xl) var(--space-lg); }
}

.no-results__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .no-results__icon { width: 64px; height: 64px; margin-bottom: var(--space-lg); }
}

.no-results__icon i {
    width: 28px;
    height: 28px;
}

@media (min-width: 768px) {
    .no-results__icon i { width: 32px; height: 32px; }
}

.no-results__title {
    margin-bottom: var(--space-sm);
}

.no-results__text {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* ==========================================================================
   24. Form success state (from contact.html)
   ========================================================================== */
.form-success {
    display: none;
    padding: var(--space-xl);
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    border-radius: var(--radius-xl);
    text-align: center;
}

.form-success i {
    width: 48px;
    height: 48px;
    color: var(--success);
    margin-bottom: var(--space-md);
}

.form-success h3 {
    color: var(--success);
    margin-bottom: var(--space-sm);
}

.form-success p {
    color: var(--text-secondary);
}

/* ==========================================================================
   25. Active filters (from catalogue.html)
   ========================================================================== */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.active-filter {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background-color: rgba(30, 58, 95, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--primary);
}

.active-filter__remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    transition: background-color 150ms ease;
}

.active-filter__remove:hover {
    background-color: var(--accent);
}

.active-filter__remove i {
    width: 12px;
    height: 12px;
}
