/* ==========================================================================
   Atelier des Fleurs — Fleuriste Paris — Main Stylesheet
   Mobile-first | CSS Custom Properties | BEM naming
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
    /* Colors */
    --bl-green:       #0B3D2E;
    --bl-green-dark:  #072A1F;
    --bl-green-light: #14553F;
    --bl-cream:       #F7F3EA;
    --bl-cream-dark:  #EDE8DC;
    --bl-rose:        #E7B7C8;
    --bl-rose-light:  #F2D5E0;
    --bl-rose-dark:   #C98DA3;
    --bl-text:        #222222;
    --bl-text-light:  #555555;
    --bl-text-muted:  #888888;
    --bl-white:       #FFFFFF;
    --bl-border:      #E5E0D5;
    --bl-gold:        #C5A55A;
    --bl-star:        #E8B931;
    --bl-error:       #D32F2F;
    --bl-success:     #2E7D32;

    /* Typography */
    --bl-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --bl-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Sizes */
    --bl-container:  1200px;
    --bl-radius:     8px;
    --bl-radius-lg:  16px;
    --bl-shadow:     0 2px 12px rgba(0, 0, 0, 0.08);
    --bl-shadow-lg:  0 8px 32px rgba(0, 0, 0, 0.12);
    --bl-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --bl-section-py: 5rem;
    --bl-gap:        2rem;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--bl-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--bl-text);
    background-color: var(--bl-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--bl-green);
    text-decoration: none;
    transition: color var(--bl-transition);
}

a:hover,
a:focus-visible {
    color: var(--bl-green-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bl-font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--bl-text);
    margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin: 0 0 1rem; }

/* Screen reader only */
.bl-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bl-hide-mobile { display: none; }

@media (min-width: 768px) {
    .bl-hide-mobile { display: inline; }
}

/* ---------- Container ---------- */
.bl-container {
    width: 100%;
    max-width: var(--bl-container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 768px) {
    .bl-container { padding: 0 2rem; }
}

/* ---------- Utilities ---------- */
.bl-text-center { text-align: center; }
.bl-text--white { color: var(--bl-white); }
.bl-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--bl-text-light);
    text-align: center;
}

/* ==========================================================================
   DEMO BANNER
   ========================================================================== */

.bl-demo-banner {
    background: linear-gradient(135deg, #E8751A 0%, #F59E3D 100%);
    color: var(--bl-white);
    font-size: 0.82rem;
    font-weight: 500;
    text-align: center;
    padding: 0.6rem 1rem;
    position: relative;
    z-index: 1200;
}

.bl-demo-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.bl-demo-banner__icon {
    font-size: 1rem;
    line-height: 1;
}

.bl-demo-banner a {
    color: var(--bl-white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bl-demo-banner a:hover {
    color: var(--bl-cream);
}

@media print {
    .bl-demo-banner { display: none; }
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */

.bl-topbar {
    background-color: var(--bl-green);
    color: var(--bl-white);
    font-size: 0.8rem;
    padding: 0.5rem 0;
}

.bl-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bl-topbar__left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bl-topbar__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.9;
}

.bl-topbar__item--address {
    display: none;
}

@media (min-width: 768px) {
    .bl-topbar__item--address { display: flex; }
}

.bl-topbar__phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--bl-white);
    font-weight: 500;
    transition: opacity var(--bl-transition);
}

.bl-topbar__phone:hover {
    color: var(--bl-rose-light);
    opacity: 0.9;
}

.bl-topbar svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.bl-header {
    background: var(--bl-white);
    border-bottom: 1px solid var(--bl-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--bl-transition);
    overflow-x: clip;
}

.bl-header--scrolled {
    box-shadow: var(--bl-shadow);
}

.bl-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    gap: 1rem;
}

/* Logo */
.bl-header__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--bl-green);
    flex-shrink: 0;
}

.bl-header__logo:hover {
    color: var(--bl-green);
}

.bl-header__logo-icon svg {
    width: 28px;
    height: 28px;
    color: var(--bl-rose);
}

.bl-header__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.bl-header__logo-name {
    font-family: var(--bl-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.bl-header__logo-tagline {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bl-text-muted);
    font-weight: 500;
}

/* Navigation — Mobile-first */
.bl-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 380px;
    background: var(--bl-white);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.bl-nav.is-open {
    transform: translateX(0);
}

/* Mobile overlay behind nav */
.bl-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.bl-nav-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* Nav header (mobile only) */
.bl-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--bl-border);
}

.bl-nav__header-title {
    font-family: var(--bl-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bl-green);
}

.bl-nav__close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bl-cream);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--bl-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--bl-transition);
}

.bl-nav__close:hover {
    background: var(--bl-cream-dark);
}

/* Nav list */
.bl-nav__list,
.bl-nav .menu {
    list-style: none;
    margin: 0;
    padding: 0.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.bl-nav__item,
.bl-nav .menu-item {
    margin: 0;
}

.bl-nav__link,
.bl-nav .menu-item > a,
.bl-nav__list li a {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.5rem;
    color: var(--bl-text);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--bl-transition), color var(--bl-transition);
    border-left: 3px solid transparent;
}

.bl-nav__link:hover,
.bl-nav .menu-item > a:hover,
.bl-nav__list li a:hover,
.bl-nav .current-menu-item > a,
.bl-nav .current_page_item > a {
    background: var(--bl-cream);
    color: var(--bl-green);
    border-left-color: var(--bl-green);
}

/* WP sub-menus (mobile) — hidden by default, toggled via JS */
.bl-nav .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--bl-cream);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.bl-nav .is-submenu-open > .sub-menu {
    max-height: 500px;
}

/* Chevron indicator for parent items */
.bl-nav .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--bl-text-muted);
    border-bottom: 2px solid var(--bl-text-muted);
    transform: rotate(45deg);
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.bl-nav .is-submenu-open > a::after {
    transform: rotate(-135deg);
}

.bl-nav .sub-menu a {
    padding-left: 2.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    border-left-color: transparent;
}

.bl-nav .sub-menu a::after {
    display: none;
}

.bl-nav .sub-menu a:hover {
    color: var(--bl-green);
    background: var(--bl-cream-dark);
}

/* Mobile nav phone CTA at bottom */
.bl-nav__mobile-cta {
    padding: 1.25rem;
    border-top: 1px solid var(--bl-border);
    margin-top: auto;
}

.bl-nav__mobile-cta .bl-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.bl-nav__mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem;
    color: var(--bl-green);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Header CTA (hidden mobile, visible desktop) */
.bl-header__cta {
    display: none !important;
}

/* ---- Mobile fixes (< 1024px) ---- */
@media (max-width: 1023px) {
    /* Header inner: relative for absolute burger positioning + right padding for burger space */
    .bl-header__inner {
        position: relative !important;
        padding-right: 56px !important;
    }

    /* CTA hidden via inline style="display:none" in PHP template.
       CSS backup in case inline is stripped: */
    .bl-header__cta {
        display: none !important;
    }

    /* Logo: allow shrink on narrow screens */
    .bl-header__logo {
        flex-shrink: 1 !important;
        min-width: 0 !important;
    }

    /* Burger: absolutely positioned top-right, always visible.
       Inline style="display:flex" in PHP guarantees visibility.
       Centred vertically via top/bottom/margin:auto (no transform conflict with X animation) */
    #bl-burger {
        position: absolute !important;
        right: 1.25rem !important;
        top: 0 !important;
        bottom: 0 !important;
        margin: auto 0 !important;
        z-index: 1001 !important;
    }
}

/* ---- Desktop (≥1024px) ---- */
@media (min-width: 1024px) {
    .bl-nav {
        position: static;
        width: auto;
        max-width: none;
        background: transparent;
        transform: none;
        box-shadow: none;
        overflow: visible;
        flex-direction: row;
        align-items: center;
    }

    .bl-nav__header,
    .bl-nav__mobile-cta,
    .bl-nav-overlay {
        display: none !important;
    }

    .bl-nav__list,
    .bl-nav .menu {
        flex-direction: row;
        padding: 0;
        gap: 0.15rem;
        flex: initial;
    }

    .bl-nav__link,
    .bl-nav .menu-item > a,
    .bl-nav__list li a {
        padding: 0.5rem 0.7rem;
        font-size: 0.88rem;
        border-radius: var(--bl-radius);
        border-left: none;
    }

    .bl-nav__link:hover,
    .bl-nav .menu-item > a:hover,
    .bl-nav__list li a:hover,
    .bl-nav .current-menu-item > a,
    .bl-nav .current_page_item > a {
        border-left-color: transparent;
    }

    /* Desktop sub-menus (dropdown) */
    .bl-nav .menu-item {
        position: relative;
    }

    .bl-nav .menu-item-has-children > a::after {
        width: 5px;
        height: 5px;
        margin-left: 0.35rem;
        transform: rotate(45deg);
        transition: transform 0.25s ease;
    }

    .bl-nav .menu-item-has-children:hover > a::after {
        transform: rotate(-135deg);
    }

    .bl-nav .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        max-height: none;
        overflow: visible;
        background: var(--bl-white);
        border-radius: var(--bl-radius);
        box-shadow: var(--bl-shadow-lg);
        border: 1px solid var(--bl-border);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
        z-index: 1200;
        padding: 0.5rem 0;
    }

    .bl-nav .menu-item:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .bl-nav .sub-menu a {
        padding: 0.6rem 1.25rem;
        padding-left: 1.25rem;
        font-size: 0.88rem;
        border-radius: 0;
        border-left: none;
    }

    .bl-nav .sub-menu a:hover {
        background: var(--bl-cream);
    }

    .bl-header__cta {
        display: inline-flex !important;
        flex-shrink: 0;
    }

    .bl-header__burger {
        display: none !important;
    }
}

/* Burger */
.bl-header__burger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.bl-header__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--bl-text);
    border-radius: 1px;
    transition: transform var(--bl-transition), opacity var(--bl-transition);
}

.bl-header__burger.is-active .bl-header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.bl-header__burger.is-active .bl-header__burger-line:nth-child(2) {
    opacity: 0;
}

.bl-header__burger.is-active .bl-header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Astra Conflict Prevention ---------- */
/* Override Astra's generic selectors that could interfere with our nav */
.bl-nav .menu-item > a,
.bl-nav .menu > .menu-item > a,
.bl-header .menu-item > a {
    background-image: none !important;
    background-color: transparent !important;
    line-height: inherit !important;
}

/* Ensure Astra's sub-menu defaults don't leak */
.bl-nav .sub-menu,
.bl-nav ul.sub-menu,
.bl-header .sub-menu {
    border-top: none !important;
    box-sizing: border-box !important;
}

/* Prevent Astra's .menu-link styles from overriding ours */
.bl-nav .menu-item > a.menu-link,
.bl-nav .menu-item > a {
    font-family: var(--bl-font-body) !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

/* Hide ALL Astra header/footer elements that may remain in DOM */
.ast-mobile-header-wrap,
.ast-desktop-header,
#ast-desktop-header,
.ast-main-header-wrap,
.ast-above-header-wrap,
.ast-below-header-wrap,
.ast-mobile-header,
.main-header-menu-toggle,
.ast-mobile-menu-buttons,
.ast-button-wrap,
.menu-toggle,
.ast-header-break-point .main-header-bar-navigation,
.ast-footer-overlay,
.ast-small-footer,
.ast-small-footer-section-2 {
    display: none !important;
}

/* Hide Astra's default scroll-to-top — replaced by custom .bl-scroll-top */
.ast-scroll-top,
#ast-scroll-top {
    display: none !important;
}

/* Contain Astra site wrapper — prevent any child from causing horizontal overflow */
#page,
.ast-wrapper,
#content,
.site-content {
    overflow-x: clip;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.bl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--bl-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    border: 2px solid transparent;
    border-radius: var(--bl-radius);
    cursor: pointer;
    transition: all var(--bl-transition);
    text-decoration: none;
    white-space: nowrap;
}

.bl-btn--primary {
    background: var(--bl-green);
    color: var(--bl-white);
    border-color: var(--bl-green);
}

.bl-btn--primary:hover {
    background: var(--bl-green-light);
    border-color: var(--bl-green-light);
    color: var(--bl-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 61, 46, 0.3);
}

.bl-btn--outline {
    background: transparent;
    color: var(--bl-green);
    border-color: var(--bl-green);
}

.bl-btn--outline:hover {
    background: var(--bl-green);
    color: var(--bl-white);
}

.bl-btn--white {
    background: var(--bl-white);
    color: var(--bl-green);
    border-color: var(--bl-white);
}

.bl-btn--white:hover {
    background: var(--bl-cream);
    color: var(--bl-green);
}

.bl-btn--outline-white {
    background: transparent;
    color: var(--bl-white);
    border-color: rgba(255, 255, 255, 0.6);
}

.bl-btn--outline-white:hover {
    background: var(--bl-white);
    color: var(--bl-green);
}

.bl-btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.bl-btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.bl-btn--full {
    width: 100%;
}

.bl-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.bl-section {
    padding: var(--bl-section-py) 0;
}

.bl-section--cream {
    background: var(--bl-cream);
}

.bl-section--green {
    background: var(--bl-green);
    color: var(--bl-white);
}

.bl-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.bl-section__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bl-rose-dark);
    margin-bottom: 0.5rem;
}

.bl-section--green .bl-section__label {
    color: var(--bl-rose-light);
}

.bl-section__title {
    margin-bottom: 0.75rem;
}

.bl-section__title--white {
    color: var(--bl-white);
}

.bl-section__desc {
    color: var(--bl-text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.bl-section__action {
    text-align: center;
    margin-top: 2.5rem;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.bl-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bl-hero__bg {
    position: absolute;
    inset: 0;
}

.bl-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bl-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.75) 0%, rgba(11, 61, 46, 0.45) 100%);
}

.bl-hero__content {
    position: relative;
    z-index: 1;
    color: var(--bl-white);
    padding: 6rem 0 4rem;
}

.bl-hero__badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bl-rose-light);
    margin-bottom: 1rem;
}

.bl-hero__title {
    color: var(--bl-white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.bl-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 550px;
    margin-bottom: 2rem;
}

.bl-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.bl-text-center .bl-hero__actions {
    justify-content: center;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.bl-trust {
    background: var(--bl-cream);
    padding: 2rem 0;
}

.bl-trust__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bl-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bl-trust__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bl-trust__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
}

.bl-trust__item svg {
    width: 24px;
    height: 24px;
    color: var(--bl-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.bl-trust__item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--bl-text);
    margin-bottom: 0.15rem;
}

.bl-trust__item span {
    font-size: 0.82rem;
    color: var(--bl-text-muted);
}

/* ==========================================================================
   CARDS (Best-Sellers)
   ========================================================================== */

.bl-bestsellers__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--bl-gap);
}

@media (min-width: 600px) {
    .bl-bestsellers__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .bl-bestsellers__grid { grid-template-columns: repeat(4, 1fr); }
}

.bl-card {
    background: var(--bl-white);
    border-radius: var(--bl-radius-lg);
    overflow: hidden;
    box-shadow: var(--bl-shadow);
    transition: transform var(--bl-transition), box-shadow var(--bl-transition);
}

.bl-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bl-shadow-lg);
}

.bl-card__img-wrap {
    position: relative;
    aspect-ratio: 5 / 6;
    overflow: hidden;
}

.bl-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bl-card:hover .bl-card__img {
    transform: scale(1.05);
}

.bl-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--bl-green);
    color: var(--bl-white);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
}

.bl-card__badge--rose {
    background: var(--bl-rose);
    color: var(--bl-text);
}

.bl-card__body {
    padding: 1.25rem;
}

.bl-card__title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.bl-card__desc {
    font-size: 0.88rem;
    color: var(--bl-text-light);
    margin-bottom: 0.75rem;
}

.bl-card__details {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    font-size: 0.82rem;
    color: var(--bl-text-muted);
}

.bl-card__details li {
    padding: 0.2rem 0;
}

.bl-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--bl-border);
}

.bl-card__price {
    font-family: var(--bl-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bl-green);
}

/* ==========================================================================
   EVENT CARDS (Homepage)
   ========================================================================== */

.bl-events__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--bl-gap);
}

@media (min-width: 768px) {
    .bl-events__grid { grid-template-columns: repeat(3, 1fr); }
}

.bl-event-card {
    display: block;
    border-radius: var(--bl-radius-lg);
    overflow: hidden;
    background: var(--bl-white);
    box-shadow: var(--bl-shadow);
    transition: transform var(--bl-transition), box-shadow var(--bl-transition);
    color: var(--bl-text);
}

.bl-event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bl-shadow-lg);
    color: var(--bl-text);
}

.bl-event-card__img-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.bl-event-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bl-event-card:hover .bl-event-card__img {
    transform: scale(1.05);
}

.bl-event-card__body {
    padding: 1.5rem;
}

.bl-event-card__title {
    margin-bottom: 0.5rem;
}

.bl-event-card__body p {
    font-size: 0.9rem;
    color: var(--bl-text-light);
    margin: 0;
}

/* ==========================================================================
   CTA BANNER (Livraison)
   ========================================================================== */

.bl-cta-banner {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.bl-cta-banner__bg {
    position: absolute;
    inset: 0;
}

.bl-cta-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bl-cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.85) 0%, rgba(11, 61, 46, 0.65) 100%);
}

.bl-cta-banner__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--bl-white);
}

.bl-cta-banner__icon svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.bl-cta-banner__title {
    color: var(--bl-white);
    margin-bottom: 1rem;
}

.bl-cta-banner__text {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.bl-cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ==========================================================================
   ABOUT PREVIEW (2-col layout)
   ========================================================================== */

.bl-about-preview__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .bl-about-preview__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.bl-about-preview__grid--reverse .bl-about-preview__image {
    order: 0;
}

@media (min-width: 768px) {
    .bl-about-preview__grid--reverse .bl-about-preview__image {
        order: 1;
    }
}

.bl-about-preview__img {
    border-radius: var(--bl-radius-lg);
    box-shadow: var(--bl-shadow-lg);
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.bl-about-preview__content p {
    color: var(--bl-text-light);
    margin-bottom: 1rem;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.bl-testimonials__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 1rem;
}

.bl-testimonials__star svg {
    color: var(--bl-star);
}

.bl-testimonials__score {
    font-size: 0.9rem;
    color: var(--bl-text-muted);
    margin-left: 0.5rem;
}

.bl-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--bl-gap);
}

@media (min-width: 768px) {
    .bl-testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

.bl-testimonial {
    background: var(--bl-white);
    border-radius: var(--bl-radius-lg);
    padding: 2rem;
    box-shadow: var(--bl-shadow);
    margin: 0;
    border-left: 3px solid var(--bl-rose);
}

.bl-testimonial__stars {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 1rem;
    color: var(--bl-star);
}

.bl-testimonial__text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--bl-text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.bl-testimonial__author {
    font-style: normal;
}

.bl-testimonial__author strong {
    display: block;
    font-size: 0.9rem;
}

.bl-testimonial__author span {
    font-size: 0.8rem;
    color: var(--bl-text-muted);
}

/* ==========================================================================
   WORKSHOP CTA (2-col)
   ========================================================================== */

.bl-workshop-cta {
    background: var(--bl-cream);
}

.bl-workshop-cta__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .bl-workshop-cta__inner { grid-template-columns: 1fr 1fr; }
}

.bl-workshop-cta__content p {
    color: var(--bl-text-light);
    margin-bottom: 1.5rem;
}

.bl-workshop-cta__img {
    border-radius: var(--bl-radius-lg);
    box-shadow: var(--bl-shadow-lg);
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

/* ==========================================================================
   INSTAGRAM GRID
   ========================================================================== */

.bl-instagram__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (min-width: 600px) {
    .bl-instagram__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .bl-instagram__grid { grid-template-columns: repeat(6, 1fr); }
}

.bl-instagram__item {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--bl-radius);
}

.bl-instagram__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity var(--bl-transition);
}

.bl-instagram__item:hover .bl-instagram__img {
    transform: scale(1.08);
    opacity: 0.85;
}

/* ==========================================================================
   PAGE HERO
   ========================================================================== */

.bl-page-hero {
    position: relative;
    padding: 6rem 0 4rem;
    min-height: 40vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bl-page-hero--compact {
    min-height: auto;
    padding: 4rem 0 3rem;
    background: var(--bl-green);
}

.bl-page-hero__bg {
    position: absolute;
    inset: 0;
}

.bl-page-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bl-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.8) 0%, rgba(11, 61, 46, 0.5) 100%);
}

.bl-page-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.bl-page-hero__title {
    color: var(--bl-white);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
}

.bl-page-hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}

/* ==========================================================================
   EVENT DETAIL (Événements page)
   ========================================================================== */

.bl-event-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .bl-event-detail { grid-template-columns: 1fr 1fr; }
}

.bl-event-detail--reverse .bl-event-detail__image {
    order: 0;
}

@media (min-width: 768px) {
    .bl-event-detail--reverse .bl-event-detail__image {
        order: 1;
    }
}

.bl-event-detail__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--bl-radius-lg);
    box-shadow: var(--bl-shadow-lg);
}

/* ==========================================================================
   CHECKLIST
   ========================================================================== */

.bl-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.bl-checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

.bl-checklist svg {
    color: var(--bl-green);
    flex-shrink: 0;
}

/* ==========================================================================
   GRIDS
   ========================================================================== */

.bl-grid {
    display: grid;
    gap: var(--bl-gap);
}

.bl-grid--3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .bl-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   SEASON CARDS
   ========================================================================== */

.bl-season-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--bl-white);
    border-radius: var(--bl-radius-lg);
    box-shadow: var(--bl-shadow);
}

.bl-season-card__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--bl-radius);
    margin-bottom: 1rem;
}

.bl-season-card h3 {
    margin-bottom: 0.5rem;
}

.bl-season-card p {
    font-size: 0.9rem;
    color: var(--bl-text-muted);
    margin: 0;
}

/* ==========================================================================
   GALLERY (Lightbox)
   ========================================================================== */

.bl-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .bl-gallery { grid-template-columns: repeat(3, 1fr); }
}

.bl-gallery__item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--bl-radius);
    cursor: pointer;
    border: none;
    padding: 0;
    background: none;
}

.bl-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bl-gallery__item:hover .bl-gallery__img {
    transform: scale(1.06);
}

/* Lightbox Overlay */
.bl-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--bl-transition), visibility var(--bl-transition);
}

.bl-lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.bl-lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--bl-radius);
}

.bl-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--bl-white);
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--bl-transition);
}

.bl-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   PRICING CARDS (Ateliers)
   ========================================================================== */

.bl-pricing-card {
    background: var(--bl-white);
    border-radius: var(--bl-radius-lg);
    padding: 2rem;
    box-shadow: var(--bl-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
}

.bl-pricing-card--featured {
    border: 2px solid var(--bl-green);
    box-shadow: var(--bl-shadow-lg);
    transform: scale(1.02);
}

.bl-pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bl-green);
    color: var(--bl-white);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 1rem;
    border-radius: 100px;
}

.bl-pricing-card__header {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--bl-border);
}

.bl-pricing-card__header h3 {
    margin-bottom: 0.5rem;
}

.bl-pricing-card__price {
    font-family: var(--bl-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bl-green);
}

.bl-pricing-card__price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--bl-text-muted);
}

.bl-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}

.bl-pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.bl-pricing-card__features svg {
    color: var(--bl-green);
    flex-shrink: 0;
}

/* ==========================================================================
   INFO ITEMS (Ateliers)
   ========================================================================== */

.bl-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .bl-info-grid { grid-template-columns: repeat(2, 1fr); }
}

.bl-info-item {
    display: flex;
    gap: 1rem;
}

.bl-info-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bl-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bl-green);
}

.bl-info-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.bl-info-item p {
    font-size: 0.9rem;
    color: var(--bl-text-light);
    margin: 0;
}

/* ==========================================================================
   REVIEWS (Avis page)
   ========================================================================== */

.bl-rating-hero {
    margin-bottom: 3rem;
}

.bl-rating-hero__stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    color: var(--bl-star);
    margin-bottom: 0.5rem;
}

.bl-rating-hero__stars svg {
    width: 32px;
    height: 32px;
}

.bl-rating-hero__score {
    font-family: var(--bl-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bl-text);
    margin: 0.5rem 0 0.25rem;
}

.bl-rating-hero__count {
    color: var(--bl-text-muted);
    font-size: 0.95rem;
}

/* Rating bars */
.bl-rating-bars {
    max-width: 500px;
    margin: 0 auto;
}

.bl-rating-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.bl-rating-bar__label {
    font-size: 0.82rem;
    color: var(--bl-text-muted);
    min-width: 70px;
}

.bl-rating-bar__track {
    flex: 1;
    height: 8px;
    background: var(--bl-cream);
    border-radius: 4px;
    overflow: hidden;
}

.bl-rating-bar__fill {
    height: 100%;
    background: var(--bl-star);
    border-radius: 4px;
    transition: width 0.8s ease;
}

.bl-rating-bar__pct {
    font-size: 0.82rem;
    color: var(--bl-text-muted);
    min-width: 30px;
    text-align: right;
}

/* Reviews grid */
.bl-reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--bl-gap);
}

@media (min-width: 768px) {
    .bl-reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

.bl-review {
    background: var(--bl-white);
    border-radius: var(--bl-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--bl-shadow);
    margin: 0;
}

.bl-review__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bl-review__stars {
    display: flex;
    gap: 0.1rem;
    color: var(--bl-star);
}

.bl-review__badge {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    background: var(--bl-cream);
    color: var(--bl-green);
}

.bl-review__text {
    font-size: 0.93rem;
    font-style: italic;
    color: var(--bl-text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.bl-review__footer {
    font-style: normal;
}

.bl-review__footer strong {
    font-size: 0.9rem;
    display: block;
}

.bl-review__footer span {
    font-size: 0.8rem;
    color: var(--bl-text-muted);
}

/* ==========================================================================
   VALUES (À propos)
   ========================================================================== */

.bl-value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bl-white);
    border-radius: var(--bl-radius-lg);
    box-shadow: var(--bl-shadow);
}

.bl-value-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bl-cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bl-green);
    margin-bottom: 1rem;
}

.bl-value-card h3 {
    margin-bottom: 0.75rem;
}

.bl-value-card p {
    font-size: 0.9rem;
    color: var(--bl-text-light);
    margin: 0;
}

/* ==========================================================================
   STATS
   ========================================================================== */

.bl-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bl-gap);
    text-align: center;
}

@media (min-width: 768px) {
    .bl-stats { grid-template-columns: repeat(4, 1fr); }
}

.bl-stat__number {
    display: block;
    font-family: var(--bl-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--bl-green);
    line-height: 1.2;
}

.bl-stat__label {
    font-size: 0.85rem;
    color: var(--bl-text-muted);
    margin-top: 0.25rem;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.bl-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .bl-contact__grid { grid-template-columns: 1fr 1.2fr; }
}

.bl-contact__details {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.bl-contact__item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bl-border);
}

.bl-contact__icon {
    flex-shrink: 0;
    color: var(--bl-green);
    margin-top: 2px;
}

.bl-contact__item strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bl-text-muted);
    margin-bottom: 0.2rem;
}

.bl-contact__item p {
    margin: 0;
    font-size: 0.95rem;
}

.bl-contact__sub {
    font-size: 0.82rem !important;
    color: var(--bl-text-muted);
    margin-top: 0.25rem !important;
}

.bl-contact__social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.bl-contact__social a {
    color: var(--bl-green);
    transition: color var(--bl-transition);
}

.bl-contact__social a:hover {
    color: var(--bl-rose-dark);
}

/* Map */
.bl-map__placeholder {
    background: var(--bl-cream);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bl-map__content {
    text-align: center;
    padding: 2rem;
}

.bl-map__content svg {
    width: 48px;
    height: 48px;
    color: var(--bl-green);
    margin-bottom: 1rem;
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.bl-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bl-form__honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.bl-form__row {
    display: grid;
    gap: 1.25rem;
}

.bl-form__row--2 {
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .bl-form__row--2 { grid-template-columns: 1fr 1fr; }
}

.bl-form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--bl-text);
}

.bl-form--dark .bl-form__label {
    color: var(--bl-white);
}

.bl-form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--bl-font-body);
    font-size: 0.95rem;
    color: var(--bl-text);
    background: var(--bl-white);
    border: 1.5px solid var(--bl-border);
    border-radius: var(--bl-radius);
    transition: border-color var(--bl-transition), box-shadow var(--bl-transition);
}

.bl-form__input:focus {
    outline: none;
    border-color: var(--bl-green);
    box-shadow: 0 0 0 3px rgba(11, 61, 46, 0.1);
}

.bl-form--dark .bl-form__input {
    background: rgba(255, 255, 255, 0.95);
}

/* Select dropdown — specific styling */
select.bl-form__input {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555555' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 12px !important;
    padding-right: 2.5rem !important;
    cursor: pointer;
    line-height: 1.5;
    height: auto;
    min-height: 2.75rem;
    /* Ensure select is clickable and renders above other content */
    position: relative;
    z-index: 10;
}

select.bl-form__input:focus {
    outline: none;
    border-color: var(--bl-green) !important;
    box-shadow: 0 0 0 3px rgba(11, 61, 46, 0.1) !important;
}

select.bl-form__input::-ms-expand {
    display: none;
}

/* Dark variant (Ateliers, Événements) */
.bl-form--dark select.bl-form__input {
    background-color: rgba(255, 255, 255, 0.95) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23222222' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 12px !important;
    color: var(--bl-text);
}

/* Select option styling */
select.bl-form__input option {
    font-family: var(--bl-font-body);
    font-size: 0.95rem;
    padding: 0.5rem;
    background: var(--bl-white);
    color: var(--bl-text);
}

.bl-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.bl-form__submit {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.bl-form__note {
    font-size: 0.8rem;
    color: var(--bl-text-muted);
}

.bl-form--dark .bl-form__note {
    color: rgba(255, 255, 255, 0.7);
}

/* Feedback */
.bl-form__feedback {
    padding: 0;
    border-radius: var(--bl-radius);
    font-size: 0.9rem;
    display: none;
}

.bl-form__feedback.is-success {
    display: block;
    padding: 1rem;
    background: rgba(46, 125, 50, 0.1);
    color: var(--bl-success);
    border: 1px solid var(--bl-success);
}

.bl-form__feedback.is-error {
    display: block;
    padding: 1rem;
    background: rgba(211, 47, 47, 0.1);
    color: var(--bl-error);
    border: 1px solid var(--bl-error);
}

.bl-form--dark .bl-form__feedback.is-success {
    background: rgba(255, 255, 255, 0.15);
    color: #a5d6a7;
    border-color: #a5d6a7;
}

.bl-form--dark .bl-form__feedback.is-error {
    background: rgba(255, 255, 255, 0.15);
    color: #ef9a9a;
    border-color: #ef9a9a;
}

/* Input validation */
.bl-form__input.is-invalid {
    border-color: var(--bl-error);
}

.bl-form__input.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15);
}

/* ==========================================================================
   LEGAL (Mentions légales)
   ========================================================================== */

.bl-legal {
    max-width: 800px;
    margin: 0 auto;
}

.bl-legal__block {
    margin-bottom: 3rem;
}

.bl-legal__block h2 {
    font-size: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bl-cream);
    margin-bottom: 1.25rem;
}

.bl-legal__block h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.bl-legal__block p,
.bl-legal__block li {
    color: var(--bl-text-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   TABLE
   ========================================================================== */

.bl-table-wrap {
    overflow-x: auto;
}

.bl-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.bl-table th,
.bl-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--bl-border);
}

.bl-table th {
    background: var(--bl-cream);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bl-text-muted);
}

.bl-table tr:hover td {
    background: var(--bl-cream);
}

/* ==========================================================================
   FAQ (Livraison page)
   ========================================================================== */

.bl-faq__item {
    border: 1px solid var(--bl-border);
    border-radius: var(--bl-radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--bl-white);
}

.bl-faq__question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bl-faq__question::-webkit-details-marker {
    display: none;
}

.bl-faq__question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--bl-green);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform var(--bl-transition);
}

.bl-faq__item[open] .bl-faq__question::after {
    content: '−';
}

.bl-faq__answer {
    padding: 0 1.5rem 1.25rem;
}

.bl-faq__answer p {
    color: var(--bl-text-light);
    font-size: 0.93rem;
    margin: 0;
}

/* ==========================================================================
   SCROLL TO TOP — Custom Bloomelia button
   ========================================================================== */

.bl-scroll-top {
    position: fixed;
    bottom: calc(90px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    z-index: 899;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bl-green);
    color: var(--bl-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.bl-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bl-scroll-top:hover {
    background: var(--bl-green-light);
}

.bl-scroll-top svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 1024px) {
    .bl-scroll-top {
        bottom: 30px;
        width: 48px;
        height: 48px;
    }
}

/* ==========================================================================
   STICKY CTA (Mobile)
   ========================================================================== */

.bl-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    background: var(--bl-white);
    border-top: 1px solid var(--bl-border);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform var(--bl-transition);
    padding-bottom: env(safe-area-inset-bottom);
}

.bl-sticky-cta.is-visible {
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .bl-sticky-cta { display: none; }
}

.bl-sticky-cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bl-text);
    text-decoration: none;
    transition: background var(--bl-transition);
}

.bl-sticky-cta__btn:hover {
    color: var(--bl-text);
}

.bl-sticky-cta__btn--phone {
    border-right: 1px solid var(--bl-border);
}

.bl-sticky-cta__btn--phone:hover {
    background: var(--bl-cream);
}

.bl-sticky-cta__btn--order {
    background: var(--bl-green);
    color: var(--bl-white);
}

.bl-sticky-cta__btn--order:hover {
    background: var(--bl-green-light);
    color: var(--bl-white);
}

.bl-sticky-cta__btn svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.bl-footer__top {
    background: var(--bl-green-dark);
    color: var(--bl-white);
    padding: 4rem 0;
}

.bl-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .bl-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .bl-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* Footer Logo */
.bl-footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bl-white);
    margin-bottom: 1rem;
}

.bl-footer__logo:hover {
    color: var(--bl-white);
}

.bl-footer__logo-icon svg {
    width: 24px;
    height: 24px;
    color: var(--bl-rose);
}

.bl-footer__logo-text {
    font-family: var(--bl-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.bl-footer__desc {
    font-size: 0.88rem;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.bl-footer__social {
    display: flex;
    gap: 1rem;
}

.bl-footer__social a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--bl-transition);
}

.bl-footer__social a:hover {
    color: var(--bl-rose-light);
}

/* Footer titles & links */
.bl-footer__title {
    font-family: var(--bl-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--bl-white);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.bl-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bl-footer__links li {
    margin-bottom: 0.5rem;
}

.bl-footer__links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    transition: color var(--bl-transition);
}

.bl-footer__links a:hover {
    color: var(--bl-white);
}

/* Footer contact */
.bl-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bl-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.bl-footer__contact svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    flex-shrink: 0;
    margin-top: 3px;
}

.bl-footer__contact span {
    opacity: 0.8;
}

.bl-footer__contact a {
    color: rgba(255, 255, 255, 0.8);
}

.bl-footer__contact a:hover {
    color: var(--bl-white);
}

/* Footer text + CTA */
.bl-footer__text {
    font-size: 0.88rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.bl-footer__cta {
    font-size: 0.85rem;
}

/* Footer bottom */
.bl-footer__bottom {
    background: var(--bl-green);
    padding: 1.25rem 0;
    font-size: 0.82rem;
}

.bl-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.bl-footer__bottom p {
    margin: 0;
    opacity: 0.7;
    color: var(--bl-white);
}

.bl-footer__legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}

.bl-footer__legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
}

.bl-footer__legal a:hover {
    color: var(--bl-white);
}

/* ==========================================================================
   FOCUS STYLES (Accessibility)
   ========================================================================== */

*:focus-visible {
    outline: 2px solid var(--bl-green);
    outline-offset: 2px;
}

.bl-btn:focus-visible {
    outline-offset: 3px;
}

/* ==========================================================================
   PRINT
   ========================================================================== */

@media print {
    .bl-topbar,
    .bl-header,
    .bl-sticky-cta,
    .bl-footer {
        display: none;
    }

    .bl-hero,
    .bl-page-hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .bl-hero__overlay,
    .bl-page-hero__overlay {
        display: none;
    }
}
