/* ============================================
   CLUBANNUAIRE BOOST - CSS OPTIMISÉ v3.1
   ============================================ */

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

.general {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: visible !important;
}

/* ========== INTRO TEXT ========== */
.boost-intro-text {
    font-size: 14px;
    text-align: left;
    margin: 5px 0 15px 0;
    line-height: 1.6;
}

/* ========== PROMO BANNER ========== */
.promo-banner {
    background: #f87171;
    color: #ffffff;
    padding: 10px 15px;
    border-left: 4px solid #b91c1c;
    font-size: 13px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
}

@keyframes blink-border {
    0%, 100% { border-left-color: #b91c1c; }
    50% { border-left-color: #000000; }
}

.blink-border-left {
    animation: blink-border 1s infinite;
}

/* ========== HOW GRID ========== */
.boost-how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0;
    padding-bottom: 0;
}

.boost-how-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 5px 8px 7px 5px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: border-color 0.2s;
}

.boost-how-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.boost-how-icon-red { background: #fef2f2; color: #b91c1c; }
.boost-how-icon-gray { background: #f3f4f6; color: #424242; padding-bottom: 3px; }

.boost-how-card-title {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin: 0 0 4px 0;
}

.boost-how-card-text {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.how-text-desktop { display: inline; }
.how-text-mobile { display: none; }

/* ========== SITES HEADER ========== */
.boost-sites-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    margin-bottom: 12px;
    gap: 10px;
}

.boost-sites-title {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

/* ========== SITE CARDS ========== */
.boost-site {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 6px 5px 5px 5px;
    margin-bottom: 8px;
    transition: border-color 0.2s;
}

.boost-site:hover { border-color: #137dc5; }
.boost-site:nth-child(odd) { background-color: #f7f9fc; }
.boost-site:nth-child(even) { background-color: #ffffff; }

.boost-site-header {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.boost-site-line1 {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.boost-site-line2 {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.boost-site-line2-right {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
}

.boost-site-line2 .boost-badges {
    margin-left: 0;
    flex-shrink: 0;
}

.boost-badges { cursor: pointer; }

/* ========== CHECKBOX ========== */
.boost-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin-left: 0;
    accent-color: #137dc5;
}

.checkbox-wrapper {
    position: relative;
    display: inline-block;
}

.boost-checkbox-optimised {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    flex-shrink: 0;
    cursor: default;
    accent-color: #28a745 !important;
    opacity: 1 !important;
    filter: none !important;
    -webkit-appearance: checkbox !important;
}

/* ========== URL ========== */
.boost-site-url {
    font-size: 14px;
    color: #0066cc;
    flex: 1;
    min-width: 0;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.boost-site-url a { color: inherit; text-decoration: none; }
.boost-site-url a:hover { text-decoration: underline; }

/* ========== PRICE ========== */
.boost-price {
    font-size: 13px;
    font-weight: normal;
    color: #4caf50;
    min-width: 80px;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
}

.price-main {
    color: #4caf50;
    font-weight: normal;
}

/* ========== AUCUNE ACTION ========== */
.boost-aucune-action {
    font-size: 12px;
    color: #666666;
    font-weight: bold;
}

/* ========== TOGGLE BUTTON ========== */
.boost-btn-toggle {
    background: #137dc5;
    color: white;
    border: none;
    padding: 5px 0;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 70px;
}
.boost-btn-toggle:hover { background: #0d6ab0; }
.boost-btn-toggle.hidden { opacity: 0; pointer-events: none; }
.toggle-mobile { display: none; }
.toggle-desktop { display: inline; }

/* ========== DETAILS PANEL ========== */
.boost-site-details {
    padding: 0;
    background: inherit;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.boost-site-details.open { max-height: 2000px; opacity: 1; }

/* ========== DETAIL SECTIONS ========== */
.boost-amelio {
    padding: 8px 10px 2px 10px;
    margin-bottom: 8px;
    border-radius: 8px !important;
}

.boost-section-red { border-left: 2px solid #b91c1c; background-color: #fef2f2; }
.boost-section-gray { border-left: 2px solid #424242; background-color: #f5f5f5; }
.boost-section-blue { border-left: 2px solid #137DC5; background-color: #f4faff; }

.boost-detail-section { margin-bottom: 8px; }

.boost-detail-section-title {
    font-size: 13px;
    font-weight: normal;
    margin-bottom: 8px;
    padding-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.boost-section-title-red { color: #b91c1c; }
.boost-section-title-gray { color: #424242; }
.boost-section-title-blue { color: #137DC5; }

/* ========== 2-COLUMN LAYOUT ========== */
.boost-detail-columns {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
}

.boost-detail-col { flex: 1; min-width: 0; }

.boost-detail-col-sep-red,
.boost-detail-col-sep-gray,
.boost-detail-col-sep-blue {
    padding-left: 16px;
    position: relative;
}

.boost-detail-col-sep-red::before,
.boost-detail-col-sep-gray::before,
.boost-detail-col-sep-blue::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 12px;
    width: 1px;
}

.boost-detail-col-sep-red::before { background-color: #b91c1c; }
.boost-detail-col-sep-gray::before { background-color: #424242; }
.boost-detail-col-sep-blue::before { background-color: #137DC5; }

/* ========== DETAIL ROWS ========== */
.boost-detail-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 7px;
}

.boost-detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 0;
}

.boost-annuaire-tag-red,
.boost-annuaire-tag-gray,
.boost-annuaire-tag-lightblue {
    display: inline-block;
    padding: 3px 8px;
    margin: 1px 0;
    border-radius: 4px;
    font-size: 11px;
    font-weight: normal;
    min-width: 159px;
    text-align: center;
    border: none;
}

.boost-annuaire-tag-red { background: #f8d7da; color: #721c24; }
.boost-annuaire-tag-gray { background: #e0e0e0; color: #424242; }
.boost-annuaire-tag-lightblue { background: #d1ecf1; color: #137DC5; }

a.boost-annuaire-link,
a.boost-annuaire-link:visited,
a.boost-annuaire-link:hover,
a.boost-annuaire-link:active {
    text-decoration: none !important;
    cursor: pointer;
}

a.boost-annuaire-tag-red, a.boost-annuaire-tag-red:visited,
a.boost-annuaire-tag-red:hover, a.boost-annuaire-tag-red:active { color: #721c24 !important; }
a.boost-annuaire-tag-gray, a.boost-annuaire-tag-gray:visited,
a.boost-annuaire-tag-gray:hover, a.boost-annuaire-tag-gray:active { color: #424242 !important; }
a.boost-annuaire-tag-lightblue, a.boost-annuaire-tag-lightblue:visited,
a.boost-annuaire-tag-lightblue:hover, a.boost-annuaire-tag-lightblue:active { color: #137DC5 !important; }

@media (min-width: 1001px) {
    a.boost-annuaire-link { cursor: pointer; transition: background 0.2s ease; }
    a.boost-annuaire-tag-red:hover { background: #f1aeb5; }
    a.boost-annuaire-tag-gray:hover { background: #c9c9c9; }
    a.boost-annuaire-tag-lightblue:hover { background: #b6dfe6; }
}

.boost-detail-position {
    font-size: 12px;
    color: #555;
    min-width: 100px;
}

.boost-pos-red { color: #b91c1c; }

.boost-detail-action {
    font-size: 11px;
    font-weight: normal;
    text-decoration: none;
    padding: 3px 10px;
    border-radius: 4px;
    white-space: nowrap;
    margin-left: auto;
    transition: background 0.2s;
}

.boost-detail-action-gray { color: #424242; background: #e0e0e0; }
.boost-detail-action-gray:hover { background: #d1d5db; text-decoration: none; }
.boost-detail-action-blue { color: #137DC5; background: #d1ecf1; }
.boost-detail-action-blue:hover { background: #b8dce3; text-decoration: none; }
.boost-detail-action-red { color: #b91c1c; background: #fde8e8; font-weight: normal; position: relative; }
.boost-detail-action-red:hover { background: #f5c6c6; text-decoration: none; }

.boost-detail-col-sep-red .boost-detail-action,
.boost-detail-col-sep-gray .boost-detail-action,
.boost-detail-col-sep-blue .boost-detail-action {
    margin-right: -2px;
}

/* ========== COLLAPSIBLE SECTIONS (shared transitions) ========== */
.boost-detail-optimise-content,
.boost-desktop-section-content,
.boost-mobile-section-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.boost-detail-optimise-content.open,
.boost-desktop-section-content.open,
.boost-mobile-section-content.open {
    max-height: 2000px;
    opacity: 1;
}

.boost-detail-optimise-wrapper .boost-detail-section-title,
.boost-desktop-section .boost-detail-section-title {
    margin-bottom: 0;
    padding-bottom: 0;
}

.boost-detail-optimise-content .boost-detail-columns,
.boost-desktop-section-content .boost-detail-columns {
    margin-top: 1px;
}

/* ========== MOBILE DETAILS ========== */
.boost-mobile-details { display: none; }
.boost-mobile-section { margin-bottom: 8px; }

.boost-mobile-toggle-icon {
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    font-size: 11px;
}

/* ========== OPTIMISED HEADER ========== */
.optimised-header {
    background: #f4faff;
    border: 1px solid #137dc5;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 10px;
}

.optimised-header-text { color: #137dc5; font-size: 14px; }
.optimised-text-desktop { display: inline; }
.optimised-text-mobile { display: none; }

/* ========== SUBMIT BUTTON ========== */
.btn-valider-commande {
    width: 100%;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: bold;
    background-color: #137dc5;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    -webkit-appearance: none;
}
.btn-valider-commande:hover { background-color: #0d6ab0 !important; }

/* ========== FIXED BADGE ========== */
.fixed-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background-color: #137dc5;
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    font-family: 'Verdana', sans-serif;
    transition: all 0.2s ease;
    border: 2px solid #ffffff;
}
.fixed-badge:hover { background-color: #0d6ab0 !important; }

#badge-site-count {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.badge-total-price {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.badge-action {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
    background: #ffffff;
    color: #137dc5;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* ========== MODAL ========== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 100000;
    align-items: center;
    justify-content: center;
}

.modal-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.modal-titre {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    display: none !important;
}

.modal-texte {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-btn {
    color: white;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: normal;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    text-decoration: none;
    display: inline-block;
}

/* ========== LOADING OVERLAY ========== */
#loading-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.loader-popup {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #137dc5;
    text-align: center;
    max-width: 320px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

@keyframes clignoter {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.texte-clignotant {
    animation: clignoter 1s infinite;
    -webkit-animation: clignoter 1s infinite;
}

/* ========== ANNUAIRES LIST ========== */
.boost-annuaires-list {
    font-size: 14px;
    text-align: left;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.sites-title-desktop { display: inline; }
.sites-title-mobile { display: none; }

/* ========== INVERSE BTN ========== */
.boost-inverse-wrapper {
    flex-shrink: 0;
    margin-left: 10px;
}

.boost-inverse-btn {
    background-color: #e0e0e0;
    color: #888888;
    border: 1px solid #ccc;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    line-height: 1.2;
}
.boost-inverse-btn:hover { background-color: #137dc5; color: white; border-color: #0f5d91; }

.tarif-title { font-size: 14px !important; }
.tarif-list { font-size: 13px !important; }

/* ========== TOGGLE ICONS ========== */
.boost-detail-section-title [id^="toggle-optimise-icon-"],
.boost-detail-section-title [id^="toggle-absent-icon-"],
.boost-detail-section-title [id^="toggle-remonter-icon-"] {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    font-size: 13px !important;
    margin-right: -4px;
    margin-left: -3px;
    position: relative;
    top: -3px;
    padding: 4px;
    cursor: pointer;
}

/* ========== PRICE INFO TOOLTIP ========== */
.price-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    vertical-align: middle;
    margin-right: 3px;
    flex-shrink: 0;
    color: #bbbbbb;
}

.price-info-icon svg {
    width: 13px;
    height: 13px;
    vertical-align: middle;
    position: relative;
    top: 0px;
}

.price-info-icon:hover { color: #999999; }

.price-info-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 12px;
    color: #333;
    white-space: nowrap;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    line-height: 1.6;
    font-weight: normal;
    text-align: left;
    min-width: 220px;
}

.price-info-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 6px solid transparent;
    border-top-color: #ccc;
}

.price-info-tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    right: 21px;
    border: 5px solid transparent;
    border-top-color: #ffffff;
    z-index: 1;
}

.price-info-tooltip.visible { display: block; }
.price-info-tooltip .tooltip-line { display: block; margin-bottom: 2px; }
.price-info-tooltip .tooltip-old-price { text-decoration: line-through; color: #999; }
.price-info-tooltip .tooltip-promo { color: #b91c1c; font-weight: bold; }

.price-info-tooltip .tooltip-total,
.price-info-tooltip .tooltip-total-promo {
    font-weight: bold;
    border-top: 1px solid #eee;
    padding-top: 4px;
    margin-top: 4px;
}
.price-info-tooltip .tooltip-total { color: #4caf50; }
.price-info-tooltip .tooltip-total-promo { color: #b91c1c; }

/* ========== TOOLTIP PASTILLES ========== */
.pastille-tooltip {
    display: none;
    position: fixed;
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 12px;
    color: #333;
    white-space: normal;
    z-index: 100000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    line-height: 1.5;
    font-weight: normal;
    text-align: left;
    width: 184px;
}
.pastille-tooltip.visible { display: block; }

/* ========== ALL OPTIMISED ========== */
.boost-all-optimised h3 { font-size: 18px; }
.boost-all-optimised p { font-size: 14px; }

/* ========== DESKTOP ONLY ========== */
@media (min-width: 1001px) {
    .boost-site-url { max-width: none; }
    .boost-badges { flex: 0 0 auto; justify-content: flex-start; }
}

/* ========== MOBILE (<= 1000px) ========== */
@media (max-width: 1000px) {
    .general { width: 100%; }
    body { font-size: 13px !important; }

    .boost-intro-text {
        font-size: 12px !important;
        line-height: 1.4;
    }

    .boost-how-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .boost-how-card { padding: 6px 6px 6px 5px; }
    .boost-how-icon { width: 34px; height: 34px; font-size: 15px; }
    .boost-how-icon-gray { padding-bottom: 0 !important; }
    .boost-how-card-title { font-size: 12px; }
    .boost-how-card-text { font-size: 11px !important; }
    .how-text-desktop { display: none !important; }
    .how-text-mobile { display: inline !important; }

    .promo-banner { font-size: 11px !important; padding: 8px 10px; }

    #boost-menu-spacer { display: none !important; }
    #banniere-promo { margin-top: 5px !important; }
    .container_page_analyse { padding-top: 8px !important; }

    .boost-sites-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        margin-top: 25px !important;
        padding-top: 0;
    }
    .boost-sites-title {
        font-size: 12px;
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .boost-site { padding: 4px 3px; }
    .boost-site-header { gap: 1px; }
    .boost-site-line1 { gap: 5px; }
    .boost-site-line2 { gap: 4px; flex-wrap: wrap; }

    .boost-site-line2 .boost-badges { flex: 0 1 auto; min-width: 0; order: 1; }
    .boost-site-line2-right { gap: 4px; order: 2; }

    .boost-checkbox { width: 14px !important; height: 14px !important; }
    .boost-site-url { font-size: 12px !important; }

    .boost-summary-desktop { display: none !important; }
    .boost-summary-mobile { display: inline !important; }

    .boost-price { font-size: 11px !important; min-width: auto; }
    .price-info-icon { display: none !important; }
    .price-info-tooltip { font-size: 11px; padding: 8px 10px; min-width: 190px; right: -10px; white-space: normal; }

    .boost-btn-toggle { padding: 3px 0 !important; font-size: 11px !important; width: 42px !important; }
    .toggle-mobile { display: inline; }
    .toggle-desktop { display: none; }

    .boost-desktop-details { display: none !important; }
    .boost-mobile-details { display: block !important; }

    .boost-detail-col-sep-red,
    .boost-detail-col-sep-gray,
    .boost-detail-col-sep-blue { padding-left: 0 !important; }

    .boost-detail-col-sep-red::before,
    .boost-detail-col-sep-gray::before,
    .boost-detail-col-sep-blue::before { display: none !important; }

    .boost-detail-row { gap: 4px !important; flex-wrap: wrap; }

    .boost-annuaire-tag-red,
    .boost-annuaire-tag-gray,
    .boost-annuaire-tag-lightblue {
        min-width: 130px !important;
        font-size: 10px !important;
        padding: 2px 5px !important;
        border: none !important;
        font-weight: normal !important;
    }

    .boost-detail-position { font-size: 10px !important; min-width: 80px !important; }
    .boost-detail-action { font-size: 10px !important; padding: 2px 6px !important; }
    .boost-detail-action-gray:hover { background: #e0e0e0 !important; }
    .boost-detail-action-blue:hover { background: #d1ecf1 !important; }
    .boost-detail-action-red:hover { background: #fde8e8 !important; }

    .boost-detail-section-title { font-size: 11px !important; font-weight: normal !important; margin-bottom: 4px !important; padding-bottom: 2px !important; }
    .boost-mobile-toggle-icon { font-weight: normal !important; }
    .boost-amelio { padding: 4px 8px 1px 8px !important; margin-bottom: 4px !important; }
    .boost-detail-section { margin-bottom: 4px !important; }

    .boost-aucune-action { font-size: 11px !important; font-weight: normal !important; }

    .fixed-badge { top: 10px !important; right: 10px !important; padding: 6px 8px !important; min-width: 70px !important; border-radius: 8px !important; box-shadow: 0 3px 10px rgba(0,0,0,0.3) !important; }
    #badge-site-count { font-size: 11px !important; margin-bottom: 2px !important; line-height: 1.2; }
    .badge-total-price { font-size: 12px !important; }
    .badge-action { font-size: 9px !important; padding: 2px 4px !important; border-radius: 4px !important; }

    .optimised-header { padding: 8px 10px !important; }
    .optimised-header-text { font-size: 13px !important; }
    .optimised-text-desktop { display: none !important; }
    .optimised-text-mobile { display: inline !important; }

    .btn-valider-commande { font-size: 14px !important; padding: 12px 16px !important; }
    .tarif-title { font-size: 13px !important; }
    .tarif-list { font-size: 11px !important; }
    .tarif-block { padding: 8px !important; }

    .logo-desktop { display: none !important; }
    .logo-mobile { display: inline !important; }

    .boost-annuaires-list {
        font-size: 12px !important;
        line-height: 1.4;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
    }

    .sites-title-desktop { display: none !important; }
    .sites-title-mobile { display: inline !important; }

    .boost-inverse-wrapper { margin-left: auto; width: auto; }
    .boost-inverse-btn { padding: 2px 3px; font-size: 12px; border-radius: 3px; }
    .boost-inverse-btn:hover { background-color: #e0e0e0; color: #888888; border-color: #ccc; }

    .modal-titre { font-size: 15px !important; margin-bottom: 15px !important; }
    .modal-texte { font-size: 13px !important; margin-bottom: 20px !important; }
    .modal-btn { padding: 10px 20px !important; font-size: 13px !important; }
    .modal-box { padding: 20px !important; }

    .boost-all-optimised { padding: 12px 10px !important; margin: 10px 0 !important; }
    .boost-all-optimised h3 { font-size: 14px !important; }
    .boost-all-optimised p { font-size: 12px !important; }

    .contenu_tpl2 .how-text-mobile { font-size: 11px !important; }
}

/* Tablettes tactiles en paysage (largeur desktop mais écran tactile) */
@media (pointer: coarse) and (min-width: 1001px) {
    .boost-desktop-details { display: none !important; }
    .boost-mobile-details { display: block !important; }
    .toggle-mobile { display: inline; }
    .toggle-desktop { display: none; }
    .how-text-desktop { display: none !important; }
    .how-text-mobile { display: inline !important; }
    .boost-summary-desktop { display: none !important; }
    .boost-summary-mobile { display: inline !important; }
    .sites-title-desktop { display: none !important; }
    .sites-title-mobile { display: inline !important; }
    .optimised-text-desktop { display: none !important; }
    .optimised-text-mobile { display: inline !important; }
    .logo-desktop { display: none !important; }
    .logo-mobile { display: inline !important; }
    .price-info-icon { display: none !important; }
    .pastille-tooltip { display: none !important; }
}
