:root{
  --avia-blue:#003b7a;
  --avia-blue-dark:#002b59;
  --avia-red:#e21b2d;
  --avia-light:#f5f7fa;
  --text:#1f2937;
  --muted:#667085;
  --border:#e5e7eb;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Arial,Helvetica,sans-serif;color:var(--text);background:#fff;line-height:1.6}
a{color:var(--avia-blue)}
.container{width:min(1180px,calc(100% - 32px));margin-inline:auto}
.topline{min-height:8px;background:var(--avia-red)}
.brandbar{background:#fff;border-bottom:1px solid var(--border)}
.brandbar-inner{display:flex;align-items:center;min-height:92px}
.brand{display:inline-flex;align-items:center;gap:16px;text-decoration:none;color:var(--text)}
.avia-mark{display:inline-flex;align-items:center;justify-content:center;background:var(--avia-blue);color:#fff;font-weight:900;font-size:25px;letter-spacing:.5px;padding:9px 13px;border-radius:4px;border-bottom:5px solid var(--avia-red)}
.brand-text{display:flex;flex-direction:column;line-height:1.2}
.brand-text strong{font-size:1.35rem;color:var(--avia-blue)}
.brand-text small{margin-top:5px;color:var(--muted)}
.mainnav{background:var(--avia-blue);box-shadow:0 3px 12px rgba(0,0,0,.08)}
.mainnav ul{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:2px}
.mainnav li{margin:0}
.mainnav a{display:block;color:#fff;text-decoration:none;font-weight:700;padding:15px 18px}
.mainnav a:hover,.mainnav .active>a{background:var(--avia-red)}
.banner{background:linear-gradient(135deg,var(--avia-blue-dark),var(--avia-blue));color:#fff}
.banner .custom{width:min(1180px,calc(100% - 32px));margin:auto;padding:64px 0}
.main-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:28px;padding-block:34px 54px}
.content{min-width:0}
.sidebar .moduletable,.sidebar .card{border:1px solid var(--border);border-radius:10px;padding:18px;background:var(--avia-light)}
h1,h2,h3{color:var(--avia-blue);line-height:1.2}
.btn,.btn-primary{display:inline-block;background:var(--avia-red);color:#fff!important;text-decoration:none;border:0;border-radius:6px;padding:11px 18px;font-weight:700}
.site-footer{background:var(--avia-blue-dark);color:#fff;padding:34px 0;margin-top:30px}
.footer-grid{display:grid;gap:20px}
.site-footer a{color:#fff}
.error-page{min-height:70vh;display:grid;place-items:center}
.error-card{text-align:center;max-width:600px;padding:40px;border:1px solid var(--border);border-radius:14px}
.error-card .avia-mark{margin-bottom:18px}
@media (min-width:900px){
  .main-grid:has(.sidebar){grid-template-columns:260px minmax(0,1fr)}
  .main-grid:has(.sidebar + .content + .sidebar){grid-template-columns:240px minmax(0,1fr) 240px}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:720px){
  .brandbar-inner{min-height:78px}
  .brand-text small{display:none}
  .mainnav ul{display:block}
  .mainnav a{padding:12px 14px;border-top:1px solid rgba(255,255,255,.08)}
  .banner .custom{padding:40px 0}
}
/* ==================================================
   PAGE ACCUEIL - SARL 2LLS / AVIA
   ================================================== */

.avia-intro {
    padding: 35px 0 25px;
}

.avia-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

#stations,
#lavage,
#services,
#contact {
    padding: 35px 0;
}

#stations h2,
#lavage h2,
#services h2,
#contact h2 {
    margin-bottom: 25px;
}

/* --- Cartes des stations --- */

.station-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.station-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: 5px solid #e21b2d;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 18px rgba(0,0,0,.08);
}

.station-card h3 {
    margin-top: 0;
    color: #003b7a;
}

.station-address {
    font-weight: bold;
    color: #555;
}

.station-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.station-card li {
    margin: 6px 0;
}

/* --- Services --- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.service-card {
    background: #003b7a;
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 22px 12px;
    border-radius: 8px;
    border-bottom: 4px solid #e21b2d;
}

/* --- Contact --- */

#contact {
    background: #f5f7fa;
    padding: 30px;
    border-radius: 10px;
}

#contact a {
    font-size: 1.15rem;
    font-weight: bold;
}

/* --- Tablettes et téléphones --- */

@media (max-width: 900px) {
    .station-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .avia-intro h1 {
        font-size: 2rem;
    }
}
/* ==================================================
   BANNIERE D'ACCUEIL
   ================================================== */

.avia-hero {
    min-height: 430px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0 35px;
}

.avia-hero-overlay {
    min-height: 430px;
    display: flex;
    align-items: center;
    padding: 50px;
    background: linear-gradient(
        90deg,
        rgba(0, 43, 89, 0.88) 0%,
        rgba(0, 43, 89, 0.58) 45%,
        rgba(0, 43, 89, 0.08) 75%
    );
}

.avia-hero-content {
    max-width: 650px;
    color: white;
}

.avia-hero-content h1 {
    color: white;
    font-size: 3rem;
    margin: 0 0 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,.35);
}

.avia-hero-content p {
    font-size: 1.35rem;
    margin: 8px 0;
}

.avia-hero-content .hero-services {
    font-size: 1.05rem;
    font-weight: bold;
}


/* ==================================================
   PHOTOS DES STATIONS
   ================================================== */

.station-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.station-photo {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
}

.station-card-content {
    padding: 25px;
    flex: 1;
}


/* ==================================================
   LAVAGE
   ================================================== */

.lavage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 25px;
}

.lavage-card {
    background: #f5f7fa;
    border-left: 5px solid #e21b2d;
    padding: 25px;
    border-radius: 8px;
}

.lavage-card h3 {
    margin-top: 0;
}


/* ==================================================
   VERSION MOBILE
   ================================================== */

@media (max-width: 800px) {

    .avia-hero,
    .avia-hero-overlay {
        min-height: 350px;
    }

    .avia-hero-overlay {
        padding: 30px;
    }

    .avia-hero-content h1 {
        font-size: 2.2rem;
    }

    .lavage-grid {
        grid-template-columns: 1fr;
    }

    .station-photo {
        height: 220px;
    }
}
/* Décalage lors de la navigation par le menu */
#stations,
#lavage,
#services,
#contact {
    scroll-margin-top: 100px;
}
/* ==================================================
   PAGE NOS STATIONS
   ================================================== */

.stations-page-intro {
    margin: 20px 0 35px;
}

.station-detail {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 35px;
    align-items: stretch;
    margin: 0 0 45px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,.08);
}

.station-detail-photo {
    min-height: 360px;
}

.station-detail-photo img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.station-detail-content {
    padding: 35px 35px 35px 0;
}

.station-detail-content h2 {
    margin-top: 0;
    font-size: 1.8rem;
}

.station-detail-content h3 {
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.station-detail-content ul {
    padding-left: 22px;
}

.station-detail-content .btn {
    margin-top: 12px;
}

/* On inverse la deuxième station pour varier la présentation */
.station-detail:nth-of-type(3) .station-detail-photo {
    order: 2;
}

.station-detail:nth-of-type(3) .station-detail-content {
    order: 1;
    padding: 35px 0 35px 35px;
}

@media (max-width: 850px) {
    .station-detail {
        grid-template-columns: 1fr;
    }

    .station-detail-photo,
    .station-detail-photo img {
        min-height: 250px;
        height: 250px;
    }

    .station-detail-content,
    .station-detail:nth-of-type(3) .station-detail-content {
        padding: 25px;
    }

    .station-detail:nth-of-type(3) .station-detail-photo,
    .station-detail:nth-of-type(3) .station-detail-content {
        order: initial;
    }
}
/* ==================================================
   PAGE NOS LAVAGES
   ================================================== */

.lavages-page-intro {
    margin: 20px 0 35px;
}

.lavage-detail {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,.08);
    margin-bottom: 35px;
    overflow: hidden;
    border-top: 5px solid #ed1b2d;
}

.lavage-detail-content {
    padding: 35px;
}

.lavage-detail h2 {
    margin-top: 0;
    font-size: 1.8rem;
    color: #003b7a;
}

.lavage-detail h3 {
    margin-top: 8px;
    font-size: 1.3rem;
    color: #003b7a;
}

.lavage-detail p {
    line-height: 1.7;
}

.lavage-detail ul {
    margin: 20px 0;
    padding-left: 24px;
    line-height: 1.8;
}

.lavage-detail .btn {
    display: inline-block;
    margin-top: 12px;
}

/* Deuxième bloc légèrement différent */
.lavage-christ {
    background: #f7f9fb;
}

/* Responsive mobile */
@media (max-width: 850px) {

    .lavage-detail-content {
        padding: 25px;
    }

    .lavage-detail h2 {
        font-size: 1.5rem;
    }
}
/* ==================================================
   PHOTOS - PAGE NOS LAVAGES
   ================================================== */

.lavage-avec-photo {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    padding: 0;
    align-items: stretch;
}

.lavage-photo {
    min-height: 420px;
    overflow: hidden;
}

.lavage-photo img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.lavage-avec-photo .lavage-detail-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Adaptation téléphone et tablette */
@media (max-width: 850px) {

    .lavage-avec-photo {
        grid-template-columns: 1fr;
    }

    .lavage-photo {
        min-height: 260px;
    }

    .lavage-photo img {
        height: 260px;
        min-height: 260px;
    }

    .lavage-avec-photo .lavage-detail-content {
        padding: 25px;
    }

    /* Sur mobile, photo toujours avant le texte */
    .lavage-christ .lavage-photo {
        order: 1;
    }

    .lavage-christ .lavage-detail-content {
        order: 2;
    }
}
/* ==================================================
   PAGE SERVICES
   ================================================== */

.services-page-intro {
    margin: 20px 0 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 20px 0 45px;
}

.services-grid .service-card {
    background: #ffffff;
    color: #1f2937;
    border: 1px solid #e5e7eb;
    border-top: 5px solid #ed1b2d;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,.08);

    min-height: 0;
    height: auto;

    padding: 28px 20px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.services-grid .service-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 18px;
}

.services-grid .service-card h2 {
    color: #003b7a;
    font-size: 1.2rem;
    line-height: 1.3;
    margin: 0 0 16px;
}

.services-grid .service-card p {
    color: #374151;
    font-weight: normal;
    line-height: 1.6;
    margin: 0;
}

/* Tablette */
@media (max-width: 1050px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Téléphone */
@media (max-width: 650px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* ==================================================
   PAGE NOUS CONTACTER
   ================================================== */

.contact {
    max-width: 900px;
    margin: 0 auto 50px;
}

.contact h1,
.contact h2,
.contact h3 {
    color: #003b7a;
}

.contact-form {
    margin-top: 25px;
}

.contact-form fieldset {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: 5px solid #ed1b2d;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 18px rgba(0,0,0,.08);
}

.contact-form legend {
    color: #003b7a;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0 10px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1f2937;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 7px;
    font-size: 1rem;
    background: #ffffff;
    margin-bottom: 16px;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #003b7a;
    box-shadow: 0 0 0 3px rgba(0,59,122,.12);
}

.contact-form button,
.contact-form .btn {
    background: #ed1b2d;
    color: #ffffff;
    border: 0;
    border-radius: 6px;
    padding: 13px 25px;
    font-weight: 700;
    cursor: pointer;
}

.contact-form button:hover,
.contact-form .btn:hover {
    background: #c91525;
}

@media (max-width: 650px) {

    .contact {
        margin-left: 10px;
        margin-right: 10px;
    }

    .contact-form fieldset {
        padding: 20px;
    }
}
/* ==================================================
   MENU MOBILE HAMBURGER
   ================================================== */

/* Par défaut sur ordinateur : bouton caché */
.menu-toggle {
    display: none;
}

/* Le menu reste normal sur ordinateur */
.main-menu {
    display: block;
}

/* Smartphone / tablette */
@media (max-width: 850px) {

    .mainnav .nav-wrap {
        display: block;
        padding: 0;
    }

    .menu-toggle {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;

        background: #003b7a;
        color: #ffffff;

        border: 0;
        padding: 15px 18px;

        font-size: 1.05rem;
        font-weight: 700;

        cursor: pointer;
    }

    .menu-toggle:hover {
        background: #00458f;
    }

    /* Menu fermé par défaut */
    .main-menu {
        display: none;
    }

    /* Menu ouvert après clic sur ☰ */
    .main-menu.is-open {
        display: block;
    }

    .main-menu ul {
        display: block;
        margin: 0;
        padding: 0;
    }

    .main-menu li {
        display: block;
        width: 100%;
    }

    .main-menu li a {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}
/* ==================================================
   AJUSTEMENT HERO SUR SMARTPHONE
   ================================================== */

@media (max-width: 650px) {

    .hero h1 {
        font-size: 2rem;
        line-height: 1.15;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.4;
    }
}
/* ==================================================
   COPYRIGHT
   ================================================== */

.copyright {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.25);
    font-size: 0.9rem;
    opacity: 0.85;
}
/* ==================================================
   LIENS DU FOOTER
   ================================================== */

footer ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

footer ul li {
    margin: 0;
    padding: 0;
}

footer ul li + li::before {
    content: "•";
    margin-right: 18px;
    color: rgba(255,255,255,.55);
}

footer ul a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: .9rem;
}

footer ul a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-banner__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 22px;
    background: #ffffff;
    border-top: 4px solid #e31837;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner__text {
    color: #123b63;
}

.cookie-banner__text strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.cookie-banner__text p {
    margin: 0;
    line-height: 1.5;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: 0;
    border-radius: 5px;
    padding: 10px 18px;
    font-weight: 700;
    cursor: pointer;
}

.cookie-btn--primary {
    background: #e31837;
    color: #ffffff;
}

.cookie-btn--secondary {
    background: #003f7d;
    color: #ffffff;
}

@media (max-width: 700px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}
.lavage-title-action {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.lavage-title-action h3 {
    margin: 0;
}

.lavage-title-action .btn {
    margin: 0;
}

@media (max-width: 720px) {
    .lavage-title-action {
        align-items: flex-start;
        gap: 12px;
    }
}
/* ===== PAGE SERVICES + ===== */

.services-plus-intro {
    padding: 35px 0 20px;
}

.services-plus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 20px 0 35px;
}

.services-plus-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 5px solid var(--avia-red);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 5px 18px rgba(0,0,0,.08);
}

.services-plus-card h2 {
    margin-top: 10px;
}

.services-plus-icon {
    font-size: 2rem;
}

.services-plus-card ul {
    padding-left: 22px;
}

.services-rdv {
    background: var(--avia-light);
    border-left: 5px solid var(--avia-red);
    border-radius: 10px;
    padding: 28px;
    margin: 30px 0 40px;
}

.services-rdv h2 {
    margin-top: 0;
}

@media (max-width: 900px) {
    .services-plus-grid {
        grid-template-columns: 1fr;
    }
}
/* Image carte de lavage AVIA - bloc Services + */
.services-plus-card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.services-plus-card-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* =========================================
   JOOMBOOK - ASSISTANT DE RESERVATION
   ========================================= */

/* Zone principale de l'assistant */
.jb-booking-wizard,
.joombook-booking-wizard {
    font-family: inherit;
}

/* Titres de l'assistant */
.jb-booking-wizard h2,
.joombook-booking-wizard h2 {
    color: #003b7a;
    font-weight: 700;
}

/* Bouton retour */
.jb-booking-wizard .btn,
.joombook-booking-wizard .btn {
    border-radius: 6px;
}
/* =========================================
   JOOMBOOK - CARTES CASTRES / RANGUEIL
   ========================================= */

/* Carte de sélection */
.joombook-wizard button.card {
    background: #ffffff !important;
    border: 2px solid #e1e6eb !important;
    border-radius: 10px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 14px;
}

/* Effet au passage de la souris */
.joombook-wizard button.card:hover {
    border-color: #004481 !important;
    box-shadow: 0 6px 16px rgba(0, 68, 129, 0.18) !important;
    transform: translateY(-2px);
}

/* Zone intérieure */
.joombook-wizard button.card .p-3 {
    padding: 18px 20px !important;
}

/* Nom : AVIA - Avenue de Castres / Rangueil */
.joombook-wizard button.card .jb-name {
    color: #004481 !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 6px;
}

/* Texte descriptif */
.joombook-wizard button.card p {
    color: #4d5966 !important;
    font-size: 0.95rem !important;
    line-height: 1.45;
    margin-bottom: 0;
}

/* Petit effet lors du clic */
.joombook-wizard button.card:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10) !important;
}
/* Finition des cartes de catégories JoomBook */
.joombook-wizard button.card {
    padding: 6px 0 !important;
}

.joombook-wizard button.card .jb-name {
    margin-top: 4px;
    margin-bottom: 10px !important;
}

.joombook-wizard button.card p {
    padding: 0 12px 8px 12px;
}
/* =========================================
   JOOMBOOK - CARTES DE PRESTATIONS
   ========================================= */

/* Carte Assistance véhicule */
.joombook-wizard button.card .card-body {
    padding: 20px 24px !important;
    text-align: left !important;
}

/* Nom de la prestation */
.joombook-wizard button.card .card-body .jb-name {
    color: #004481 !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
}

/* Durée */
.joombook-wizard button.card .card-body .jb-muted {
    color: #687684 !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
}

/* Description de la prestation */
.joombook-wizard button.card .card-body > div:last-child {
    color: #3f4b55 !important;
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    padding-top: 10px !important;
    border-top: 1px solid #e3e7eb;
}
/* =========================================
   JOOMBOOK - PRESTATIONS PLUS COMPACTES
   ========================================= */

/* Réduit la hauteur des cartes */
.joombook-wizard button.card .card-body {
    padding: 12px 16px !important;
}

/* Titre plus compact */
.joombook-wizard button.card .card-body .jb-name {
    font-size: 1.05rem !important;
    margin-bottom: 3px !important;
}

/* Durée */
.joombook-wizard button.card .card-body .jb-muted {
    font-size: 0.85rem !important;
    margin-bottom: 5px !important;
}

/* Description */
.joombook-wizard button.card .card-body > div:last-child {
    font-size: 0.88rem !important;
    line-height: 1.3 !important;
    padding-top: 6px !important;
}

/* Réduit l'espace entre les cartes */
.joombook-wizard button.card {
    margin-bottom: 7px !important;
}
/* --- Cartes Réserver un service --- */

.vapservicescont {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
}

.vapserblock {
    width: 100% !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.vapserwrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vapserimage {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.vapserimage a {
    display: block;
    width: 100%;
    height: 100%;
}

.vapserimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vapsername {
    padding: 15px 16px 8px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
}

.avia-service-info {
    padding: 0 8px 16px;
    line-height: 1.5;
    flex: 1;
    font-size: 13px;
}

.avia-service-info p {
    margin: 0 0 10px;
}

.avia-service-button {
    padding: 0 16px 16px;
    margin-top: auto;
}

.avia-service-button a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    background: #ed1b2f;
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
}

.avia-service-button a:hover {
    background: #c8102e;
    color: #fff !important;
}

/* Tablette */
@media (max-width: 900px) {
    .vapservicescont {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Téléphone */
@media (max-width: 650px) {
    .vapservicescont {
        grid-template-columns: 1fr;
    }

    .vapserimage {
        height: 230px;
    }
}
.lavage-tarifs-rangueil {
    text-align: center;
    margin: 30px auto;
}

.lavage-tarifs-rangueil h3 {
    text-align: center;
    margin-bottom: 20px;
}

.lavage-tarifs-photo {
    max-width: 750px;
    margin: 0 auto;
}

.lavage-tarifs-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}