/* =========================================================
   Euro pare-brise plus Bourg-en-Bresse — main.css
   Identité visuelle : violet/magenta + jaune "OFFERT !" + rose starburst
   ========================================================= */

:root {
    --ebp-violet:        #6A1B9A;   /* fond hero */
    --ebp-violet-deep:   #4A148C;
    --ebp-magenta:       #C2185B;
    --ebp-pink:          #E91E63;   /* starburst */
    --ebp-pink-soft:     #F48FB1;
    --ebp-yellow:        #FFEB3B;   /* "OFFERT !" */
    --ebp-yellow-deep:   #FBC02D;
    --ebp-white:         #FFFFFF;
    --ebp-cream:         #FFF8E7;
    --ebp-text:          #1B1129;
    --ebp-text-soft:     #4A3F5C;
    --ebp-grey:          #F4F2F8;
    --ebp-border:        #E5DFEE;
    --ebp-success:       #2E7D32;
    --ebp-error:         #C62828;
    --ebp-radius:        14px;
    --ebp-radius-sm:     8px;
    --ebp-shadow:        0 8px 30px rgba(74, 20, 140, 0.15);
    --ebp-shadow-lg:     0 20px 50px rgba(74, 20, 140, 0.25);
    --ebp-font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ebp-font-display:  'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* RESET & GLOBALS ----------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.ebp-body {
    margin: 0;
    font-family: var(--ebp-font);
    color: var(--ebp-text);
    background: var(--ebp-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--ebp-magenta); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
    font-family: var(--ebp-font-display);
    line-height: 1.2;
    margin: 0 0 0.6em;
    font-weight: 700;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-top: 1.5em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p  { margin: 0 0 1em; }

.ebp-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.ebp-section   { padding: 64px 0; }
.ebp-section--alt { background: var(--ebp-grey); }
.ebp-section--cta { background: linear-gradient(135deg, var(--ebp-violet) 0%, var(--ebp-magenta) 100%); color: #fff; }
.ebp-section--cta h2, .ebp-section--cta p { color: #fff; }

.ebp-lede { font-size: 1.15rem; color: var(--ebp-text-soft); }

/* HEADER -------------------------------------------------- */
.ebp-site-header {
    background: var(--ebp-white);
    border-bottom: 1px solid var(--ebp-border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.ebp-site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.ebp-logo { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1; text-decoration: none; gap: 2px; }
.ebp-logo__img {
    display: block;
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}
.ebp-logo--lp .ebp-logo__img { height: 46px; }
.ebp-logo--footer .ebp-logo__img { height: 64px; }
/* Variantes texte (gardées en fallback pour compat) */
.ebp-logo__brand {
    font-family: var(--ebp-font-display);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--ebp-magenta);
    letter-spacing: -0.5px;
}
.ebp-logo__plus { color: var(--ebp-magenta); }
.ebp-logo__city {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ebp-text-soft);
    margin-top: 2px;
}
.ebp-logo--footer .ebp-logo__city { color: rgba(255,255,255,0.7); }
.ebp-logo__fallback {
    font-family: var(--ebp-font-display);
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: -0.5px;
}
.ebp-logo__fallback sup { font-size: 0.7em; vertical-align: super; }
.ebp-logo--footer .ebp-logo__fallback { font-size: 1.8rem; }

.ebp-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 24px; }
.ebp-nav a { color: var(--ebp-text); font-weight: 500; font-size: 0.95rem; }
.ebp-nav a:hover { color: var(--ebp-magenta); text-decoration: none; }

.ebp-lp-header { background: var(--ebp-white); padding: 12px 0; border-bottom: 1px solid var(--ebp-border); }
.ebp-lp-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.ebp-lp-header__phone {
    background: var(--ebp-magenta);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
}

/* BUTTONS ------------------------------------------------- */
.ebp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    font-family: var(--ebp-font-display);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 30px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
    line-height: 1;
}
.ebp-btn--primary {
    background: linear-gradient(135deg, var(--ebp-magenta), var(--ebp-pink));
    color: #fff;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}
.ebp-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(233, 30, 99, 0.55); text-decoration: none; }
.ebp-btn--ghost {
    background: transparent;
    color: var(--ebp-violet);
    border-color: var(--ebp-violet);
}
.ebp-btn--ghost:hover { background: var(--ebp-violet); color: #fff; text-decoration: none; }
.ebp-btn--xl { padding: 18px 36px; font-size: 1.1rem; }

/* HERO ---------------------------------------------------- */
.ebp-hero {
    background: linear-gradient(135deg, var(--ebp-violet) 0%, var(--ebp-violet-deep) 50%, var(--ebp-magenta) 100%);
    color: #fff;
    padding: 64px 0 80px;
    position: relative;
    overflow: hidden;
}
.ebp-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.ebp-hero h1, .ebp-hero h2 { color: #fff; }
.ebp-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 2;
}
.ebp-hero__eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.ebp-hero__title { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px; }
.ebp-highlight {
    background: var(--ebp-yellow);
    color: var(--ebp-violet-deep);
    padding: 0 8px;
    border-radius: 6px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}
.ebp-hero__lead { font-size: 1.15rem; color: rgba(255,255,255,0.92); margin-bottom: 24px; }
.ebp-hero__bullets { list-style: none; padding: 0; margin: 0 0 24px; }
.ebp-hero__bullets li { padding: 6px 0; font-size: 1rem; }
.ebp-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.ebp-hero__form-wrap { position: relative; }

.ebp-hero--seo { padding: 48px 0 32px; }
.ebp-hero--seo h1 { max-width: 900px; }
.ebp-hero--seo .ebp-lede { color: rgba(255,255,255,0.92); max-width: 800px; }

/* TRUST BAR ----------------------------------------------- */
.ebp-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--ebp-radius);
    padding: 18px;
    color: #fff;
    margin-top: 24px;
}
.ebp-trust-bar__item { text-align: center; }
.ebp-trust-bar__item strong { display: block; font-size: 1.25rem; font-family: var(--ebp-font-display); color: var(--ebp-yellow); }
.ebp-trust-bar__item span { font-size: 0.78rem; color: rgba(255,255,255,0.85); }

/* GIFT BLOCK + STARBURST ---------------------------------- */
.ebp-gift {
    background: var(--ebp-yellow);
    color: var(--ebp-violet-deep);
    border-radius: var(--ebp-radius);
    padding: 18px 18px 18px 80px;
    margin-bottom: 18px;
    position: relative;
    box-shadow: var(--ebp-shadow);
    border: 3px solid #fff;
}
.ebp-gift__starburst {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 80px;
    height: 80px;
    background: var(--ebp-pink);
    color: #fff;
    font-family: var(--ebp-font-display);
    font-weight: 900;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    clip-path: polygon(
        50% 0%, 61% 12%, 78% 5%, 80% 23%, 95% 25%,
        88% 40%, 100% 50%, 88% 60%, 95% 75%, 80% 77%,
        78% 95%, 61% 88%, 50% 100%, 39% 88%, 22% 95%,
        20% 77%, 5% 75%, 12% 60%, 0% 50%, 12% 40%,
        5% 25%, 20% 23%, 22% 5%, 39% 12%
    );
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.ebp-gift__eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--ebp-magenta);
}
.ebp-gift__title { font-size: 1.2rem; margin: 4px 0 6px; color: var(--ebp-violet-deep); font-weight: 800; }
.ebp-gift__note { font-size: 0.78rem; margin: 0; color: var(--ebp-text); opacity: 0.75; }

/* FORM ---------------------------------------------------- */
.ebp-form {
    background: #fff;
    border-radius: var(--ebp-radius);
    padding: 28px;
    box-shadow: var(--ebp-shadow-lg);
    color: var(--ebp-text);
    border: 3px solid var(--ebp-yellow);
}
.ebp-form__title { font-size: 1.3rem; margin: 0 0 4px; color: var(--ebp-violet); }
.ebp-form__subtitle { font-size: 0.9rem; color: var(--ebp-text-soft); margin: 0 0 20px; }
.ebp-form__row { margin-bottom: 14px; }
.ebp-form__row label { display: block; }
.ebp-form__row span { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--ebp-text); }
.ebp-form__row input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--ebp-border);
    border-radius: var(--ebp-radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border .15s ease, box-shadow .15s ease;
}
.ebp-form__row input:focus {
    outline: none;
    border-color: var(--ebp-magenta);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
}
.ebp-form__consent { display: flex; gap: 8px; align-items: flex-start; font-size: 0.83rem; color: var(--ebp-text-soft); margin: 12px 0 18px; }
.ebp-form__consent input { flex-shrink: 0; margin-top: 3px; }
.ebp-form__submit { width: 100%; padding: 16px; font-size: 1.05rem; }
.ebp-form__note { font-size: 0.78rem; text-align: center; color: var(--ebp-text-soft); margin: 12px 0 0; }
.ebp-form__feedback { margin-top: 12px; padding: 0; font-size: 0.95rem; }
.ebp-form__feedback.is-success { padding: 12px; border-radius: var(--ebp-radius-sm); background: #E8F5E9; color: var(--ebp-success); border: 1px solid var(--ebp-success); }
.ebp-form__feedback.is-error { padding: 12px; border-radius: var(--ebp-radius-sm); background: #FFEBEE; color: var(--ebp-error); border: 1px solid var(--ebp-error); }
.ebp-hp { position: absolute; left: -9999px; opacity: 0; }

/* STEPS / PILLARS / SERVICES ------------------------------ */
.ebp-steps__list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: step;
}
.ebp-steps__list li {
    background: #fff;
    border-radius: var(--ebp-radius);
    padding: 24px;
    border-left: 4px solid var(--ebp-magenta);
    box-shadow: var(--ebp-shadow);
}
.ebp-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.ebp-pillar {
    background: #fff;
    border-radius: var(--ebp-radius);
    padding: 28px;
    border-top: 4px solid var(--ebp-violet);
    box-shadow: var(--ebp-shadow);
}
.ebp-pillar__icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.ebp-pillar h3 { color: var(--ebp-violet); }

.ebp-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.ebp-service-card {
    background: #fff;
    border-radius: var(--ebp-radius);
    padding: 24px;
    border: 2px solid var(--ebp-border);
    transition: border .15s, transform .15s, box-shadow .15s;
    text-decoration: none;
    color: var(--ebp-text);
    display: block;
}
.ebp-service-card:hover {
    border-color: var(--ebp-magenta);
    transform: translateY(-4px);
    box-shadow: var(--ebp-shadow);
    text-decoration: none;
}
.ebp-service-card h3 { color: var(--ebp-violet); margin-bottom: 8px; }

/* TRUST PILLARS (LP P2) ----------------------------------- */
.ebp-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.ebp-trust__item {
    background: var(--ebp-cream);
    border-radius: var(--ebp-radius);
    padding: 28px;
    text-align: left;
    border-left: 4px solid var(--ebp-yellow-deep);
}
.ebp-trust__num {
    display: inline-flex;
    width: 38px; height: 38px;
    background: var(--ebp-magenta);
    color: #fff;
    border-radius: 50%;
    align-items: center; justify-content: center;
    font-weight: 800;
    margin-bottom: 12px;
}

/* TESTIMONIALS -------------------------------------------- */
.ebp-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.ebp-testimonials blockquote {
    background: #fff;
    border-radius: var(--ebp-radius);
    padding: 24px;
    margin: 0;
    box-shadow: var(--ebp-shadow);
    position: relative;
}
.ebp-testimonials blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 18px;
    font-size: 4rem;
    color: var(--ebp-pink-soft);
    line-height: 1;
    font-family: serif;
}
.ebp-testimonials cite { display: block; margin-top: 12px; font-size: 0.88rem; font-style: normal; color: var(--ebp-text-soft); }
.ebp-testimonials span { color: var(--ebp-yellow-deep); font-size: 0.95rem; }

/* CITIES (homepage / Ain hub) ----------------------------- */
.ebp-cities { list-style: none; padding: 0; margin: 24px 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; }
.ebp-cities li {
    background: #fff;
    padding: 10px 14px;
    border-radius: var(--ebp-radius-sm);
    border: 1px solid var(--ebp-border);
    font-size: 0.92rem;
}
.ebp-cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0; }
.ebp-cities-grid h3 { color: var(--ebp-violet); }

/* PROSE (SEO pages) --------------------------------------- */
.ebp-prose { max-width: 880px; }
.ebp-prose h2 { color: var(--ebp-violet); margin-top: 2em; }
.ebp-prose h3 { color: var(--ebp-magenta); margin-top: 1.5em; }
.ebp-prose ul li { margin-bottom: 6px; }

/* FAQ ----------------------------------------------------- */
.ebp-faq { background: var(--ebp-grey); padding: 64px 0; }
.ebp-faq__list { max-width: 820px; margin: 24px auto 0; }
.ebp-faq__item {
    background: #fff;
    border-radius: var(--ebp-radius-sm);
    margin-bottom: 12px;
    border: 1px solid var(--ebp-border);
    overflow: hidden;
}
.ebp-faq__item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    color: var(--ebp-violet);
    list-style: none;
    position: relative;
    padding-right: 50px;
    font-family: var(--ebp-font-display);
}
.ebp-faq__item summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    font-size: 1.5rem;
    color: var(--ebp-magenta);
    transition: transform .2s;
}
.ebp-faq__item[open] summary::after { transform: rotate(45deg); }
.ebp-faq__item > div { padding: 0 22px 18px; color: var(--ebp-text-soft); }

/* FINAL CTA ----------------------------------------------- */
.ebp-final-cta { background: linear-gradient(135deg, var(--ebp-violet) 0%, var(--ebp-magenta) 100%); color: #fff; }
.ebp-final-cta h2 { color: #fff; }
.ebp-final-cta p  { color: rgba(255,255,255,0.92); font-size: 1.1rem; }
.ebp-final-cta__inner { text-align: center; max-width: 720px; margin: 0 auto; }

/* STICKY MOBILE CTA --------------------------------------- */
.ebp-sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    box-shadow: 0 -8px 25px rgba(0,0,0,0.15);
    display: none;
    grid-template-columns: 1fr 1.4fr;
    z-index: 200;
    border-top: 3px solid var(--ebp-yellow);
}
.ebp-sticky-cta a {
    padding: 14px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
}
.ebp-sticky-cta__phone { background: var(--ebp-violet); color: #fff !important; }
.ebp-sticky-cta__phone span { font-size: 0.85rem; display: block; }
.ebp-sticky-cta__form  { background: var(--ebp-magenta); color: #fff !important; }

/* CONTACT GRID -------------------------------------------- */
.ebp-contact__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.ebp-contact__info h3 { color: var(--ebp-violet); margin-top: 1.5em; }

/* HOURS LIST ---------------------------------------------- */
.ebp-hours { list-style: none; padding: 0; margin: 0; }
.ebp-hours li { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dotted var(--ebp-border); font-size: 0.92rem; }
.ebp-hours li:last-child { border-bottom: 0; }

/* FOOTER -------------------------------------------------- */
.ebp-site-footer {
    background: var(--ebp-violet-deep);
    color: rgba(255,255,255,0.85);
    padding: 48px 0 0;
    margin-top: 64px;
}
.ebp-site-footer h4 { color: #fff; }
.ebp-site-footer a { color: var(--ebp-yellow); text-decoration: none; }
.ebp-site-footer a:hover { text-decoration: underline; }
.ebp-site-footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; }
.ebp-site-footer ul { list-style: none; padding: 0; margin: 0; }
.ebp-site-footer ul li { padding: 4px 0; }
.ebp-logo--footer .ebp-logo__brand { color: #fff; }
.ebp-logo--footer .ebp-logo__plus { color: var(--ebp-yellow); }
.ebp-site-footer__bottom {
    margin-top: 40px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.ebp-lp-footer {
    background: var(--ebp-violet-deep);
    color: rgba(255,255,255,0.9);
    padding: 24px 0;
    text-align: center;
    font-size: 0.9rem;
}
.ebp-lp-footer a { color: var(--ebp-yellow); }

/* RESPONSIVE ---------------------------------------------- */
@media (max-width: 880px) {
    .ebp-hero { padding: 40px 0 60px; }
    .ebp-hero__grid { grid-template-columns: 1fr; gap: 32px; }
    .ebp-trust-bar { grid-template-columns: repeat(2, 1fr); }
    .ebp-steps__list { grid-template-columns: 1fr; }
    .ebp-pillars { grid-template-columns: 1fr; }
    .ebp-trust__grid { grid-template-columns: 1fr; }
    .ebp-testimonials__grid { grid-template-columns: 1fr; }
    .ebp-cities-grid { grid-template-columns: 1fr; }
    .ebp-contact__grid { grid-template-columns: 1fr; gap: 32px; }
    .ebp-site-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .ebp-nav { display: none; }
    .ebp-site-header__phone { padding: 8px 14px; font-size: 0.85rem; }
    .ebp-sticky-cta { display: grid; }
    body.ebp-body--lp { padding-bottom: 70px; }
    .ebp-section { padding: 48px 0; }
}

@media (max-width: 480px) {
    .ebp-site-footer__grid { grid-template-columns: 1fr; }
    .ebp-form { padding: 20px; }
    .ebp-gift { padding: 14px 14px 14px 70px; }
    .ebp-gift__starburst { width: 65px; height: 65px; font-size: 0.72rem; left: -8px; }
    .ebp-hero__title { font-size: 1.8rem; }
}

/* HEADER CTAs (WhatsApp + phone) -------------------------- */
.ebp-site-header__ctas, .ebp-lp-header__ctas { display: flex; align-items: center; gap: 10px; }
.ebp-wa-header-link {
    display: inline-flex; align-items: center; gap: 6px;
    background: #25D366; color: #fff;
    padding: 9px 14px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}
.ebp-wa-header-link:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(37,211,102,0.35); color: #fff; text-decoration: none; }
.ebp-wa-header-link svg { display: block; }

/* WHATSAPP FLOATING BUTTON -------------------------------- */
.ebp-wa-float {
    position: fixed;
    right: 18px; bottom: 18px;
    z-index: 250;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px 12px 14px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37,211,102,0.45);
    transition: transform .2s ease, box-shadow .2s ease;
}
.ebp-wa-float:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37,211,102,0.55); color: #fff; text-decoration: none; }
.ebp-wa-float__icon { width: 26px; height: 26px; }
.ebp-wa-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    background: #25D366;
    opacity: 0.5;
    z-index: -1;
    animation: ebp-wa-pulse 2.4s ease-out infinite;
}
@keyframes ebp-wa-pulse {
    0%   { transform: scale(1);    opacity: 0.5; }
    70%  { transform: scale(1.25); opacity: 0;   }
    100% { transform: scale(1.25); opacity: 0;   }
}
.ebp-btn--wa { background: #25D366; color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,0.4); margin-top: 8px; }
.ebp-btn--wa:hover { background: #1faa54; color: #fff; }

/* GIFTS GRID ---------------------------------------------- */
.ebp-gifts { margin: 32px 0; }
.ebp-gifts__header { text-align: center; margin-bottom: 24px; }
.ebp-gifts__header h2 { color: var(--ebp-violet); }
.ebp-gifts__header p  { color: var(--ebp-text-soft); max-width: 720px; margin: 0 auto; }
.ebp-gifts__grid {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.ebp-gift-card {
    background: #fff;
    border: 2px solid var(--ebp-border);
    border-radius: var(--ebp-radius);
    padding: 22px 16px 18px;
    text-align: center;
    position: relative;
    transition: transform .15s, border-color .15s, box-shadow .15s;
}
.ebp-gift-card:hover { transform: translateY(-4px); border-color: var(--ebp-magenta); box-shadow: var(--ebp-shadow); }
.ebp-gift-card.is-highlight, .ebp-gift-card.has-highlight {
    border-color: var(--ebp-yellow-deep);
    background: linear-gradient(160deg, var(--ebp-yellow) 0%, #fff 70%);
    box-shadow: 0 8px 24px rgba(251,192,45,0.35);
}
.ebp-gift-card__emoji { font-size: 2.4rem; display: block; margin-bottom: 6px; }
.ebp-gift-card__label { display: block; font-family: var(--ebp-font-display); font-size: 1rem; color: var(--ebp-violet-deep); line-height: 1.2; }
.ebp-gift-card__sub { display: block; font-size: 0.82rem; color: var(--ebp-magenta); margin-top: 4px; font-weight: 700; }
.ebp-gift-card__badge {
    position: absolute; top: -10px; right: -10px;
    background: var(--ebp-pink); color: #fff;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ebp-gifts__note { text-align: center; font-size: 0.82rem; color: var(--ebp-text-soft); max-width: 720px; margin: 18px auto 0; }
.ebp-gifts--featured .ebp-gifts__grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.ebp-gifts--featured .ebp-gift-card { padding: 28px 18px; }

/* Gifts compact (sidebar / LP) */
.ebp-gifts--compact {
    background: var(--ebp-cream);
    border-radius: var(--ebp-radius);
    padding: 14px;
    margin-top: 14px;
    border: 1.5px dashed var(--ebp-yellow-deep);
}
.ebp-gifts__highlight {
    display: flex; align-items: center; gap: 12px;
    background: #fff;
    border-radius: var(--ebp-radius-sm);
    padding: 10px 12px;
    margin-bottom: 10px;
}
.ebp-gifts__hi-emoji { font-size: 1.8rem; flex-shrink: 0; }
.ebp-gifts__hi-eyebrow { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--ebp-magenta); letter-spacing: 0.5px; }
.ebp-gifts__hi-label { display: block; font-family: var(--ebp-font-display); color: var(--ebp-violet-deep); font-size: 0.98rem; line-height: 1.2; }
.ebp-gifts__hi-sub { display: block; font-size: 0.82rem; color: var(--ebp-text-soft); margin-top: 2px; }
.ebp-gifts__mini { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.ebp-gifts__mini li {
    background: #fff;
    border: 1px solid var(--ebp-border);
    width: 36px; height: 36px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    cursor: default;
}
.ebp-gifts__more { background: var(--ebp-violet) !important; color: #fff; font-size: 0.78rem !important; font-weight: 800; }
.ebp-gifts__cta { display: block; text-align: center; margin-top: 10px; font-size: 0.88rem; font-weight: 700; color: var(--ebp-magenta); }

/* BREADCRUMB ---------------------------------------------- */
.ebp-breadcrumb { font-size: 0.88rem; margin-bottom: 16px; }
.ebp-breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; color: rgba(255,255,255,0.7); }
.ebp-breadcrumb li + li::before { content: '›'; margin-right: 6px; opacity: 0.7; }
.ebp-breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: underline; }
.ebp-breadcrumb [aria-current="page"] { color: var(--ebp-yellow); font-weight: 600; }
.ebp-prose .ebp-breadcrumb,
.ebp-section:not(.ebp-hero) .ebp-breadcrumb { color: var(--ebp-text-soft); }
.ebp-prose .ebp-breadcrumb ol,
.ebp-section:not(.ebp-hero) .ebp-breadcrumb ol { color: var(--ebp-text-soft); }
.ebp-prose .ebp-breadcrumb a { color: var(--ebp-magenta); }
.ebp-prose .ebp-breadcrumb [aria-current="page"] { color: var(--ebp-violet); }

/* BLOG ARCHIVE & LISTING ---------------------------------- */
.ebp-blog-single__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: start;
}
.ebp-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}
.ebp-blog-card {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1.5px solid var(--ebp-border);
    border-radius: var(--ebp-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--ebp-text);
    transition: transform .15s, box-shadow .15s, border-color .15s;
}
.ebp-blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--ebp-magenta);
    box-shadow: var(--ebp-shadow);
    text-decoration: none;
}
.ebp-blog-card__thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--ebp-grey); }
.ebp-blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ebp-blog-card__cat {
    display: inline-block;
    margin: 18px 18px 0;
    padding: 4px 10px;
    background: var(--ebp-violet);
    color: #fff;
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}
.ebp-blog-card__title { margin: 10px 18px 6px; font-size: 1.1rem; color: var(--ebp-violet); }
.ebp-blog-card__excerpt { margin: 0 18px 14px; color: var(--ebp-text-soft); font-size: 0.92rem; flex-grow: 1; }
.ebp-blog-card__cta { display: block; margin: 0 18px 16px; color: var(--ebp-magenta); font-weight: 700; font-size: 0.9rem; }

/* BLOG ARTICLE (single) ----------------------------------- */
.ebp-article { background: #fff; max-width: 100%; }
.ebp-article__header { margin-bottom: 24px; }
.ebp-article__cat {
    display: inline-block;
    padding: 4px 12px;
    background: var(--ebp-violet);
    color: #fff;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-decoration: none;
}
.ebp-article__cat:hover { background: var(--ebp-magenta); color: #fff; text-decoration: none; }
.ebp-article h1 { color: var(--ebp-violet); margin-bottom: 12px; }
.ebp-article__meta { display: flex; flex-wrap: wrap; gap: 16px; color: var(--ebp-text-soft); font-size: 0.88rem; margin-bottom: 20px; }
.ebp-article__thumb { margin: 0 0 24px; border-radius: var(--ebp-radius); overflow: hidden; }
.ebp-article__content { font-size: 1.02rem; line-height: 1.75; }
.ebp-article__content h2 { color: var(--ebp-violet); margin-top: 2em; margin-bottom: 0.6em; }
.ebp-article__content h3 { color: var(--ebp-magenta); margin-top: 1.5em; }
.ebp-article__content ul, .ebp-article__content ol { padding-left: 1.4em; margin-bottom: 1.2em; }
.ebp-article__content li { margin-bottom: 6px; }
.ebp-article__content table { width: 100%; border-collapse: collapse; margin: 1.2em 0; }
.ebp-article__content th, .ebp-article__content td { padding: 10px 12px; border: 1px solid var(--ebp-border); text-align: left; font-size: 0.92rem; }
.ebp-article__content th { background: var(--ebp-grey); font-weight: 700; color: var(--ebp-violet); }
.ebp-article__content a { color: var(--ebp-magenta); text-decoration: underline; }
.ebp-article__footer { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--ebp-border); font-size: 0.9rem; color: var(--ebp-text-soft); }

/* BLOG SIDEBAR -------------------------------------------- */
.ebp-blog-sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 90px; }
.ebp-blog-sidebar__card { background: #fff; border: 1.5px solid var(--ebp-border); border-radius: var(--ebp-radius); padding: 20px; }
.ebp-blog-sidebar__card--cta { background: linear-gradient(135deg, var(--ebp-violet) 0%, var(--ebp-magenta) 100%); color: #fff; border: 0; }
.ebp-blog-sidebar__card--cta h3 { color: #fff; margin-top: 0; }
.ebp-blog-sidebar__card--cta p { color: rgba(255,255,255,0.92); font-size: 0.92rem; }
.ebp-blog-sidebar__card--cta .ebp-btn { width: 100%; margin-top: 6px; justify-content: center; }

/* RELATED + PAGINATION ------------------------------------ */
.ebp-related { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--ebp-border); }
.ebp-related h2 { color: var(--ebp-violet); margin-bottom: 24px; }
.ebp-pagination { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
.ebp-pagination a, .ebp-pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 38px; height: 38px;
    padding: 0 12px;
    border: 1.5px solid var(--ebp-border);
    border-radius: var(--ebp-radius-sm);
    color: var(--ebp-violet);
    font-weight: 700;
    text-decoration: none;
}
.ebp-pagination a:hover { border-color: var(--ebp-magenta); color: var(--ebp-magenta); text-decoration: none; }
.ebp-pagination .current { background: var(--ebp-magenta); color: #fff; border-color: var(--ebp-magenta); }

/* RESPONSIVE BLOG ----------------------------------------- */
@media (max-width: 880px) {
    .ebp-blog-single__layout { grid-template-columns: 1fr; gap: 32px; }
    .ebp-blog-sidebar { position: static; }
    .ebp-wa-float__label { display: none; }
    .ebp-wa-float { padding: 14px; }
    .ebp-site-header__ctas .ebp-wa-header-link span,
    .ebp-lp-header__ctas .ebp-wa-header-link span { display: none; }
    .ebp-wa-header-link { padding: 8px 10px; }
}

/* PRINT --------------------------------------------------- */
@media print {
    .ebp-sticky-cta, .ebp-form, .ebp-site-header, .ebp-lp-header, .ebp-wa-float, .ebp-blog-sidebar { display: none; }
}
