/* ==========================================================================
   ML VOYAGES - BARTELEMY STYLE SHEET
   Chemin : /wp-content/themes/mlvoyages/css/mlv-bartelemy.css
   Auteur : Christophe Delire
   Dernière mise à jour : 2025‑11‑17
   Description : Styles pour header Bartelémy, Gravity Forms, affichage des voyages, spectacles, navigation & réservation
   ========================================================================== */

/* Désactive complètement ce fichier dans l’admin WP */
body.wp-admin #mlv_brochure_email_block *,
body.wp-admin .mlv_actions_row *,
body.wp-admin .mlv_btn_action,
body.wp-admin .mlv_btn_pdf,
body.wp-admin .mlv_btn_catalogue,
body.wp-admin .mlv_btn_envoyer,
body.wp-admin .rtwpdg_pdf_button {
    all: unset !important;
}

/* Neutralise les styles globaux en admin */
body.wp-admin * {
    box-shadow: none !important;
}

/* ==========================================================================
   1. HEADER – BARTELEMY
   ========================================================================== */
.header-bartelemy {
    background: linear-gradient(135deg, #034a73 0%, #026ca3 100%);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #ffffff;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Visiteurs : masquer les items du menu mais garder le header */
body.mlv-is-visitor #top-menu-nav,
body.mlv-is-visitor #et-top-navigation {
    visibility: hidden !important;
}

/* Garder la hauteur du header */
body.mlv-is-visitor #main-header {
    opacity: 1 !important;
    pointer-events: none;
}

.et_builder_inner_content .et_pb_section.header-bartelemy {
    padding: 1em 0;
    color: #ffffff;
}

.header-bartelemy .et_pb_image img {
    max-height: 60px;
    width: auto;
}

.header-bartelemy .et_pb_menu {
    background: transparent !important;
    box-shadow: none !important;
}

.header-bartelemy .et_pb_menu .et_pb_menu__wrap {
    justify-content: flex-end;
}

.header-bartelemy .et_pb_menu ul li a {
    color: #ffffff !important;
    font-weight: 600;
    padding: 0.75em 1em;
    transition: color 0.3s ease;
}

.header-bartelemy .et_pb_menu ul li a:hover {
    color: #ffe600 !important;
}

.header-bartelemy .et_pb_menu ul.sub-menu {
    background-color: #1c5b9c;
}

.header-bartelemy .et_pb_menu ul.sub-menu li a {
    color: #ffffff !important;
}

.header-bartelemy .et_pb_menu ul.sub-menu li a:hover {
    background-color: #ffe600;
    color: #0d3d6a !important;
}

@media (max-width: 980px) {
    .header-bartelemy .et_pb_menu {
        text-align: center;
    }

    .header-bartelemy .et_pb_menu .et_pb_menu__wrap {
        flex-direction: column;
    }

    .header-bartelemy .et_pb_menu ul li {
        display: block;
        width: 100%;
    }

    .header-bartelemy .et_pb_menu ul li a {
        padding: 1em;
    }
}

/* ==========================================================================
   2. GRAVITY FORM #3
   ========================================================================== */
#gform_wrapper_3 {
    font-family: 'Segoe UI', sans-serif;
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
    max-width: 800px;
    margin: 2rem auto;
}

#gform_wrapper_3 h3.gsection_title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 0.25rem;
    color: #003f63;
}

.gform_heading p.gform_required_legend {
    font-style: italic;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.gfield_label {
    font-weight: bold;
    margin-bottom: 0.3rem;
    display: block;
    color: #003f63;
}

.gfield_required_asterisk {
    color: #e63946;
}

.ginput_container input,
.ginput_container select,
.ginput_container textarea {
    width: 100%;
    padding: 0.6rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    background: #fafafa;
    transition: border 0.3s;
}

.ginput_container input:focus,
.ginput_container select:focus,
.ginput_container textarea:focus {
    border-color: #0073aa;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.2);
}

.gform_footer {
    text-align: right;
    margin-top: 2rem;
}

.gform_button {
    background-color: #0073aa;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.gform_button:hover {
    background-color: #005f88;
}

.gfield_radio,
.gfield_checkbox {
    margin-top: 0.5rem;
    display: grid;
    gap: 0.3rem;
}

.gfield_description,
.gfield_instruction {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.chosen-container-single .chosen-single {
    border-radius: 0.5rem !important;
    padding: 0.5rem 0.75rem !important;
    background: #fafafa !important;
    font-size: 1rem !important;
    border: 1px solid #ccc !important;
}

.chosen-container .chosen-results {
    font-size: 1rem !important;
}

.ginput_recaptcha {
    margin-top: 1rem;
}

/* ==========================================================================
   3. BLOC VOYAGE – mlv_box_grand
   ========================================================================== */
.mlv_box_grand {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 1.5rem;
    background: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mlv_box_grand .mlv_title {
    font-size: 1.4rem;
    font-weight: bold;
}

.mlv_box_grand .mlv_top_grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media(min-width: 600px) {
    .mlv_box_grand .mlv_top_grid {
        flex-direction: row;
    }
}

.mlv_box_grand .mlv_img_col img {
    border-radius: 8px;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.mlv_box_grand .mlv_right_col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
}

.mlv_box_grand .mlv_right_col .mlv_dates,
.mlv_box_grand .mlv_right_col .mlv_prix_min {
    font-size: 0.95rem;
    color: #444;
}

.mlv_box_grand .mlv_prix_min {
    font-weight: bold;
    color: green;
    font-size: 1.1rem;
}

.mlv_box_grand .mlv_right_col .mlv_resa_btn {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    max-width: max-content;
}

.mlv_box_grand .mlv_bottom {
    margin-top: 1rem;
    position: relative;
}

.mlv_box_grand .mlv_resume {
    font-size: 0.95rem;
    color: #222;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mlv_box_grand .mlv_fiche_link a {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    position: absolute;
    right: 0;
    bottom: 0;
}

.mlv_box_grand .mlv_fiche_link a:hover {
    background-color: #034a73;
}

.mlv_dispo {
    font-weight: bold;
    margin-top: 0.5rem;
}

.mlv_dispo.green { color: green; }
.mlv_dispo.orange { color: #e67e00; }
.mlv_dispo.red { color: red; }

/* ==========================================================================
   4. BLOC VOYAGE – grand_bart / bart_card
   ========================================================================== */
.bart_card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
    max-width: 400px;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
}

.bart_card img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #ddd;
}

.bart_content {
    padding: 1.2rem;
}

.bart_title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 0.3rem;
}

.bart_meta_row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.4rem;
}

.bart_location,
.bart_duration {
    font-size: 0.95rem;
    color: #777;
}

.bart_tags {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bart_tag {
    background: #f0f8f5;
    color: #0c8053;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
}

.bart_tag.orange {
    background: #fff7e0;
    color: #d48a00;
}

.bart_tag.red {
    background: #ffe5e5;
    color: #c70000;
}

.bart_price_row {
    display: flex;
    justify-content: space‑between;
    align‑items: center;
    margin‑top: 0.6rem;
}

.bart_price {
    font‑size: 0.85rem;
    color: #666;
}

.bart_price strong {
    display: block;
    font‑size: 1.4rem;
    color: #000;
}

.bart_actions {
    display: flex;
    justify‑content: space‑between;
    margin‑top: 1.2rem;
    flex‑wrap: wrap;
    gap: 0.5rem;
}

.bart_btn {
    padding: 0.5rem 1rem;
    border‑radius: 8px;
    text‑decoration: none;
    font‑weight: bold;
    font‑size: 0.9rem;
    display: inline‑block;
    transition: background 0.3s;
}

.bart_btn_details {
    background: #ffe083;
    color: #333;
}

.bart_btn_details:hover {
    background: #fcd564;
}

.bart_btn_resa {
    background: #0066cc;
    color: #fff;
}

.bart_btn_resa:hover {
    background: #004a99;
}

.bart_prices_toggle {
    cursor: pointer;
    margin‑top: 0.5rem;
    font‑size: 0.8rem;
    color: #0066cc;
    text‑decoration: underline;
}

.bart_prices_table {
    display: none;
    font‑size: 0.85rem;
    margin‑top: 0.5rem;
}

.bart_prices_table table {
    width: 100%;
    border‑collapse: collapse;
}

.bart_prices_table th,
.bart_prices_table td {
    padding: 0.4rem 0.6rem;
    border‑bottom: 1px solid #ccc;
    text‑align: left;
}

.bart_prices_table td:last‑child {
    text‑align: right;
}

/* ==========================================================================
   5. BLOC SPECTACLE – mlv‑box‑spectacle
   ========================================================================== */
.mlv-box-spectacle {
    border‑radius: 12px;
    overflow: hidden;
    box‑shadow: 0 4px 12px rgba(0,0,0,0.08);
    font‑family: 'Segoe UI', sans‑serif;
    background: #ffffff;
    margin‑2rem auto;
    max‑width: 500px;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box‑shadow 0.3s ease;
}

.mlv-box-spectacle:hover {
    transform: translateY(-5px);
    box‑shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.mlv-box-spectacle-header {
    background‑size: cover;
    background‑position: center;
    padding: 3rem 1.5rem;
    color: white;
    position: relative;
    display: flex;
    align‑items: flex‑end;
    height: 180px;
}

.mlv-box-spectacle-title {
    font‑size: 1.3rem;
    font‑weight: bold;
    text‑shadow: 1px 1px 4px rgba(0,0,0,0.6);
    background: rgba(0,0,0,0.4);
    padding: 0.3rem 0.6rem;
    border‑radius: 6px;
}

.mlv-box-spectacle-body {
    padding: 1.5rem;
    color: #333;
    font‑size: 0.95rem;
}

.mlv-box-spectacle-body p {
    margin: 0.5rem 0;
}

.mlv-box-spectacle-body ul {
    padding‑left: 1.2rem;
    margin‑0.5rem 0 1rem;
}

.mlv-box-spectacle-body li {
    list‑style: disc;
}

.mlv-btn {
    display: inline‑block;
    background‑color: #0066cc;
    color: #fff;
    padding: 0.5rem 1rem;
    border‑radius: 6px;
    text‑decoration: none;
    font‑weight: bold;
    transition: background 0.3s ease;
}

.mlv-btn:hover {
    background‑color: #004a99;
}

/* Couleurs de disponibilité */
.dispo‑green { border‑color: #28a745; }
.dispo‑red   { border‑color: #dc3545; }
.dispo‑orange{ border‑color: #fd7e14; }
.dispo‑black { border‑color: #343a40; }

/* Responsive */
@media(max‑width: 600px) {
    .mlv‑box‑spectacle {
        margin: 1rem;
    }

    .mlv‑box‑spectacle-header {
        height: 140px;
        padding: 2rem 1rem;
    }

    .mlv‑box‑spectacle‑body {
        padding: 1rem;
    }

    .mlv‑box‑spectacle‑title {
        font‑size: 1.1rem;
    }
}
.bart_tag.dispo‑green { background‑color: #e0f7ea; color: #1c7c4d; }
.bart_tag.dispo‑red   { background‑color: #ffe5e5; color: #c70000; }
.bart_tag.dispo‑black { background‑color: #dee2e6; color: #343a40; }
.mlv‑dispo‑label {
    margin‑top: 1rem;
    font‑weight: bold;
    color: #333;
    font‑size: 0.95rem;
}
.mlv‑box‑spectacle .badge‑dispo {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 60px;
    height: 60px;
    background‑size: contain;
    background‑repeat: no‑repeat;
    z‑index: 5;
}
.badge‑dispo {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background‑size: contain;
    background‑repeat: no‑repeat;
    z‑index: 2;
}

/* ==========================================================================
   6. BLOC NAVIGATION – mlv‑navigation‑voyages
   ========================================================================== */
.bart-nav-container {
    display: flex;
    flex‑wrap: wrap;
    justify‑content: space‑around;
    gap: 2rem;
    padding: 2rem;
    background: linear‑gradient(120deg, #04578A, #0e6da8);
}

.bart-nav-block {
    background: #fff;
    border‑radius: 12px;
    padding: 1.5rem 2rem;
    box‑shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex: 1 1 300px;
    max‑width: 380px;
    text‑align: center;
    transition: transform 0.3s ease;
}

.bart-nav-block:hover {
    transform: translateY(-5px);
}

.bart-nav-block h3 {
    font‑family: "Poppins", sans‑serif;
    font‑size: 1.5rem;
    margin‑bottom: 1rem;
    color: #0d3d6a;
}

.bart-nav-submenu {
    display: flex;
    justify‑content: center;
    gap: 0.75rem;
    flex‑wrap: wrap;
    margin‑top: 1rem;
}

.bart-nav-submenu a {
    background: #eaf2fa;
    color: #0d3d6a;
    padding: 0.5rem 1rem;
    border‑radius: 20px;
    text‑decoration: none;
    font‑size: 0.95rem;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.bart-nav-submenu a:hover {
    background: #0d3d6a;
    color: #fff;
    border‑color: #fff;
}

@media (max‑width: 768px) {
    .bart-nav-container {
        flex‑direction: column;
        align‑items: center;
    }
}

/* ==========================================================================
   7. BLOC RÉSERVATION BART (mlv_resa_box)
   ========================================================================== */
.mlv_resa_box {
    border: 2px solid #0073aa;
    border‑radius: 1rem;
    overflow: hidden;
    font‑family: 'Segoe UI', sans‑serif;
    background: #ffffff;
    box‑shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.mlv_resa_box_header {
    height: 180px;
    overflow: hidden;
}

.mlv_resa_box_header_img {
    width: 100%;
    height: 100%;
    object‑fit: cover;
    display: block;
}

.mlv_resa_box_no_img {
    height: 180px;
    background: #eee;
    text‑align: center;
    line‑height: 180px;
    color: #999;
    font‑style: italic;
}

.mlv_resa_box_content {
    padding: 1rem;
}

.mlv_resa_box_content h3 {
    margin: 0 0 0.5rem;
    font‑size: 1rem;
    color: #003f63;
}

.mlv_resa_box_content .mlv_date {
    font‑size: 0.9rem;
    margin‑bottom: 0.5rem;
}

.mlv_resa_box_content a {
    color: #0073aa;
    text‑decoration: none;
}

.mlv_resa_box_content a:hover {
    text‑decoration: underline;
}

.mlv_resa_box_content .etat {
    margin‑bottom: 0.5rem;
    font‑weight: bold;
}

.mlv_resa_box_content .etat.green { color: green; }
.mlv_resa_box_content .etat.orange { color: orange; }
.mlv_resa_box_content .etat.red { color: red; }

.mlv_resa_box_content .qr {
    text‑text‑align: center;
}

.mlv_resa_box_content .qr img {
    width: 90px;
    height: auto;
}

.mlv_resa_box_header_img_wrapper {
  height: 180px;
  overflow: hidden;
  display: flex;
  align‑items: center;
  justify‑content: center;
}

.mlv_resa_box_header_img {
  max‑height: 180px;
  width: auto;
  height: auto;
  object‑fit: contain;
}
/* ============================================================
   MLVoyages — Style Premium des confirmations Gravity Forms
   Appliqué à tous les formulaires
   ============================================================ */

.gform_confirmation_message {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 30px;
    margin: 25px 0;
    font-size: 18px;
    line-height: 1.55;
    color: #1e2a3a;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);

    /* Animation */
    opacity: 0;
    transform: translateY(12px);
    animation: mlvFadeSlideIn 0.5s ease-out forwards;
    border-left: 6px solid #2ea3f2; /* Bleu ML Voyages */
}

/* Version extra : si tu veux cibler UNIQUEMENT le formulaire 3 */
#gform_confirmation_message_3 {
    /* Ajoute des effets supplémentaires si souhaité */
}

/* Animation */
@keyframes mlvFadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------------------------------------------------
   Mobile : réduire légèrement le padding pour une meilleure lisibilité
   ------------------------------------------------------------ */
@media (max-width: 600px) {
    .gform_confirmation_message {
        padding: 22px 20px;
        font-size: 16px;
    }
}
/* ===========================================
   BOUTONS MLV (catalogue / PDF / email)
   Scope : #mlv_brochure_email_block
=========================================== */

#mlv_brochure_email_block .mlv_action_row {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    margin:30px 0;
}

/* Base commune aux trois boutons */
#mlv_brochure_email_block .mlv_btn_action,
#mlv_brochure_email_block .mlv_btn_catalogue,
#mlv_brochure_email_block .mlv_btn_pdf_override,
#mlv_brochure_email_block .mlv_btn_envoyer,
#mlv_brochure_email_block .rtwpdg_pdf_button {
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:16px 42px !important;
    border-radius:22px !important;
    font-weight:600 !important;
    font-size:22px !important;
    text-decoration:none !important;
    border:3px solid #1e2f97 !important;
    cursor:pointer;
    transition:all .25s ease;
    line-height:1 !important;
}

/* Catalogue – repos */
#mlv_brochure_email_block .mlv_btn_catalogue {
    background:#dbe7ff;
    color:#1e2f97 !important;
}

/* Catalogue – hover */
#mlv_brochure_email_block .mlv_btn_catalogue:hover {
    background:#1e2f97;
    color:#ffffff !important;
}

/* PDF – repos */
#mlv_brochure_email_block .mlv_btn_pdf_override,
#mlv_brochure_email_block .rtwpdg_pdf_button {
    background:#ffffff !important;
    color:#1e2f97 !important;
}

/* PDF – hover */
#mlv_brochure_email_block .mlv_btn_pdf_override:hover,
#mlv_brochure_email_block .rtwpdg_pdf_button:hover {
    background:#3156e6 !important;
    color:#ffffff !important;
}

/* Envoyer – repos */
#mlv_brochure_email_block .mlv_btn_envoyer {
    background:#1e2f97;
    color:#ffffff !important;
}

/* Envoyer – hover */
#mlv_brochure_email_block .mlv_btn_envoyer:hover {
    background:#ffffff;
    color:#1e2f97 !important;
}

/* Plugin spinner fix (optionnel) */
#mlv_brochure_email_block .rtwpdg_pdf_spinner {
    margin-left:10px;
}

.mlv_actions_row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.mlv_btn_action,
.mlv_btn_pdf {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    flex: 1 1 calc(25% - 8px);
    max-width: calc(25% - 8px);

    height: 48px;
    padding: 4px;

    border: 1.8px solid #1e56d2;
    border-radius: 10px;
    background: #ffffff;

    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 11px;
    line-height: 1;
    color: #1e56d2;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .3px;
}

.mlv_btn_action:hover,
.mlv_btn_pdf:hover {
    background: #1e56d2;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(30,86,210,.25);
}
/* Harmonisation du bouton PDF dans les boîtes voyages */
.mlv_btn_pdf,
.rtwpdg_pdf_button.mlv_btn_pdf {
    background: #ffffff !important;
    border: 1px solid #1e2f97 !important;
    color: #1e2f97 !important;

    padding: 10px 28px !important;
    border-radius: 14px !important;

    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    line-height: 1 !important;
    white-space: nowrap !important;

    height: 48px !important;     /* même hauteur que les autres */
    box-shadow: none !important; /* pas d’effet */
}

/* Hover discret, identique aux autres */
.mlv_btn_pdf:hover,
.rtwpdg_pdf_button.mlv_btn_pdf:hover {
    background: #1e2f97 !important;
    color: #ffffff !important;
}

/* Taille de l’icône PDF */
.mlv_btn_pdf img,
.rtwpdg_pdf_button.mlv_btn_pdf img {
    width: 18px !important;
    height: 18px !important;
    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* ===== TITRES HEADER MLV ===== */

/* ===== TITRE HEADER CENTRÉ ===== */
.et_pb_text_0_tb_header,
.et_pb_text_0_tb_header .et_pb_text_inner {
    text-align: center !important;
}

.et_pb_text_0_tb_header .et_pb_text_inner {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.2;

    margin: 0 auto !important;
    padding: 0 !important;

    color: #003366;
    display: block;
}
/* Variante légère si fond clair derrière */
.et_pb_text_0_tb_header.et_pb_bg_layout_light .et_pb_text_inner {
    color: #00284f;
}
.et_pb_text_0_tb_header .et_pb_text_inner {
    text-shadow: 0 1px 2px rgba(0,0,0,0.10);
}
/* Réduction espace entre titre principal et le bloc date */
.single-deplacements .et_pb_text_0_tb_header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.single-deplacements .et_pb_section_0 .et_pb_row_0 {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.single-deplacements .et_pb_text_0 h3 {
    margin-top: 0 !important;
}

/* coupe l’énorme marge par défaut de Divi entre sections */
.single-deplacements .et_pb_section_0_tb_body,
.single-deplacements .et_pb_section_0 {
    padding-top: 10px !important;
    margin-top: 0 !important;
}
.rtwpdg_pdf_spinner {
    width:22px !important;
    height:22px !important;
    vertical-align:middle;
}.mlv-nl-compact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mlv-nl-item {
    border: 1px solid #2b6cb0;
    padding: 16px;
    background: #fff;
    font-family: "Montserrat", Arial, sans-serif;
}

.mlv-nl-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 4px;
    color: #1a202c;
}

.mlv-nl-date {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 4px;
}

.mlv-nl-price {
    font-size: 14px;
    color: #2b6cb0;
    margin-bottom: 10px;
}

.mlv-nl-more {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #2b6cb0;
    text-decoration: none;
    color: #2b6cb0;
    font-size: 13px;
}

.mlv-nl-more:hover {
    background:#2b6cb0;
    color:#fff;
}
.mlv-nl-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mlv-nl-line {
    display: grid;
    grid-template-columns: 120px 1fr 100px;
    gap: 18px;
    padding: 14px;
    background: #fff;
    border-radius: 8px;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.mlv-nl-thumb img {
    width: 120px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.mlv-nl-infos {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mlv-nl-date {
    font-size: 14px;
    font-weight: 600;
    color: #003366;
}

.mlv-nl-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.mlv-nl-price {
    font-size: 14px;
    color: #2b6cb0;
}

.mlv-nl-actions {
    display: flex;
    justify-content: flex-end;
}

.mlv-nl-btn {
    background: #e6f0ff;
    border: 1px solid #2b6cb0;
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 13px;
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.mlv-nl-btn:hover {
    background: #2b6cb0;
    color: #fff;
}/* ====== GRID MODE ====== */

.mlv-nl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.mlv-nl-grid-item {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    padding-bottom: 12px;
}

.mlv-nl-grid-thumb img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.mlv-nl-grid-infos {
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mlv-nl-grid-date {
    font-size: 13px;
    color: #003366;
    font-weight: 600;
}

.mlv-nl-grid-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.mlv-nl-grid-price {
    font-size: 14px;
    color: #2b6cb0;
}