.cms-widget-content h2 {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 2rem;
}

.cms-widget-content a {
    font-weight: bold;
    transition-duration: 300ms;
    color: rgb(2 96 231)
}

.text-turquoise {
    color: #01AFAF;
}

.bg-promo {
    background-color: #DB5B18;
}

.hover-text-promo:hover {
    color: #DB5B18;
}

.promo-legales p {
    margin-bottom: 20px;
}

.h170px {
    height: 170px;
}

.slider-width {
    height: 400px;
}

.no-desktop {
    display: none;
}

@media (min-width: 1020px) {
    .mt-img-desktop {
        margin-top: 90px;
    }

    #banner-promo {
        margin-top: 11px;
    }
}

@media (max-width: 1030px) {
    .slider-width {
        /*width: inherit;*/
    }

    .no-mobile{
        display: none;
    }

    .no-desktop {
        display: inherit;
    }

    .container-cms{
        margin-left: 0;
        margin-right: 0;
    }
}

.shortcode-youtube-frame {
    margin: 20px 0;
}


.no-dash ul {
    list-style-type: '';
}


/* shortcode 10 */
@keyframes opacity {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.animate-opacity {
    animation-name: opacity;
    animation-duration: 0.3s;
    animation-iteration-count: 1;
}
/* end shortcode 10 */

.reset-a-style {
    font-weight: unset !important;
    transition-duration: unset !important;
    color: unset !important;
}

.reset-a-style.font-semibold {
    font-weight: 600 !important;
}

.h-\[555px\] {
    height: 555px;
}

.video-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #7c7c7c;
    border-radius: 17px;
    height: 450px;
    width: 264px;
    overflow: hidden;
}

.video-frame {
    height: 450px;
    background-repeat: no-repeat;background-size: cover;
    background-position: center center;
}

.vc-title {
    font-size: 35px;
}

.vc-play-btn {
    transition: all .1s;
    cursor: pointer;
}

.vc-play-btn:hover {
    transform: scale(1.1);
}

a.vc-cta {
    transition: all .1s;
    color: black;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0);
    font-size: 16px;
}

a.vc-cta:hover {
    color: white;
    background-color: #000;
    border: 1px solid black;
}

.h-385 {
    height: 385px;
}

.min-h-44px {
    min-height: 44px;
}

.word-break {
    word-break: break-word;
}

h3.wp-block-heading {
    font-size: 28px;
}

h4.wp-block-heading {
    font-size: 24px;
}

.ckeditor-content p, .ckeditor-content img {
    margin-bottom: 1rem;
}

.ckeditor-content img {
    text-align: center;
}

.ckeditor-content h2, .ckeditor-content h3, .ckeditor-content h4 {
    font-weight: bold;
}

.ckeditor-content h2 {
    font-size: 2.5rem;
}

.ckeditor-content h3 {
    font-size: 2rem;
}

.ckeditor-content h4 {
    font-size: 1.5rem;
}

.img-partner {
    max-height: 221px;
    width: auto;
    height: auto;
}

/* ── TopAffaire : affichage prix (variante C) ── */
.price-ta-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.price-ta-old {
    font-size: 13px;
    font-weight: 500;
    color: #aaa;
    text-decoration: line-through;
    text-decoration-color: #cc0010;
    text-decoration-thickness: 2px;
}
.price-ta-badge {
    background: linear-gradient(90deg, #cc0010, #ff4500);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}
.price-ta-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.price-ta-new {
    font-size: 22px;
    font-weight: 700;
    color: #cc0010;
}
.price-ta-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.price-ta-icon {
    font-size: 14px;
    color: #FE8D00;
    cursor: pointer;
}
.price-ta-tooltip-box {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a2e5a;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: normal;
    width: 150px;
    z-index: 50;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    line-height: 1.4;
    text-align: center;
}
.price-ta-tooltip-box::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1a2e5a;
}
.price-ta-tooltip:hover .price-ta-tooltip-box {
    display: block;
}
.price-ta-new {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}

/* ── TopAffaire : popup prix marché ── */
@keyframes popup-ta-in {
    from { transform: scale(0.88) translateY(12px); opacity: 0; }
    to   { transform: scale(1) translateY(0); opacity: 1; }
}
.popup-ta-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 20, 50, 0.45);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-ta-box {
    background: #fff;
    border-radius: 16px;
    padding: 24px 24px 20px;
    max-width: 340px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: popup-ta-in 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.popup-ta-close {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 18px;
    color: #bbb;
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    line-height: 1;
}
.popup-ta-close:hover { color: #555; }
.popup-ta-icon-wrap {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #fff0e8, #ffe0c0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}
.popup-ta-title {
    font-weight: 800;
    font-size: 13px;
    color: #1a2e5a;
    margin-bottom: 8px;
    line-height: 1.3;
}
.popup-ta-msg {
    font-size: 12.5px;
    font-weight: 500;
    color: #333;
    line-height: 1.55;
    margin-bottom: 16px;
}
.popup-ta-msg strong { color: #cc0010; }
.popup-ta-prices {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fb;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 16px;
}
.popup-ta-price-old {
    font-size: 13px;
    font-weight: 600;
    color: #bbb;
    text-decoration: line-through;
    text-decoration-color: #cc0010;
}
.popup-ta-arrow { font-size: 14px; color: #ccc; }
.popup-ta-price-new {
    font-size: 18px;
    font-weight: 800;
    color: #cc0010;
}
.popup-ta-saving {
    font-size: 11px;
    font-weight: 700;
    color: #cc0010;
    background: #fff0f0;
    border: 1px solid #ffd0d0;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: auto;
}
.popup-ta-cta {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #cc0010, #ff4500);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.3px;
    font-family: inherit;
}
.popup-ta-cta:hover { opacity: 0.9; }