/* STEP 46.2: extracted from home_page.html to reduce HTML size */

:root {
            --bb-dark: #0b1220;
            --bb-dark-2: #111827;
            --bb-ink: #111827;
            --bb-muted: #64748b;
            --bb-soft: #f4f7fb;
            --bb-card: #ffffff;
            --bb-line: #e5e7eb;
            --bb-red: #ef2424;
            --bb-red-dark: #b91c1c;
            --bb-orange: #f97316;
            --bb-green: #16a34a;
            --bb-blue: #2563eb;
            --bb-shadow: 0 22px 60px rgba(15, 23, 42, .10);
        }

        * { box-sizing: border-box; }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            background:
                radial-gradient(circle at 15% 0%, rgba(239, 36, 36, .06), transparent 24%),
                linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
            color: var(--bb-ink);
        }

        a { color: inherit; }

        .bb-wrap {
            width: min(1360px, calc(100% - 36px));
            margin: 0 auto;
        }

        .bb-top {
            color: #fff;
            background:
                radial-gradient(circle at 12% 18%, rgba(37, 99, 235, .28), transparent 28%),
                radial-gradient(circle at 85% 12%, rgba(239, 36, 36, .28), transparent 30%),
                linear-gradient(135deg, #0b1220, #111827 52%, #261012);
            position: relative;
            overflow: hidden;
        }

        .bb-top::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
            background-size: 42px 42px;
            mask-image: linear-gradient(180deg, #000 0%, transparent 82%);
            pointer-events: none;
        }

        .bb-nav {
            position: relative;
            z-index: 2;
            padding: 22px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
        }

        .bb-logo {
            display: flex;
            flex-direction: column;
            gap: 4px;
            text-decoration: none;
        }

        .bb-logo strong {
            font-size: 27px;
            letter-spacing: -.3px;
        }

        .bb-logo span {
            color: #cbd5e1;
            font-size: 13px;
            font-weight: 700;
        }

        .bb-nav-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 10px;
        }

        .bb-nav-links a {
            text-decoration: none;
            color: #fff;
            font-weight: 900;
            font-size: 14px;
            padding: 12px 15px;
            border-radius: 15px;
            background: rgba(255, 255, 255, .10);
            border: 1px solid rgba(255, 255, 255, .14);
            transition: .18s ease;
        }

        .bb-nav-links a:hover {
            background: rgba(255, 255, 255, .18);
            transform: translateY(-1px);
        }

        .bb-nav-links .is-primary {
            background: #fff;
            color: var(--bb-ink);
        }

        .bb-nav-links .is-sale {
            background: var(--bb-red);
            border-color: rgba(255,255,255,.18);
        }

        .bb-hero {
            position: relative;
            z-index: 2;
            padding: 54px 0 78px;
            display: grid;
            grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
            gap: 44px;
            align-items: center;
        }

        .bb-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-radius: 999px;
            padding: 9px 14px;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.18);
            color: #e5e7eb;
            font-size: 14px;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .bb-hero h1 {
            margin: 0;
            max-width: 820px;
            font-size: clamp(42px, 5.2vw, 74px);
            line-height: .98;
            letter-spacing: -2px;
        }

        .bb-hero-text {
            margin: 24px 0 0;
            max-width: 780px;
            color: #e5e7eb;
            font-size: 20px;
            line-height: 1.55;
            font-weight: 700;
        }

        .bb-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 28px;
        }

        .bb-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 56px;
            padding: 15px 28px;
            border-radius: 18px;
            border: 0;
            text-decoration: none;
            font-weight: 900;
            font-size: 16px;
            line-height: 1.1;
            text-align: center;
            white-space: nowrap;
            vertical-align: middle;
            cursor: pointer;
            transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
        }

        .bb-btn:hover {
            transform: translateY(-2px);
        }

        .bb-btn-red {
            background: var(--bb-red);
            color: #fff;
            box-shadow: 0 16px 34px rgba(239, 36, 36, .28);
        }

        .bb-btn-white {
            background: #fff;
            color: var(--bb-ink);
        }

        .bb-btn-dark {
            background: var(--bb-dark);
            color: #fff;
        }

        .bb-btn-ghost {
            background: rgba(255,255,255,.10);
            border: 1px solid rgba(255,255,255,.22);
            color: #fff;
        }

        .bb-hero-points {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            margin-top: 28px;
            max-width: 820px;
        }

        .bb-hero-point {
            padding: 14px;
            border-radius: 18px;
            background: rgba(255,255,255,.10);
            border: 1px solid rgba(255,255,255,.14);
        }

        .bb-hero-point strong {
            display: block;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .bb-hero-point span {
            color: #cbd5e1;
            font-size: 13px;
            line-height: 1.35;
        }

        .bb-live-panel {
            padding: 22px;
            border-radius: 32px;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.18);
            box-shadow: 0 26px 80px rgba(0,0,0,.25);
            backdrop-filter: blur(12px);
        }

        .bb-panel-head {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            align-items: flex-start;
            margin-bottom: 16px;
        }

        .bb-panel-head h2 {
            margin: 0;
            font-size: 26px;
            line-height: 1.15;
        }

        .bb-live-dot {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            padding: 8px 10px;
            border-radius: 999px;
            background: rgba(22, 163, 74, .16);
            color: #bbf7d0;
            border: 1px solid rgba(187, 247, 208, .25);
            font-weight: 900;
            font-size: 12px;
        }

        .bb-live-dot::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #22c55e;
            box-shadow: 0 0 0 6px rgba(34, 197, 94, .14);
        }

        .bb-search-card {
            padding: 14px;
            border-radius: 22px;
            background: #fff;
            color: var(--bb-ink);
            margin-bottom: 14px;
        }

        .bb-search-card label {
            display: block;
            font-size: 14px;
            font-weight: 900;
            margin-bottom: 9px;
        }

        .bb-search-row {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 8px;
        }

        .bb-search-row input {
            width: 100%;
            border: 1px solid var(--bb-line);
            border-radius: 14px;
            padding: 14px;
            font-size: 15px;
            outline: none;
        }

        .bb-search-row input:focus {
            border-color: #94a3b8;
            box-shadow: 0 0 0 4px rgba(148, 163, 184, .18);
        }

        .bb-search-row button {
            border: 0;
            border-radius: 14px;
            padding: 0 16px;
            background: var(--bb-dark);
            color: #fff;
            font-weight: 900;
            cursor: pointer;
        }

        .bb-metrics {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .bb-metric {
            padding: 16px;
            border-radius: 20px;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.14);
        }

        .bb-metric strong {
            display: block;
            font-size: 34px;
            line-height: 1;
        }

        .bb-metric span {
            display: block;
            margin-top: 7px;
            color: #d1d5db;
            font-size: 13px;
            line-height: 1.35;
        }

        .bb-main {
            position: relative;
            z-index: 3;
            margin-top: -34px;
        }

        .bb-section {
            padding: 32px 0;
        }

        .bb-box {
            background: #fff;
            border: 1px solid rgba(226,232,240,.9);
            border-radius: 30px;
            box-shadow: var(--bb-shadow);
            padding: clamp(22px, 3vw, 34px);
        }

        .bb-section-head {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            align-items: flex-end;
            margin-bottom: 22px;
        }

        .bb-section h2 {
            margin: 0;
            font-size: clamp(30px, 3vw, 46px);
            line-height: 1.05;
            letter-spacing: -1px;
        }

        .bb-lead {
            margin: 10px 0 0;
            max-width: 780px;
            color: var(--bb-muted);
            line-height: 1.55;
            font-size: 17px;
            font-weight: 700;
        }

        .bb-card-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }

        .bb-product-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            background: #fff;
            border: 1px solid var(--bb-line);
            border-radius: 24px;
            overflow: hidden;
            text-decoration: none;
            box-shadow: 0 10px 28px rgba(15,23,42,.06);
            transition: transform .18s ease, box-shadow .18s ease;
        }

        .bb-product-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 44px rgba(15,23,42,.12);
        }

        .bb-product-img {
            height: 168px;
            background:
                radial-gradient(circle at 50% 30%, rgba(239,36,36,.08), transparent 36%),
                #f8fafc;
            border-bottom: 1px solid var(--bb-line);
            display: grid;
            place-items: center;
            padding: 14px;
        }

        .bb-product-img img {
            max-width: 100%;
            max-height: 138px;
            object-fit: contain;
        }

        .bb-product-img span {
            display: grid;
            place-items: center;
            width: 76px;
            height: 76px;
            border-radius: 24px;
            background: #fff;
            color: var(--bb-red);
            font-size: 34px;
            font-weight: 900;
            box-shadow: 0 12px 26px rgba(15,23,42,.08);
        }

        .bb-product-body {
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex: 1;
        }

        .bb-product-brand {
            color: var(--bb-red);
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: .04em;
        }

        .bb-product-name {
            font-size: 16px;
            line-height: 1.28;
            font-weight: 900;
            min-height: 42px;
        }

        .bb-product-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            margin-top: auto;
        }

        .bb-pill {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 5px 8px;
            border-radius: 999px;
            background: #f1f5f9;
            color: #475569;
            font-size: 12px;
            font-weight: 800;
        }

        .bb-pill-green {
            background: #dcfce7;
            color: #166534;
        }

        .bb-pill-orange {
            background: #ffedd5;
            color: #9a3412;
        }

        .bb-price-row {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 10px;
            margin-top: 2px;
        }

        .bb-price {
            font-size: 22px;
            font-weight: 900;
            color: var(--bb-ink);
        }

        .bb-old-price {
            color: #94a3b8;
            text-decoration: line-through;
            font-size: 13px;
            font-weight: 700;
        }

        .bb-product-action {
            margin-top: 4px;
            display: inline-flex;
            justify-content: center;
            padding: 12px 14px;
            border-radius: 15px;
            background: var(--bb-dark);
            color: #fff;
            font-weight: 900;
            text-decoration: none;
        }


        .bb-product-card .bb-card-cart-control {
            margin-top: 4px;
        }

        .bb-product-card .bb-card-cart-control__row {
            display: grid;
            grid-template-columns: 42px 1fr 42px;
            gap: 8px;
        }

        .bb-product-card .bb-card-cart-control__input {
            min-width: 0;
            width: 100%;
        }

        .bb-product-card .bb-card-cart-control__add {
            width: 100%;
        }

        .bb-product-card .bb-card-cart-control__note {
            font-size: 12px;
            line-height: 1.35;
        }

        .bb-product-action--checkout {
            margin-top: 8px;
            background: #f1f5f9;
            color: var(--bb-ink);
            border: 1px solid var(--bb-line);
        }

        .bb-product-action--checkout:hover {
            background: #e2e8f0;
        }

        .bb-sale-section {
            background:
                radial-gradient(circle at 15% 15%, rgba(239,36,36,.13), transparent 28%),
                linear-gradient(135deg, #fff, #fff7ed);
            border-top: 1px solid #fed7aa;
            border-bottom: 1px solid #fed7aa;
        }

        .bb-sale-label {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 11px;
            border-radius: 999px;
            background: var(--bb-red);
            color: #fff;
            font-weight: 900;
            font-size: 13px;
        }

        .bb-direction-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }

        .bb-direction {
            min-height: 148px;
            padding: 20px;
            border-radius: 24px;
            background:
                radial-gradient(circle at 85% 12%, rgba(239,36,36,.12), transparent 32%),
                #fff;
            border: 1px solid var(--bb-line);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform .18s ease, box-shadow .18s ease;
        }

        .bb-direction:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 38px rgba(15,23,42,.10);
        }

        .bb-direction strong {
            font-size: 19px;
            line-height: 1.22;
        }

        .bb-direction p {
            margin: 10px 0 14px;
            color: var(--bb-muted);
            line-height: 1.45;
            font-weight: 700;
        }

        .bb-direction span {
            color: var(--bb-red);
            font-weight: 900;
        }

        .bb-benefit-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }

        .bb-benefit {
            padding: 22px;
            border-radius: 24px;
            border: 1px solid var(--bb-line);
            background: #f8fafc;
        }

        .bb-benefit i {
            display: grid;
            place-items: center;
            width: 46px;
            height: 46px;
            border-radius: 16px;
            background: #fff;
            font-style: normal;
            font-size: 22px;
            margin-bottom: 14px;
        }

        .bb-benefit strong {
            display: block;
            font-size: 18px;
            margin-bottom: 8px;
        }

        .bb-benefit p {
            margin: 0;
            color: var(--bb-muted);
            line-height: 1.5;
            font-weight: 700;
        }

        .bb-steps {
            display: grid;
            grid-template-columns: repeat(4, minmax(0,1fr));
            gap: 16px;
        }

        .bb-step {
            background: var(--bb-dark);
            color: #fff;
            border-radius: 24px;
            padding: 22px;
            min-height: 190px;
        }

        .bb-step-num {
            width: 42px;
            height: 42px;
            border-radius: 15px;
            background: var(--bb-red);
            display: grid;
            place-items: center;
            font-weight: 900;
            margin-bottom: 18px;
        }

        .bb-step strong {
            display: block;
            font-size: 20px;
            margin-bottom: 10px;
        }

        .bb-step p {
            margin: 0;
            color: #cbd5e1;
            line-height: 1.5;
            font-weight: 700;
        }

        .bb-seo-grid {
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: 22px;
            align-items: start;
        }

        .bb-seo-text {
            color: #334155;
            line-height: 1.7;
            font-size: 16px;
            font-weight: 700;
        }

        .bb-seo-text h2 {
            color: var(--bb-ink);
            margin-top: 0;
        }

        .bb-faq {
            display: grid;
            gap: 10px;
        }

        .bb-faq details {
            border: 1px solid var(--bb-line);
            border-radius: 18px;
            background: #f8fafc;
            padding: 16px;
        }

        .bb-faq summary {
            cursor: pointer;
            font-weight: 900;
            color: var(--bb-ink);
        }

        .bb-faq p {
            margin: 10px 0 0;
            color: var(--bb-muted);
            line-height: 1.55;
            font-weight: 700;
        }

        .bb-company {
            display: grid;
            grid-template-columns: 1fr .78fr;
            gap: 24px;
            align-items: start;
        }

        .bb-company p {
            color: #334155;
            line-height: 1.65;
            font-size: 17px;
            font-weight: 700;
        }

        .bb-contact-card {
            background: var(--bb-dark);
            color: #fff;
            border-radius: 28px;
            padding: 24px;
        }

        .bb-contact-card h3 {
            margin: 0 0 14px;
            font-size: 25px;
        }

        .bb-contact-card a {
            color: #fff;
            text-decoration: none;
            font-weight: 900;
        }

        .bb-contact-card p {
            color: #cbd5e1;
            margin: 10px 0;
        }

        .bb-final-cta {
            background:
                radial-gradient(circle at 12% 20%, rgba(249,115,22,.22), transparent 28%),
                linear-gradient(135deg, #111827, #0b1220);
            color: #fff;
            border-radius: 34px;
            padding: 34px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 22px;
            align-items: center;
        }

        .bb-final-cta h2 {
            color: #fff;
        }

        .bb-final-cta p {
            color: #cbd5e1;
            max-width: 760px;
        }

        .bb-footer {
            background: #0b1220;
            color: #fff;
            padding: 42px 0 34px;
            margin-top: 34px;
        }

        .bb-footer-grid {
            display: grid;
            grid-template-columns: 1.2fr .8fr .8fr;
            gap: 26px;
        }

        .bb-footer p {
            color: #cbd5e1;
            line-height: 1.55;
        }

        .bb-footer a {
            display: block;
            color: #fff;
            text-decoration: none;
            font-weight: 900;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,.08);
        }

        .bb-mobile-sticky {
            display: none;
        }

        .bb-reveal {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity .55s ease, transform .55s ease;
        }

        .bb-reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (prefers-reduced-motion: reduce) {
            .bb-reveal,
            .bb-product-card,
            .bb-direction,
            .bb-btn {
                transition: none;
                transform: none;
            }
        }

        @media (max-width: 1180px) {
            .bb-hero,
            .bb-seo-grid,
            .bb-company,
            .bb-final-cta {
                grid-template-columns: 1fr;
            }

            .bb-card-grid,
            .bb-direction-grid,
            .bb-benefit-grid,
            .bb-steps {
                grid-template-columns: repeat(2, minmax(0,1fr));
            }

            .bb-live-panel {
                max-width: 760px;
            }
        }

        @media (max-width: 720px) {
            body {
                padding-bottom: 76px;
            }

            .bb-wrap {
                width: min(100% - 24px, 1360px);
            }

            .bb-nav {
                align-items: flex-start;
                flex-direction: column;
            }

            .bb-nav-links {
                justify-content: flex-start;
                gap: 8px;
            }

            .bb-nav-links a {
                padding: 10px 12px;
                font-size: 13px;
            }

            .bb-hero {
                padding: 36px 0 58px;
            }

            .bb-hero h1 {
                letter-spacing: -1px;
            }

            .bb-hero-text {
                font-size: 17px;
            }

            .bb-hero-points,
            .bb-metrics,
            .bb-card-grid,
            .bb-direction-grid,
            .bb-benefit-grid,
            .bb-steps,
            .bb-footer-grid {
                grid-template-columns: 1fr;
            }

            .bb-section-head {
                flex-direction: column;
                align-items: flex-start;
            }

            .bb-search-row {
                grid-template-columns: 1fr;
            }

            .bb-search-row button {
                min-height: 48px;
            }


            .bb-cta .bb-btn {
                min-height: 52px;
            }

            .bb-product-img {
                height: 150px;
            }


            .bb-order-cart-float {
                bottom: 88px !important;
            }

            .bb-mobile-sticky {
                position: fixed;
                left: 10px;
                right: 10px;
                bottom: 10px;
                z-index: 50;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
                padding: 8px;
                border-radius: 20px;
                background: rgba(11,18,32,.94);
                box-shadow: 0 16px 40px rgba(0,0,0,.28);
                backdrop-filter: blur(12px);
            }

            .bb-mobile-sticky a {
                display: grid;
                place-items: center;
                min-height: 46px;
                border-radius: 14px;
                text-decoration: none;
                color: #fff;
                font-size: 12px;
                font-weight: 900;
                background: rgba(255,255,255,.10);
            }

            .bb-mobile-sticky a:first-child {
                background: var(--bb-red);
            }
        }
    
        /* STEP 41.1: real mobile hero badge overflow fix */
        @media (max-width: 720px) {
            .bb-hero-card,
            .bb-hero-card *,
            .bb-hero-panel,
            .bb-hero-panel *,
            .bb-dashboard-card,
            .bb-dashboard-card *,
            .bb-feature-card,
            .bb-feature-card * {
                max-width: 100%;
                min-width: 0;
            }

            .bb-hero-card {
                overflow: hidden;
            }

            .bb-hero-card [class*="badge"],
            .bb-hero-card [class*="Badge"],
            .bb-hero-card [class*="pill"],
            .bb-hero-card [class*="Pill"],
            .bb-hero-card [class*="updated"],
            .bb-hero-card [class*="Updated"],
            .bb-hero-card [class*="update"],
            .bb-hero-card [class*="Update"],
            .bb-hero-card [class*="date"],
            .bb-hero-card [class*="Date"],
            .bb-hero-panel [class*="badge"],
            .bb-hero-panel [class*="pill"],
            .bb-hero-panel [class*="updated"],
            .bb-hero-panel [class*="update"],
            .bb-hero-panel [class*="date"] {
                position: static !important;
                inset: auto !important;
                transform: none !important;
                max-width: 100% !important;
                width: fit-content;
                white-space: normal !important;
                overflow-wrap: anywhere;
                word-break: normal;
            }

            .bb-hero-card h2,
            .bb-hero-panel h2,
            .bb-dashboard-card h2,
            .bb-feature-card h2 {
                max-width: 100%;
                overflow-wrap: break-word;
            }
        }

        @media (max-width: 480px) {
            .bb-hero-card [class*="badge"],
            .bb-hero-card [class*="pill"],
            .bb-hero-card [class*="updated"],
            .bb-hero-card [class*="update"],
            .bb-hero-card [class*="date"],
            .bb-hero-panel [class*="badge"],
            .bb-hero-panel [class*="pill"],
            .bb-hero-panel [class*="updated"],
            .bb-hero-panel [class*="update"],
            .bb-hero-panel [class*="date"] {
                font-size: 13px !important;
                line-height: 1.2 !important;
            }
        }


        /* STEP 41.2: exact bb-live-dot mobile overflow fix */
        @media (max-width: 720px) {
            .bb-live-dot {
                position: static !important;
                inset: auto !important;
                left: auto !important;
                right: auto !important;
                top: auto !important;
                bottom: auto !important;
                transform: none !important;
                display: inline-flex !important;
                align-self: flex-start !important;
                max-width: 100% !important;
                width: fit-content !important;
                white-space: normal !important;
                overflow-wrap: anywhere !important;
                word-break: normal !important;
                line-height: 1.2 !important;
            }

            .bb-live-dot::before,
            .bb-live-dot::after {
                max-width: 100% !important;
            }
        }

        @media (max-width: 480px) {
            .bb-live-dot {
                font-size: 13px !important;
                padding: 8px 12px !important;
            }
        }
