/**
 * Pyary Malaysia — Beauty Luxe v3.0
 * Modern beauty-brand design system.
 * Clean lines, boxy-rounded corners, soft typography, gold accents.
 * Prefix: .bl-
 */

/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {
    --bl-forest: #1a3c2a;
    --bl-forest-deep: #0f2519;
    --bl-sage: #5a8a6e;
    --bl-sage-light: #8db09a;
    --bl-cream: #f9f7f4;
    --bl-cream-warm: #f5f1ea;
    --bl-ivory: #fdfcf9;
    --bl-ink: #1c2620;
    --bl-ink-light: #3d4a42;
    --bl-gold: #c4a265;
    --bl-gold-light: #dcc99b;
    --bl-rose: #e8d5d0;
    --bl-line: rgba(26, 60, 42, 0.10);
    --bl-line-dark: rgba(255, 255, 255, 0.12);
    --bl-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --bl-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --bl-r: 14px;
    --bl-r-lg: 18px;
    --bl-r-xl: 22px;
    --bl-shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --bl-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --bl-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.10);
    --bl-shadow-card: 0 4px 20px rgba(26, 60, 42, 0.08);
}

/* ========================================
   LAYOUT
   ======================================== */
.bl-section {
    padding: clamp(72px, 9vw, 120px) 0;
    position: relative;
    overflow: hidden;
}
.bl-section-sm {
    padding: clamp(48px, 6vw, 80px) 0;
    position: relative;
    overflow: hidden;
}

/* Background variants */
.bl-bg-ivory { background: var(--bl-ivory); }
.bl-bg-cream { background: var(--bl-cream); }
.bl-bg-warm  { background: var(--bl-cream-warm); }
.bl-bg-forest {
    background: radial-gradient(120% 140% at 20% 0%, #1e4a30 0%, var(--bl-forest) 45%, var(--bl-forest-deep) 100%);
}
.bl-bg-forest-dark {
    background: radial-gradient(120% 140% at 80% 100%, #1a3c2a 0%, var(--bl-forest-deep) 60%, #091a10 100%);
}

/* Subtle ambient orbs */
.bl-section::before,
.bl-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 0;
}
.bl-section::before {
    width: 380px;
    height: 380px;
    top: -140px;
    right: -120px;
    background: radial-gradient(circle, rgba(90, 138, 110, 0.22), transparent 70%);
}
.bl-section::after {
    width: 300px;
    height: 300px;
    bottom: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(196, 162, 101, 0.16), transparent 70%);
}
.bl-bg-forest::before,
.bl-bg-forest-dark::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 70%);
}
.bl-bg-forest::after,
.bl-bg-forest-dark::after {
    background: radial-gradient(circle, rgba(196, 162, 101, 0.12), transparent 70%);
}
.bl-section > .container,
.bl-section-sm > .container {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════
   SECTION ROUNDED TOP — Green sections
   ═══════════════════════════════════════ */
.bl-section-rounded-top {
    border-radius: 40px 40px 0 0;
    margin-top: -20px;
    padding-top: calc(clamp(72px, 9vw, 120px) + 20px);
    position: relative;
    z-index: 2;
}

/* Watermark */
.bl-watermark {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 900;
    font-size: clamp(4rem, 12vw, 10rem);
    letter-spacing: 0.03em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(26, 60, 42, 0.07);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
}
.bl-on-dark .bl-watermark,
.bl-bg-forest .bl-watermark,
.bl-bg-forest-dark .bl-watermark {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.bl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bl-sage);
    margin-bottom: 20px;
}
.bl-eyebrow::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--bl-gold);
}
.bl-eyebrow.bl-on-dark {
    color: rgba(255, 255, 255, 0.7);
}
.bl-eyebrow.bl-on-dark::before {
    background: var(--bl-gold-light);
}

.bl-display {
    font-weight: 650;
    color: var(--bl-ink);
    line-height: 1.10;
    letter-spacing: -0.02em;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    margin-bottom: 0;
}
.bl-display .bl-script {
    font-family: 'Tuesday Night', cursive;
    font-weight: 400;
    color: var(--bl-sage);
    font-size: 1.4em;
    line-height: 0.7;
    letter-spacing: 0;
}
.bl-display.bl-on-dark,
.bl-on-dark .bl-display {
    color: #fff;
}
.bl-on-dark .bl-display .bl-script {
    color: var(--bl-gold-light);
}

.bl-lede {
    font-size: clamp(0.98rem, 1.3vw, 1.1rem);
    line-height: 1.78;
    color: var(--bl-ink-light);
    font-weight: 450;
}
.bl-on-dark .bl-lede {
    color: rgba(255, 255, 255, 0.75);
}

.bl-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--bl-ink-light);
    font-weight: 450;
}

/* ========================================
   BUTTONS (boxy-rounded, not pill)
   ======================================== */
.bl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 15px 32px;
    border-radius: var(--bl-r);
    border: 1.5px solid transparent;
    text-decoration: none;
    transition: all 0.4s var(--bl-ease);
    position: relative;
    cursor: pointer;
}
.bl-btn i {
    transition: transform 0.4s var(--bl-ease);
}
.bl-btn:hover i.fa-arrow-right {
    transform: translateX(4px);
}

.bl-btn-primary {
    background: var(--bl-forest);
    color: #fff;
    box-shadow: 0 8px 24px -10px rgba(26, 60, 42, 0.45);
}
.bl-btn-primary:hover {
    background: var(--bl-forest-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px -12px rgba(26, 60, 42, 0.55);
}

.bl-btn-light {
    background: #fff;
    color: var(--bl-forest);
    box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.25);
    font-weight: 600;
}
.bl-btn-light:hover {
    color: var(--bl-forest-deep);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px -12px rgba(0, 0, 0, 0.35);
}

.bl-btn-outline {
    background: transparent;
    color: var(--bl-forest);
    border-color: rgba(26, 60, 42, 0.25);
}
.bl-btn-outline:hover {
    background: var(--bl-forest);
    color: #fff;
    border-color: var(--bl-forest);
    transform: translateY(-2px);
}

.bl-btn-outline-light {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-weight: 500;
}
.bl-btn-outline-light:hover {
    background: #fff;
    color: var(--bl-forest);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Hero buttons on mobile */
@media (max-width: 991.98px) {
    .bl-hero .bl-btn-light {
        background: var(--bl-forest);
        color: #fff;
        box-shadow: 0 6px 20px rgba(26, 60, 42, 0.3);
    }
    .bl-hero .bl-btn-outline-light {
        background: transparent;
        color: var(--bl-forest);
        border-color: rgba(26, 60, 42, 0.3);
    }
    .bl-hero .bl-btn-outline-light:hover {
        background: var(--bl-forest);
        color: #fff;
        border-color: var(--bl-forest);
    }
}

.bl-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--bl-forest);
    text-decoration: none;
    padding: 11px 0;
    border-bottom: 1.5px solid rgba(26, 60, 42, 0.2);
    transition: all 0.35s var(--bl-ease);
}
.bl-link::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    transition: transform 0.35s var(--bl-ease);
}
.bl-link:hover {
    color: var(--bl-forest-deep);
    border-bottom-color: var(--bl-forest);
}
.bl-link:hover::after {
    transform: translateX(4px);
}

html, body, main, .wrapper, .layout-page {
    margin: 0 !important;
    padding: 0 !important;
}
main { display: block; }

/* ========================================
   NAVBAR — Floating Pill
   ======================================== */
.bl-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    pointer-events: none;
}
.bl-navbar * {
    pointer-events: auto;
}

/* The floating pill */
.bl-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 92%;
    max-width: 1100px;
    margin: 14px auto 0;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(28px) saturate(1.8);
    -webkit-backdrop-filter: blur(28px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 56px;
    padding: 9px 10px 9px 22px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.09),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.bl-navbar.scrolled .bl-nav-inner {
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.06);
    border-radius: 48px;
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Logo */
.bl-nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.bl-nav-brand img {
    height: 46px;
    width: auto;
    transition: height 0.4s ease;
}
.bl-navbar.scrolled .bl-nav-brand img {
    height: 38px;
}

/* Links */
.bl-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
.bl-nav-links li { display: flex; }
.bl-nav-links a {
    display: inline-flex;
    align-items: center;
    padding: 9px 17px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(28, 38, 32, 0.82);
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}
.bl-nav-links a:hover {
    color: var(--bl-forest);
    background: rgba(26, 60, 42, 0.06);
}
.bl-nav-links a.active {
    color: #fff;
    background: var(--bl-forest);
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(26, 60, 42, 0.28);
}

/* Actions */
.bl-nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.bl-nav-soc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: rgba(28, 38, 32, 0.55);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.bl-nav-soc:hover {
    color: var(--bl-forest);
    background: rgba(26, 60, 42, 0.07);
}
.bl-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bl-forest);
    color: #fff !important;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(26, 60, 42, 0.3);
}
.bl-nav-cta:hover {
    background: var(--bl-forest-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(26, 60, 42, 0.4);
    color: #fff !important;
}
.bl-nav-cta i { font-size: 10px; transition: transform 0.3s ease; }
.bl-nav-cta:hover i { transform: translateX(3px); }

/* Toggle */
.bl-nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--bl-ink);
    font-size: 20px;
    z-index: 1060;
}

/* ── Tablet & Mobile ── */
@media (max-width: 991.98px) {
    .bl-nav-inner {
        width: 94%;
        margin-top: 8px;
        border-radius: 44px;
        padding: 6px 8px 6px 16px;
    }
    .bl-navbar.scrolled .bl-nav-inner { margin-top: 4px; }
    .bl-nav-brand img { height: 38px; }
    .bl-navbar.scrolled .bl-nav-brand img { height: 32px; }
    .bl-nav-soc { display: none; }
    .bl-nav-links { display: none; }
    .bl-nav-links.open {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        z-index: 1050;
        border-radius: 0;
    }
    .bl-nav-links.open a {
        font-size: 22px;
        padding: 16px 36px;
        border-radius: 30px;
    }
    .bl-nav-links.open a.active {
        background: var(--bl-forest);
        color: #fff;
    }
    .bl-nav-cta { padding: 9px 16px; font-size: 12px; }
    .bl-nav-toggle { display: block; }
}

@media (max-width: 575.98px) {
    .bl-nav-inner {
        width: 95%;
        margin-top: 6px;
        border-radius: 34px;
        padding: 5px 6px 5px 14px;
    }
    .bl-navbar.scrolled .bl-nav-inner { margin-top: 3px; }
    .bl-nav-brand img { height: 32px; }
    .bl-nav-cta { padding: 8px 13px; font-size: 11px; border-radius: 30px; }
}

/* ========================================
   HERO — Beauty Brand Fullscreen
   ======================================== */
.bl-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
}
.bl-hero-bg {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: calc(100% + 80px);
    z-index: 0;
}
.bl-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    transform: scale(1.03);
    transition: transform 8s ease-out;
}
.bl-hero:hover .bl-hero-bg img {
    transform: scale(1.08);
}
.bl-hero-overlay {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: calc(100% + 80px);
    background: linear-gradient(
        105deg,
        rgba(12, 28, 18, 0.78) 0%,
        rgba(15, 35, 22, 0.50) 38%,
        rgba(15, 35, 22, 0.15) 68%,
        transparent 100%
    );
}

/* Content container — sits above background */
.bl-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.bl-hero-content {
    padding: 2rem 0;
}
.bl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-radius: var(--bl-r);
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 24px;
}
.bl-hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--bl-gold-light);
    border-radius: 50%;
}
.bl-hero-subtitle {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}
.bl-hero-title {
    font-weight: 650;
    font-size: clamp(2.4rem, 5.2vw, 4rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 0;
}
.bl-hero-title .bl-script {
    font-family: 'Tuesday Night', cursive;
    font-weight: 400;
    font-size: 1.3em;
    line-height: 0.9;
    color: var(--bl-gold-light);
    display: block;
    letter-spacing: 0;
}
.bl-hero-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 24px 0;
}
.bl-hero-divider span {
    width: 36px;
    height: 1.5px;
    background: var(--bl-gold);
    border-radius: 1px;
}
.bl-hero-divider i {
    color: var(--bl-gold-light);
    font-size: 13px;
}
.bl-hero-hashtag {
    font-family: 'Tuesday Night', cursive;
    font-size: 1.8rem;
    color: var(--bl-gold-light);
    letter-spacing: 0;
    margin-bottom: 28px;
}
.bl-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Animated background elements (circles, lines, dots) */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.hero-bg-elements .bg-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
}
.bg-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -50px;
}
.bg-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
}
.hero-bg-elements .bg-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
}
.bg-line-1 { width: 150px; top: 25%; left: 10%; }
.bg-line-2 { width: 200px; top: 50%; right: 0; }
.bg-line-3 { width: 120px; bottom: 30%; left: 15%; }
.hero-bg-elements .bg-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
}
.bg-dot-1 { top: 20%; left: 20%; }
.bg-dot-2 { top: 40%; left: 8%; }
.bg-dot-3 { top: 65%; left: 25%; }
.bg-dot-4 { top: 80%; left: 12%; }

/* ═══════════════════════════════════════
   FLOATING STATS CARD — Prominent Overlay
   ═══════════════════════════════════════ */
.bl-stats-card {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    z-index: 5;
    opacity: 0;
}
.bl-stats-card-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    padding: 22px 28px;
    box-shadow:
        0 12px 44px rgba(0, 0, 0, 0.10),
        0 0 0 1px rgba(255, 255, 255, 0.35) inset;
    min-width: 210px;
}

.bl-stats-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 0;
}
.bl-stats-val {
    font-size: 1.25rem;
    font-weight: 650;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.bl-stats-lbl {
    font-size: 10.5px;
    color: #999;
    font-weight: 450;
}

.bl-stats-div {
    height: 1px;
    background: rgba(0, 0, 0, 0.07);
}

/* Scroll indicator */
.bl-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 5;
    opacity: 0.6;
}
.bl-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: bl-scroll-pulse 2s ease-in-out infinite;
}
@keyframes bl-scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
}

/* Mobile stats */
.bl-hero-stats-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.bl-stat-mobile { text-align: center; }
.bl-stat-mobile-num {
    font-weight: 650;
    font-size: 1.3rem;
    color: var(--bl-forest);
    line-height: 1.2;
}
.bl-stat-mobile-label {
    display: block;
    font-size: 9.5px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.bl-stat-mobile-div {
    width: 1px;
    height: 28px;
    background: #ddd;
}

/* Hero responsive */
@media (max-width: 991.98px) {
    .bl-hero {
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
    }
    .bl-hero-container {
        background: var(--bl-ivory);
        padding: 40px 0;
    }
    .bl-hero-bg {
        position: relative;
        width: 100%;
        height: 50vh;
        min-height: 320px;
    }
    .bl-hero-bg img {
        object-position: center center;
    }
    .bl-hero-overlay {
        position: absolute;
        inset: 0;
        height: auto;
        background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(12, 28, 18, 0.4) 100%);
    }
    .bl-hero-content {
        padding: 1rem 0;
        text-align: center;
    }
    .bl-hero-title {
        color: var(--bl-ink);
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }
    .bl-hero-subtitle {
        color: #777;
    }
    .bl-hero-badge {
        background: rgba(26, 60, 42, 0.06);
        color: var(--bl-forest);
        border-color: rgba(26, 60, 42, 0.1);
    }
    .bl-hero-hashtag {
        color: var(--bl-sage);
        font-size: 1.4rem;
    }
    .bl-hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    .bl-hero-buttons .bl-btn {
        width: 100%;
    }
    .bl-hero-divider {
        justify-content: center;
    }
    .hero-bg-elements {
        display: none !important;
    }
    .bl-scroll-hint {
        display: none !important;
    }
    .bl-hero-stats {
        justify-content: center;
    }
    .bl-hero-stats span {
        color: #999;
    }
    .bl-hero-stats span strong {
        color: var(--bl-forest);
    }
    .bl-hero-stats-dot {
        color: #ccc !important;
    }
}

/* ========================================
   HERITAGE SECTION
   ======================================== */
.bl-heritage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.bl-stat-card {
    background: #fff;
    border-radius: var(--bl-r-lg);
    padding: 28px 30px;
    box-shadow: var(--bl-shadow-card);
    transition: transform 0.4s var(--bl-ease), box-shadow 0.4s var(--bl-ease);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.bl-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bl-shadow-lg);
}
.bl-stat-num {
    font-weight: 650;
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    color: var(--bl-forest);
    line-height: 1;
    letter-spacing: -0.02em;
}
.bl-stat-num sup {
    font-size: 0.42em;
    color: var(--bl-gold);
    top: -0.8em;
}
.bl-stat-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bl-sage-light);
    margin-top: 8px;
}

/* ========================================
   BENEFITS — Interactive Modern Layout
   ======================================== */
.bl-benefits-stage {
    position: relative;
    overflow: hidden;
}
.bl-benefit-card {
    position: relative;
    border-radius: var(--bl-r-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s var(--bl-ease), box-shadow 0.5s var(--bl-ease);
    box-shadow: var(--bl-shadow-card);
}
.bl-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px -18px rgba(15, 35, 22, 0.45);
}
.bl-benefit-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 1.2s var(--bl-ease);
}
.bl-benefit-card:hover img {
    transform: scale(1.08);
}
.bl-benefit-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 24, 14, 0.85) 0%,
        rgba(10, 24, 14, 0.25) 45%,
        transparent 68%
    );
    transition: background 0.5s ease;
}
.bl-benefit-card:hover .bl-benefit-veil {
    background: linear-gradient(
        to top,
        rgba(10, 24, 14, 0.75) 0%,
        rgba(10, 24, 14, 0.15) 40%,
        transparent 65%
    );
}
.bl-benefit-num {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--bl-forest);
    background: #fff;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}
.bl-benefit-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 22px 24px;
    transform: translateY(6px);
    transition: transform 0.5s var(--bl-ease);
}
.bl-benefit-card:hover .bl-benefit-caption {
    transform: translateY(0);
}
.bl-benefit-caption h4 {
    font-weight: 650;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.bl-benefit-caption p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin: 0;
    font-weight: 450;
    display: inline-block;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 6px 14px;
    border-radius: 14px;
}

/* ========================================
   INGREDIENTS — Premium Visual Layout
   ======================================== */
.bl-ingredients-showcase {
    position: relative;
}
.bl-ing-main-card {
    position: relative;
    border-radius: var(--bl-r-xl);
    overflow: hidden;
    box-shadow: 0 30px 70px -24px rgba(15, 35, 22, 0.45);
}
.bl-ing-main-card img {
    width: 100%;
    display: block;
    border-radius: var(--bl-r-xl);
    transition: transform 1.2s var(--bl-ease);
}
.bl-ing-main-card:hover img {
    transform: scale(1.04);
}
.bl-ing-tag {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--bl-forest);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: var(--bl-r);
    backdrop-filter: blur(8px);
}

.bl-ing-card {
    display: flex;
    gap: 18px;
    padding: 22px 24px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--bl-r-lg);
    margin-bottom: 12px;
    box-shadow: var(--bl-shadow-sm);
    transition: all 0.4s var(--bl-ease);
    position: relative;
    overflow: hidden;
}
.bl-ing-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--bl-gold);
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform 0.4s var(--bl-ease);
}
.bl-ing-card:hover {
    transform: translateX(6px);
    box-shadow: var(--bl-shadow-md);
}
.bl-ing-card:hover::before {
    transform: scaleY(1);
}
.bl-ing-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--bl-r);
    flex-shrink: 0;
    font-size: 18px;
}
.bl-ing-icon.green {
    background: linear-gradient(135deg, rgba(26, 60, 42, 0.1), rgba(90, 138, 110, 0.15));
    color: var(--bl-forest);
}
.bl-ing-card h4 {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--bl-ink);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.bl-ing-card h4 .bl-ing-tag-sm {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bl-sage);
    background: rgba(90, 138, 110, 0.1);
    padding: 4px 10px;
    border-radius: var(--bl-r);
    margin-left: 8px;
    vertical-align: middle;
}
.bl-ing-card p {
    color: var(--bl-ink-light);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
    font-weight: 450;
}

/* ========================================
   PRODUCT CARDS — Marketplace Style
   ======================================== */
/* ═══════════════════════════════════════
   VARIANT SELECTOR — Highlighted Cards
   ═══════════════════════════════════════ */
.bl-variant-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
@media (max-width: 767.98px) {
    .bl-variant-selector { grid-template-columns: repeat(2, 1fr); }
}

.bl-variant-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    text-align: left;
    font-family: inherit;
    width: 100%;
}
.bl-variant-card:hover {
    border-color: var(--bl-sage-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.bl-variant-card.active {
    border-color: var(--bl-forest);
    background: rgba(26, 60, 42, 0.03);
    box-shadow: 0 6px 20px rgba(26, 60, 42, 0.12);
}
.bl-variant-card.active .bl-variant-check {
    opacity: 1;
    transform: scale(1);
}

.bl-variant-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 60, 42, 0.06);
    border-radius: 12px;
    font-size: 16px;
    color: var(--bl-forest);
    flex-shrink: 0;
}
.bl-variant-card.active .bl-variant-icon {
    background: var(--bl-forest);
    color: #fff;
}

.bl-variant-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.bl-variant-info strong { font-size: 14px; color: var(--bl-ink); line-height: 1.1; }
.bl-variant-info small { font-size: 12px; color: #999; }

.bl-variant-check {
    opacity: 0;
    transform: scale(0.6);
    color: var(--bl-forest);
    font-size: 20px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bl-variant-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: var(--bl-forest);
    color: #fff;
    padding: 4px 12px;
    border-radius: 10px;
    white-space: nowrap;
}
.bl-variant-tag.value { background: var(--bl-gold); color: #3d2e0a; }

/* ═══════════════════════════════════════
   MARKETPLACE PRODUCT DISPLAY
   ═══════════════════════════════════════ */
.bl-mp-main-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.bl-mp-main-img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.bl-mp-badge-top {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--bl-forest);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 7px 15px;
    border-radius: 20px;
    z-index: 2;
}

.bl-mp-details { display: flex; flex-direction: column; gap: 14px; height: 100%; justify-content: center; }
.bl-mp-header h3 { font-size: 1.5rem; font-weight: 650; color: var(--bl-ink); margin-bottom: 4px; }
.bl-mp-pack { font-size: 12px; color: #999; background: rgba(0,0,0,0.04); padding: 4px 12px; border-radius: 12px; }
.bl-mp-rating-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #888; }
.bl-mp-stars { color: #f0b800; }
.bl-mp-sep { color: #ddd; }

.bl-mp-price-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    background: #fdf9f5;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(196, 162, 101, 0.2);
}
.bl-mp-price { font-size: 1.9rem; font-weight: 700; color: #d94040; }
.bl-mp-old-price { font-size: 1rem; color: #bbb; text-decoration: line-through; }
.bl-mp-discount { font-size: 12px; font-weight: 700; color: #fff; background: #d94040; padding: 4px 10px; border-radius: 10px; }
.bl-mp-save { font-size: 12px; color: var(--bl-forest); font-weight: 600; margin-left: auto; }

.bl-mp-features { display: flex; flex-direction: column; gap: 6px; }
.bl-mp-features span { font-size: 13px; color: #666; }
.bl-mp-features i { color: var(--bl-forest); font-size: 12px; margin-right: 6px; }

.bl-mp-actions { display: flex; gap: 10px; align-items: center; }
.bl-mp-buy-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bl-forest);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 28px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.bl-mp-buy-btn:hover { background: var(--bl-forest-deep); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,60,42,0.3); }
.bl-mp-wishlist {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ddd;
    border-radius: 14px;
    background: #fff;
    color: #ccc;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.bl-mp-wishlist:hover, .bl-mp-wishlist.liked { border-color: #e07070; color: #e03030; }
.bl-mp-wishlist.liked i { font-weight: 900; }

.bl-mp-note { font-size: 11px; color: #bbb; margin: 0; }
.bl-mp-note i { color: var(--bl-gold); }

@media (max-width: 991.98px) {
    .bl-mp-details { gap: 12px; }
    .bl-mp-price { font-size: 1.5rem; }
}

/* ========================================
   OFFER BAND / CTA
   ======================================== */
.bl-offer-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--bl-r-xl);
    padding: 36px 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 24px 64px -24px rgba(0, 0, 0, 0.5);
    display: inline-block;
}
.bl-offer-price {
    color: #fff;
    font-weight: 650;
    font-size: clamp(3rem, 6.5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
}
.bl-offer-price s {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.32em;
    vertical-align: super;
    margin-left: 12px;
    font-weight: 500;
}
.bl-offer-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.bl-testimonial {
    text-align: center;
}
.bl-quote-mark {
    font-family: 'Tuesday Night', cursive;
    font-size: 4.5rem;
    line-height: 0.6;
    color: var(--bl-sage);
    display: block;
    margin-bottom: 16px;
}
.bl-quote {
    font-weight: 550;
    font-size: clamp(1.15rem, 2.1vw, 1.45rem);
    line-height: 1.6;
    color: var(--bl-ink);
    letter-spacing: -0.01em;
}
.bl-quote-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bl-sage);
    margin-top: 22px;
}
.bl-quote-name::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bl-gold);
}

/* ========================================
   VIDEO PLAYER
   ======================================== */
.bl-video-wrap {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--bl-r-xl);
    box-shadow: 0 32px 72px -24px rgba(15, 35, 22, 0.5);
}
.bl-video-wrap img,
.bl-video-wrap iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border: 0;
}
.bl-video-cover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 24, 16, 0.32);
    transition: background 0.4s ease;
}
.bl-video-wrap:hover .bl-video-cover {
    background: rgba(12, 24, 16, 0.16);
}
.bl-play-btn {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bl-forest);
    font-size: 22px;
    background: rgba(255, 255, 255, 0.92);
    transition: all 0.4s var(--bl-ease);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    animation: bl-play-pulse 2.6s infinite;
}
.bl-video-wrap:hover .bl-play-btn {
    transform: scale(1.08);
}
@keyframes bl-play-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 24px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ========================================
   IMAGE MARQUEE
   ======================================== */
.bl-marquee {
    overflow: hidden;
    padding: 16px 0;
}
.bl-marquee-track {
    display: flex;
    width: max-content;
    animation: bl-scroll 48s linear infinite;
}
.bl-marquee:hover .bl-marquee-track {
    animation-play-state: paused;
}
.bl-marquee-track img {
    width: clamp(180px, 20vw, 270px);
    height: clamp(180px, 20vw, 270px);
    object-fit: cover;
    margin-right: 14px;
    border-radius: var(--bl-r-lg);
    transition: transform 0.6s var(--bl-ease);
}
.bl-marquee-track img:hover {
    transform: scale(0.95);
}
@keyframes bl-scroll {
    to { transform: translateX(-50%); }
}

/* ========================================
   CONTACT
   ======================================== */
.bl-contact-item {
    display: flex;
    gap: 16px;
    padding: 18px 22px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--bl-r-lg);
    margin-bottom: 10px;
    box-shadow: var(--bl-shadow-sm);
}
.bl-contact-icon {
    color: #fff;
    background: var(--bl-forest);
    width: 40px;
    height: 40px;
    border-radius: var(--bl-r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.bl-contact-item h6 {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bl-sage-light);
    margin-bottom: 3px;
}
.bl-contact-item p,
.bl-contact-item a {
    font-weight: 550;
    font-size: 0.98rem;
    color: var(--bl-ink);
    margin: 0;
    text-decoration: none;
}
.bl-contact-item a:hover {
    color: var(--bl-sage);
}

.bl-form-card {
    background: #fff;
    border-radius: var(--bl-r-xl);
    box-shadow: 0 24px 64px -20px rgba(26, 60, 42, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.bl-form-card .form-control,
.bl-form-card .form-select {
    border: 1.5px solid rgba(26, 60, 42, 0.12);
    border-radius: var(--bl-r);
    background: #fafbf9;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 450;
    box-shadow: none !important;
    transition: all 0.3s ease;
}
.bl-form-card .form-control:focus,
.bl-form-card .form-select:focus {
    border-color: var(--bl-forest);
    background: #fff;
}
.bl-form-card .form-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bl-sage-light);
}

/* NPRA badge */
.bl-npra-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(26, 60, 42, 0.15);
    background: rgba(255, 255, 255, 0.6);
    padding: 10px 20px;
    border-radius: var(--bl-r);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bl-forest);
}
.bl-npra-badge i {
    color: var(--bl-gold);
}

/* ========================================
   FOOTER 2.1 — dark forest, uniform
   ======================================== */
.bl-footer {
    background: radial-gradient(130% 130% at 85% 0%, #17402a 0%, var(--bl-forest-deep) 55%, #091a10 100%);
    color: rgba(255, 255, 255, 0.72);
    padding: clamp(60px, 7vw, 92px) 0 0;
    position: relative;
    overflow: hidden;
}
.bl-footer::before {
    content: 'Revel The Real';
    position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
    font-weight: 800; font-size: clamp(2.2rem, 7vw, 5.4rem);
    letter-spacing: 0.04em; line-height: 1; text-transform: uppercase; white-space: nowrap;
    color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    pointer-events: none;
}
.bl-footer .container { position: relative; z-index: 1; }
.bl-footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1.25fr 1.35fr;
    gap: clamp(32px, 4vw, 52px);
    padding-bottom: clamp(44px, 5vw, 68px);
}

/* Logo badges — identical white cards */
.bl-footer-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.bl-footer-logo-badge {
    display: flex; align-items: center; justify-content: center;
    width: 148px; height: 78px;
    background: #fff; border-radius: var(--bl-r-lg);
    box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.35s var(--bl-ease);
}
.bl-footer-logo-badge:hover { transform: translateY(-3px); }
.bl-footer-logo-badge img { max-width: 80%; max-height: 66%; width: auto; height: auto; display: block; }

.bl-footer-desc {
    font-size: 13.5px; line-height: 1.75;
    color: rgba(255, 255, 255, 0.62); max-width: 320px;
    margin-bottom: 18px;
}
.bl-footer-social { display: flex; gap: 10px; }
.bl-footer-social a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--bl-r); font-size: 15px; text-decoration: none;
    transition: all 0.35s var(--bl-ease);
}
.bl-footer-social a:hover { background: var(--bl-gold); border-color: var(--bl-gold); color: #fff; transform: translateY(-3px); }

/* Column headings — uniform with gold rule */
.bl-footer h5 {
    font-weight: 700; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: #fff; margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}
.bl-footer h5::after { content: ''; flex: 0 0 26px; height: 1px; background: var(--bl-gold); opacity: 0.7; }

/* Links — one uniform style everywhere */
.bl-footer-links { list-style: none; padding: 0; margin: 0; }
.bl-footer-links li { margin-bottom: 12px; }
.bl-footer-links li:last-child { margin-bottom: 0; }
.bl-footer-links a, .bl-footer-links .bl-footer-static {
    font-size: 13.5px; font-weight: 500;
    color: rgba(255, 255, 255, 0.62); text-decoration: none;
    display: inline-flex; align-items: center; gap: 9px;
    transition: all 0.3s var(--bl-ease);
}
.bl-footer-links a i, .bl-footer-links .bl-footer-static i {
    width: 16px; text-align: center; color: var(--bl-gold); font-size: 12px; opacity: 0.85;
}
.bl-footer-links a::before { content: ''; width: 0; height: 1.5px; background: var(--bl-gold); transition: width 0.3s var(--bl-ease); }
.bl-footer-links a:hover { color: #fff; }
.bl-footer-links a:hover::before { width: 14px; }
.bl-footer-links a small {
    font-size: 10.5px; font-weight: 700; color: var(--bl-gold-light);
    background: rgba(196, 162, 101, 0.14); padding: 3px 8px; border-radius: 7px; letter-spacing: 0.04em;
}

/* NPRA badge in footer */
.bl-footer .bl-npra-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 6px;
}

/* Bottom bar */
.bl-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 22px 0;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12.5px; color: rgba(255, 255, 255, 0.45);
    flex-wrap: wrap; gap: 10px;
}
.bl-footer-bottom b { color: rgba(255, 255, 255, 0.65); font-weight: 600; }

/* Responsive */
@media (max-width: 991.98px) {
    .bl-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .bl-footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 575.98px) {
    .bl-footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .bl-footer-bottom { justify-content: center; text-align: center; }
    .bl-footer-logo-badge { width: 132px; height: 70px; }
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
/* .bl-reveal initial state only — animation handled by GSAP ScrollTrigger */
.bl-reveal { opacity: 0; }

/* ========================================
   SECTION BACKGROUND ELEMENTS — Artistic
   ======================================== */
.section-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
/* Circles — larger, more visible */
.section-bg-elements .bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
}
.section-bg-elements .bg-circle-light {
    border: 1.5px solid rgba(26, 60, 42, 0.12);
    background: radial-gradient(circle, rgba(26, 60, 42, 0.03), transparent);
}
.section-bg-elements .bg-circle-dark {
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02), transparent);
}
/* Lines — glowing green */
.section-bg-elements .bg-line {
    position: absolute;
    height: 1.5px;
    opacity: 0;
}
.section-bg-elements .bg-line-light {
    background: linear-gradient(90deg, transparent, rgba(26, 60, 42, 0.18), rgba(90, 138, 110, 0.25), rgba(26, 60, 42, 0.18), transparent);
}
.section-bg-elements .bg-line-dark {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08), transparent);
}
/* Dots — green glow */
.section-bg-elements .bg-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0;
}
.section-bg-elements .bg-dot-light {
    background: rgba(26, 60, 42, 0.2);
    box-shadow: 0 0 8px rgba(26, 60, 42, 0.15);
}
.section-bg-elements .bg-dot-dark {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}
.bg-circle-sm { width: 120px; height: 120px; }
.bg-circle-md { width: 200px; height: 200px; }
.bg-line-sm  { width: 100px; }
.bg-line-md  { width: 150px; }
.bg-line-lg  { width: 200px; }

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .bl-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .bl-marquee-track {
        animation: none;
    }
    .bl-play-btn {
        animation: none;
    }
    .bl-benefit-card img,
    .bl-product-card .bl-product-img img {
        transition: none;
    }
}

/* ========================================
   UTILITY OVERRIDES FOR LEGACY
   ======================================== */
.bl-on-dark { color: #fff; }

/* Fix Bootstrap conflicts */
.bl-btn:focus {
    box-shadow: 0 0 0 3px rgba(26, 60, 42, 0.15);
    outline: none;
}

/* TikTok Shop badge */
.bl-tt-shop-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: var(--bl-r);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--bl-shadow-sm);
    transition: all 0.3s ease;
}
.bl-tt-shop-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--bl-shadow-md);
}

/* ========================================
   MP DETAIL LINK (home collection)
   ======================================== */
.bl-mp-detail-link {
    display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
    font-size: 13px; font-weight: 700; letter-spacing: .04em;
    color: var(--bl-sage); text-decoration: none; transition: all .3s var(--bl-ease);
}
.bl-mp-detail-link i { font-size: 11px; transition: transform .3s var(--bl-ease); }
.bl-mp-detail-link:hover { color: var(--bl-forest); }
.bl-mp-detail-link:hover i { transform: translateX(4px); }

/* ========================================
   PRODUCT PAGE — bl-pd
   ======================================== */
.bl-pd-hero { padding: clamp(120px, 14vw, 160px) 0 clamp(56px, 7vw, 88px); position: relative; overflow: hidden; }

.bl-breadcrumb {
    display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
    background: rgba(26, 60, 42, 0.06); border: 1px solid var(--bl-line);
    border-radius: var(--bl-r); padding: 10px 18px; margin-bottom: 28px;
    font-size: 12.5px; font-weight: 600; color: var(--bl-ink-light);
}
.bl-breadcrumb a { color: var(--bl-sage); text-decoration: none; transition: color .3s ease; }
.bl-breadcrumb a:hover { color: var(--bl-forest); }
.bl-breadcrumb i { font-size: 9px; color: var(--bl-gold); }

/* Gallery */
.bl-pd-gallery { position: sticky; top: 110px; }
.bl-pd-main {
    position: relative; border-radius: var(--bl-r-xl); overflow: hidden;
    background: #fff; box-shadow: var(--bl-shadow-card); margin-bottom: 14px;
}
.bl-pd-main img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: opacity .3s ease, transform .6s var(--bl-ease); }
.bl-pd-main img.is-fading { opacity: 0; transform: scale(1.015); }
.bl-pd-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; flex-wrap: wrap; z-index: 2; }
.bl-pd-badge {
    background: var(--bl-forest); color: #fff; font-size: 10.5px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; padding: 8px 14px; border-radius: 10px;
    box-shadow: 0 6px 16px -6px rgba(15, 37, 25, .5);
}
.bl-pd-badge.gold { background: var(--bl-gold); }
.bl-pd-badge.red { background: #d84848; }
.bl-pd-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.bl-pd-thumb {
    width: 72px; height: 72px; object-fit: cover; cursor: pointer;
    border: 2px solid transparent; border-radius: var(--bl-r); opacity: .7;
    transition: all .3s var(--bl-ease); background: #fff;
}
.bl-pd-thumb:hover { opacity: 1; transform: translateY(-2px); }
.bl-pd-thumb.active { border-color: var(--bl-forest); opacity: 1; box-shadow: 0 8px 18px -8px rgba(26, 60, 42, .4); }

/* Info column */
.bl-pd-store {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
    color: var(--bl-forest); background: rgba(26, 60, 42, .07);
    border: 1px solid var(--bl-line); padding: 9px 16px; border-radius: var(--bl-r); margin-bottom: 18px;
}
.bl-pd-store .fa-check-circle { color: #2f9e63; }
.bl-pd-title { font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.25; letter-spacing: -.015em; color: var(--bl-ink); margin-bottom: 8px; }
.bl-pd-subtitle { color: var(--bl-ink-light); font-size: 15px; font-weight: 500; margin-bottom: 18px; }

/* Trust strip */
.bl-trust-card {
    display: flex; align-items: flex-start; gap: 15px; height: 100%;
    background: #fff; border: 1px solid var(--bl-line); border-radius: var(--bl-r-lg);
    padding: 22px 24px; transition: all .4s var(--bl-ease);
}
.bl-trust-card:hover { transform: translateY(-5px); box-shadow: var(--bl-shadow-md); border-color: transparent; }
.bl-trust-card i {
    flex: 0 0 auto; width: 44px; height: 44px; border-radius: var(--bl-r);
    display: flex; align-items: center; justify-content: center;
    background: rgba(26, 60, 42, .08); color: var(--bl-forest); font-size: 16px;
}
.bl-trust-card h6 { font-weight: 700; font-size: .98rem; color: var(--bl-ink); margin-bottom: 4px; }
.bl-trust-card p { font-size: 13.5px; color: var(--bl-ink-light); line-height: 1.6; margin: 0; }

/* Tabs */
.bl-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.bl-tab-btn {
    border: 1.5px solid var(--bl-line); background: #fff; cursor: pointer;
    font-size: 13.5px; font-weight: 700; letter-spacing: .03em; color: var(--bl-ink-light);
    padding: 13px 26px; border-radius: var(--bl-r); transition: all .35s var(--bl-ease);
    display: inline-flex; align-items: center; gap: 9px;
}
.bl-tab-btn i { font-size: 13px; color: var(--bl-sage); transition: color .35s ease; }
.bl-tab-btn:hover { border-color: var(--bl-forest); color: var(--bl-forest); }
.bl-tab-btn.active { background: var(--bl-forest); border-color: var(--bl-forest); color: #fff; box-shadow: 0 10px 24px -10px rgba(26, 60, 42, .5); }
.bl-tab-btn.active i { color: var(--bl-gold-light); }
.bl-tab-pane { display: none; }
.bl-tab-pane.active { display: block; animation: blTabIn .5s var(--bl-ease-out); }
@keyframes blTabIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.bl-content-card { background: #fff; border: 1px solid var(--bl-line); border-radius: var(--bl-r-xl); padding: clamp(26px, 4vw, 44px); }
.bl-content-card h3 { font-weight: 700; letter-spacing: -.015em; color: var(--bl-ink); }
.bl-check-list { list-style: none; padding: 0; margin: 0; }
.bl-check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; color: var(--bl-ink-light); font-size: 14.5px; line-height: 1.65; }
.bl-check-list li i { color: var(--bl-sage); margin-top: 4px; font-size: 13px; }
.bl-step {
    display: flex; gap: 18px; align-items: flex-start; padding: 18px 0;
    border-bottom: 1px dashed var(--bl-line);
}
.bl-step:last-child { border-bottom: 0; }
.bl-step-num {
    flex: 0 0 auto; width: 40px; height: 40px; border-radius: var(--bl-r);
    display: flex; align-items: center; justify-content: center;
    background: var(--bl-forest); color: #fff; font-size: 13px; font-weight: 700;
}
.bl-step h5 { font-weight: 700; font-size: 1rem; color: var(--bl-ink); margin-bottom: 4px; }
.bl-step p { font-size: 14px; color: var(--bl-ink-light); line-height: 1.65; margin: 0; }

/* FAQ accordion */
.bl-faq {
    background: #fff; border: 1px solid var(--bl-line); border-radius: var(--bl-r-lg);
    margin-bottom: 14px; overflow: hidden; transition: box-shadow .35s ease, border-color .35s ease;
}
.bl-faq.open { border-color: rgba(26, 60, 42, .28); box-shadow: var(--bl-shadow-md); }
.bl-faq-q {
    width: 100%; background: none; border: 0; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 22px 26px; text-align: left;
    font-weight: 700; font-size: 1rem; color: var(--bl-ink); letter-spacing: -.005em;
}
.bl-faq-q .bl-faq-ic {
    flex: 0 0 auto; width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(26, 60, 42, .08); color: var(--bl-forest); font-size: 12px;
    transition: all .4s var(--bl-ease);
}
.bl-faq.open .bl-faq-ic { background: var(--bl-forest); color: #fff; transform: rotate(180deg); }
.bl-faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--bl-ease); }
.bl-faq-a p { padding: 0 26px 24px; margin: 0; color: var(--bl-ink-light); font-size: 14.5px; line-height: 1.75; }

/* ========================================
   STORY PAGE — bl-story
   ======================================== */
.bl-page-hero {
    padding: clamp(150px, 18vw, 210px) 0 clamp(72px, 9vw, 110px);
    position: relative; overflow: hidden; text-align: center;
}
.bl-page-hero .bl-display { font-size: clamp(2.4rem, 5.4vw, 4rem); }
.bl-page-kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    color: rgba(255,255,255,.75); margin-bottom: 20px;
}
.bl-page-kicker::before, .bl-page-kicker::after { content: ''; width: 36px; height: 1px; background: var(--bl-gold); }

.bl-timeline { position: relative; padding-left: 34px; }
.bl-timeline::before { content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--bl-gold), var(--bl-sage)); border-radius: 2px; }
.bl-tl-item { position: relative; padding-bottom: 34px; }
.bl-tl-item:last-child { padding-bottom: 0; }
.bl-tl-item::before {
    content: ''; position: absolute; left: -32px; top: 6px;
    width: 14px; height: 14px; border-radius: 50%;
    background: #fff; border: 3px solid var(--bl-forest);
    box-shadow: 0 0 0 4px rgba(26, 60, 42, .12);
}
.bl-tl-year { font-weight: 800; font-size: 1.05rem; color: var(--bl-forest); letter-spacing: .02em; margin-bottom: 6px; }
.bl-tl-item h5 { font-weight: 700; font-size: 1.08rem; color: var(--bl-ink); margin-bottom: 6px; }
.bl-tl-item p { font-size: 14.5px; color: var(--bl-ink-light); line-height: 1.7; margin: 0; }

.bl-story-img { position: relative; border-radius: var(--bl-r-xl); overflow: hidden; box-shadow: var(--bl-shadow-lg); }
.bl-story-img img { width: 100%; display: block; }
.bl-story-img .bl-story-tag {
    position: absolute; left: 18px; bottom: 18px;
    background: rgba(255,255,255,.92); color: var(--bl-forest);
    font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    padding: 11px 20px; border-radius: var(--bl-r); backdrop-filter: blur(8px);
}
.bl-cert-chip {
    display: flex; align-items: flex-start; gap: 14px;
    background: #fff; border: 1px solid var(--bl-line); border-radius: var(--bl-r-lg);
    padding: 18px 22px; height: 100%;
}
.bl-cert-chip i { color: var(--bl-gold); font-size: 18px; margin-top: 2px; }
.bl-cert-chip h6 { font-weight: 700; font-size: .95rem; color: var(--bl-ink); margin-bottom: 3px; }
.bl-cert-chip p { font-size: 13px; color: var(--bl-ink-light); margin: 0; }

/* ========================================
   404 PAGE
   ======================================== */
.bl-404 {
    min-height: 88vh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
    padding: clamp(140px, 16vw, 180px) 0 clamp(80px, 10vw, 120px);
}
.bl-404-code {
    font-weight: 800; font-size: clamp(6rem, 20vw, 13rem); line-height: 1;
    color: transparent; -webkit-text-stroke: 2px rgba(26, 60, 42, .22);
    letter-spacing: .02em; position: relative;
}
.bl-404-code .bl-script {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(-6deg);
    font-size: .32em; color: var(--bl-gold); -webkit-text-stroke: 0;
}
