/* Wrapper */
.lr-landing-title-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
    animation: lrFadeUp 0.55s ease-out 1;
}

/* RTL */
html[dir="rtl"] .lr-landing-title-wrapper {
    text-align: right;
}

/* Badge */
.lr-title-badge {
    display: inline-block;
    background: rgba(58,87,232,0.10);
    color: #3A57E8;
    padding: 6px 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
    backdrop-filter: blur(2px);
    animation: lrBadgePop 0.6s ease-out 1;
}

/* Titre */
.lr-landing-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.28;
    color: #1b1c1d;
    animation: lrTextReveal 0.65s ease-out 1;
    max-width: 700px;
}

/* RTL Titre */
html[dir="rtl"] .lr-landing-title {
    direction: rtl;
}

/* Animations */
@keyframes lrFadeUp {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes lrBadgePop {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes lrTextReveal {
    0% { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Mobile */
@media (max-width: 576px) {
    .lr-landing-title {
        font-size: 1.45rem;
        line-height: 1.35;
    }
}

/* Price box RTL tweaks */
html[dir="rtl"] .price-box {
    text-align: right;
}

html[dir="rtl"] .price-box .discount-badge {
    padding: 4px 10px;
    font-size: .85rem;
}

html[dir="rtl"] .price-box .price-now {
    display: flex;
    flex-direction: row-reverse;
    gap: 6px;
}

html[dir="rtl"] .price-box ul li {
    direction: rtl;
    text-align: right;
}

/* --- Topbar FR (landing EUR classic) --- */
.topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
    font-size: clamp(.9rem, 2.2vw, 1rem);
    font-weight: 600;
    color: #0f172a;
}
.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    line-height: 1.35;
}
.topbar__sep {
    opacity: .5;
}
.topbar__icon--fr {
    display: inline-block;
    width: 16px;
    height: 11px;
    vertical-align: -1px;
    margin-right: .35rem;
}
.topbar__icon--fr img,
.topbar__icon--fr svg {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 575.98px) {
    .topbar {
        gap: .35rem;
        text-align: center;
    }
}
