/* ============================================================
   BRUNOLARBO — MAIN CSS
   Modern, light, animated WordPress theme
   ============================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
    --green:       #72ba05;
    --green-dark:  #5a9604;
    --green-light: #e8f5c8;
    --blue:        #4169e1;
    --blue-dark:   #2f53c4;
    --blue-light:  #e8edfc;
    --dark:        #0D0F18;
    --gray:        #71737c;
    --gray-light:  #a8aab5;
    --bg:          #ffffff;
    --bg-alt:      #f7f9f4;
    --bg-card:     #ffffff;
    --border:      #e8eaf0;

    --radius-sm:   10px;
    --radius:      16px;
    --radius-lg:   24px;
    --radius-xl:   32px;
    --radius-full: 9999px;

    --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
    --shadow:      0 4px 20px rgba(0,0,0,.08);
    --shadow-md:   0 8px 32px rgba(0,0,0,.10);
    --shadow-lg:   0 16px 48px rgba(0,0,0,.12);
    --shadow-green: 0 8px 24px rgba(114,186,5,.25);
    --shadow-blue:  0 8px 24px rgba(65,105,225,.20);

    --container:   1240px;
    --gutter:      clamp(16px, 4vw, 40px);

    --font-body:   'VelaSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-head:   'Akrobat', 'VelaSans', sans-serif;

    --t-fast:      0.15s ease;
    --t-base:      0.25s ease;
    --t-slow:      0.4s ease;
    --t-spring:    0.35s cubic-bezier(.34,1.56,.64,1);
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    overflow-x: hidden; /* prevent any element from creating horizontal scroll */
}
body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: #f8fdf3;
    background-image:
        radial-gradient(ellipse at 7% 0%, rgba(114,186,5,.10) 0%, transparent 40%),
        radial-gradient(ellipse at 93% 100%, rgba(65,105,225,.06) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cellipse cx='100' cy='118' rx='20' ry='22' fill='%2372ba05' fill-opacity='0.045' stroke='none'/%3E%3Cellipse cx='100' cy='118' rx='20' ry='22' fill='none' stroke='%2372ba05' stroke-opacity='0.055' stroke-width='1'/%3E%3Cpath d='M100 96 C98 88 90 82 84 86 C90 83 98 90 100 96Z' fill='%2372ba05' fill-opacity='0.055' stroke='none'/%3E%3Cline x1='100' y1='96' x2='100' y2='90' stroke='%2372ba05' stroke-opacity='0.065' stroke-width='1.2'/%3E%3Cellipse cx='94' cy='111' rx='6' ry='7' fill='%23c8e87a' fill-opacity='0.045' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
/* No apple pattern on legal/privacy pages */
body.page-privacy,
body.page-template-page-privacy {
    background-image:
        radial-gradient(ellipse at 7% 0%, rgba(114,186,5,.08) 0%, transparent 40%),
        radial-gradient(ellipse at 93% 100%, rgba(65,105,225,.05) 0%, transparent 40%);
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-base); }
a:hover { color: var(--green); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-head);
    line-height: 1.15;
    font-weight: 700;
    color: var(--dark);
}

/* ── 3. UTILITY CLASSES ───────────────────────────────────── */
.bl-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.bl-text-green  { color: var(--green); }
.bl-text-blue   { color: var(--blue); }
.bl-text-gray   { color: var(--gray); }
.bl-section { padding: 80px 0; }

.bl-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.bl-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-light);
    color: var(--green-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}
.bl-section-tag--light {
    background: rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
}
.bl-section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}
.bl-section-desc {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.65;
    font-family: var(--font-body);
}

/* Badge */
.bl-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}
.bl-badge--green { background: var(--green-light); color: var(--green-dark); }
.bl-badge--gray  { background: var(--border); color: var(--gray); }
.bl-badge--xs    { font-size: 10px; padding: 2px 7px; }

/* ── 4. SCROLL PROGRESS ───────────────────────────────────── */
.bl-scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    z-index: 9999;
    width: 0%;
    transition: width .05s linear;
}

/* ── 5. HEADER ────────────────────────────────────────────── */
.bl-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0;
    transition: box-shadow var(--t-slow);
}
/* Blur via ::before so backdrop-filter doesn't create a new containing block
   for position:fixed children (mobile nav fix for Chrome/Safari) */
.bl-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background var(--t-slow), backdrop-filter var(--t-slow), box-shadow var(--t-slow);
    z-index: -1;
    border-radius: 0;
}
.bl-header.scrolled::before {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.bl-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 72px;
}
.bl-header__logo img { height: 44px; width: auto; }
.bl-header__logo { flex-shrink: 0; }

/* Nav */
.bl-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.bl-nav__item a {
    display: block;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    border-radius: var(--radius-sm);
    transition: all var(--t-base);
    white-space: nowrap;
}
.bl-nav__item a:hover,
.bl-nav__item--active a {
    color: var(--green);
    background: var(--green-light);
}

/* Actions */
.bl-header__actions { display: flex; align-items: center; gap: 12px; }

/* Burger */
.bl-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    transition: background var(--t-base);
}
.bl-burger:hover { background: var(--bg-alt); }
.bl-burger span {
    display: block;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform var(--t-base), opacity var(--t-base);
    transform-origin: center;
}
.bl-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bl-burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.bl-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.bl-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13,15,24,.5);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--t-slow);
}
.bl-nav-overlay.active { opacity: 1; }

/* ── 6. BUTTONS ───────────────────────────────────────────── */
.bl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--t-spring);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
/* Ripple effect */
.bl-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.15);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base);
    border-radius: inherit;
}
.bl-btn:hover::before { transform: scaleX(1); }

.bl-btn--sm  { padding: 10px 20px; font-size: 14px; }
.bl-btn--md  { padding: 13px 28px; font-size: 16px; }
.bl-btn--lg  { padding: 16px 36px; font-size: 18px; }

.bl-btn--primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: var(--shadow-green);
}
.bl-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(114,186,5,.35);
    color: #fff;
}
.bl-btn--primary:active { transform: translateY(0); }

.bl-btn--blue {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    box-shadow: var(--shadow-blue);
}
.bl-btn--blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(65,105,225,.35);
    color: #fff;
}

.bl-btn--outline {
    background: transparent;
    border-color: var(--green);
    color: var(--green);
}
.bl-btn--outline:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-2px);
}
.bl-btn--outline-white {
    background: transparent;
    border-color: rgba(255,255,255,.6);
    color: #fff;
}
.bl-btn--outline-white:hover { background: rgba(255,255,255,.15); color: #fff; }

.bl-btn--white {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
}
.bl-btn--white:hover { background: var(--green-light); color: var(--green-dark); }

/* ── 7. HERO ──────────────────────────────────────────────── */
.bl-hero {
    position: relative;
    padding: 130px 0 60px;
    background: var(--bg);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bl-hero__bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.bl-hero__bg-circle--1 {
    width: 700px; height: 700px;
    top: -200px; right: -150px;
    background: radial-gradient(circle, rgba(114,186,5,.08) 0%, transparent 70%);
}
.bl-hero__bg-circle--2 {
    width: 500px; height: 500px;
    bottom: -100px; left: -100px;
    background: radial-gradient(circle, rgba(65,105,225,.06) 0%, transparent 70%);
}

.bl-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Badge */
.bl-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-light);
    border: 1px solid rgba(114,186,5,.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 24px;
}
.bl-hero__badge img { flex-shrink: 0; }

/* Title */
.bl-hero__title {
    font-size: clamp(40px, 5.5vw, 74px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: -.03em;
    margin-bottom: 24px;
}

/* Subtitle / desc */
.bl-hero__subtitle {
    font-size: clamp(16px, 1.8vw, 22px);
    color: var(--dark);
    line-height: 1.55;
    margin-bottom: 16px;
}
.bl-hero__desc {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* CTAs */
.bl-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    align-items: center;
}
/* Primary CTA — card style like contact card */
.bl-hero__cta-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #fff;
    border-radius: 16px;
    padding: 14px 20px 14px 16px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(114,186,5,.32);
    transition: transform var(--t-base), box-shadow var(--t-base);
    min-width: 0;
}
.bl-hero__cta-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(114,186,5,.4);
    color: #fff;
}
.bl-hero__cta-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,.18);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.bl-hero__cta-body { display: flex; flex-direction: column; }
.bl-hero__cta-label { font-size: 15px; font-weight: 700; font-family: var(--font-head); line-height: 1.2; }
.bl-hero__cta-sub { font-size: 12px; opacity: .8; margin-top: 2px; }
.bl-hero__cta-arrow { margin-left: 4px; flex-shrink: 0; opacity: .7; }

/* Mini stats */
.bl-hero__mini-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.bl-hero__mini-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}
.bl-hero__mini-stat-value {
    display: block;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 22px;
    color: var(--green);
    line-height: 1;
}
.bl-hero__mini-stat-label {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-top: 3px;
}

/* Hero Media */
.bl-hero__media {
    position: relative;
    height: 560px;
}
.bl-hero__photo-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}
.bl-hero__photo-main {
    position: absolute;
    top: 40px; right: 0;
    width: 440px; height: 440px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.bl-hero__img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.bl-hero__photo-main:hover .bl-hero__img-main { transform: scale(1.04); }
.bl-hero__photo-secondary {
    position: absolute;
    bottom: 40px; left: 0;
    width: 200px; height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid #fff;
}
.bl-hero__photo-secondary img { width: 100%; height: 100%; object-fit: cover; }

/* Floating apples */
.bl-hero__apple {
    position: absolute;
    pointer-events: none;
    will-change: transform;
}
.bl-hero__apple img { width: 90px; filter: drop-shadow(0 8px 16px rgba(0,0,0,.15)); }
.bl-hero__apple--1 { top: -20px; left: -40px; animation: float1 6s ease-in-out infinite; }
.bl-hero__apple--2 { bottom: 60px; right: -20px; animation: float2 7s ease-in-out infinite; }

@keyframes float1 {
    0%,100% { transform: translateY(0) rotate(-5deg); }
    50%      { transform: translateY(-20px) rotate(5deg); }
}
@keyframes float2 {
    0%,100% { transform: translateY(0) rotate(8deg); }
    50%      { transform: translateY(-15px) rotate(-4deg); }
}

/* Float cards */
.bl-hero__float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: var(--radius);
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    animation: float-card 5s ease-in-out infinite;
}
.bl-hero__float-card:first-of-type { top: 20px; left: 10px; animation-delay: 0s; }
.bl-hero__float-card--2 { bottom: 8px; right: 10px; animation-delay: -2.5s; }
.bl-hero__float-card-icon { font-size: 24px; }
.bl-hero__float-card-value { display: block; font-weight: 700; font-size: 13px; color: var(--dark); }
.bl-hero__float-card-label { display: block; font-size: 11px; color: var(--gray); }

@keyframes float-card {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* Hero wave */
.bl-hero__wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    line-height: 0;
}
.bl-hero__wave svg { width: 100%; height: 60px; }

/* ── 8. STATS BAR ─────────────────────────────────────────── */
.bl-stats {
    background: var(--bg-alt);
    padding: 80px 0;
}
.bl-stats__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.bl-stats__item {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 36px 24px;
}
.bl-stats__divider {
    width: 1px;
    height: 70px;
    background: var(--border);
    flex-shrink: 0;
}
.bl-stats__value {
    font-family: var(--font-head);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -.02em;
}
.bl-stats__label {
    font-size: 16px;
    color: var(--gray);
    max-width: 180px;
    margin: 0 auto;
    line-height: 1.4;
}

/* ── 9. FEATURES ──────────────────────────────────────────── */
/* Anchor scroll offset for fixed header */
.bl-features, .bl-catalog-section, .bl-howto, .bl-news-preview, .bl-order, .bl-page-hero {
    scroll-margin-top: 80px;
}

.bl-features {
    padding: 100px 0;
    background: #fafff5;
    position: relative;
    overflow: hidden;
}
/* Organic warm blob decorations */
.bl-features::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    background: radial-gradient(ellipse at 60% 40%, rgba(114,186,5,.10) 0%, transparent 70%);
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    pointer-events: none;
}
.bl-features::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(ellipse, rgba(65,105,225,.07) 0%, transparent 65%);
    border-radius: 50% 70% 40% 60%;
    pointer-events: none;
}
.bl-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bl-feature-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--t-base);
    overflow: hidden;
}
.bl-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--feature-color, var(--green));
    transform: scaleX(0);
    transition: transform var(--t-base);
    transform-origin: left;
}
.bl-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(114,186,5,.2);
}
.bl-feature-card:hover::after { transform: scaleX(1); }

.bl-feature-card__icon-wrap {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-light);
    border-radius: var(--radius);
    margin-bottom: 20px;
    transition: transform var(--t-spring);
}
.bl-feature-card:hover .bl-feature-card__icon-wrap { transform: scale(1.1) rotate(-3deg); }
.bl-feature-card__icon-wrap img { width: 36px; height: 36px; object-fit: contain; }

.bl-feature-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.bl-feature-card__text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}
.bl-feature-card__accent {
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    border-radius: 50%;
    opacity: .05;
    transition: opacity var(--t-base), transform var(--t-base);
}
.bl-feature-card:hover .bl-feature-card__accent { opacity: .08; transform: scale(1.2); }

/* ── 10. TREES CATALOG ────────────────────────────────────── */
.bl-trees {
    background: linear-gradient(180deg, #f7faf2 0%, #edf5e0 40%, #f4f9ef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.bl-trees::before {
    content: '';
    position: absolute;
    top: 50%; left: -120px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(114,186,5,.08) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    transform: translateY(-50%);
}
.bl-trees::after {
    content: '';
    position: absolute;
    top: 20%; right: -80px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(65,105,225,.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.bl-trees__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.bl-tree-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all var(--t-base);
}
.bl-tree-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(114,186,5,.15);
}
.bl-tree-card__badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}
.bl-tree-card__thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-alt);
}
.bl-tree-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.bl-tree-card:hover .bl-tree-card__img { transform: scale(1.06); }
.bl-tree-card__no-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}
.bl-tree-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}
.bl-tree-card__title {
    font-size: 20px;
    font-weight: 700;
}
.bl-tree-card__title a { color: var(--dark); }
.bl-tree-card__title a:hover { color: var(--green); }
.bl-tree-card__excerpt {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}
.bl-tree-card__specs {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bl-tree-card__spec {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 13px;
    color: var(--gray);
}
.bl-tree-card__spec svg { flex-shrink: 0; margin-top: 2px; }
.bl-tree-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.bl-tree-card__price-value {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
}
.bl-tree-card__price-currency { font-size: 18px; color: var(--gray); }
.bl-tree-card__price-on-request {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

.bl-trees__empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
}
.bl-trees__empty-icon { font-size: 64px; margin-bottom: 16px; }
.bl-trees__cta { margin-top: 16px; }
.bl-trees__cta-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--t-base), border-color var(--t-base);
}
.bl-trees__cta-card:hover { box-shadow: var(--shadow); border-color: rgba(65,105,225,.25); }
.bl-trees__cta-icon {
    width: 60px; height: 60px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.bl-trees__cta-body { flex: 1; text-align: left; }
.bl-trees__cta-title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.bl-trees__cta-sub { display: block; font-size: 14px; color: var(--gray); }
@media (max-width: 600px) {
    .bl-trees__cta-card { flex-direction: column; text-align: center; }
    .bl-trees__cta-body { text-align: center; }
    .bl-trees__cta-card .bl-btn { width: 100%; justify-content: center; }
}

/* Tree card hidden state (pagination) */
.bl-tree-card--hidden { display: none; }
.bl-trees__more {
    text-align: center;
    margin-top: 40px;
}
.bl-trees__more .bl-btn {
    gap: 8px;
    transition: gap .2s;
}
.bl-trees__more .bl-btn:hover svg {
    transform: translateY(2px);
}
.bl-trees__more .bl-btn svg {
    transition: transform .2s;
}
/* Desktop: expand-inline btn only; tablet/mobile catalog links hidden by default */
.bl-trees__catalog-link        { display: none; }
.bl-trees__tablet-catalog-link { display: none; }
/* Tablet (481px–1024px): show 4th card, tablet catalog link, hide show-more btn */
@media (min-width: 481px) and (max-width: 1024px) {
    .bl-tree-card--4th             { display: flex !important; }
    .bl-trees__tablet-catalog-link { display: inline-flex !important; align-items: center; }
    .bl-trees__show-more-btn       { display: none !important; }
}
/* Mobile (≤480px): 1 column, mobile catalog link */
@media (max-width: 480px) {
    .bl-trees__grid                { grid-template-columns: 1fr !important; }
    .bl-trees__show-more-btn       { display: none !important; }
    .bl-trees__catalog-link        { display: inline-flex !important; align-items: center; }
    .bl-trees__tablet-catalog-link { display: none !important; }
    .bl-tree-card--4th             { display: none !important; }
}

/* ── 11. HOW-TO ───────────────────────────────────────────── */
.bl-howto {
    background: linear-gradient(135deg, #fffef8 0%, #f8fff3 60%, #f5feff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.bl-howto::before {
    content: '';
    position: absolute;
    top: -40px; right: 5%;
    width: 250px; height: 250px;
    background: radial-gradient(circle at 40% 40%, rgba(255,220,50,.08) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.bl-howto::after {
    content: '';
    position: absolute;
    bottom: -40px; left: 10%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(114,186,5,.07) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.bl-howto__steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 80px;
}
.bl-howto__step {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--t-base);
    position: relative;
}
.bl-howto__step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bl-howto__step-num {
    font-family: var(--font-head);
    font-size: 64px;
    font-weight: 900;
    color: var(--green-light);
    line-height: 1;
    margin-bottom: -12px;
}
.bl-howto__step-icon { font-size: 40px; margin-bottom: 16px; }
.bl-howto__step-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.bl-howto__step-text { font-size: 14px; color: var(--gray); line-height: 1.65; margin: 0; }
.bl-howto__step-arrow {
    display: flex;
    align-items: center;
    padding: 0 8px;
    flex-shrink: 0;
    margin-top: 80px;
}

/* Extras (пособие + сертификат) */
.bl-howto__extras {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.bl-howto__extra {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    transition: all var(--t-base);
}
.bl-howto__extra:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bl-howto__extra-img {
    flex-shrink: 0;
    width: 80px;
}
.bl-howto__extra-img img { border-radius: var(--radius-sm); }
.bl-howto__extra-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.bl-howto__extra-body p { font-size: 14px; color: var(--gray); line-height: 1.6; margin: 0; }

/* ── 12. NEWS ─────────────────────────────────────────────── */
.bl-news-preview {
    padding: 100px 0;
    background: linear-gradient(160deg, #f0f6ff 0%, #f7fbf0 50%, #f5f9ff 100%);
    position: relative;
    overflow: hidden;
}
.bl-news-preview::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(65,105,225,.07) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.bl-news-preview::after {
    content: '';
    position: absolute;
    bottom: -40px; left: 5%;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(114,186,5,.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.bl-news-page { padding: 100px 0; background: var(--bg-alt); }
.bl-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.bl-news-grid--large { grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 60px; }

.bl-news-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all var(--t-base);
}
.bl-news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bl-news-card__thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.bl-news-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.bl-news-card:hover .bl-news-card__img { transform: scale(1.06); }
.bl-news-card__format-badge {
    position: absolute;
    bottom: 12px; left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(13,15,24,.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}
.bl-news-card__body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.bl-news-card__date { font-size: 12px; color: var(--gray-light); text-transform: capitalize; }
.bl-news-card__title { font-size: 17px; font-weight: 700; line-height: 1.3; }
.bl-news-card__title a { color: var(--dark); }
.bl-news-card__title a:hover { color: var(--green); }
.bl-news-card__excerpt { font-size: 14px; color: var(--gray); line-height: 1.6; flex: 1; margin: 0; }
.bl-news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    margin-top: 4px;
}
.bl-news-card__link:hover { gap: 8px; }
.bl-news-preview__footer, .bl-news-page .bl-pagination { text-align: center; }

/* ── 13. ORDER FORM ───────────────────────────────────────── */
.bl-order {
    background: var(--bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.bl-order__bg-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.bl-order__decor-img {
    position: absolute;
    opacity: .06;
    filter: blur(2px);
}
.bl-order__decor-img--left  { left: -60px; top: 50%; transform: translateY(-50%); width: 300px; }
.bl-order__decor-img--right { right: -60px; bottom: 0; width: 250px; }

.bl-order__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}
.bl-order__header .bl-section-title { text-align: left; font-size: clamp(28px, 3.5vw, 44px); }
.bl-order__header .bl-section-tag { display: inline-flex; }
.bl-order__benefits {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bl-order__benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark);
    line-height: 1.5;
    padding: 8px 12px;
    background: rgba(114,186,5,.06);
    border-radius: 10px;
    border-left: 3px solid #72ba05;
}
.bl-order__benefits li svg { flex-shrink: 0; }

.bl-order__form-wrap {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

/* CF7 styles */
.wpcf7 { font-family: var(--font-body); }
.wpcf7 .wpcf7-form { display: flex; flex-direction: column; gap: 0; }
.cf7-order .form-columns { display: flex !important; gap: 24px !important; }
.cf7-order .form-column { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
/* First column — main contact fields — styled as warm card */
.cf7-order .form-column:first-child {
    background: linear-gradient(135deg, #f0fde4, #e8f5c8);
    border: 1.5px solid rgba(114,186,5,.25);
    border-radius: 14px;
    padding: 16px 16px 20px;
    position: relative;
}
.cf7-order .form-column:first-child::before {
    content: 'Ваши контактные данные';
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(114,186,5,.2);
}
/* Labels inside first column — transparent (column already has bg) */
.cf7-order .form-column:first-child > label {
    background: rgba(255,255,255,.7) !important;
    border-color: rgba(114,186,5,.2) !important;
}

/* CF7 label styling */
.wpcf7 label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 5px;
    letter-spacing: .03em;
    text-transform: uppercase;
}
/* Each label+input pair as a styled field group */
.cf7-order .form-column > label,
.cf7-order fieldset label {
    background: #f8faf5;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px 12px;
    transition: border-color var(--t-base), box-shadow var(--t-base);
    margin-bottom: 0;
}
.cf7-order .form-column > label:focus-within,
.cf7-order fieldset label:focus-within {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(114,186,5,.1);
    background: #fff;
}
.cf7-order .form-column > label > span:first-child,
.cf7-order fieldset label > span:first-child {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
/* Input fields inside the styled labels */
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 1.5px solid transparent;
    border-radius: 0;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--dark);
    background: transparent;
    transition: border-color var(--t-base);
    appearance: none;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border-bottom-color: var(--green);
    box-shadow: none;
}
/* Outside the styled label groups (plain inputs without card wrapper) */
.wpcf7-form p input[type="text"],
.wpcf7-form p input[type="tel"],
.wpcf7-form p input[type="email"] {
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
}
.wpcf7-form p input[type="text"]:focus,
.wpcf7-form p input[type="tel"]:focus,
.wpcf7-form p input[type="email"]:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(114,186,5,.12);
}
/* Gift conditional fieldset style */
.cf7-order #conditional-fields {
    background: linear-gradient(135deg, #fffbf0, #f5ffe8);
    border: 1.5px solid rgba(114,186,5,.25);
    border-radius: 14px;
    padding: 16px;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cf7-order #conditional-fields::before {
    content: 'Данные получателя подарка';
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 4px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(114,186,5,.2);
}
.wpcf7 textarea { min-height: 80px; resize: vertical; }

/* CF7 Acceptance & Checkbox — custom styled */
.wpcf7 .wpcf7-acceptance {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #f0fde4, #e8f5ff);
    border-radius: 10px; border: 1.5px solid rgba(114,186,5,.25);
    margin-top: 8px;
}
.wpcf7 .wpcf7-acceptance label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; width: 100%; }
/* Hide native, replace with custom */
.wpcf7 .wpcf7-acceptance input[type="checkbox"],
.wpcf7 .wpcf7-checkbox input[type="checkbox"] {
    appearance: none; -webkit-appearance: none;
    width: 20px; height: 20px; min-width: 20px;
    border: 2px solid #c8e8a0; border-radius: 6px;
    background: #fff; cursor: pointer;
    position: relative; margin-top: 1px; flex-shrink: 0;
    transition: background .2s, border-color .2s, box-shadow .2s;
}
.wpcf7 .wpcf7-acceptance input[type="checkbox"]:hover,
.wpcf7 .wpcf7-checkbox input[type="checkbox"]:hover {
    border-color: var(--green); box-shadow: 0 0 0 3px rgba(114,186,5,.15);
}
.wpcf7 .wpcf7-acceptance input[type="checkbox"]:checked,
.wpcf7 .wpcf7-checkbox input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #72ba05, #5a9604); border-color: #72ba05;
}
.wpcf7 .wpcf7-acceptance input[type="checkbox"]:checked::after,
.wpcf7 .wpcf7-checkbox input[type="checkbox"]:checked::after {
    content: ''; position: absolute; left: 4px; top: 1px;
    width: 6px; height: 10px; border: 2px solid #fff;
    border-top: none; border-left: none; transform: rotate(45deg); display: block;
}
.wpcf7 .acceptance-label, .wpcf7 .wpcf7-list-item-label { font-size: 13px; color: #3a4a2a; line-height: 1.5; font-weight: 500; text-transform: none !important; letter-spacing: normal !important; }
.wpcf7 .acceptance-label a { color: var(--blue); text-decoration: underline; }
/* Prevent uppercase leaking into CF7 acceptance/checkbox text from fieldset label rules */
.wpcf7 .wpcf7-acceptance label span,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label span { text-transform: none !important; letter-spacing: normal !important; }
/* Gift checkbox row */
.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
    display: flex; align-items: center;
    padding: 11px 14px;
    background: linear-gradient(135deg, #fffbf0, #fff8e7);
    border-radius: 10px; border: 1.5px solid rgba(114,186,5,.2);
    cursor: pointer; margin: 0;
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label { display: flex; align-items: center; gap: 10px; cursor: pointer; width: 100%; }
.wpcf7 .wpcf7-checkbox .wpcf7-list-item-label { color: var(--dark); font-weight: 600; font-size: 14px; }

/* CF7 — ensure acceptance (GDPR) appears ABOVE submit button */
.cf7-order {
    display: flex;
    flex-direction: column;
}
.cf7-order > div:first-child { order: 1; }
.cf7-order > p:has(.wpcf7-acceptance) { order: 2; }
.cf7-order > p:has([type="submit"]),
.cf7-order > div:has([type="submit"]) { order: 3; text-align: center; }
/* Label-above-input for fields inside <p> wrappers in form columns */
.cf7-order .form-column > p {
    display: flex;
    flex-direction: column;
}
/* Label may wrap input inside it (CF7 structure) — make it flex column */
.cf7-order .form-column > p > label { order: 1; display: flex; flex-direction: column; gap: 4px; margin-bottom: 0; }
/* Style only the text span inside the label, not the whole label element */
.cf7-order .form-column > p > label > span:first-child:not(.wpcf7-form-control-wrap) {
    font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--gray);
}
/* wpcf7-form-control-wrap and direct inputs stretch full width */
.cf7-order .form-column > p > label > .wpcf7-form-control-wrap,
.cf7-order .form-column > p > label > input,
.cf7-order .form-column > p > label > textarea,
.cf7-order .form-column > p > label > select { width: 100%; }
/* Direct siblings of label inside p (non-wrapping CF7 structure) */
.cf7-order .form-column > p > input,
.cf7-order .form-column > p > textarea,
.cf7-order .form-column > p > select { order: 2; }

/* CF7 Submit button */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
    display: inline-block !important;
    text-align: center !important;
    box-sizing: border-box !important;
    background: linear-gradient(135deg, var(--green), var(--green-dark)) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--radius-full) !important;
    padding: 18px 48px !important;
    font-size: 16px !important;
    font-family: var(--font-head) !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all var(--t-spring) !important;
    box-shadow: var(--shadow-green) !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 200px !important;
    letter-spacing: .01em;
    white-space: normal !important;
    line-height: 1.3 !important;
    margin: 0 auto !important;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 32px rgba(114,186,5,.35) !important;
}
/* CF7 validation */
.wpcf7 .wpcf7-not-valid-tip { color: #e53e3e; font-size: 12px; margin-top: 4px; }
.wpcf7 .wpcf7-response-output {
    margin-top: 20px !important;
    padding: 14px 18px !important;
    border-radius: var(--radius) !important;
    font-size: 14px !important;
    border: 1px solid var(--border) !important;
}
.wpcf7-mail-sent-ok { background: #f0fff4 !important; border-color: var(--green) !important; color: var(--green-dark) !important; }
.wpcf7-validation-errors, .wpcf7-mail-sent-ng { background: #fff5f5 !important; border-color: #fc8181 !important; color: #c53030 !important; }

/* ── 14. CTA BANNER ───────────────────────────────────────── */
.bl-cta-banner {
    background: linear-gradient(145deg, #0d1f3c 0%, #162a50 40%, #1e3a6e 100%);
    padding: 90px 0;
    overflow: hidden;
    position: relative;
}
/* Subtle green glow accent */
.bl-cta-banner::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114,186,5,.18) 0%, transparent 70%);
    pointer-events: none;
}
.bl-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(65,105,225,.14) 0%, transparent 70%);
    pointer-events: none;
}
/* Decorative leaf lines */
.bl-cta-banner__deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.bl-cta-banner__deco::before {
    content: '';
    position: absolute;
    top: 20px; right: 10%;
    width: 120px; height: 120px;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    border: 1.5px solid rgba(114,186,5,.2);
}
.bl-cta-banner__deco::after {
    content: '';
    position: absolute;
    bottom: 20px; left: 8%;
    width: 80px; height: 80px;
    border-radius: 50% 40% 60% 50%;
    border: 1px solid rgba(65,105,225,.2);
}
.bl-cta-banner__inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}
.bl-cta-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(114,186,5,.15);
    border: 1px solid rgba(114,186,5,.3);
    color: #a8e060;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}
.bl-cta-banner__title {
    font-size: clamp(26px, 4vw, 48px);
    color: #fff;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.bl-cta-banner__title em {
    font-style: normal;
    background: linear-gradient(90deg, #a8e060, #72ba05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bl-cta-banner__sub {
    font-size: 17px;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.bl-cta-banner__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
/* Blue CTA button for dark background */
.bl-btn--cta-dark {
    background: linear-gradient(135deg, #4f80f5 0%, var(--blue-dark) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 28px rgba(65,105,225,.35);
}
.bl-btn--cta-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(65,105,225,.5);
    color: #fff;
}
.bl-btn--cta-dark::before { background: rgba(255,255,255,.12); }

/* ── 15. FOOTER ───────────────────────────────────────────── */
/* ── FOOTER ── light, modern, airy ─────────────────────────── */
.bl-footer {
    background: #f8fafc;
    color: var(--dark);
    padding: 64px 0 0;
    border-top: 1px solid #e8edf4;
    position: relative;
}
.bl-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), #8ed60a, var(--blue));
    border-radius: 0 0 3px 3px;
}
.bl-footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e8edf4;
    align-items: start;
}
/* Brand */
.bl-footer__brand {}
.bl-footer__logo-wrap {
    display: inline-block;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 10px 18px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: box-shadow var(--t-base), border-color var(--t-base);
}
.bl-footer__logo:hover .bl-footer__logo-wrap {
    box-shadow: 0 4px 16px rgba(114,186,5,.18);
    border-color: var(--green);
}
.bl-footer__logo-wrap img { display: block; width: 150px; height: auto; }
.bl-footer__tagline {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
    max-width: 220px;
}
/* Nav */
.bl-footer__nav-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gray-light);
    margin-bottom: 14px;
}
.bl-footer__nav ul { display: flex; flex-direction: column; gap: 6px; }
.bl-footer__nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    padding: 10px 14px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid #e8edf4;
    transition: all var(--t-base);
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.bl-footer__nav li a::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    opacity: .5;
    transition: opacity var(--t-base), transform var(--t-base);
}
.bl-footer__nav li a:hover {
    background: var(--green-light);
    border-color: rgba(114,186,5,.3);
    color: var(--green-dark);
    transform: translateX(4px);
}
.bl-footer__nav li a:hover::before { opacity: 1; transform: scale(1.3); }
/* Contacts */
.bl-footer__contacts-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gray-light);
    margin-bottom: 14px;
}
.bl-footer__contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--dark);
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid #e8edf4;
    margin-bottom: 8px;
    transition: all var(--t-base);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.bl-footer__contact-link:hover {
    border-color: var(--green);
    color: var(--dark);
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(114,186,5,.14);
}
/* Icon wrapper for footer contacts */
.bl-footer__contact-link svg {
    flex-shrink: 0;
    color: var(--green);
    background: var(--green-light);
    padding: 8px;
    border-radius: var(--radius-sm);
    width: 36px; height: 36px;
    box-sizing: content-box;
}
/* ── Callback button: card style identical to footer contact links ── */
#openCallbackModal,
#openCallbackModalContacts,
.bl-footer__callback {
    /* Reset button/outline-btn defaults */
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-align: left !important;
    /* Card appearance */
    background: #fff !important;
    color: var(--dark) !important;
    border: 1px solid #e8edf4 !important;
    border-radius: var(--radius-lg) !important;
    padding: 12px 16px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.05) !important;
    text-decoration: none !important;
    cursor: pointer !important;
    /* Breathing animation (pulse) */
    animation: callbackPulse 3s ease-in-out infinite !important;
    position: relative;
    transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base) !important;
    margin-top: 0 !important;
    justify-content: flex-start !important;
}
#openCallbackModal:hover,
#openCallbackModalContacts:hover,
.bl-footer__callback:hover {
    border-color: var(--green) !important;
    transform: translateX(4px) !important;
    box-shadow: 0 4px 14px rgba(114,186,5,.14) !important;
    animation: none !important;
    background: #fff !important;
    color: var(--dark) !important;
}
/* Icon in callback button */
#openCallbackModal svg,
#openCallbackModalContacts svg,
.bl-footer__callback svg {
    flex-shrink: 0 !important;
    color: var(--green) !important;
    background: var(--green-light) !important;
    padding: 8px !important;
    border-radius: var(--radius-sm) !important;
    width: 36px !important; height: 36px !important;
    box-sizing: content-box !important;
}
.bl-footer__callback { margin-top: 8px; }
@keyframes callbackPulse {
    0%,100% { box-shadow: 0 2px 8px rgba(0,0,0,.05); }
    50%      { box-shadow: 0 0 0 6px rgba(114,186,5,.18), 0 0 0 14px rgba(114,186,5,.07); }
}
/* Bottom bar */
.bl-footer__bottom {
    background: #fff;
    border-top: 1px solid #e8edf4;
}
.bl-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 12px;
    flex-wrap: wrap;
}
.bl-footer__copyright {
    font-size: 13px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 8px;
}
.bl-footer__copyright::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}
.bl-footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.bl-footer__bottom-links a {
    font-size: 13px;
    color: var(--gray-light);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color var(--t-base), background var(--t-base);
}
.bl-footer__bottom-links a:hover { color: var(--green); background: rgba(114,186,5,.07); }
.bl-footer__bottom-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--gray-light);
    display: inline-block;
}
.bl-footer__privacy { color: var(--gray-light); }
.bl-footer__privacy:hover { color: var(--green); }

/* ── 16. MODAL ────────────────────────────────────────────── */
.bl-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--gutter);
}
.bl-modal[hidden] { display: none; }
.bl-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,15,24,.6);
    backdrop-filter: blur(4px);
    cursor: pointer;
}
.bl-modal__box {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0,0,0,.2);
    animation: modal-in var(--t-spring) forwards;
}
@keyframes modal-in {
    from { transform: scale(.92) translateY(20px); opacity: 0; }
    to   { transform: scale(1) translateY(0); opacity: 1; }
}
.bl-modal__close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--gray);
    transition: all var(--t-base);
}
.bl-modal__close:hover { background: var(--border); color: var(--dark); }
.bl-modal__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.bl-modal__subtitle { font-size: 14px; color: var(--gray); margin-bottom: 28px; }

/* ── 17. TO-TOP BUTTON ────────────────────────────────────── */
.bl-to-top {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow-green);
    z-index: 600;
    transition: all var(--t-spring);
    opacity: 0;
    transform: translateY(16px);
}
.bl-to-top:not([hidden]) { opacity: 1; transform: translateY(0); }
.bl-to-top:hover { background: var(--green-dark); transform: translateY(-4px); }
.bl-to-top[hidden] { display: none; }
/* Mobile adjustments */
@media (max-width: 768px) { .bl-to-top { bottom: 20px; right: 20px; } }

/* ── 18. PAGE HERO ────────────────────────────────────────── */
.bl-page-hero {
    background: linear-gradient(135deg, var(--bg-alt) 0%, #edf5e0 100%);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bl-page-hero--sm { padding: 100px 0 48px; }
.bl-page-hero__title {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.bl-page-hero__subtitle { font-size: 17px; color: var(--gray); max-width: 600px; margin: 0 auto; }
.bl-page-hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.bl-page-hero__decor img {
    position: absolute;
    opacity: .08;
}
.bl-page-hero__decor img:first-child { top: 10%; left: 5%; width: 150px; }
.bl-page-hero__decor img:last-child  { bottom: 10%; right: 5%; width: 120px; }

/* ── 19. CONTACTS PAGE ────────────────────────────────────── */
.bl-contacts-page { padding: 80px 0; }
.bl-contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.bl-contacts__info-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}
.bl-contacts__info-desc { color: var(--gray); margin-bottom: 32px; }
.bl-contacts__cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }

.bl-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    transition: all var(--t-base);
    text-align: left;
    width: 100%;
}
.bl-contact-card:hover { border-color: var(--green); transform: translateX(4px); box-shadow: var(--shadow); }
.bl-contact-card__icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: var(--radius);
    flex-shrink: 0;
}
.bl-contact-card__label { display: block; font-size: 12px; color: var(--gray); margin-bottom: 3px; }
.bl-contact-card__value { display: block; font-size: 15px; font-weight: 600; color: var(--dark); }

.bl-contacts__hours h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.bl-contacts__hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 16px;
    font-size: 14px;
    color: var(--gray);
}
.bl-contacts__hours-grid span:nth-child(odd) { font-weight: 600; color: var(--dark); }

.bl-contacts__form-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.bl-contacts__form-title { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.bl-contacts__form-desc { font-size: 14px; color: var(--gray); margin-bottom: 24px; }

/* ── 20. PRIVACY PAGE ─────────────────────────────────────── */
.bl-privacy-page { padding: 60px 0 100px; }
.bl-privacy__layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.bl-privacy__layout--full { grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; }
.bl-privacy__sidebar-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gray); margin-bottom: 16px; }
.bl-privacy__versions { display: flex; flex-direction: column; gap: 4px; }
.bl-privacy__version a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--gray);
    border: 1px solid transparent;
    transition: all var(--t-base);
}
.bl-privacy__version a:hover { background: var(--bg-alt); color: var(--dark); }
.bl-privacy__version--active a {
    background: var(--green-light);
    color: var(--green-dark);
    border-color: rgba(114,186,5,.2);
    font-weight: 600;
}
.bl-privacy__version-num { font-weight: 700; }
.bl-privacy__version-date { font-size: 12px; color: var(--gray-light); }
.bl-privacy__archive-notice {
    background: #fffbeb;
    border: 1px solid #f6ad55;
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 14px;
    margin-bottom: 24px;
}
.bl-privacy__archive-notice a { color: var(--blue); text-decoration: underline; }
.bl-privacy__text { font-size: 15px; line-height: 1.75; color: var(--dark); }
.bl-privacy__text h1,.bl-privacy__text h2 { margin: 32px 0 12px; font-size: 22px; }
.bl-privacy__text h3 { margin: 24px 0 10px; font-size: 18px; }
.bl-privacy__text p { margin-bottom: 16px; }
.bl-privacy__text ul,
.bl-privacy__text ol { padding-left: 24px; margin-bottom: 16px; }
.bl-privacy__text li { margin-bottom: 6px; list-style: disc; }
.bl-privacy__text a { color: var(--blue); text-decoration: underline; }
.bl-privacy__text table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 14px; }
.bl-privacy__text th,.bl-privacy__text td { border: 1px solid var(--border); padding: 8px 12px; }
.bl-privacy__text th { background: var(--bg-alt); font-weight: 700; }

/* ── 21. SINGLE TREE ──────────────────────────────────────── */
.bl-tree-single { padding: 100px 0 60px; }
.bl-tree-single__layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 32px;
}
.bl-tree-single__main-photo {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--bg-alt);
}
.bl-tree-single__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--t-base);
}
.bl-tree-single__no-photo {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
}
.bl-tree-single__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.bl-tree-single__thumb {
    width: 72px; height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: border-color var(--t-base);
    cursor: pointer;
}
.bl-tree-single__thumb img { width: 100%; height: 100%; object-fit: cover; }
.bl-tree-single__thumb--active { border-color: var(--green); }
.bl-tree-single__thumb:hover { border-color: var(--green); }

.bl-tree-single__title { font-size: clamp(24px, 3vw, 38px); margin-bottom: 16px; }
.bl-tree-single__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 24px;
}
.bl-tree-single__price-value {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 900;
    color: var(--dark);
}
.bl-tree-single__price-currency { font-size: 24px; color: var(--gray); }
.bl-tree-single__specs { margin-bottom: 24px; }
.bl-tree-single__specs-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.bl-tree-single__specs-table { width: 100%; font-size: 14px; }
.bl-tree-single__specs-table th { color: var(--gray); font-weight: 500; text-align: left; padding: 7px 0; width: 120px; }
.bl-tree-single__specs-table td { color: var(--dark); font-weight: 600; padding: 7px 0; border-bottom: 1px solid var(--border); }
.bl-tree-single__description { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 28px; }
.bl-tree-single__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── 22. SINGLE POST ──────────────────────────────────────── */
.bl-post-single { padding: 100px 0 60px; }
.bl-post__hero-image { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 40px; }
.bl-post__hero-img { width: 100%; max-height: 480px; object-fit: cover; }
.bl-post__layout { max-width: 800px; }
.bl-post__date { font-size: 13px; color: var(--gray-light); margin-bottom: 12px; display: block; text-transform: capitalize; }
.bl-post__title { font-size: clamp(26px, 3.5vw, 42px); margin-bottom: 32px; line-height: 1.2; }
.bl-post__content { font-size: 16px; line-height: 1.8; color: var(--dark); }
.bl-post__content h2 { font-size: 26px; margin: 32px 0 12px; }
.bl-post__content h3 { font-size: 22px; margin: 28px 0 10px; }
.bl-post__content p { margin-bottom: 20px; }
.bl-post__content img { border-radius: var(--radius); margin: 24px auto; max-width: 100%; }
.bl-post__content a { color: var(--blue); text-decoration: underline; }
.bl-post__content iframe, .bl-post__content .wp-block-embed { border-radius: var(--radius); overflow: hidden; margin: 28px 0; }
.bl-post__content .wp-video { width: 100% !important; }
.bl-post__content blockquote {
    border-left: 4px solid var(--green);
    padding: 16px 24px;
    background: var(--green-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--dark);
}

.bl-post__nav {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.bl-post__nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    padding: 10px 16px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    transition: all var(--t-base);
    max-width: 260px;
}
.bl-post__nav-link:hover { background: var(--green-light); color: var(--green-dark); }
.bl-post__nav-link--next { margin-left: auto; flex-direction: row-reverse; }

/* ── 23. PAGINATION ───────────────────────────────────────── */
.bl-pagination { display: flex; justify-content: center; margin-top: 48px; }
.bl-pagination .page-numbers {
    display: flex;
    gap: 6px;
    align-items: center;
    list-style: none;
}
.bl-pagination .page-numbers li { display: block; }
.bl-pagination .page-numbers a,
.bl-pagination .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    border: 1px solid var(--border);
    transition: all var(--t-base);
}
.bl-pagination .page-numbers a:hover { background: var(--green-light); border-color: var(--green); color: var(--green-dark); }
.bl-pagination .page-numbers .current { background: var(--green); color: #fff; border-color: var(--green); }
.bl-pagination .page-numbers .prev, .bl-pagination .page-numbers .next { width: auto; padding: 0 16px; border-radius: var(--radius-full); }

/* ── 24. BREADCRUMBS ──────────────────────────────────────── */
.bl-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-light);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.bl-breadcrumbs a { color: var(--gray); }
.bl-breadcrumbs a:hover { color: var(--green); }
.bl-breadcrumbs svg { opacity: .5; flex-shrink: 0; }
.bl-breadcrumbs span { color: var(--dark); font-weight: 500; }

/* ── 25. EMPTY STATE ──────────────────────────────────────── */
.bl-empty-state {
    text-align: center;
    padding: 80px 20px;
}
.bl-empty-state__icon { font-size: 64px; margin-bottom: 16px; }
.bl-empty-state h2 { font-size: 24px; margin-bottom: 10px; }
.bl-empty-state p { color: var(--gray); }

/* ── 26. AOS (scroll animations override) ────────────────── */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
[data-aos="fade-up"].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] {
    opacity: 0; transform: translateX(-24px);
    transition: opacity .6s ease, transform .6s ease;
}
[data-aos="fade-right"].aos-animate { opacity: 1; transform: translateX(0); }
[data-aos="fade-left"] {
    opacity: 0; transform: translateX(24px);
    transition: opacity .6s ease, transform .6s ease;
}
[data-aos="fade-left"].aos-animate { opacity: 1; transform: translateX(0); }

/* ── 27. RESPONSIVE ───────────────────────────────────────── */

/* Tablet: 1024px */
@media (max-width: 1024px) {
    .bl-features__grid  { grid-template-columns: repeat(2, 1fr); }
    .bl-trees__grid     { grid-template-columns: repeat(2, 1fr); }
    .bl-news-grid,
    .bl-news-grid--large { grid-template-columns: repeat(2, 1fr); }
    .bl-hero__inner     { gap: 40px; }
    .bl-hero__photo-main { width: 360px; height: 360px; }
    .bl-howto__extras   { grid-template-columns: 1fr; }
    .bl-order__inner    { grid-template-columns: 1fr; gap: 40px; }
    .bl-contacts__grid  { grid-template-columns: 1fr; }
    .bl-footer__inner   { grid-template-columns: 1fr 1fr; }
    .bl-privacy__layout { grid-template-columns: 1fr; }
    .bl-privacy__sidebar { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
    .bl-privacy__sidebar-title { margin: 0; white-space: nowrap; }
    .bl-privacy__versions { flex-direction: row; flex-wrap: wrap; }
}

/* Mobile: 768px */
@media (max-width: 768px) {
    :root { --gutter: 16px; }

    /* Header */
    .bl-header__cta { display: none; }
    .bl-burger { display: flex; }
    .bl-section-tabs { display: flex; }
    .bl-header__nav {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(320px, 85vw);
        background: #fff;
        box-shadow: -8px 0 40px rgba(0,0,0,.12);
        padding: 80px 24px 24px;
        transform: translateX(100%);
        transition: transform var(--t-slow);
        z-index: 1600;
        overflow-y: auto;
    }
    .bl-header__nav.open { transform: translateX(0); }
    /* pointer-events: none — иначе прозрачный оверлей блокирует ВСЕ тапы на мобильном */
    .bl-nav-overlay { display: block; z-index: 1590; pointer-events: none; }
    .bl-nav-overlay.active { pointer-events: auto; }
    .bl-nav__list { flex-direction: column; gap: 4px; }
    .bl-nav__item a { font-size: 18px; padding: 12px 16px; }

    /* Hero */
    .bl-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    .bl-hero__inner { grid-template-columns: 1fr; gap: 32px; }
    .bl-hero__media { display: block; } /* shown with custom styles in section 42 */
    .bl-hero__title { font-size: clamp(34px, 9vw, 52px); }
    .bl-hero__ctas { flex-direction: column; align-items: stretch; }
    .bl-hero__ctas .bl-btn { width: 100%; justify-content: center; }
    .bl-hero__cta-card { width: 100%; justify-content: center; }
    /* Center badge horizontally to align with photo-wrap above it */
    .bl-hero__badge { display: inline-flex; align-self: center; margin-left: auto; margin-right: auto; }

    /* Stats — keep column layout but full-width items */
    .bl-stats__grid { flex-direction: column; gap: 0; }
    .bl-stats__divider { width: 60px; height: 1px; }
    .bl-stats__item { padding: 24px 20px; width: 100%; }

    /* Features — 2 per row, equal height */
    .bl-features__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .bl-features { padding: 60px 0; }
    .bl-feature-card { height: 100%; }

    /* Trees — keep 2 columns at 768px for 2×2 layout (1 col at ≤480px via separate rule) */
    .bl-trees__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .bl-trees { padding: 60px 0; }

    /* Howto */
    .bl-howto__steps { flex-direction: column; }
    .bl-howto__step-arrow { transform: rotate(90deg); align-self: center; margin: 0; }
    .bl-howto { padding: 60px 0; }

    /* News */
    .bl-news-grid,
    .bl-news-grid--large { grid-template-columns: 1fr; }
    .bl-news-preview, .bl-news-page { padding: 60px 0; }

    /* Order */
    .bl-order { padding: 60px 0; }
    .bl-order__form-wrap { padding: 24px 20px; }
    .cf7-order .form-columns { flex-direction: column !important; }
    /* Phone/tel input — full width on mobile */
    .cf7-order input[type="tel"] { width: 100%; max-width: 100%; }

    /* Footer */
    .bl-footer__inner { grid-template-columns: 1fr; gap: 40px; }
    .bl-footer { padding: 48px 0 0; }

    /* Modal */
    .bl-modal__box { padding: 32px 24px; }

    /* Single */
    .bl-tree-single__layout { grid-template-columns: 1fr; }
    .bl-tree-single { padding: 80px 0 40px; }

    /* Page hero */
    .bl-page-hero { padding: 90px 0 40px; }

    /* Contacts */
    .bl-contacts-page { padding: 40px 0; }
    .bl-contacts__form-card { padding: 24px; }

    /* CTA banner */
    .bl-cta-banner { padding: 60px 0; }
    .bl-cta-banner__actions { flex-direction: column; align-items: center; }



    /* Section */
    .bl-section-header { margin-bottom: 40px; }
    .bl-section-title { font-size: clamp(26px, 7vw, 36px); }
    .bl-features, .bl-howto, .bl-order, .bl-trees,
    .bl-news-preview, .bl-news-page { padding: 60px 0; }
}

/* ── 28. CART BOTTOM BAR ─────────────────────────────────── */
.bl-cart-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1500;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px var(--gutter);
    border-top: 1.5px solid rgba(114,186,5,.25);
    box-shadow: 0 -4px 24px rgba(0,0,0,.08);
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.34,1.2,.64,1), bottom .3s ease;
    will-change: transform;
    color: var(--dark);
}
.bl-cart-bar[hidden] { display: block !important; transform: translateY(100%); pointer-events: none; }
.bl-cart-bar.visible { transform: translateY(0); pointer-events: auto; }
/* When footer is visible, slide cart bar below viewport */
.bl-cart-bar.above-footer { transform: translateY(100%) !important; transition: transform .35s ease; pointer-events: none !important; }
.bl-cart-bar__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.bl-cart-bar__items {
    flex: 1;
    padding-left: 2px; /* prevent first pill name being clipped at edge */
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-width: 0;
}
.bl-cart-bar__items::-webkit-scrollbar { display: none; }
.bl-cart-bar__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(114,186,5,.08);
    border: 1.5px solid rgba(114,186,5,.25);
    border-radius: var(--radius-full);
    padding: 5px 10px 5px 14px;
    white-space: nowrap;
    flex-shrink: 0;
    color: var(--dark);
    font-size: 13px;
    font-weight: 500;
}
/* Pill name: limit width + ellipsis so long tree names don't overflow */
.bl-cart-bar__pill > span:first-child {
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bl-cart-bar__pill-qty {
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    padding: 1px 7px;
    min-width: 22px;
    text-align: center;
    line-height: 1.6;
}
.bl-cart-bar__pill-qty-ctrl {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.bl-cart-bar__qty-btn {
    width: 24px; height: 24px;
    background: rgba(114,186,5,.12);
    border: none;
    border-radius: 50%;
    color: var(--green-dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast);
    flex-shrink: 0;
}
.bl-cart-bar__qty-btn:hover { background: rgba(114,186,5,.25); }
.bl-cart-bar__remove {
    width: 20px; height: 20px;
    background: none;
    border: none;
    color: rgba(0,0,0,.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color var(--t-fast), background var(--t-fast);
    flex-shrink: 0;
    padding: 0;
}
.bl-cart-bar__remove:hover { color: #ff6b6b; background: rgba(255,107,107,.1); }
.bl-cart-bar__checkout {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Cart summary in order form */
.bl-order__cart-summary {
    background: var(--bg-alt);
    border: 2px solid var(--green-light);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 14px;
}
.bl-order__cart-summary ul { list-style: disc; padding-left: 18px; margin: 8px 0; }
.bl-order__cart-summary li { margin-bottom: 4px; }
.bl-order__cart-summary strong { color: var(--green-dark); }

/* ── 29. MOBILE SECTION TABS CAROUSEL ───────────────────── */
.bl-section-tabs {
    display: none;
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 32px;
    /* fade edges */
    mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
}
.bl-section-tabs__track {
    display: flex;
    align-items: center;
    height: 100%;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    will-change: transform;
    /* Each tab is 100% of container width, centered */
    gap: 0;
}
.bl-section-tab {
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    line-height: 32px;
    white-space: nowrap;
    color: var(--dark);
    transition: opacity .3s ease, filter .3s ease, color .3s ease;
    padding: 0 8px;
    opacity: .4;
    filter: blur(1.5px);
    pointer-events: none;
    user-select: none;
    cursor: pointer;
}
.bl-section-tab.active {
    opacity: 1;
    filter: blur(0);
    color: var(--green-dark);
    pointer-events: auto;
}
.bl-section-tab.adjacent {
    opacity: .65;
    filter: blur(0.5px);
    pointer-events: auto; /* сосед тоже кликабелен */
}

/* Nav scroll-spy */
.bl-nav__item--active-spy > a {
    color: var(--green) !important;
    background: var(--green-light) !important;
}
.bl-nav__item--anchor > a {
    /* anchor-only items never get static PHP active */
    color: var(--dark);
}

/* Small mobile: 480px */
@media (max-width: 480px) {
    .bl-hero__badge { font-size: 12px; }
    .bl-hero__mini-stats { gap: 16px; }
    .bl-hero__mini-stat-value { font-size: 18px; }
    .bl-tree-card__footer { flex-wrap: wrap; }
    .bl-tree-single__ctas { flex-direction: column; }
    .bl-tree-single__ctas .bl-btn { width: 100%; }
    .bl-modal__title { font-size: 22px; }
    .bl-post__nav { flex-direction: column; }
    .bl-post__nav-link--next { margin-left: 0; }
}

/* ── 30. FORM CART WIDGET ────────────────────────────────── */
.bl-form-cart {
    background: linear-gradient(135deg, #f0fde4, #e8f5c8);
    border: 2px solid var(--green-light);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(114,186,5,.12);
}
.bl-form-cart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(114,186,5,.2);
}
.bl-form-cart__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
}
.bl-form-cart__title svg { color: var(--green); }
.bl-form-cart__clear {
    font-size: 12px;
    color: var(--gray);
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}
.bl-form-cart__clear:hover { color: #e53935; }
.bl-form-cart__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}
.bl-form-cart__item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.8);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    border: 1px solid rgba(114,186,5,.2);
    backdrop-filter: blur(4px);
    animation: cartItemIn .25s ease;
}
@keyframes cartItemIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.bl-form-cart__item-icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1;
}
.bl-form-cart__item-name {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.35;
}
.bl-form-cart__item-sub {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--gray);
    margin-top: 2px;
}
.bl-form-cart__qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid rgba(114,186,5,.4);
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}
.bl-form-cart__qty-btn {
    width: 30px; height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-light);
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: var(--green-dark);
    transition: background var(--t-fast);
    line-height: 1;
    flex-shrink: 0;
}
.bl-form-cart__qty-btn:hover { background: var(--green); color: #fff; }
.bl-form-cart__qty-val {
    min-width: 34px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    padding: 0 4px;
    background: rgba(255,255,255,.9);
}
.bl-form-cart__remove {
    width: 26px; height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--gray-light);
    transition: color var(--t-fast), background var(--t-fast);
    margin-left: 6px;
    flex-shrink: 0;
}
.bl-form-cart__remove:hover { color: #e53935; background: #ffeaea; }
.bl-form-cart__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(114,186,5,.2);
    font-size: 14px;
    color: var(--gray);
}
.bl-form-cart__total-val { font-weight: 700; color: var(--green-dark); font-size: 16px; }

/* ── 31. SUCCESS POPUP ───────────────────────────────────── */
.bl-success {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.bl-success[hidden] { display: none; }
.bl-success__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,15,24,.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: successOverlayIn .4s ease forwards;
}
@keyframes successOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.bl-success__box {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    width: 100%;
    max-width: 540px;
    box-shadow: 0 32px 80px rgba(0,0,0,.25);
    animation: successBoxIn .5s cubic-bezier(.34,1.3,.64,1) forwards;
}
@keyframes successBoxIn {
    from { transform: scale(.85) translateY(30px); opacity: 0; }
    to   { transform: scale(1) translateY(0); opacity: 1; }
}

/* ── Animation scene ── */
.bl-success__scene {
    height: 300px;
    position: relative;
    overflow: hidden;
}
.bl-anim {
    width: 100%;
    height: 100%;
    position: relative;
}

/* ── SKY ── */
.bl-anim__sky {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #6BBFEE 0%, #A8DCFF 50%, #CBF0A5 80%, #96D44D 100%);
}

/* Sun */
.bl-anim__sun {
    position: absolute;
    top: 20px; right: 48px;
    width: 42px; height: 42px;
    background: radial-gradient(circle at 40% 38%, #FFF176 0%, #FFD93D 55%, #FFA500 100%);
    border-radius: 50%;
    box-shadow:
        0 0 0 7px rgba(255,220,50,.22),
        0 0 0 16px rgba(255,220,50,.1),
        0 0 30px rgba(255,200,0,.3);
    animation: sunPulse 3s ease-in-out infinite;
}
@keyframes sunPulse {
    0%,100% { box-shadow: 0 0 0 7px rgba(255,220,50,.22), 0 0 0 16px rgba(255,220,50,.1), 0 0 30px rgba(255,200,0,.3); }
    50%      { box-shadow: 0 0 0 11px rgba(255,220,50,.28), 0 0 0 24px rgba(255,220,50,.12), 0 0 40px rgba(255,200,0,.35); }
}

/* Clouds */
.bl-anim__cloud {
    position: absolute;
    background: #fff;
    border-radius: 60px;
    box-shadow: 0 3px 10px rgba(0,0,0,.08);
}
.bl-anim__cloud::before, .bl-anim__cloud::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 50%;
}
.bl-anim__cloud--1 {
    width: 90px; height: 26px;
    top: 28px; left: -130px;
    animation: cloudDrift 13s linear infinite;
}
.bl-anim__cloud--1::before { width: 38px; height: 38px; top: -20px; left: 18px; }
.bl-anim__cloud--1::after  { width: 26px; height: 26px; top: -13px; left: 46px; }
.bl-anim__cloud--2 {
    width: 64px; height: 20px;
    top: 58px; left: -90px;
    animation: cloudDrift 19s linear infinite 6s;
}
.bl-anim__cloud--2::before { width: 28px; height: 28px; top: -14px; left: 14px; }
.bl-anim__cloud--2::after  { width: 20px; height: 20px; top: -10px; left: 32px; }
@keyframes cloudDrift {
    from { left: -140px; }
    to   { left: 112%; }
}

/* ── GROUND ── */
.bl-anim__ground {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 62px;
    background: linear-gradient(180deg, #7EC810 0%, #5A9604 55%, #3E7203 100%);
}
.bl-anim__ground::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: rgba(255,255,255,.18);
    border-radius: 50% 50% 0 0 / 5px 5px 0 0;
}

/* Path (tyre tracks) */
.bl-anim__road {
    position: absolute;
    bottom: 14px; left: 0; right: 0;
    height: 10px;
    background: rgba(0,0,0,.06);
}
.bl-anim__road-line {
    position: absolute;
    top: 3px; left: 8%; right: 8%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,.3) 0px, rgba(255,255,255,.3) 14px,
        transparent 14px, transparent 24px
    );
}

/* ── HOUSE ── */
.bl-anim__house {
    position: absolute;
    bottom: 60px; left: 10px;
    width: 102px;
    padding-top: 20px; /* space for chimney above roof */
    z-index: 2;
    filter: drop-shadow(2px 5px 8px rgba(0,0,0,.28));
}

/* Chimney */
.bl-anim__house-chimney {
    position: absolute;
    top: 0; right: 20px;
    width: 13px; height: 32px;
    background: linear-gradient(to right, #A05020, #8B4513);
    border: 2px solid #6B3A10;
    border-bottom: none;
    border-radius: 2px 2px 0 0;
    z-index: 3;
}
.bl-anim__house-smoke {
    position: absolute;
    top: -9px; left: 1px;
    width: 10px; height: 10px;
    background: rgba(215,215,215,.9);
    border-radius: 50%;
    animation: smokeRise 2.5s ease-out infinite;
}
.bl-anim__house-smoke--2 { animation-delay: .83s; left: 2px; }
.bl-anim__house-smoke--3 { animation-delay: 1.66s; }
@keyframes smokeRise {
    0%   { transform: translateY(0) scale(.25); opacity: 1; }
    40%  { opacity: .7; }
    100% { transform: translateY(-32px) scale(2); opacity: 0; }
}

/* Roof — crisp clip-path triangle */
.bl-anim__house-roof {
    width: 102px; height: 42px;
    background: linear-gradient(150deg, #EF5350 0%, #C62828 100%);
    clip-path: polygon(0 100%, 50% 0%, 100% 100%);
    position: relative;
    z-index: 2;
}
.bl-anim__house-roof::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255,255,255,.18) 0%, transparent 55%);
    clip-path: polygon(0 100%, 50% 0%, 100% 100%);
}

/* Walls */
.bl-anim__house-walls {
    width: 84px; height: 56px;
    background: linear-gradient(180deg, #FFF8E7 0%, #FFE9B5 100%);
    margin: 0 auto;
    position: relative;
    border: 2px solid #C9A87A;
    border-top: none;
    border-radius: 0 0 5px 5px;
    box-sizing: border-box;
}

/* Window */
.bl-anim__house-window {
    position: absolute;
    top: 10px; left: 8px;
    width: 22px; height: 20px;
    background: linear-gradient(135deg, #B3E5FC 0%, #81D4FA 100%);
    border: 2px solid #C9A87A;
    border-radius: 2px;
}
.bl-anim__house-window::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 46%, #C9A87A 46%, #C9A87A 54%, transparent 54%),
        linear-gradient(0deg, transparent 46%, #C9A87A 46%, #C9A87A 54%, transparent 54%);
}
.bl-anim__house-window::after {
    content: '';
    position: absolute;
    top: 2px; left: 2px;
    width: 6px; height: 6px;
    background: rgba(255,255,255,.75);
    border-radius: 50%;
}

/* Door */
.bl-anim__house-door {
    position: absolute;
    bottom: 0; right: 10px;
    width: 24px; height: 38px;
    background: linear-gradient(to right, #A07040 0%, #8B5E3C 60%, #7A5230 100%);
    border-radius: 5px 5px 0 0;
    border: 2px solid #6B4423;
    border-bottom: none;
    transform-origin: left center;
    transition: transform .8s cubic-bezier(.4,0,.2,1);
    box-shadow: inset -3px 0 8px rgba(0,0,0,.25);
}
.bl-anim__house-door.open { transform: perspective(130px) rotateY(72deg); }
/* Doorknob */
.bl-anim__house-door::after {
    content: '';
    position: absolute;
    left: 4px; top: 52%;
    width: 5px; height: 5px;
    background: radial-gradient(circle, #FFE082, #FFB300);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 1px 3px rgba(0,0,0,.4);
}
/* Step */
.bl-anim__house-door::before {
    content: '';
    position: absolute;
    bottom: -7px; left: -8px; right: -8px;
    height: 7px;
    background: #C9A87A;
    border-radius: 0 0 4px 4px;
}

/* ── ORCHARD TREES ── */
.bl-anim__orchard {
    position: absolute;
    bottom: 60px; left: 122px;
    display: flex;
    gap: 10px;
    align-items: flex-end;
    z-index: 2;
}
.bl-anim__o-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .7s cubic-bezier(.4,0,.2,1), opacity .55s ease;
    filter: drop-shadow(1px 4px 5px rgba(0,0,0,.22));
}
.bl-anim__o-tree.loading {
    transform: scale(.04) translateY(-90px);
    opacity: 0;
    transition: transform .55s cubic-bezier(.4,0,.2,1), opacity .45s ease;
}

/* Multi-layer crown container */
.bl-anim__o-tops {
    position: relative;
    width: 44px; height: 54px;
}
.bl-anim__o-c {
    position: absolute;
    border-radius: 50%;
}
/* Bottom (widest, darkest) */
.bl-anim__o-c--b {
    width: 44px; height: 40px;
    bottom: 0; left: 0;
    background: radial-gradient(circle at 38% 38%, #6EC209 0%, #4E8A04 55%, #3A6E03 100%);
    border-radius: 50% 50% 48% 48%;
}
/* Apple dots on bottom crown */
.bl-anim__o-c--b::after {
    content: '';
    position: absolute;
    width: 7px; height: 8px;
    background: #E53935;
    border-radius: 50% 50% 48% 48%;
    bottom: 7px; left: 9px;
    box-shadow: 16px -1px 0 #E53935, 8px 2px 0 #FF7043;
}
/* Middle */
.bl-anim__o-c--m {
    width: 34px; height: 34px;
    bottom: 18px; left: 5px;
    background: radial-gradient(circle at 38% 38%, #8ED608 0%, #62A505 55%, #4E8A04 100%);
}
/* Top (smallest, brightest) */
.bl-anim__o-c--t {
    width: 24px; height: 24px;
    bottom: 34px; left: 10px;
    background: radial-gradient(circle at 38% 38%, #AAEC1C 0%, #84C60A 55%, #6AAA05 100%);
}

/* Middle tree slightly bigger */
.bl-anim__o-tree:nth-child(2) .bl-anim__o-tops { width: 50px; height: 64px; }
.bl-anim__o-tree:nth-child(2) .bl-anim__o-c--b { width: 50px; height: 46px; }
.bl-anim__o-tree:nth-child(2) .bl-anim__o-c--m { width: 38px; height: 38px; bottom: 22px; left: 6px; }
.bl-anim__o-tree:nth-child(2) .bl-anim__o-c--t { width: 28px; height: 28px; bottom: 42px; left: 11px; }

.bl-anim__o-trunk {
    width: 9px; height: 16px;
    background: linear-gradient(to right, #A07040, #8B5E3C);
    border-radius: 1px 1px 3px 3px;
}

/* ── FARMER (side-profile view, facing right → toward orchard) ── */
.bl-anim__person {
    position: absolute;
    bottom: 62px; left: 46px;
    width: 24px;
    z-index: 5;
    transition: left 1.4s cubic-bezier(.4,0,.2,1), opacity .4s ease;
    filter: drop-shadow(1px 3px 6px rgba(0,0,0,.34));
}
.bl-anim__person.hidden { opacity: 0; }

/* ─ HAT (cowboy side view) ─ */
.bl-anim__person-hat {
    /* Wide brim: extends 8px forward (right) and 4px back */
    width: 30px; height: 7px;
    background: linear-gradient(180deg, #6B3010 0%, #5A2808 100%);
    border-radius: 2px 4px 2px 2px;
    margin: 0;
    margin-left: -4px; /* stick out a bit forward */
    position: relative;
    box-shadow: 0 2px 3px rgba(0,0,0,.4);
}
/* Crown — tall part of hat */
.bl-anim__person-hat::before {
    content: '';
    position: absolute;
    bottom: 1px; left: 7px;
    width: 14px; height: 18px;
    background: linear-gradient(160deg, #8B4513 0%, #7B3A10 55%, #6B3010 100%);
    border-radius: 4px 3px 1px 1px;
    box-shadow: inset -2px 0 5px rgba(0,0,0,.22), inset 0 3px 4px rgba(255,255,255,.06);
}
/* Hatband */
.bl-anim__person-hat::after {
    content: '';
    position: absolute;
    bottom: 13px; left: 8px;
    width: 12px; height: 2px;
    background: rgba(255,200,60,.55);
    border-radius: 1px;
}

/* ─ HEAD (side oval facing right) ─ */
.bl-anim__person-head {
    width: 15px; height: 18px;
    background: radial-gradient(ellipse at 42% 36%, #FFCCA0 0%, #F5A468 60%, #D8864E 100%);
    border-radius: 46% 54% 50% 50% / 44% 44% 56% 56%;
    margin: 0 auto;
    margin-left: 5px;
    position: relative;
}
/* Eye (single, near right/front of head) */
.bl-anim__person-head::before {
    content: '';
    position: absolute;
    top: 7px; right: 2px;
    width: 3px; height: 3px;
    background: #2C1810;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255,255,255,.3);
}
/* Nose bump */
.bl-anim__person-head::after {
    content: '';
    position: absolute;
    top: 10px; right: -3px;
    width: 5px; height: 4px;
    background: #E8975A;
    border-radius: 50% 60% 50% 40%;
}

/* ─ BODY (narrow, side view) ─ */
.bl-anim__person-body {
    width: 12px; height: 22px;
    background: linear-gradient(180deg, #1E88E5 0%, #1565C0 100%);
    border-radius: 3px 3px 5px 5px;
    margin: 2px auto 0;
    margin-left: 5px;
    position: relative;
}
/* Bib pocket detail */
.bl-anim__person-body::before {
    content: '';
    position: absolute;
    top: 2px; left: 2px;
    width: 7px; height: 10px;
    background: #1976D2;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,.12);
}
/* Belt line */
.bl-anim__person-body::after {
    content: '';
    position: absolute;
    top: 14px; left: 0; right: 0;
    height: 2px;
    background: rgba(255,255,255,.15);
    border-radius: 1px;
}

/* ─ ARMS (front arm swings, back arm holds shovel) ─ */
.bl-anim__person-arm {
    position: absolute;
    width: 5px; height: 14px;
    background: linear-gradient(180deg, #1E88E5, #1565C0);
    border-radius: 3px;
    top: 28px; /* relative to .bl-anim__person */
}
.bl-anim__person-arm--l { /* front arm */
    left: 4px;
    transform-origin: top center;
    animation: armIdleFront 2s ease-in-out infinite;
}
.bl-anim__person-arm--r { /* back arm — mostly hidden / holds shovel */
    left: 8px;
    opacity: 0.45;
    transform-origin: top center;
    animation: armIdleBack 2s ease-in-out infinite;
}
.bl-anim__person.walking .bl-anim__person-arm--l { animation: walkArmFront .5s ease-in-out infinite; }
.bl-anim__person.walking .bl-anim__person-arm--r { animation: walkArmBack  .5s ease-in-out infinite; }
.bl-anim__person.digging .bl-anim__person-arm--l { animation: digArmFront 1.2s ease-in-out infinite; }
.bl-anim__person.digging .bl-anim__person-arm--r { animation: digArmBack  1.2s ease-in-out infinite; }
@keyframes armIdleFront  { 0%,100% { transform: rotate(-12deg); } 50% { transform: rotate(8deg); } }
@keyframes armIdleBack   { 0%,100% { transform: rotate(14deg); } 50% { transform: rotate(-8deg); } }
@keyframes walkArmFront  { 0%,100% { transform: rotate(-46deg); } 50% { transform: rotate(46deg); } }
@keyframes walkArmBack   { 0%,100% { transform: rotate(46deg); } 50% { transform: rotate(-36deg); } }
/* Dig: arms swing from raised-back to pushed-forward-down — driving shovel into ground */
@keyframes digArmFront   { 0%,100% { transform: rotate(-65deg); } 45%,55% { transform: rotate(55deg); } }
@keyframes digArmBack    { 0%,100% { transform: rotate(-50deg); } 45%,55% { transform: rotate(70deg); } }

/* ─ LEGS (side-view stride) ─ */
.bl-anim__person-leg {
    position: absolute;
    width: 7px; height: 20px;
    background: linear-gradient(180deg, #263238 0%, #37474F 100%);
    border-radius: 2px 2px 4px 4px;
    bottom: -20px;
}
.bl-anim__person-leg--l { left: 4px; } /* front leg */
.bl-anim__person-leg--r { left: 7px; } /* back leg — slightly behind */
.bl-anim__person.walking .bl-anim__person-leg--l { animation: legStrideFront .5s ease-in-out infinite; }
.bl-anim__person.walking .bl-anim__person-leg--r { animation: legStrideBack  .5s ease-in-out infinite; }
.bl-anim__person.digging .bl-anim__person-leg--l { transform: rotate(-8deg); }
.bl-anim__person.digging .bl-anim__person-leg--r { transform: rotate(8deg); }
@keyframes legStrideFront { 0%,100% { transform: rotate(-30deg); } 50% { transform: rotate(30deg); } }
@keyframes legStrideBack  { 0%,100% { transform: rotate(30deg); } 50% { transform: rotate(-30deg); } }

/* Boots */
.bl-anim__person-leg::after {
    content: '';
    position: absolute;
    bottom: -4px; left: -2px;
    width: 12px; height: 5px;
    background: linear-gradient(to right, #4E342E 0%, #6D4C41 100%);
    border-radius: 1px 5px 4px 2px;
    box-shadow: 0 2px 3px rgba(0,0,0,.25);
}

/* Body lean forward while digging — shift weight over the shovel */
.bl-anim__person.digging { animation: digLean 1.8s ease-in-out infinite; transform-origin: 50% 70%; }
@keyframes digLean {
    0%    { transform: translateY(0)    rotate(-6deg);  }  /* upright, shovel raised */
    30%   { transform: translateY(5px)  rotate(10deg);  }  /* lean forward, push shovel down */
    50%   { transform: translateY(4px)  rotate(8deg);   }  /* hold — shovel in earth */
    68%   { transform: translateY(-2px) rotate(-3deg);  }  /* straighten — pull earth up */
    100%  { transform: translateY(0)    rotate(-6deg);  }  /* back to start */
}

/* ─ CARRYING STATE ─ farmer holds a small tree on their shoulder ─ */
.bl-anim__person.carrying .bl-anim__person-arm--l { animation: carryArmFront 1.8s ease-in-out infinite; }
.bl-anim__person.carrying .bl-anim__person-arm--r { animation: carryArmBack 1.8s ease-in-out infinite; }
.bl-anim__person.carrying .bl-anim__person-leg--l { animation: legStrideFront .55s ease-in-out infinite; }
.bl-anim__person.carrying .bl-anim__person-leg--r { animation: legStrideBack  .55s ease-in-out infinite; }
@keyframes carryArmFront { 0%,100% { transform: rotate(-80deg); } 50% { transform: rotate(-70deg); } }
@keyframes carryArmBack  { 0%,100% { transform: rotate(-55deg); } 50% { transform: rotate(-65deg); } }
/* Shovel hidden while carrying */
.bl-anim__person.carrying .bl-anim__shovel { opacity: 0; transition: opacity .3s; }
/* Small carried tree on farmer's shoulder */
.bl-anim__person-tree {
    position: absolute;
    top: -28px; right: -6px;
    opacity: 0;
    transform: scale(.7);
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
}
.bl-anim__person.carrying .bl-anim__person-tree { opacity: 1; transform: scale(1); }
/* Tiny tree shape */
.bl-anim__person-tree-crown {
    width: 22px; height: 22px;
    background: radial-gradient(circle at 40% 36%, #8ED608 0%, #5A9604 70%);
    border-radius: 50% 50% 45% 45%;
    margin: 0 auto;
    position: relative;
}
.bl-anim__person-tree-crown::before {
    content: '';
    position: absolute;
    top: -9px; left: 4px;
    width: 14px; height: 14px;
    background: radial-gradient(circle at 40% 36%, #AAEC1C 0%, #7EC80A 65%);
    border-radius: 50%;
}
.bl-anim__person-tree-crown::after {
    content: '';
    position: absolute;
    bottom: 3px; left: 6px;
    width: 5px; height: 5px;
    background: #E53935;
    border-radius: 50%;
}
.bl-anim__person-tree-trunk {
    width: 5px; height: 10px;
    background: linear-gradient(to right, #A07040, #8B5E3C);
    border-radius: 1px;
    margin: 0 auto;
}

/* ─ SHOVEL (rests on shoulder while idle/walking; swings while digging) ─ */
.bl-anim__shovel {
    position: absolute;
    /* Handle: rests over right shoulder, blade points up-right */
    right: -2px; top: 4px;
    width: 3px; height: 32px;
    background: linear-gradient(to bottom, #C8A070 0%, #A07040 50%, #8B5E3C 100%);
    border-radius: 2px;
    transform: rotate(-42deg); /* leans back: blade up, tip behind */
    transform-origin: 50% 80%;
    animation: shovelShoulder 2.4s ease-in-out infinite;
}
/* Spade blade — trapezoid shape: wide at bottom, narrower at top, rounded scoop */
.bl-anim__shovel::after {
    content: '';
    position: absolute;
    top: -18px; left: -7px;
    width: 17px; height: 20px;
    background: linear-gradient(160deg, #E0E0E0 0%, #BDBDBD 40%, #9E9E9E 100%);
    /* clip-path creates classic spade/shovel blade: trapezoid wider at bottom */
    clip-path: polygon(25% 0%, 75% 0%, 100% 45%, 90% 100%, 50% 100%, 10% 100%, 0% 45%);
    box-shadow: 0 2px 5px rgba(0,0,0,.35);
}
/* Handle grip / T-bar at bottom */
.bl-anim__shovel::before {
    content: '';
    position: absolute;
    bottom: -3px; left: -4px;
    width: 11px; height: 3px;
    background: #7B5030;
    border-radius: 2px;
}
.bl-anim__person.walking .bl-anim__shovel {
    transform: rotate(-40deg);
    animation: shovelWalk .5s ease-in-out infinite;
}
.bl-anim__person.digging .bl-anim__shovel {
    right: -8px; top: 10px;
    transform-origin: 50% 25%; /* pivot near grip end of handle */
    animation: shovelDig 1.8s ease-in-out infinite;
}
@keyframes shovelShoulder { 0%,100% { transform: rotate(-40deg); } 50% { transform: rotate(-46deg); } }
@keyframes shovelWalk     { 0%,100% { transform: rotate(-38deg); } 50% { transform: rotate(-48deg); } }
/* Digging: shovel raised → plunged straight down → pause in earth → pulled back up */
@keyframes shovelDig {
    0%    { transform: rotate(-50deg); }  /* raised, ready above ground */
    28%   { transform: rotate(60deg);  }  /* blade driven into earth — steep downward angle */
    52%   { transform: rotate(60deg);  }  /* pause — blade stuck in earth */
    72%   { transform: rotate(10deg);  }  /* pulling up, earth on blade */
    100%  { transform: rotate(-50deg); }  /* back to raised position */
}

/* ── DIRT PARTICLES (visible only while digging) ── */
.bl-anim__dirt {
    position: absolute;
    bottom: -18px; left: 18px;
    pointer-events: none;
    opacity: 0;
}
.bl-anim__person.digging .bl-anim__dirt { opacity: 1; }
.bl-anim__dirt-p {
    position: absolute;
    width: 6px; height: 6px;
    background: #7B5228;
    border-radius: 50%;
    animation: dirtFly 1.2s ease-out infinite;
}
.bl-anim__dirt-p:nth-child(1) { animation-delay: 0.55s;  left: 0;   }
.bl-anim__dirt-p:nth-child(2) { animation-delay: 0.65s;  left: 8px; width: 4px; height: 4px; background: #9B7240; }
.bl-anim__dirt-p:nth-child(3) { animation-delay: 0.75s;  left: 4px; width: 5px; height: 5px; background: #6A4520; }
@keyframes dirtFly {
    0%   { transform: translate(0,0) scale(1); opacity: 0; }
    10%  { opacity: 1; }
    50%  { transform: translate(14px, -18px) scale(.7); opacity: .8; }
    100% { transform: translate(20px, 4px) scale(.4); opacity: 0; }
}

/* ── TRUCK (side view, cab left / cargo right, enters from right facing left) ── */
.bl-anim__truck {
    position: absolute;
    bottom: 44px; right: -240px;
    width: 200px; height: 96px;
    z-index: 4;
    filter: drop-shadow(2px 5px 9px rgba(0,0,0,.28));
    transition: right 1.4s cubic-bezier(.35,0,.2,1);
}
.bl-anim__truck.drive-in  { right: 4px; }
.bl-anim__truck.drive-out { right: 112%; transition: right 1.9s cubic-bezier(.85,0,.2,1); }

/* ─ CARGO BOX ─ */
.bl-anim__truck-body {
    position: absolute;
    left: 60px; right: 5px;
    top: 3px; height: 70px;
    background: linear-gradient(175deg, #F55 0%, #EF5350 20%, #C62828 85%, #B71C1C 100%);
    border-radius: 4px 4px 3px 3px;
    border: 2px solid #B71C1C;
    overflow: hidden;
    box-shadow: inset 0 0 14px rgba(0,0,0,.18);
}
/* Top shine */
.bl-anim__truck-body::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 10px;
    background: linear-gradient(to bottom, rgba(255,255,255,.2), transparent);
    border-radius: 3px 3px 0 0;
}
/* Rivet line detail on cargo wall */
.bl-anim__truck-body::after {
    content: '';
    position: absolute;
    left: 0; top: 10px; bottom: 4px;
    width: 4px;
    background: repeating-linear-gradient(
        180deg,
        rgba(0,0,0,.18) 0px, rgba(0,0,0,.18) 3px,
        transparent 3px, transparent 10px
    );
    border-radius: 2px;
}

/* Cargo interior (trees loaded here) */
.bl-anim__truck-cargo {
    position: absolute;
    inset: 10px 2px 2px;
    background: linear-gradient(180deg, #8B0000 0%, #6B0000 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-evenly;
    padding: 0 8px 5px;
    opacity: 0;
    transition: opacity .8s ease;
    border-radius: 2px;
}
.bl-anim__truck-cargo.loaded { opacity: 1; }

/* Mini trees in cargo */
.bl-anim__mini-tree { display: flex; flex-direction: column; align-items: center; }
.bl-anim__mini-crown {
    width: 20px; height: 20px;
    background: radial-gradient(circle at 40% 36%, #A0E010 0%, #6AAA05 70%);
    border-radius: 50% 50% 44% 44%;
    position: relative;
    box-shadow: inset -2px -2px 4px rgba(0,0,0,.2);
}
.bl-anim__mini-crown::before {
    content: '';
    position: absolute;
    top: -9px; left: 4px;
    width: 12px; height: 12px;
    background: radial-gradient(circle at 40% 36%, #C8F020 0%, #8EC80A 60%);
    border-radius: 50%;
}
/* Apple dot */
.bl-anim__mini-crown::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 5px;
    width: 5px; height: 5px;
    background: #E53935;
    border-radius: 50%;
}
.bl-anim__mini-trunk { width: 5px; height: 8px; background: linear-gradient(to right, #A07040, #8B5E3C); border-radius: 1px; }

/* Cargo side door outline */
.bl-anim__truck-door {
    position: absolute;
    right: 5px; top: 10px;
    width: 62px; height: 70px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 3px;
    transition: transform .7s ease;
    transform-origin: right center;
}
.bl-anim__truck-door.open { transform: perspective(220px) rotateY(-72deg); }

/* ─ CAB ─ */
.bl-anim__truck-cab {
    position: absolute;
    left: 0; top: 14px;
    width: 66px; height: 60px;
    background: linear-gradient(160deg, #F44 0%, #EF5350 25%, #C62828 80%, #B71C1C 100%);
    border-radius: 18px 4px 4px 4px;
    border: 2px solid #B71C1C;
    overflow: visible;
    box-shadow: inset -3px 0 10px rgba(0,0,0,.15), inset 0 3px 5px rgba(255,255,255,.08);
}
/* Cab roof shine */
.bl-anim__truck-cab::after {
    content: '';
    position: absolute;
    top: 5px; left: 8px; right: 10px;
    height: 14px;
    background: linear-gradient(to bottom, rgba(255,255,255,.18), transparent);
    border-radius: 16px 3px 0 0;
    pointer-events: none;
}

/* Windshield */
.bl-anim__truck-windshield {
    position: absolute;
    top: 7px; right: 6px;
    width: 32px; height: 27px;
    background: linear-gradient(140deg, rgba(200,240,255,.94) 0%, rgba(140,210,250,.88) 100%);
    border-radius: 8px 5px 3px 3px;
    border: 2px solid rgba(255,255,255,.45);
    box-shadow: inset 0 0 6px rgba(180,230,255,.4);
}
/* Glare streak */
.bl-anim__truck-windshield::after {
    content: '';
    position: absolute;
    top: 4px; left: 4px;
    width: 8px; height: 18px;
    background: rgba(255,255,255,.6);
    border-radius: 4px;
    transform: rotate(-8deg);
}

/* Front bumper / grill */
.bl-anim__truck-cab::before {
    content: '';
    position: absolute;
    bottom: 8px; left: -7px;
    width: 8px; height: 26px;
    background: linear-gradient(to right, #777, #AAAAAA);
    border-radius: 2px 0 0 2px;
    box-shadow: 0 0 0 1px #555, inset 0 0 6px rgba(0,0,0,.2);
}

/* Side mirror */
.bl-anim__truck-windshield::before {
    content: '';
    position: absolute;
    bottom: -8px; left: -10px;
    width: 8px; height: 5px;
    background: #C62828;
    border-radius: 1px;
    border: 1px solid #B71C1C;
    box-shadow: 0 2px 3px rgba(0,0,0,.3);
}

/* Cab door outline */
.bl-anim__truck-cab-door {
    position: absolute;
    bottom: 10px; right: 7px;
    width: 32px; height: 42px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 3px;
    transform-origin: right bottom;
    transition: transform .75s cubic-bezier(.4,0,.2,1);
}
/* Door window */
.bl-anim__truck-cab-door::before {
    content: '';
    position: absolute;
    top: 3px; left: 2px; right: 2px;
    height: 14px;
    background: rgba(200,240,255,.42);
    border-radius: 2px;
}
/* Door handle */
.bl-anim__truck-cab-door::after {
    content: '';
    position: absolute;
    bottom: 10px; right: 4px;
    width: 6px; height: 2px;
    background: rgba(255,255,255,.5);
    border-radius: 1px;
}
.bl-anim__truck-cab-door.open { transform: perspective(180px) rotateY(-58deg); }

/* ─ WHEELS ─ */
.bl-anim__truck-wheel {
    position: absolute;
    bottom: -13px;
    width: 27px; height: 27px;
    background: radial-gradient(circle at 50% 50%, #444 0%, #1a1a1a 60%);
    border-radius: 50%;
    border: 3px solid #666;
    box-shadow:
        inset 0 0 0 5px #222,
        inset 0 0 0 7px #888,
        0 2px 5px rgba(0,0,0,.4);
    animation: wheelSpin 1s linear infinite paused;
}
.bl-anim__truck.drive-in .bl-anim__truck-wheel,
.bl-anim__truck.drive-out .bl-anim__truck-wheel { animation-play-state: running; }
.bl-anim__truck-wheel--r { right: 32px; }
.bl-anim__truck-wheel--l { left: 14px; }
@keyframes wheelSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
/* Hubcap */
.bl-anim__truck-wheel::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 10px; height: 10px;
    background: radial-gradient(circle, #CCC 0%, #999 100%);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 0 2px #888, 0 0 0 4px rgba(255,255,255,.1);
}

/* Exhaust pipe */
.bl-anim__truck-exhaust {
    position: absolute;
    left: -12px; top: 36px;
    width: 12px; height: 5px;
    background: linear-gradient(to right, #444, #777);
    border-radius: 2px;
}
.bl-anim__truck-exhaust::after {
    content: '';
    position: absolute;
    right: -3px; top: -2px;
    width: 4px; height: 9px;
    background: #777;
    border-radius: 1px;
}

/* ── DUST puffs ── */
.bl-anim__dust { position: absolute; bottom: 56px; right: 96px; opacity: 0; pointer-events: none; }
.bl-anim__dust.puffing { opacity: 1; }
.bl-anim__dust-p {
    position: absolute;
    width: 16px; height: 16px;
    background: rgba(195,185,155,.8);
    border-radius: 50%;
    animation: dustPuff 1.3s ease-out infinite;
}
.bl-anim__dust-p:nth-child(2) { animation-delay: .32s; left: 16px; }
.bl-anim__dust-p:nth-child(3) { animation-delay: .64s; left: 32px; }
@keyframes dustPuff {
    from { transform: scale(.3) translateY(0); opacity: .9; }
    to   { transform: scale(2.6) translateY(-32px); opacity: 0; }
}

/* ── Success content ── */
.bl-success__content {
    padding: 32px 40px 36px;
    text-align: center;
    display: none;
}
.bl-success__content.visible { display: block; animation: successContentIn .6s ease forwards; }
@keyframes successContentIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.bl-success__check {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(114,186,5,.35);
    animation: checkBounce .5s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes checkBounce {
    from { transform: scale(0) rotate(-30deg); }
    to   { transform: scale(1) rotate(0deg); }
}
.bl-success__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -.02em;
}
.bl-success__subtitle {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}
.bl-success__items {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    text-align: left;
    margin-bottom: 20px;
    display: none;
}
.bl-success__items.has-items { display: block; }
.bl-success__items-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gray);
    margin-bottom: 10px;
}
.bl-success__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--dark);
}
.bl-success__item:last-child { border-bottom: none; }
.bl-success__item-icon { font-size: 18px; }
.bl-success__item-name { flex: 1; font-weight: 500; }
.bl-success__item-qty { font-weight: 700; color: var(--green-dark); white-space: nowrap; }
.bl-success__contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
}
.bl-success__tg {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #0088cc;
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13px;
    transition: opacity var(--t-fast);
}
.bl-success__tg:hover { opacity: .85; color: #fff; }
.bl-success__close-btn { width: 100%; }

/* Confetti */
.bl-success__confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.bl-confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    animation: confettiFall linear forwards;
    top: -20px;
}
@keyframes confettiFall {
    0%   { transform: translateY(0) rotate(0deg);   opacity: 1; }
    100% { transform: translateY(300px) rotate(720deg); opacity: 0; }
}

@media (max-width: 480px) {
    /* Success popup: allow scrolling so scene + content both visible */
    .bl-success {
        align-items: flex-start;
        overflow-y: auto;
        padding: 12px 8px 24px;
    }
    .bl-success__box { margin: auto; }
    .bl-success__content { padding: 24px 20px 28px; }
    .bl-success__title { font-size: 22px; }
    /* Slightly taller scene on mobile so farmer and truck are fully visible */
    .bl-success__scene { height: 220px; }
}

/* ── 31. CERTIFICATION SECTION ───────────────────────────── */
.bl-certs {
    padding: 100px 0;
    background: linear-gradient(150deg, #fff9f0 0%, #f5fff0 40%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}
.bl-certs::before {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(114,186,5,.10) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.bl-certs::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255,180,50,.08) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.bl-certs__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.bl-certs__content .bl-section-tag { display: inline-flex; margin-bottom: 16px; }
.bl-certs__content .bl-section-title { text-align: left; margin-bottom: 20px; }
.bl-certs__lead {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 28px;
}
.bl-certs__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bl-certs__list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}
.bl-certs__list-item svg { flex-shrink: 0; }

/* Gallery */
.bl-certs__gallery {
    position: relative;
    height: 420px;
}
.bl-certs__photo {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform .35s ease, box-shadow .35s ease;
}
.bl-certs__photo:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.bl-certs__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bl-certs__photo--1 {
    top: 0; left: 0;
    width: 62%; height: 58%;
    z-index: 2;
}
.bl-certs__photo--2 {
    bottom: 0; right: 0;
    width: 62%; height: 58%;
    z-index: 3;
}
.bl-certs__photo-badge {
    position: absolute;
    bottom: 12px; left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(114,186,5,.25);
    border-radius: 50px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.bl-certs__photo-badge--blue { border-color: rgba(65,105,225,.25); }
.bl-certs__photo-badge--blue svg { color: #4169e1; }
.bl-certs__decor {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 160px; height: 160px;
    z-index: 1;
    opacity: .5;
}

@media (max-width: 768px) {
    .bl-certs { padding: 60px 0; }
    .bl-certs__inner { grid-template-columns: 1fr; gap: 40px; }
    .bl-certs__gallery { height: 300px; }
}
@media (max-width: 480px) {
    .bl-certs__gallery { height: 260px; }
    .bl-certs__photo--1, .bl-certs__photo--2 { width: 65%; height: 55%; }
}

/* Section 32 merged into footer section above */

/* ── 33. MOBILE FIXES ────────────────────────────────────── */
/* Feature icons bigger on mobile */
@media (max-width: 768px) {
    .bl-feature-card__icon-wrap {
        width: 64px !important;
        height: 64px !important;
    }
    .bl-feature-card__icon-wrap img {
        width: 48px !important;
        height: 48px !important;
    }
}

/* Howto SVG arrows — prevent overflow on narrow screens */
.bl-howto__step-arrow {
    flex-shrink: 0;
    overflow: visible;
}
@media (max-width: 768px) {
    .bl-howto__step-arrow svg {
        width: 24px !important;
        height: 24px !important;
    }
    .bl-howto__steps {
        overflow: visible;
    }
    .bl-howto__step {
        min-width: 0;
        word-break: break-word;
    }
}

/* Submit button wrapper — centered */
.bl-order__form-wrap .wpcf7 p:has([type="submit"]),
.bl-contacts__form-card .wpcf7 p:has([type="submit"]),
.cf7-order > p:has([type="submit"]),
.cf7-order > div:has([type="submit"]) {
    text-align: center !important;
}
/* Submit button — inline-block so parent text-align centers it, text wraps */
.bl-order__form-wrap .wpcf7 input[type="submit"],
.bl-contacts__form-card .wpcf7 input[type="submit"],
.cf7-order input[type="submit"],
.cf7-order .wpcf7-submit {
    display: inline-block !important;
    width: auto !important;
    margin: 0 auto !important;
}

/* Hero mini-stats hidden (removed from HTML, but keep rule just in case) */
.bl-hero__mini-stats { display: none; }

/* ── 34. CALLBACK FORM (custom HTML, no CF7 rendering) ─── */
.bl-cb-form { display: flex; flex-direction: column; gap: 16px; }
.bl-cb-field { display: flex; flex-direction: column; gap: 6px; }
.bl-cb-label { font-size: 13px; font-weight: 600; color: #374151; }
.bl-cb-input {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid #d1d5db; border-radius: 12px;
    font-size: 14px; font-family: inherit;
    background: #fafafa;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}
.bl-cb-input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(114,186,5,.15); background: #fff; }
.bl-cb-gdpr {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #f0fde4, #e8f5ff);
    border-radius: 10px; border: 1.5px solid rgba(114,186,5,.25);
    cursor: pointer;
}
.bl-cb-checkbox {
    appearance: none; -webkit-appearance: none;
    width: 20px; height: 20px; min-width: 20px;
    border: 2px solid #c8e8a0; border-radius: 6px;
    background: #fff; cursor: pointer;
    position: relative; margin-top: 1px; flex-shrink: 0;
    transition: background .2s, border-color .2s;
}
.bl-cb-checkbox:checked { background: linear-gradient(135deg, #72ba05, #5a9604); border-color: #72ba05; }
.bl-cb-checkbox:checked::after {
    content: ''; position: absolute; left: 4px; top: 1px;
    width: 6px; height: 10px; border: 2px solid #fff;
    border-top: none; border-left: none; transform: rotate(45deg); display: block;
}
.bl-cb-gdpr-text { font-size: 12px; line-height: 1.5; color: #3a4a2a; font-weight: 500; }
.bl-cb-gdpr-text a { color: var(--blue); text-decoration: underline; }
.bl-cb-error { font-size: 12px; color: #e53e3e; min-height: 16px; }
.bl-cb-submit { width: 100%; justify-content: center; gap: 8px; }

/* ── 35. CART BAR CLOSE + MINI ICON ─────────────────────── */
.bl-cart-bar__close {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.06);
    border: 1.5px solid rgba(0,0,0,.12);
    border-radius: 50%;
    color: var(--gray);
    margin-left: 4px;
    flex-shrink: 0;
    transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
    cursor: pointer;
}
.bl-cart-bar__close:hover { background: rgba(114,186,5,.12); color: var(--green); border-color: rgba(114,186,5,.3); }
/* Hide bar when at order section */
.bl-cart-bar.at-order { transform: translateY(100%) !important; pointer-events: none !important; }
/* Mini cart icon — stacked above to-top button */
.bl-cart-mini {
    position: fixed;
    bottom: 90px; right: 24px;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(114,186,5,.4);
    z-index: 1100;
    transform: scale(0);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .3s;
    opacity: 0;
}
.bl-cart-mini[hidden] { display: flex !important; transform: scale(0); opacity: 0; pointer-events: none; }
.bl-cart-mini.visible { transform: scale(1); opacity: 1; pointer-events: auto; }
.bl-cart-mini__badge {
    position: absolute;
    top: -2px; right: -2px;
    background: var(--blue);
    color: #fff;
    font-size: 10px; font-weight: 700;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
}

/* ── 36. HERO Z-INDEX + FLOAT CARDS ──────────────────────── */
.bl-hero__apple { z-index: 1; position: absolute; }
.bl-hero__apple--1 { z-index: 1; }
.bl-hero__apple--2 { z-index: 1; }
.bl-hero__float-card { z-index: 4; }
.bl-hero__float-card--2 { z-index: 4; }

/* ── 37. HERO PADDING — responsive across all breakpoints ─── */
.bl-hero { padding-top: 110px; }
@media (min-width: 1800px) {
    .bl-hero { padding-top: 100px; min-height: 80vh; }
}
@media (max-width: 768px) { .bl-hero { padding-top: 88px; } }

/* (footer nav + bottom are fully defined in section 15 above) */

/* ── 40. CONTACTS PAGE FIXES ─────────────────────────────── */
.bl-contacts__form-title { word-break: break-word; hyphens: auto; }
@media (max-width: 768px) {
    .bl-contacts__form-title { font-size: 20px; }
}

/* ── 41. WORKING HOURS STYLED ────────────────────────────── */
.bl-contacts__hours {
    margin-top: 28px;
    background: rgba(114,186,5,.06);
    border: 1px solid rgba(114,186,5,.15);
    border-radius: 14px;
    padding: 20px 20px 16px;
}
.bl-contacts__hours h3 { color: var(--dark); margin-bottom: 14px !important; }
.bl-contacts__hours-grid span:nth-child(even) { color: var(--green-dark, #5a9604); font-weight: 600; }

/* ── 42. MOBILE HERO — полная адаптация ─────────────────── */
@media (max-width: 768px) {
    .bl-hero { padding: 88px 0 48px; min-height: auto; }
    .bl-hero__inner { grid-template-columns: 1fr; gap: 28px; }

    /* Media: точная высота = фото + декоры */
    .bl-hero__media {
        display: block !important;
        order: -1;
        height: auto !important;
        overflow: visible;
        position: relative;
    }

    /* Photo wrap — full natural height, no cropping */
    .bl-hero__photo-wrap {
        position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
        border-radius: 24px;
        aspect-ratio: 4 / 3;
    }
    .bl-hero__photo-main {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        top: auto !important; left: auto !important;
        border-radius: 24px;
        box-shadow: 0 12px 36px rgba(0,0,0,.18);
        object-fit: cover;
        object-position: center 20%;
    }
    .bl-hero__photo-secondary { display: none !important; }

    /* Apple decorations — маленькие, по углам фото */
    .bl-hero__apple { z-index: 5; }
    .bl-hero__apple--1 { left: -10px; top: -12px; }
    .bl-hero__apple--2 { right: -10px; bottom: 20px; }
    .bl-hero__apple img { width: 52px !important; }

    /* Float card — внутри фото снизу */
    .bl-hero__float-card { display: none !important; }
    .bl-hero__float-card:first-of-type {
        display: flex !important;
        top: auto !important;
        bottom: 12px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        animation: float-card 4s ease-in-out infinite;
        white-space: nowrap;
        font-size: 12px;
        padding: 8px 12px;
        z-index: 10;
        max-width: 90%;
    }
    .bl-hero__float-card-icon { font-size: 18px; }

    /* Текст */
    .bl-hero__title { font-size: clamp(30px, 8vw, 46px); }
    .bl-hero__subtitle { font-size: 17px; line-height: 1.5; }
    .bl-hero__desc { font-size: 15px; }
    .bl-hero__badge { font-size: 12px; padding: 6px 14px; margin-bottom: 16px; }
    .bl-hero__ctas { gap: 10px; margin-bottom: 24px; }
    .bl-hero__mini-stats { gap: 16px; }

    /* Features: compact */
    .bl-feature-card { padding: 16px 12px; }
    .bl-feature-card__icon-wrap { width: 48px !important; height: 48px !important; }
    .bl-feature-card__icon-wrap img { width: 32px !important; height: 32px !important; }
    .bl-feature-card__title { font-size: 13px; }
    .bl-feature-card__desc { font-size: 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

    /* Stats: 2×2 grid */
    .bl-stats__grid { flex-direction: row; flex-wrap: wrap; gap: 0; }
    .bl-stats__item { flex: 1 1 50%; padding: 16px 10px; }
    .bl-stats__divider { display: none; }

    /* Footer: лого + разделы в 2 колонки, контакты — под ними */
    .bl-footer__inner { grid-template-columns: 1fr 1fr; gap: 16px 12px; padding-bottom: 24px; }
    .bl-footer__contacts { grid-column: 1 / -1; }
    .bl-footer__logo-wrap img { width: 110px; }
    .bl-footer__logo-wrap { padding: 8px 12px; }
    .bl-footer__tagline { font-size: 12px; max-width: 130px; line-height: 1.5; }
    .bl-footer { padding: 36px 0 0; }
    .bl-footer__nav-title, .bl-footer__contacts-title { font-size: 10px; margin-bottom: 10px; }
    .bl-footer__nav li a { font-size: 13px; padding: 6px 8px; }
}

/* ── CART TOAST (no trees warning) ─────────────────────────── */
.bl-cart-toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,.14);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    max-width: min(480px, 94vw);
    width: 100%;
    z-index: 3000;
    opacity: 0;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s;
    pointer-events: none;
}
.bl-cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.bl-cart-toast__icon { font-size: 28px; flex-shrink: 0; }
.bl-cart-toast__text { flex: 1; min-width: 0; }
.bl-cart-toast__text strong { display: block; font-size: 14px; color: var(--dark); }
.bl-cart-toast__text span { font-size: 12px; color: var(--gray); }
.bl-cart-toast__btn {
    background: var(--green);
    color: #fff;
    border-radius: var(--radius-full);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    transition: background var(--t-base);
}
.bl-cart-toast__btn:hover { background: var(--green-dark); color: #fff; }
.bl-cart-toast__close {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--gray);
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background var(--t-base);
    line-height: 1;
}
.bl-cart-toast__close:hover { background: #fee2e2; color: #e53e3e; }

/* ── 43. CART BAR — MOBILE COMPACT ──────────────────────── */
@media (max-width: 768px) {
    .bl-cart-bar {
        padding: 8px 12px 8px;
    }
    .bl-cart-bar__inner {
        flex-wrap: nowrap;
        gap: 8px;
        align-items: center;
    }
    /* Items: horizontal scroll */
    .bl-cart-bar__items {
        flex-wrap: nowrap;
        gap: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        min-width: 0;
        flex-shrink: 1;
    }
    .bl-cart-bar__items::-webkit-scrollbar { display: none; }
    /* Compact pills */
    .bl-cart-bar__pill {
        flex-shrink: 0;
        font-size: 12px;
        padding: 4px 8px 4px 10px;
        gap: 6px;
    }
    /* Shorten pill name on mobile so multiple trees fit */
    .bl-cart-bar__pill > span:first-child { max-width: 72px; }
    .bl-cart-bar__pill-qty-ctrl { gap: 2px; }
    .bl-cart-bar__qty-btn { width: 18px; height: 18px; font-size: 12px; }
    .bl-cart-bar__pill-qty { font-size: 12px; min-width: 14px; }
    .bl-cart-bar__remove { width: 20px; height: 20px; font-size: 14px; }
    /* Checkout button compact */
    .bl-cart-bar__checkout {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 12px;
        padding: 8px 12px;
        gap: 5px;
    }
    .bl-cart-bar__checkout svg { width: 13px; height: 13px; }
}

/* ── 44. CART BAR BEHAVIOR — show everywhere except #zakaz ─ */
/* Remove at-order when scrolling up far from order form — handled by JS IntersectionObserver */

/* ── 45. 404 PAGE ─────────────────────────────────────────── */
.bl-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #f8fdf2 0%, #fff 50%, #f0f8ff 100%);
}
/* Floating leaf decorations */
.bl-404__bg { position: absolute; inset: 0; pointer-events: none; }
.bl-404__leaf {
    position: absolute;
    border-radius: 50% 0 50% 0;
    opacity: .07;
}
.bl-404__leaf--1 { width: 300px; height: 300px; background: var(--green); top: -80px; right: -60px; transform: rotate(30deg); animation: leafFloat 8s ease-in-out infinite; }
.bl-404__leaf--2 { width: 180px; height: 180px; background: var(--blue); bottom: 40px; left: -40px; transform: rotate(-20deg); animation: leafFloat 10s ease-in-out infinite 2s; }
.bl-404__leaf--3 { width: 120px; height: 120px; background: var(--green); top: 60%; right: 20%; transform: rotate(45deg); animation: leafFloat 7s ease-in-out infinite 4s; }
@keyframes leafFloat {
    0%,100% { transform: rotate(30deg) translate(0,0); }
    50%      { transform: rotate(35deg) translate(8px,-12px); }
}
.bl-404__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
/* Tree illustration */
.bl-404__illustration { position: relative; display: flex; flex-direction: column; align-items: center; }
.bl-404__tree-wrap { position: relative; display: flex; flex-direction: column; align-items: center; }
.bl-404__crown { position: relative; width: 180px; height: 200px; }
.bl-404__crown-layer {
    position: absolute;
    border-radius: 50%;
    left: 50%; transform: translateX(-50%);
}
.bl-404__crown-layer--bot { width: 180px; height: 160px; bottom: 0; background: radial-gradient(ellipse at 40% 40%, #9ED80A 0%, #72ba05 60%, #5a9604 100%); }
.bl-404__crown-layer--mid { width: 140px; height: 130px; bottom: 80px; background: radial-gradient(ellipse at 40% 40%, #B5E820 0%, #8ccf06 60%, #72ba05 100%); }
.bl-404__crown-layer--top { width: 90px; height: 90px;  bottom: 160px; background: radial-gradient(ellipse at 40% 40%, #D4F040 0%, #A8D900 60%, #8ccf06 100%); }
/* Apples */
.bl-404__apple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ff8a65, #e53935);
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    animation: appleBob 3s ease-in-out infinite;
}
.bl-404__apple--1 { width: 18px; height: 18px; bottom: 50px; left: 28px; }
.bl-404__apple--2 { width: 22px; height: 22px; bottom: 80px; right: 24px; animation-delay: .8s; }
.bl-404__apple--3 { width: 14px; height: 14px; bottom: 100px; left: 60px; animation-delay: 1.5s; }
@keyframes appleBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.bl-404__trunk { width: 28px; height: 80px; background: linear-gradient(to right, #8B5E3C, #A07040); border-radius: 4px; }
/* 404 number badge */
.bl-404__number {
    font-family: var(--font-head);
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #72ba05 0%, #4169e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 16px;
    letter-spacing: -.04em;
    filter: drop-shadow(0 4px 24px rgba(114,186,5,.3));
}
/* Content */
.bl-404__content { display: flex; flex-direction: column; gap: 24px; }
.bl-404__title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin: 0;
}
.bl-404__desc { font-size: 17px; color: var(--gray); line-height: 1.65; margin: 0; max-width: 420px; }
.bl-404__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.bl-404__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
    font-size: 14px;
    color: var(--gray);
    padding-top: 8px;
    border-top: 1px solid var(--border);
}
.bl-404__links a {
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--t-base);
}
.bl-404__links a:hover { color: var(--blue); text-decoration: underline; }
@media (max-width: 768px) {
    .bl-404__inner { grid-template-columns: 1fr; gap: 32px; }
    .bl-404__number { font-size: 80px; }
    .bl-404__illustration { order: -1; }
    .bl-404__crown { width: 130px; height: 150px; }
    .bl-404__crown-layer--bot { width: 130px; height: 120px; }
    .bl-404__crown-layer--mid { width: 100px; height: 95px; bottom: 58px; }
    .bl-404__crown-layer--top { width: 65px; height: 65px; bottom: 118px; }
}

/* ── 46. FOOTER BOTTOM BAR — mobile ─────────────────────── */
@media (max-width: 768px) {
    .bl-footer__bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 14px 0;
    }
    .bl-footer__bottom-links {
        justify-content: center;
    }
}
