:root {
    --Vert-clair: #FAF7F0;
    --Vert-menthe: #FCF7E7;
    --titre-titre-landing: #2C2C2C;
    --lien-titres-landing: #486556;
    --background-addtocart-landing: #F7CD41;
    --background-addtocart-landing-hover: #2C1701;
    --text-addtocart-landing: #041718;
    --text-addtocart-landing-hover: #fff;
    --temoignage-background-container: #F3EFEB;
    --couleur-titres-temoignages: #2C1701;
    --faq-background-color-pastille: #FFFFFF;
    --faq-content-background-hover: #FFFFFF;
    --background-pastille-age: #62E7F7;
    --texte-pastille-age: #2C1701;
    --landing-primary-font: "Playfair Display";
    --swiper-pagination-color: #041718;

    /* Tokens internes (safe, préfixés --_) */
    --_radius-pill: 9999px;
    --_radius-card: 25px;
    --_shadow-card: 5px 5px 25px 0 rgba(33, 47, 64, 0.2);
    --_font-body: Inter, sans-serif;
    --_font-heading: var(--landing-primary-font), Montserrat, sans-serif;
    --_max-w: 1440px;
    --_max-w-wide: 1920px;
    --_brown: #865E36;
    --_brown-overlay: #865E36BF;

    /* Chemins assets centralisés */
    --_icon-globe: url("/media/wysiwyg/landing-page/kidsdiscoveryclub/picto-globe.png");
    --_arrow-default: url("/media/wysiwyg/landing-page/kidsdiscoveryclub/arrow-default.png");
    --_arrow-hover: url("/media/wysiwyg/landing-page/kidsdiscoveryclub/arrow-hover.png");
    --_arrow-top: url("/media/wysiwyg/landing-page/kidsdiscoveryclub/arrow-top-default.png");
    --_arrow-top-hover: url("/media/wysiwyg/landing-page/kidsdiscoveryclub/arrow-top-hover.png");

    /* Couleurs principales */
    --lp-burgundy: #486556;
    --lp-burgundy-hover: #2D5A27;
    --lp-cream: #FAF7F0;
    --lp-cream-dark: #F3EFEB;
    --lp-dark: #2C2C2C;
    --lp-dark-bg: #302B27;
    --lp-dark-card: #3A3530;
    --lp-footer-bg: #F6F3F1;
    --lp-muted: #717182;
    --lp-muted-light: #9B9B9B;
    --lp-gold-quote: #8B7D4A;
    --lp-white: #FFFFFF;

    /* Typographie */
    --lp-font-heading: 'Newsreader', Georgia, serif;
    --lp-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Rayons & ombres */
    --lp-radius-card: 16px;
    --lp-radius-pill: 9999px;
    --lp-shadow-card: 0 2px 20px rgba(0, 0, 0, 0.06);
    --lp-shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.1);

    /* Layout */
    --lp-max-w: 1200px;
    --lp-gutter: 40px;

    --vc-sage: #3D5A30;
    --vc-sage-mid: #5E7050;
    --vc-sage-soft: #8A9A7B;
    --vc-sage-pale: #DCE3D0;
    --vc-sage-tint: #EAF0E6;
    --vc-sage-tint2: #F2F5EE;
    --vc-gold: #B8956A;
    --vc-gold-light: #F5EDE0;
    --vc-cream: #FAF7F2;
    --vc-cream-warm: #F4EDE0;
    --vc-ink: #1F1D17;
    --vc-ink-soft: #3D3A2F;
    --vc-muted: #8A826F;
    --vc-border: #DDD5C0;
}

#header {
    display: none !important;
}

body.custom-landing-page {
    font-family: var(--lp-font-body);
    color: var(--lp-dark);
    background: var(--lp-white);
    overflow-x: hidden;
}

body.custom-landing-page p,
body.custom-landing-page li {
    font-family: var(--lp-font-body);
}

body.custom-landing-page h1,
body.custom-landing-page h2,
body.custom-landing-page h3 {
    font-family: var(--lp-font-heading);
    font-style: italic;
    font-weight: 400;
}

body.custom-landing-page a,
body.custom-landing-page a:hover {
    color: var(--lp-burgundy);
    text-decoration: none;
}

.custom-landing-page .page-wrapper {
    height: auto;
}

.custom-landing-page .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    max-height: 72px;
    padding: 0 var(--lp-gutter);
    transition: box-shadow 0.3s;
}

.custom-landing-page .header.scrolled {
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.custom-landing-page .header .pagebuilder-column-line {
    max-width: var(--lp-max-w);
    margin: 0 auto;
    height: 72px;
    align-items: center;
}

/* Logo */
.custom-landing-page .header .pagebuilder-column:first-child {
    align-items: flex-start !important;
}

.custom-landing-page .header .pagebuilder-column:first-child figure img {
    height: 40px !important;
}

/* Nav */
.custom-landing-page .header .header-menu ul {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-landing-page .header .header-menu ul li {
    font-family: var(--lp-font-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--lp-dark);
    margin-bottom: 0;
    cursor: pointer;
    transition: color 0.2s;
}

.custom-landing-page .header .header-menu ul li:hover {
    color: var(--lp-burgundy);
}

.custom-landing-page .header .header-menu ul li::before {
    content: '' !important;
    display: none;
}

/* Bouton Panier */
.custom-landing-page .header .pagebuilder-button-primary {
    background: var(--lp-burgundy) !important;
    color: var(--lp-white) !important;
    padding: 10px 24px;
    border-radius: var(--lp-radius-pill);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.custom-landing-page .header .pagebuilder-button-primary:hover {
    background: var(--lp-burgundy-hover) !important;
}

.custom-landing-page .header .pagebuilder-button-primary > span {
    color: var(--lp-white) !important;
}

.custom-landing-page .hero-row {
    position: relative;
}

/* Background image */
.custom-landing-page .hero-picture {
    position: absolute !important;
    inset: 0;
    z-index: 0;
}

.custom-landing-page .hero-picture figure,
.custom-landing-page .hero-picture figure img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.custom-landing-page .hero-picture::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
    rgba(20, 10, 6, 0.2) 0%,
    rgba(20, 10, 6, 0.5) 60%,
    rgba(20, 10, 6, 0.7) 100%);
    z-index: 1;
}

/* Hero content */
.custom-landing-page .hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    min-height: 100vh;
    max-width: var(--lp-max-w);
    margin: 0 auto;
    padding: 0;
    gap: 0;
}

/* Badge "Offre cadeau premium" */
.custom-landing-page .hero-container .hero-badge,
.custom-landing-page .hero-container .pagebuilder-button-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 97, 0.2);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: var(--lp-radius-pill);
    padding: 8px 20px !important;
    backdrop-filter: blur(8px);
    margin-bottom: 24px;
}

.custom-landing-page .hero-container .hero-badge > span,
.custom-landing-page .hero-container .pagebuilder-button-link > span {
    color: var(--lp-white) !important;
    font-size: 14px;
    font-weight: 400;
}

/* Titre H1 */
.custom-landing-page .hero-container h1 {
    font-family: var(--lp-font-heading) !important;
    font-weight: 500 !important;
    font-size: clamp(36px, 5.5vw, 72px) !important;
    line-height: 1.05 !important;
    color: var(--lp-white) !important;
    margin: 0 0 20px 0;
    max-width: 600px;
}

/* Sous-titre */
.custom-landing-page .hero-container > div[data-content-type="text"] p {
    font-size: 18px !important;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 32px;
    max-width: 500px;
}

/* Boutons hero */
.custom-landing-page .hero-container div[data-content-type="buttons"] {
    display: flex;
    gap: 16px;
}

.custom-landing-page .hero-container .pagebuilder-button-primary {
    background: var(--lp-burgundy) !important;
    padding: 20px 40px;
    border-radius: var(--lp-radius-pill);
    transition: all 0.25s;
    height: auto !important;
}

.custom-landing-page .hero-container .pagebuilder-button-primary:hover {
    background: var(--lp-burgundy-hover) !important;
    box-shadow: 0 8px 24px rgba(125, 25, 53, 0.35);
}

.custom-landing-page .hero-ontainer .pagebuilder-button-secondary {
    display: inline-flex;
    color: var(--lp-white) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    padding: 20px 40px;
    border-radius: var(--lp-radius-pill);
}

.custom-landing-page .hero-container .pagebuilder-button-primary > span,
.custom-landing-page .hero-container .pagebuilder-button-secondary > span {
    font-family: var(--lp-font-body);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.custom-landing-page .hero-container .pagebuilder-button-secondary:hover {
    background: rgba(255, 255, 255, 0.18) !important;
}

.custom-landing-page .hero-container .pagebuilder-button-primary > span:hover,
.custom-landing-page .hero-container .pagebuilder-button-secondary > span:hover,
.custom-landing-page .hero-container .pagebuilder-button-primary:hover > span,
.custom-landing-page .hero-container .pagebuilder-button-secondary:hover > span {
    color: var(--lp-white) !important;
}

/* "Achat sécurisé..." */
.custom-landing-page .hero-container .hero-secure {
    margin-top: 24px;
}

.custom-landing-page div[data-content-type="row"]:has(.reinsurance-row) {
    background-color: var(--lp-white);
}

.custom-landing-page .page-content .reinsurance-row {
    background: var(--lp-white);
    padding: 60px 0;
    max-width: var(--lp-max-w);
    margin: 0 auto;
}

/* Titre h3 */
.custom-landing-page .page-content .reinsurance-row .reinsurance-title,
.custom-landing-page .page-content .reinsurance-row h3 {
    font-family: var(--lp-font-heading) !important;
    font-weight: 300 !important;
    font-size: 60px !important;
    color: var(--lp-dark);
    text-align: center;
    margin-top: 24px;
    margin-bottom: 24px;
}

/* Grille des 4 items */
.custom-landing-page .page-content .reinsurance-row .pagebuilder-column-line,
.custom-landing-page .page-content .reinsurance-row .reinsurance {
    display: flex !important;
    justify-content: center;
    gap: 40px;
    padding: 0 !important;
}

.custom-landing-page .page-content .reinsurance-row .pagebuilder-column,
.custom-landing-page .page-content .reinsurance-row .reinsurance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;
}

/* Icône circulaire */
.custom-landing-page .page-content .reinsurance-row figure {
    width: 86px;
    height: 86px;
    margin: 0 auto;
}

.custom-landing-page .page-content .reinsurance-row figure img {
    width: 86px;
    height: 86px;
    padding: 16px;
    object-fit: contain;
}

.custom-landing-page .page-content .reinsurance-row h4 {
    font-family: var(--lp-font-heading);
    font-weight: 400;
    font-size: 24px;
    font-style: italic;
}

.custom-landing-page .page-content .reinsurance-row p:first-child,
.custom-landing-page .page-content .magazines-section p:first-child,
.custom-landing-page .page-content .subscriptions-row p:first-child {
    font-family: var(--lp-font-body);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    color: rgba(52, 76, 45, 0.4);
}

.custom-landing-page .page-content .reinsurance-row p {
    font-family: var(--lp-font-body);
    font-style: normal;
    font-weight: 300;
    font-size: 17px;
    line-height: 28px;
    color: rgba(26, 28, 26, 0.6);
}

.custom-landing-page div[data-content-type="row"]:has(.subscriptions-row) {
    background-color: var(--lp-cream);
}

.custom-landing-page .subscriptions-row {
    padding: 80px 0;
    max-width: var(--lp-max-w);
    margin: 0 auto;
}

.custom-landing-page .subscriptions-row h2 {
    font-family: var(--lp-font-heading);
    font-style: italic;
    font-weight: 300;
    font-size: 60px;
    line-height: 60px;
    color: #344C2D;
    margin-top: 20px;
}

.custom-landing-page .subscriptions-row h4 {
    font-family: var(--lp-font-body);
    font-style: normal;
    font-weight: 300;
    font-size: 17px;
    line-height: 28px;
    text-align: center;
    color: var(--lp-muted);
    margin-bottom: 40px;
}

body.custom-landing-page .page-content .subscriptions-row .subscriptions-reinsurance p {
    font-family: var(--lp-font-body);
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: var(--lp-muted);
    text-transform: none;
    letter-spacing: normal;
}


/* ---------- Grille ---------- */
body.custom-landing-page .page-content .subscriptions-row .catalog-grid {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 0;
}

/* ---------- Carte ---------- */
body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item {
    display: flex;
    height: -webkit-fill-available;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1),
    0 4px 6px -4px rgba(0, 0, 0, .1);
    overflow: hidden;
    padding: 0;
    font-family: 'Inter', sans-serif;
    gap: 0;
}

/* ---------- Image produit ---------- */
body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .catalog-grid-item__image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #FFFFFF;
    padding-top: 0;
    margin: 0
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .catalog-grid-item__image-wrapper .lazyload-wrapper {
    width: 100%;
    height: 100%;
    display: block;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .catalog-grid-item__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ---------- Conteneur de contenu ---------- */
body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .overlay-container {
    display: flex;
    flex-direction: column;
    padding: 32px;
    gap: 24px;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .catalog-grid-item__infos-frequency {
    display: none;
}

/* ---------- Header: titre + description ---------- */
body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .overlay__header {
    margin: 0;
    padding: 0;
    display: block;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .overlay__header .overlay__title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0;
    max-width: 100%;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .overlay__header .overlay__title-wrapper .age-container {
    display: none;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .overlay__header .overlay__title-wrapper .overlay__title {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 40px;
    line-height: 1;
    color: #1A1A1A;
    margin: 0;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .overlay__header .overlay__title-wrapper .overlay__subtitle {
    height: 250px;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .overlay__header .overlay__title-wrapper .overlay__subtitle p:first-child {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    text-transform: none;
    letter-spacing: normal;
    color: var(--lp-muted);
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .overlay__header .overlay__title-wrapper .overlay__subtitle p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 23px;
    color: var(--lp-muted);
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .overlay__header .overlay__title-wrapper .overlay__subtitle ul {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 23px;
    color: var(--lp-muted);
    list-style: disc;
    padding: 0 14px;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .overlay__header .overlay__title-wrapper .overlay__subtitle li {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 23px;
    color: var(--lp-muted);
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .overlay__header .overlay__title-wrapper .overlay__subtitle li::before {
    display: none;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .offer__shipping {
    display: none;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .overlay__actions {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 0;
    padding: 0;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .duration-buttons-label {
    display: none;
}

/* ---------- Boutons de durée ---------- */
body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .duration-buttons-container {
    display: flex;
    gap: 12px;
    position: relative;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .offer-duration-button {
    flex: 1;
    height: 56px;
    padding: 0;
    background: #F5F5F3;
    border: none;
    border-radius: 6px;
    color: var(--lp-muted);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: background-color .15s ease, color .15s ease;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .offer-duration-button:hover,
body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .offer-duration-button.active {
    background: var(--lp-burgundy);
    color: var(--lp-white);
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .offer-duration-button:hover::after,
body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .offer-duration-button.active::after {
    color: var(--lp-white);
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .offer-duration-button:nth-child(2)::before {
    content: "Recommandé";
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 13px;
    height: 14px;
    background: #B39B5E;
    color: var(--lp-white);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 14px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .offer-duration-button::after {
    display: block;
    color: var(--lp-muted);
    font-family: var(--lp-font-heading);
    font-weight: 300;
    font-size: 14px;
    font-style: italic;
    line-height: 16px;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .offer-duration-button:nth-child(1)::after {
    content: "Découverte";
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .offer-duration-button:nth-child(2)::after {
    content: "Régularité";
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .offer-duration-button:nth-child(3)::after {
    content: "Meilleur prix";
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .tocart-form-landing-configurable-product {
    display: none;
    flex-direction: column;
    gap: 17px;
    padding-top: 17px;
    border-top: 1px solid #E8F0E5;
    margin: 0;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .tocart-form-landing-configurable-product.active {
    display: flex;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .overlay__price {
    margin: 0;
    padding: 0;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .price-wrapper {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    color: #1A1A1A;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .price-wrapper::after {
    content: " / mois";
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    color: var(--lp-muted);
    margin-left: 10px;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .button.button--fluid.button--pink.tocart {
    width: 100%;
    max-width: 100%;
    height: 56px;
    background: #B39B5E;
    border: none;
    border-radius: 9999px;
    color: var(--lp-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    font-size: 0;
    transition: background-color .15s ease;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .button.button--fluid.button--pink.tocart::before {
    content: "Choisir cet abonnement";
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--lp-white);
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .button.button--fluid.button--pink.tocart:hover {
    background: #9E8750;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .button.button--fluid.button--pink.tocart .button__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .button.button--fluid.button--pink.tocart .button__icon path {
    stroke: var(--lp-white) !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .catalog-grid-item {
        width: 100%;
    }

    body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .products.catalog-grid {
        gap: 24px;
    }
}

@media (max-width: 540px) {
    body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .overlay-container {
        padding: 24px;
    }

    body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .catalog-grid-item__image-wrapper {
        height: 320px;
    }

    body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .overlay__title {
        font-size: 32px;
    }

    body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .price-wrapper {
        font-size: 30px;
    }
}

.custom-landing-page div[data-content-type="row"]:has(.magazines-section) {
    background-color: #fafaf8;
}

.custom-landing-page .magazines-section {
    background: #f5f1e8;
    padding: 80px 0;
    max-width: var(--lp-max-w);
    width: 100%;
    margin: 0 auto;
}

.custom-landing-page .magazines-section h2 {
    font-family: var(--lp-font-heading);
    font-style: italic;
    font-weight: 300;
    font-size: 52px;
    line-height: 65px;
    text-align: center;
    color: #1A1A1A;
}

.custom-landing-page .magazines-section h4 {
    font-family: var(--lp-font-body);
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    color: var(--lp-muted);
    margin-bottom: 0;
}

/* --- Carousel Magazines --- */
.custom-landing-page .page-content .magazines-section .mag-carousel-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.custom-landing-page .page-content .magazines-section .mag-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
}

.custom-landing-page .page-content .magazines-section .mag-carousel-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    margin-top: 10px;
}

.custom-landing-page .page-content .magazines-section .mag-carousel-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #d0ccc6;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s, color 0.25s, box-shadow 0.25s;
    color: #555;
    padding: 0;
}

.custom-landing-page .page-content .magazines-section .mag-carousel-nav button:hover:not(:disabled) {
    border-color: var(--lp-burgundy-hover);
    color: var(--lp-burgundy-hover);
    box-shadow: 0 2px 10px rgba(139, 26, 43, 0.1);
}

.custom-landing-page .page-content .magazines-section .mag-carousel-nav button:disabled {
    opacity: 0.3;
    cursor: default;
}

.custom-landing-page .page-content .magazines-section .mag-carousel-nav button svg {
    width: 18px;
    height: 18px;
}

/* Track */
.custom-landing-page .page-content .magazines-section .mag-carousel-viewport {
    overflow: hidden;
}

.custom-landing-page .page-content .magazines-section .mag-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.custom-landing-page .page-content .magazines-section .mag-carousel-track.is-dragging {
    transition: none;
}

/* Cards */
.custom-landing-page .page-content .magazines-section .mag-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 3.8;
    cursor: pointer;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s, transform 0.3s;
    text-decoration: none;
    display: block;
}

.custom-landing-page .page-content .magazines-section .mag-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.custom-landing-page .page-content .magazines-section .mag-card img {
    width: 100%;
    height: 100%;
    display: block;
}

.custom-landing-page .page-content .magazines-section .mag-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            transparent 65%
    );
    pointer-events: none;
}

.custom-landing-page .page-content .magazines-section .mag-card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.custom-landing-page .page-content .magazines-section .mag-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: 24px;
    font-style: normal;
    line-height: 32px;
    color: var(--lp-white);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.custom-landing-page .page-content .magazines-section .mag-card-arrow {
    flex-shrink: 0;
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.3s;
    margin-left: 12px;
}

.custom-landing-page .page-content .magazines-section .mag-card:hover .custom-landing-page .page-content .magazines-section .mag-card-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.custom-landing-page .page-content .magazines-section .mag-card-arrow svg {
    width: 22px;
    height: 22px;
}

/* CTA */
.custom-landing-page .page-content .magazines-section .mag-carousel-cta {
    text-align: center;
    margin-top: 44px;
}

.custom-landing-page .page-content .magazines-section .mag-carousel-cta a {
    font-size: 16px;
    font-weight: 500;
    color: var(--lp-burgundy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s, color 0.25s;
}

.custom-landing-page .page-content .magazines-section .mag-carousel-cta a:hover {
    color: var(--lp-burgundy-hover);
    gap: 14px;
}

.custom-landing-page .page-content .magazines-section .mag-carousel-cta a svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    body.custom-landing-page .page-content .magazines-section .mag-card {
        flex: 0 0 calc(50% - 12px);
    }

    body.custom-landing-page .page-content .magazines-section .mag-carousel-header,
    body.custom-landing-page .page-content .magazines-section .mag-carousel-viewport {
        padding: 0 32px;
    }

    body.custom-landing-page .page-content .magazines-section .mag-carousel-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    body.custom-landing-page .page-content .magazines-section .mag-card {
        flex: 0 0 85%;
    }

    body.custom-landing-page .page-content .magazines-section .mag-carousel-header,
    body.custom-landing-page .page-content .magazines-section .mag-carousel-viewport {
        padding: 0 20px;
    }

    body.custom-landing-page .page-content .magazines-section .mag-carousel-header {
        flex-direction: column;
        gap: 16px;
    }

    body.custom-landing-page .page-content .magazines-section .mag-carousel-nav {
        align-self: flex-end;
    }

    body.custom-landing-page .page-content .magazines-section .mag-carousel-header h2 {
        font-size: 26px;
    }
}

.custom-landing-page .page-content .mountain-cta {

}

.custom-landing-page .page-content .mountain-cta div[data-content-type="text"] {
    max-width: var(--lp-max-w);
    margin: 0 auto;
}

.custom-landing-page .page-content .mountain-cta div[data-content-type="text"] p:first-child {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    color: var(--lp-white);
}

.custom-landing-page .page-content .mountain-cta h2 {
    font-family: 'Newsreader';
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 60px;
    color: var(--lp-white);
    margin-top: 20px;
}


.custom-landing-page div[data-content-type="row"]:has(.blog-section) {
    background-color: #846c30;
}

.custom-landing-page .page-content .blog-section {
    background: #f5f1e8;
    padding: 80px 0;
    max-width: var(--lp-max-w);
    width: 100%;
    margin: 0 auto;
}

.custom-landing-page .page-content .blog-section div[data-content-type="text"] p:first-child {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    color: var(--lp-white);
    margin-bottom: 20px;
}

.custom-landing-page .page-content .blog-section h2 {
    font-family: var(--lp-font-heading);
    font-style: italic;
    font-weight: 300;
    font-size: 60px;
    line-height: 60px;
    color: var(--lp-white);
    margin-bottom: -60px
}

.custom-landing-page .page-content .blog-section h4 {
    font-family: var(--lp-font-body);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: var(--lp-muted);
    margin-bottom: 0;
}

/* --- Carousel Magazines --- */
.custom-landing-page .page-content .blog-section .mag-carousel-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.custom-landing-page .page-content .blog-section .mag-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
}

.custom-landing-page .page-content .blog-section .mag-carousel-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    margin-top: 10px;
}

.custom-landing-page .page-content .blog-section .mag-carousel-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #d0ccc6;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s, color 0.25s, box-shadow 0.25s;
    color: #555;
    padding: 0;
}

.custom-landing-page .page-content .blog-section .mag-carousel-nav button:hover:not(:disabled) {
    border-color: var(--lp-burgundy-hover);
    color: var(--lp-burgundy-hover);
    box-shadow: 0 2px 10px rgba(139, 26, 43, 0.1);
}

.custom-landing-page .page-content .blog-section .mag-carousel-nav button:disabled {
    opacity: 0.3;
    cursor: default;
}

.custom-landing-page .page-content .blog-section .mag-carousel-nav button svg {
    width: 18px;
    height: 18px;
}

/* Track */
.custom-landing-page .page-content .blog-section .mag-carousel-viewport {
    overflow: hidden;
}

.custom-landing-page .page-content .blog-section .mag-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.custom-landing-page .page-content .blog-section .mag-carousel-track.is-dragging {
    transition: none;
}

.custom-landing-page .page-content .blog-section .mag-prev,
.custom-landing-page .page-content .blog-section .mag-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #2C2C2C;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 20px;
    color: #2C2C2C;
    padding: 0;
}

.custom-landing-page .page-content .blog-section .mag-carousel-viewport {
    overflow: hidden;
    cursor: grab;
}

.custom-landing-page .page-content .blog-section .mag-carousel-viewport:active {
    cursor: grabbing;
}

/* ─── Blog Card (.mag-card) ─── */
.custom-landing-page .page-content .blog-section .mag-card {
    flex: 0 0 calc((100% - 48px) / 3); /* 3 cards avec 2 gaps de 24px */
    min-width: 0;
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    user-select: none;
}

/* Image container */
.custom-landing-page .page-content .blog-section .mag-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.custom-landing-page .page-content .blog-section .mag-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.5s ease;
    pointer-events: none;
}

/* Tag sur l'image */
.custom-landing-page .page-content .blog-section .mag-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #2C2C2C;
    white-space: nowrap;
}

/* Corps de la card */
.custom-landing-page .page-content .blog-section .mag-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.custom-landing-page .page-content .blog-section .mag-card__title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 24px !important;
    line-height: 33px !important;
    color: #2C2C2C !important;
    margin: 0 0 auto 0 !important;
    min-height: 52px;


}

/* Footer card */
.custom-landing-page .page-content .blog-section .mag-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.custom-landing-page .page-content .blog-section .mag-card__reading {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--lp-muted);
}

.custom-landing-page .page-content .blog-section .mag-card__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #B39B5E;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.custom-landing-page .page-content .blog-section .mag-card__arrow::after {
    content: '→';
    font-size: 16px;
    color: var(--lp-white);
}

.custom-landing-page .page-content .blog-section .mag-card:hover .mag-card__arrow {
    background: #B39B5E;
}

.custom-landing-page .page-content .blog-section .mag-carousel-cta {
    text-align: center;
    margin-top: 44px;
}

.custom-landing-page .page-content .blog-section .mag-carousel-cta a {
    font-size: 16px;
    font-weight: 500;
    color: var(--lp-burgundy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s, color 0.25s;
}

.custom-landing-page .page-content .blog-section .mag-carousel-cta a svg {
    width: 16px;
    height: 16px;
}


@media (max-width: 640px) {
    body.custom-landing-page .page-content .blog-section .mag-card {
        flex: 0 0 85%;
    }

    body.custom-landing-page .page-content .blog-section .mag-carousel-header,
    body.custom-landing-page .page-content .blog-section .mag-carousel-viewport {
        padding: 0 20px;
    }

    body.custom-landing-page .page-content .blog-section .mag-carousel-header {
        flex-direction: column;
        gap: 16px;
    }

    body.custom-landing-page .page-content .blog-section .mag-carousel-nav {
        align-self: flex-end;
    }

    body.custom-landing-page .page-content .blog-section .mag-carousel-header h2 {
        font-size: 26px;
    }
}

.custom-landing-page div[data-content-type="row"]:has(.testimonials-section) {
    background: var(--lp-white);
}

.custom-landing-page .page-content .testimonials-section {
    padding: 0;
    margin: 0 auto;
    max-width: var(--lp-max-w);
    width: 100%;
    gap: 24px;
}

/* Titre */
.custom-landing-page .page-content .testimonials-section h2 {
    font-family: var(--lp-font-heading) !important;
    font-weight: 300 !important;
    font-size: 52px;
    text-align: center;
    margin-bottom: 8px;
}

.custom-landing-page .page-content .testimonials-section h4 {
    font-family: var(--lp-font-body);
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--lp-muted);
}

/* Grille 3 colonnes */
.custom-landing-page .page-content .testimonials-section .pagebuilder-column-line:has(.temoignage-container),
.custom-landing-page .page-content .testimonials-section .temoignage-grid {
    display: flex !important;
    gap: 24px;
    justify-content: center;
}

/* Card témoignage */
.custom-landing-page .page-content .testimonials-section .temoignage-container {
    background: rgba(250, 250, 248, 1);
    border-radius: var(--lp-radius-card) !important;
    padding: 32px 28px !important;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    transition: border-color 0.3s;
    width: 100%;
    margin: 0;
    height: -webkit-fill-available;
}

.custom-landing-page .page-content .testimonials-section .temoignage-container:hover {
    /*border-color: rgba(255, 255, 255, 0.15) !important;*/
}

/* Reset des pseudo-éléments hérités du template kidsdiscoveryclub */
.custom-landing-page .page-content .testimonials-section .temoignage-container::before {
    content: '\2605\2605\2605\2605\2605' !important;
    position: relative !important;
    display: flex !important;
    justify-content: center;
    width: 30% !important;
    height: auto !important;
    border-radius: 50%;
    background: none !important;
    color: #C9A961 !important;
    font-family: var(--lp-font-heading);
    font-size: 32px !important;
    line-height: 1;
    margin-bottom: 12px;
    top: auto !important;
    left: auto !important;
    transform: none !important;
}

.custom-landing-page .page-content .testimonials-section .temoignage-container::after {
    content: none !important;
    display: none !important;
}

/* Texte témoignage */
.custom-landing-page .page-content .testimonials-section .temoignage-container .temoignage-content {
    padding: 0 !important;
    width: 100%;
    display: grid;
}

.custom-landing-page .page-content .testimonials-section .temoignage-container .temoignage-content .content {
    font-family: var(--lp-font-body);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 20px;
    color: #1E3518;
}

/* Séparateur */
.custom-landing-page .page-content .testimonials-section .temoignage-container .temoignage-content .temoignage-bottom::before {
    content: '';
    display: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 18px;
}

/* Auteur */
.custom-landing-page .page-content .testimonials-section .temoignage-container .temoignage-content .temoignage-bottom .temoignage-row-container .second-row {
    display: grid;
}

.custom-landing-page .page-content .testimonials-section .temoignage-container .temoignage-content .temoignage-bottom .temoignage-row-container .block__prenom {
    font-family: var(--lp-font-body);
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    color: #1A1A1A;
}

.custom-landing-page .page-content .testimonials-section .temoignage-container .temoignage-content .temoignage-bottom .temoignage-row-container .block__prenom::after {
    content: '' !important;
    display: none;
}

.custom-landing-page .page-content .testimonials-section .temoignage-container .temoignage-content .temoignage-bottom .temoignage-row-container .block__titre_abonnement {
    font-family: var(--lp-font-heading);
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    color: var(--lp-muted);
}

.custom-landing-page .page-content .testimonials-section .temoignage-container .temoignage-content .temoignage-bottom .temoignage-row-container .block__nom_abonnement {
    font-family: var(--lp-font-heading);
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    color: var(--lp-muted);
}

.custom-landing-page .page-content .testimonials-section .temoignage-container .temoignage-content .temoignage-bottom .temoignage-row-container .block__titre_abonnement::after {
    content: '' !important;
    display: none;
}

.custom-landing-page .page-content .testimonials-section .temoignage-container .temoignage-content .temoignage-bottom .temoignage-row-container .block__visual {
    display: none !important;
}

div[data-content-type="row"]:has(.faq-row) {
    width: 100%;
}

.custom-landing-page .faq-row {
    max-width: var(--lp-max-w);
    margin: 0 auto;
    display: block !important;
}

.custom-landing-page .faq-row h2 {
    font-family: var(--lp-font-heading);
    font-style: italic;
    font-weight: 300;
    font-size: 52px;
    line-height: 65px;
    text-align: center;
    color: #1A1A1A;
}

.custom-landing-page .faq-row h4 {
    font-family: var(--lp-font-body);
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: var(--lp-muted);
    margin: 0;
}

.custom-landing-page .faq-row .faq-bottom-container {
    background-color: rgba(250, 250, 248, 1);
    padding: 40px;
    display: grid;
    gap: 10px;
    border-radius: var(--lp-radius-card);
    margin-top: 40px;
}

.custom-landing-page .faq-row .faq-bottom-container p {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--lp-font-body);
}

/* Items FAQ */
.custom-landing-page .faq-row .faq-container {
    width: 100%;
    max-width: inherit;
    margin-bottom: 20px;
}

.custom-landing-page .faq-row .faq-container .faq-content {
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--lp-white);
    border: 1px solid rgba(232, 240, 229, 1);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.custom-landing-page .faq-row .faq-container .faq-content:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.custom-landing-page .faq-row .faq-container .faq-content .block__title {
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--lp-dark);
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

div:has(> .faq-container) .faq-container .block__title::before,
div:has(> .faq-container) .faq-container .block__title::after {
    right: 10px;
}

/* Contenu réponse */
.custom-landing-page .faq-row .faq-container .faq-content .content {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--lp-muted);
}

/* Lien contact */
.custom-landing-page .faq-row .contact-container {
    text-align: center;
    margin-top: 48px;
    padding: 0 !important;
}

.custom-landing-page .faq-row .contact-container p {
    font-size: 15px !important;
    color: var(--lp-muted);
    margin-bottom: 8px;
}

.custom-landing-page .faq-row .contact-container a {
    color: var(--lp-burgundy);
    font-weight: 500;
    font-size: 15px;
}

.custom-landing-page .footer-section {
    background: var(--lp-footer-bg) !important;
}

.custom-landing-page .footer-section > div {
    width: 100%;
    max-width: var(--lp-max-w);
    margin: 0 auto;
}

/* Grille 4 colonnes */
.custom-landing-page .footer-section .pagebuilder-column-line {
    display: flex !important;
    gap: 48px;
    padding: 48px 0;
}

.custom-landing-page .footer-section .pagebuilder-column-line .pagebuilder-column:first-child {
    flex: 1.2;
}

.custom-landing-page .footer-section .pagebuilder-column-line .pagebuilder-column {
    flex: 1;
    justify-content: flex-start !important;
}

.custom-landing-page .footer-section .pagebuilder-column-line .footer-socials {
    display: block !important;
}

.custom-landing-page .footer-section .pagebuilder-column-line .footer-socials figure {
    width: 40px !important;
    height: 40px !important;
}

.custom-landing-page .footer-section .pagebuilder-column-line .footer-socials .facebook-icon {
    margin-right: 10px;
}

.custom-landing-page .footer-section .pagebuilder-column-line .footer-socials div[data-content-type="text"] {
    margin-bottom: 20px;
    grid-column: span 2 / span 2;
}

/* Logo footer */
.custom-landing-page .footer-section .footer-logo {
    margin-bottom: 20px;
}

.custom-landing-page .footer-section p {
    font-size: 14px;
    color: var(--lp-muted-light);
    line-height: 1.6;
}

/* Titres colonnes */
.custom-landing-page .footer-section h5 {
    font-family: var(--lp-font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--lp-white);
    margin-bottom: 20px;
}

/* Liens footer */
.custom-landing-page .footer-section a {
    font-size: 14px;
    color: var(--lp-muted-light) !important;
    transition: color 0.2s;
}

.custom-landing-page .footer-section a:hover {
    color: var(--lp-white) !important;
}

/* Icônes sociales */
.custom-landing-page .footer-section .footer-social a,
.custom-landing-page .footer-section .facebook-icon,
.custom-landing-page .footer-section .insta-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.custom-landing-page .footer-section .footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Barre du bas */
.custom-landing-page .footer-section .gototop {
    height: auto !important;
}

.custom-landing-page .footer-section .gototop hr {
    background: rgba(67, 72, 64, 0.1) !important;
    opacity: 1;
    margin: 0 !important;
    width: 100% !important;
    height: 2px !important;
    border-top: 1px;
    border-bottom: 1px;
    border-left: 0;
    border-right: 0;
}

.custom-landing-page .footer-section .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-landing-page .footer-section .footer-bottom .pagebuilder-column-line {
    padding: 20px 0 40px 0;
}

.custom-landing-page .footer-section .footer-bottom .pagebuilder-column-line .pagebuilder-column {
    align-items: flex-start;
}

.custom-landing-page .footer-section .footer-bottom .pagebuilder-column-line .pagebuilder-column:last-child {
    align-items: flex-end;
}

.custom-landing-page .footer-section .footer-bottom .pagebuilder-column-line p {
    font-size: 13px;
    color: var(--lp-muted-light);
}

.custom-landing-page .footer-section .footer-bottom .pagebuilder-column-line a {
    font-size: 13px;
}

.custom-landing-page .footer-section .footer-bottom .pagebuilder-column-line ul {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-landing-page .footer-section .footer-bottom .pagebuilder-column-line ul li {
    font-family: var(--lp-font-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--lp-dark);
    margin-bottom: 0;
    cursor: pointer;
    transition: color 0.2s;
}

.custom-landing-page .footer-section .footer-bottom .pagebuilder-column-line ul li:hover {
    color: var(--lp-burgundy-hover);
}

.custom-landing-page .footer-section .footer-bottom .pagebuilder-column-line ul li::before {
    content: '' !important;
    display: none;
}

#top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background: var(--lp-burgundy);
    color: var(--lp-white);
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    font-size: 18px;
    width: 48px;
    height: 48px;
    transition: background 0.2s;
}

#top:hover {
    background: var(--lp-burgundy-hover);
}

@media (max-width: 768px) {
    :root {
        --lp-gutter: 20px;
    }

    /* ── Header mobile ── */
    body.custom-landing-page .page-content .header {
        padding: 0;
    }

    body.custom-landing-page .page-content .header .pagebuilder-column-line {
        display: flex !important;
        height: 60px;
    }

    body.custom-landing-page .page-content .header .pagebuilder-column-line div[data-content-type="text"] {
        width: 100%;
    }

    body.custom-landing-page .page-content .header .pagebuilder-column-line div[data-content-type="text"] p {
        text-align: center;
    }

    body.custom-landing-page .page-content .header .header-menu {
        display: none;
    }

    body.custom-landing-page .page-content .header .pagebuilder-button-primary {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* ── Hero mobile ── */
    body.custom-landing-page .hero-row .pagebuilder-column-group .pagebuilder-column-line .pagebuilder-column:first-child {
        display: flex !important;
        padding: 0;
    }

    body.custom-landing-page .hero-row .pagebuilder-column-group .pagebuilder-column-line .pagebuilder-column:first-child figure {
        margin: 0 auto;
    }

    body.custom-landing-page .hero-row .pagebuilder-column-group .pagebuilder-column-line .pagebuilder-column {
        display: none !important;
    }

    body.custom-landing-page .hero-container {
        padding: 0 20px 40px !important;
    }

    body.custom-landing-page .hero-container h1 {
        font-size: 32px !important;
        line-height: 1.1 !important;
    }

    body.custom-landing-page .hero-container > div[data-content-type="text"] p {
        font-size: 15px !important;
    }

    body.custom-landing-page .hero-container div[data-content-type="buttons"] {
        flex-direction: column;
        width: 100%;
    }

    body.custom-landing-page .hero-container .pagebuilder-button-primary,
    body.custom-landing-page .hero-container .pagebuilder-button-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
    }

    /* ── Reinsurance mobile ── */
    body.custom-landing-page .page-content .reinsurance-row {
        padding: 40px 20px;
        gap: 20px;
    }

    body.custom-landing-page .page-content .reinsurance-row h3 {
        font-size: 28px !important;
        margin: 16px 0;
    }

    body.custom-landing-page .page-content .reinsurance-row .pagebuilder-column-line,
    body.custom-landing-page .page-content .reinsurance-row .reinsurance {
        flex-direction: column !important;
        gap: 24px;
    }

    body.custom-landing-page .page-content .reinsurance-row .pagebuilder-column,
    body.custom-landing-page .page-content .reinsurance-row .reinsurance-item {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        max-width: 100%;
    }

    body.custom-landing-page .page-content .reinsurance-row figure {
        width: 32px !important;
        height: 32px !important;
        flex-shrink: 0;
    }

    body.custom-landing-page .page-content .reinsurance-row figure img {
        width: 32px !important;
        height: 32px !important;
        padding: 0;
    }

    body.custom-landing-page .page-content .reinsurance-row h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    body.custom-landing-page .page-content .reinsurance-row p:not(:first-child) {
        text-align: left;
        max-width: none;
        font-size: 10px;
        line-height: normal;
    }

    /* ── Abonnements mobile ── */
    body.custom-landing-page .page-content .subscriptions-row {
        padding: 48px 20px;
    }

    body.custom-landing-page .page-content .subscriptions-row h2 {
        font-size: 28px;
        margin: 20px 0;
        line-height: normal;
    }

    body.custom-landing-page .page-content .subscriptions-row h4 {
        font-size: 14px;
        line-height: normal;
    }

    body.custom-landing-page .page-content .subscriptions-row .catalog-grid {
        display: grid;
    }

    body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .offer-duration-button:nth-child(2)::before {
        width: 80%;
        text-align: center;
        padding: 0;
        display: block;
    }

    body.custom-landing-page .page-content .subscriptions-row .catalog-grid .catalog-grid-item .overlay__header .overlay__title-wrapper .overlay__title {
        font-size: 20px;
    }

    /* ── Magazines mobile ── */
    body.custom-landing-page .page-content .magazines-section {
        padding: 48px 0;
    }

    body.custom-landing-page .page-content .magazines-section h2 {
        font-size: 28px;
        margin: 0 20px;
    }

    body.custom-landing-page .page-content .magazines-section h4 {
        margin: 0 20px;
    }

    body.custom-landing-page .page-content .product-container-multiple .catalog-grid-item {
        flex: 0 0 75vw;
        min-width: 250px;
    }

    body.custom-landing-page .page-content .product-container-multiple div[data-content-type="products"] {
        padding: 0 20px !important;
    }

    /* ── Gift Ideas mobile ── */
    body.custom-landing-page .page-content .gift-ideas-row {
        padding: 48px 20px;
    }

    body.custom-landing-page .page-content .gift-ideas-row h2 {
        font-size: 28px;
    }

    body.custom-landing-page .page-content .gift-ideas-row .pagebuilder-column-line:has(.idea-card) {
        flex-direction: column !important;
        gap: 24px;
    }

    body.custom-landing-page .gift-ideas-row .idea-card > figure:first-child,
    body.custom-landing-page .gift-ideas-row .idea-card .idea-card-image {
        height: 180px;
    }

    /* ── Blog mobile ── */
    body.custom-landing-page .page-content .blog-section {
        padding: 40px 20px;
    }

    body.custom-landing-page .page-content .blog-section h2 {
        font-size: 28px;
        margin: 0;
    }

    body.custom-landing-page .page-content .blog-section h4 {
        margin: 0;
    }

    body.custom-landing-page .blog-card {
        flex: 0 0 80vw;
        min-width: 250px;
    }

    body.custom-landing-page .page-content .blog-section .blog-track {
        padding: 0 20px;
    }

    body.custom-landing-page .page-content .blog-section .mag-carousel-section .mag-carousel-viewport {
        padding: 0;
    }

    /* ── Testimonials mobile ── */
    body.custom-landing-page .page-content .testimonials-section:first-child {
        padding: 40px 20px 0 !important;
        margin: 0;
    }

    body.custom-landing-page .page-content .testimonials-section {
        padding: 0 20px;
        flex-direction: column !important;
    }

    body.custom-landing-page .page-content .testimonials-section h2 {
        font-size: 28px;
        margin: 0;
    }

    body.custom-landing-page .page-content .testimonials-section h4 {
        margin: 0;
    }

    body.custom-landing-page .page-content .testimonials-section .temoignage-container::before {
        width: 100% !important;
        text-align: left;
        display: block !important;
    }

    body.custom-landing-page .page-content .testimonials-section .temoignage-container {
        padding: 24px 20px !important;
    }

    body.custom-landing-page .page-content .testimonials-section .temoignage-content .content {
        font-size: 14px !important;
    }

    body.custom-landing-page .page-content .testimonials-section .temoignage-bottom {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    /* ── FAQ mobile ── */
    body.custom-landing-page .faq-row {
        padding: 48px 20px !important;
    }

    body.custom-landing-page .faq-row:has(.faq-container) {
        padding: 0 20px 48px 20px !important;
    }

    body.custom-landing-page .faq-row h2 {
        font-size: 28px;
    }

    body.custom-landing-page .faq-row .faq-container .faq-content .block__title {
        font-size: 14px;
        padding: 16px 20px;
        padding-right: 48px;
    }

    body.custom-landing-page .faq-row .faq-container .faq-content .block__content {
        padding: 0 20px 16px;
        font-size: 13px;
    }

    /* ── Footer mobile ── */
    body.custom-landing-page .page-content .footer .pagebuilder-column-line {
        display: grid !important;
        padding: 0;
        gap: 20px
    }

    body.custom-landing-page .page-content .footer .pagebuilder-column-line .pagebuilder-column {
        padding: 0
    }

    body.custom-landing-page .page-content .footer-section {
        padding: 40px 20px 120px !important;
    }

    body.custom-landing-page .page-content .footer-section .pagebuilder-column-line {
        flex-direction: column !important;
        gap: 32px;
        text-align: center;
    }

    body.custom-landing-page .page-content .footer-section .pagebuilder-column div[data-content-type="text"] {
        text-align: center;
        width: 100%;
    }

    body.custom-landing-page .page-content .footer-section .pagebuilder-column div[data-content-type="text"] h5 {
        margin-bottom: 8px;
    }

    body.custom-landing-page .page-content .footer-section .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        margin-top: 20px;
    }

    body.custom-landing-page .page-content .footer-section .footer-social {
        justify-content: center;
    }

    body.custom-landing-page .page-content .footer-section .footer-bottom .pagebuilder-column-line ul {
        display: grid;
        gap: 12px;
    }

    body.custom-landing-page .page-content .footer-section .footer-bottom .pagebuilder-column-line ul li {
        text-align: center;
    }

    body.custom-landing-page .page-content .mountain-cta,
    body.custom-landing-page .page-content .bottom-cta {
        padding: 40px 20px !important;
    }

    body.custom-landing-page .page-content .mountain-cta h2,
    body.custom-landing-page .page-content .bottom-cta h2 {
        font-size: 28px;
        margin: 0;
    }

    body.custom-landing-page .page-content .bottom-cta div[data-content-type="button-item"] {
        width: 100%;
        margin-top: 16px;
    }

    body.custom-landing-page .page-content .bottom-cta div[data-content-type="button-item"] .pagebuilder-button-primary {
        width: 100%;
        margin: 0;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    body.custom-landing-page .hero-container h1 {
        font-size: 48px !important;
    }

    body.custom-landing-page .page-content .reinsurance-row .pagebuilder-column-line,
    body.custom-landing-page .page-content .reinsurance-row .reinsurance {
        flex-wrap: wrap;
        gap: 24px;
    }

    body.custom-landing-page .page-content .reinsurance-row .pagebuilder-column,
    body.custom-landing-page .page-content .reinsurance-row .reinsurance-item {
        flex: 0 0 calc(50% - 12px);
    }

    body.custom-landing-page .gift-ideas-row .pagebuilder-column-line:has(.idea-card) {
        flex-wrap: wrap;
    }

    body.custom-landing-page .gift-ideas-row .idea-card {
        flex: 0 0 calc(50% - 14px);
    }

    body.custom-landing-page .gift-ideas-row .idea-card:last-child {
        flex: 0 0 100%;
        max-width: 50%;
        margin: 0 auto;
    }

    body.custom-landing-page .footer-section .pagebuilder-column-line {
        flex-wrap: wrap;
        gap: 32px;
    }

    body.custom-landing-page .footer-section .pagebuilder-column:first-child {
        flex: 0 0 100%;
    }

    body.custom-landing-page .footer-section .pagebuilder-column {
        flex: 1;
    }
}

@media (min-width: 1025px) {
    body.custom-landing-page .header .pagebuilder-column:nth-child(1) {
        align-items: flex-start !important;
    }

    body.custom-landing-page .header .pagebuilder-column:nth-child(2) {
        align-items: center !important;
    }

    body.custom-landing-page .header .pagebuilder-column:nth-child(3) {
        align-items: flex-end !important;
    }
}

@media (min-width: 1280px) {
    :root {
        --lp-max-w: 1440px;
    }

    body.custom-landing-page .header .pagebuilder-column-line {
        max-width: var(--lp-max-w);
        margin: 0 auto;
    }
}

@keyframes lpFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-landing-page .hero-container > * {
    animation: lpFadeInUp 0.7s ease-out backwards;
}

.custom-landing-page .hero-container > *:nth-child(1) {
    animation-delay: 0.1s;
}

.custom-landing-page .hero-container > *:nth-child(2) {
    animation-delay: 0.2s;
}

.custom-landing-page .hero-container > *:nth-child(3) {
    animation-delay: 0.3s;
}

.custom-landing-page .hero-container > *:nth-child(4) {
    animation-delay: 0.4s;
}

.custom-landing-page .hero-container > *:nth-child(5) {
    animation-delay: 0.5s;
}

.custom-landing-page .gift-ideas-row .idea-card > figure:first-child img,
.custom-landing-page .blog-card,
.custom-landing-page .testimonial-card {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

body.custom-landing-page .bottom-cta h2 {
    font-family: var(--lp-font-heading);
    font-style: italic;
    font-weight: 300;
    font-size: 52px;
    line-height: 96px;
    color: #000000;
}

body.custom-landing-page .bottom-cta p {
    font-family: var(--lp-font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: rgba(0, 0, 0, 0.6);
}

body.custom-landing-page .bottom-cta .pagebuilder-button-primary {
    background: var(--lp-burgundy);
    border-radius: var(--lp-radius-pill);
    width: 400px;
    height: 60px;
    margin-top: 30px;
}

body.custom-landing-page .bottom-cta .pagebuilder-button-primary > span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: var(--lp-white);
}

body.custom-landing-page .footer .footer-socials a {
    color: rgba(67, 72, 64, 0.7) !important;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-bloc {
    background: var(--vc-cream-warm);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

/* Texture de fond subtile */
body.custom-landing-page .page-content .ebook-container .vc-guide-bloc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 50%, rgba(93, 112, 80, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(184, 149, 106, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Inner container */
body.custom-landing-page .page-content .ebook-container .vc-guide-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ============================================================
   COLONNE GAUCHE — Texte
   ============================================================ */
body.custom-landing-page .page-content .ebook-container .vc-guide-text {
}

body.custom-landing-page .page-content .ebook-container .vc-guide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--vc-sage);
    margin-bottom: 20px;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--vc-gold);
    flex-shrink: 0;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-headline {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--vc-ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    height: auto;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-headline em {
    font-style: italic;
    color: var(--vc-sage);
}

body.custom-landing-page .page-content .ebook-container .vc-guide-subline {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    font-style: italic;
    color: var(--vc-gold);
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--vc-ink-soft);
    margin-bottom: 32px;
    max-width: 420px;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-desc strong {
    color: var(--vc-ink);
    font-weight: 500;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-value {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--vc-sage-tint);
    border: 1px solid var(--vc-sage-pale);
    border-radius: 4px;
    padding: 8px 16px;
    margin-bottom: 36px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--vc-sage-mid);
}

body.custom-landing-page .page-content .ebook-container .vc-guide-value span {
    font-weight: 600;
    color: var(--vc-sage);
}

/* Icônes bénéfices */
body.custom-landing-page .page-content .ebook-container .vc-guide-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--vc-sage-tint);
    border: 1px solid var(--vc-sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-feature-icon svg {
    width: 16px;
    height: 16px;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-feature-text {
}

body.custom-landing-page .page-content .ebook-container .vc-guide-feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--vc-ink);
    margin-bottom: 2px;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--vc-muted);
    line-height: 1.5;
}

/* Bandeau lancement */
body.custom-landing-page .page-content .ebook-container .vc-guide-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--vc-sage);
    border-radius: 8px;
    padding: 14px 20px;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-banner-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.8;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-banner-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-banner-text strong {
    color: #fff;
    font-weight: 500;
}

/* ============================================================
   COLONNE DROITE — Image livre
   ============================================================ */
body.custom-landing-page .page-content .ebook-container .vc-guide-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Halo décoratif derrière le livre */
body.custom-landing-page .page-content .ebook-container .vc-guide-visual::before {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(93, 112, 80, 0.10) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-book-wrap {
    position: relative;
    z-index: 2;
    max-width: 420px;
    width: 100%;
    filter: drop-shadow(0 24px 48px rgba(31, 29, 23, 0.18)) drop-shadow(0 8px 16px rgba(31, 29, 23, 0.10));
    transition: transform 0.4s ease, filter 0.4s ease;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-book-wrap:hover {
    transform: translateY(-6px) rotate(0.5deg);
    filter: drop-shadow(0 32px 56px rgba(31, 29, 23, 0.22)) drop-shadow(0 12px 20px rgba(31, 29, 23, 0.12));
}

body.custom-landing-page .page-content .ebook-container .vc-guide-book-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Badge OFFERT sur l'image */
body.custom-landing-page .page-content .ebook-container .vc-guide-badge {
    position: absolute;
    bottom: 32px;
    right: -16px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--vc-sage);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(61, 90, 48, 0.30);
    z-index: 3;
    padding: 8px;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-badge-main {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
}

body.custom-landing-page .page-content .ebook-container .vc-guide-badge-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 3px;
    line-height: 1.3;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    body.custom-landing-page .page-content .ebook-container .vc-guide-bloc {
        padding: 60px 20px;
    }

    body.custom-landing-page .page-content .ebook-container .vc-guide-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Sur mobile : visuel en premier */
    body.custom-landing-page .page-content .ebook-container .vc-guide-visual {
        order: -1;
    }

    body.custom-landing-page .page-content .ebook-container .vc-guide-book-wrap {
        max-width: 280px;
        margin: 0 auto;
    }

    body.custom-landing-page .page-content .ebook-container .vc-guide-badge {
        width: 80px;
        height: 80px;
        right: 0;
        bottom: 16px;
    }

    body.custom-landing-page .page-content .ebook-container .vc-guide-desc {
        max-width: 100%;
    }

    body.custom-landing-page .page-content .ebook-container .vc-guide-features {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    body.custom-landing-page .page-content .ebook-container .vc-guide-headline {
        font-size: 32px;
    }

    body.custom-landing-page .page-content .ebook-container .vc-guide-book-wrap {
        max-width: 240px;
    }
}