/* =========================================================
   HOME PAGE - BRANDHUB MARKET
   CSS khusus home page, tidak pakai store-landing.css
   ========================================================= */

:root {
    --bh-primary: #16a34a;
    --bh-primary-dark: #15803d;
    --bh-secondary: #7c3aed;
    --bh-accent: #f97316;
    --bh-blue: #2563eb;
    --bh-danger: #ef4444;
    --bh-warning: #f59e0b;
    --bh-dark: #111827;
    --bh-muted: #64748b;
    --bh-soft: #f8fafc;
    --bh-soft-green: #ecfdf5;
    --bh-border: #e5e7eb;
    --bh-white: #ffffff;
    --bh-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.home-page {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(22, 163, 74, 0.08), transparent 32%),
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.08), transparent 28%),
        #ffffff;
    color: var(--bh-dark);
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font-family: inherit;
}

.bh-page {
    min-height: 100vh;
}

/* TOP STRIP */
.bh-top-strip {
    height: 44px;
    padding: 0 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(229, 231, 235, 0.85);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 90;
    font-size: 14px;
}

.bh-location,
.bh-top-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bh-location a,
.bh-top-links a {
    color: var(--bh-primary-dark);
    font-weight: 700;
}

.bh-top-links {
    gap: 24px;
}

/* NAVBAR */
.bh-navbar {
    height: 78px;
    padding: 0 42px;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    gap: 18px;
    position: sticky;
    top: 44px;
    z-index: 88;
}

.bh-menu-btn,
.bh-action-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 14px;
    background: var(--bh-soft);
    color: var(--bh-primary-dark);
    font-size: 22px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: 0.2s ease;
}

.bh-menu-btn:hover,
.bh-action-btn:hover {
    background: var(--bh-soft-green);
    transform: translateY(-1px);
}

.bh-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 190px;
    height: 56px;
}

.bh-logo img {
    height: 54px;
    width: auto;
    max-width: 185px;
    object-fit: contain;
    display: block;
}

.bh-logo small {
    display: block;
    margin-top: 4px;
    color: var(--bh-muted);
    font-size: 12px;
    font-weight: 600;
}

.bh-search {
    flex: 1;
    height: 50px;
    border-radius: 16px;
    background: #f3f4f6;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: 0.2s ease;
}

.bh-search:focus-within {
    background: #ffffff;
    border-color: var(--bh-primary);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.bh-search input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    padding: 0 16px;
    background: transparent;
    font-size: 15px;
}

.bh-search button {
    width: 54px;
    height: 100%;
    border: none;
    background: transparent;
    color: var(--bh-muted);
    font-size: 28px;
    cursor: pointer;
}

.bh-cart-btn {
    position: relative;
}

.bh-cart-btn span {
    position: absolute;
    top: -6px;
    right: -5px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    background: var(--bh-danger);
    color: white;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 900;
}

/* MAIN */
.bh-main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 26px 22px 90px;
}

/* HERO */
.bh-hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) 0.75fr;
    gap: 20px;
}

.bh-hero-main {
    min-height: 430px;
    border-radius: 34px;
    padding: 42px;
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.20), transparent 28%),
        linear-gradient(135deg, #052e16 0%, #166534 45%, #7c3aed 100%);
    box-shadow: var(--bh-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.bh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 570px;
}

.bh-hero-badge,
.bh-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #bbf7d0;
    font-weight: 900;
    letter-spacing: 0.8px;
    font-size: 13px;
}

.bh-hero-content h1 {
    margin: 16px 0 14px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.03;
    letter-spacing: -1.8px;
}

.bh-hero-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.75;
}

.bh-hero-actions {
    margin-top: 26px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bh-primary-link,
.bh-secondary-link {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.bh-primary-link {
    background: white;
    color: var(--bh-primary-dark);
}

.bh-secondary-link {
    border: 1px solid rgba(255,255,255,.45);
    color: white;
}

.bh-hero-art {
    position: relative;
    width: 270px;
    height: 270px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.bh-hero-art > span {
    position: relative;
    z-index: 3;
    font-size: 132px;
    filter: drop-shadow(0 28px 34px rgba(0,0,0,.28));
}

.bh-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.28);
}

.bh-orbit-one {
    inset: 12px;
}

.bh-orbit-two {
    inset: 48px;
    background: rgba(255,255,255,.08);
}

.bh-side-promos {
    display: grid;
    gap: 20px;
}

.bh-promo-card {
    min-height: 205px;
    border-radius: 28px;
    padding: 26px;
    color: white;
    box-shadow: var(--bh-shadow);
    position: relative;
    overflow: hidden;
}

.bh-promo-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
}

.bh-promo-card span {
    font-size: 42px;
}

.bh-promo-card h2 {
    margin: 16px 0 8px;
    font-size: 28px;
    line-height: 1.1;
}

.bh-promo-card p {
    margin: 0;
    color: rgba(255,255,255,.82);
    line-height: 1.6;
}

.promo-lime {
    background: linear-gradient(135deg, #65a30d, #15803d);
}

.promo-purple {
    background: linear-gradient(135deg, #4c1d95, #7c3aed);
}

/* SECTION */
.bh-section {
    margin-top: 38px;
}

.bh-section-head,
.bh-flash-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.bh-section-kicker {
    color: var(--bh-primary-dark);
}

.bh-section-head h2,
.bh-flash-head h2 {
    margin: 6px 0 0;
    font-size: 30px;
    letter-spacing: -0.8px;
}

.bh-section-head a {
    color: var(--bh-primary-dark);
    font-weight: 900;
}

/* SHORTCUT */
.bh-shortcut-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}

.bh-shortcut-item {
    min-height: 118px;
    border: 1px solid var(--bh-border);
    background: rgba(255,255,255,.82);
    border-radius: 22px;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    font-weight: 800;
    transition: 0.2s ease;
}

.bh-shortcut-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--bh-shadow);
    border-color: rgba(22, 163, 74, 0.35);
}

.bh-shortcut-item div {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ecfdf5, #eef2ff);
    font-size: 27px;
}

/* BENEFIT */
.bh-benefit-strip {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bh-benefit-strip div {
    background: #ffffff;
    border: 1px solid var(--bh-border);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(15,23,42,.04);
}

.bh-benefit-strip span {
    font-size: 28px;
}

.bh-benefit-strip strong {
    display: block;
    margin-top: 10px;
    font-size: 16px;
}

.bh-benefit-strip p {
    margin: 6px 0 0;
    color: var(--bh-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* FLASH */
.bh-flash-section {
    padding: 28px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(236, 253, 245, 0.75), rgba(255,255,255,.88));
    border: 1px solid rgba(22, 163, 74, 0.14);
}

.bh-flash-head p {
    margin: 6px 0 0;
    color: var(--bh-muted);
}

.bh-timer {
    text-align: right;
}

.bh-timer span {
    display: block;
    color: var(--bh-muted);
    font-size: 13px;
}

.bh-timer strong {
    display: inline-flex;
    margin-top: 7px;
    background: var(--bh-dark);
    color: white;
    padding: 9px 13px;
    border-radius: 14px;
    letter-spacing: 1px;
}

/* PRODUCTS */
.bh-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.bh-product-card {
    background: #ffffff;
    border: 1px solid var(--bh-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(15,23,42,.04);
    transition: 0.22s ease;
}

.bh-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bh-shadow);
}

.bh-product-image {
    height: 190px;
    position: relative;
    display: grid;
    place-items: center;
}

.bh-product-image span {
    font-size: 72px;
    filter: drop-shadow(0 15px 18px rgba(0,0,0,.18));
}

.bh-product-image b {
    position: absolute;
    top: 13px;
    left: 13px;
    background: rgba(255,255,255,.92);
    color: var(--bh-dark);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
}

.image-purple {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

.image-orange {
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
}

.image-green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.image-blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.bh-product-body {
    padding: 16px;
}

.bh-product-body h3 {
    min-height: 45px;
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.45;
}

.bh-product-price {
    color: var(--bh-danger);
    font-size: 22px;
    font-weight: 950;
}

.bh-old-price {
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bh-old-price del {
    color: #9ca3af;
    font-size: 13px;
}

.bh-old-price span {
    background: #fee2e2;
    color: var(--bh-danger);
    padding: 3px 7px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
}

.bh-product-meta {
    margin-top: 10px;
    color: var(--bh-muted);
    font-size: 13px;
    font-weight: 700;
}

.bh-product-body button {
    margin-top: 14px;
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--bh-primary), var(--bh-secondary));
    color: white;
    font-weight: 900;
    cursor: pointer;
}

/* CTA */
.bh-cta-section {
    margin-top: 38px;
    border-radius: 30px;
    padding: 34px;
    background:
        radial-gradient(circle at right, rgba(255,255,255,.16), transparent 30%),
        linear-gradient(135deg, #111827, #14532d);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.bh-cta-section span {
    color: #bbf7d0;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.8px;
}

.bh-cta-section h2 {
    margin: 10px 0;
    font-size: 30px;
    letter-spacing: -0.8px;
}

.bh-cta-section p {
    margin: 0;
    color: rgba(255,255,255,.78);
    line-height: 1.7;
    max-width: 760px;
}

.bh-cta-section a {
    min-width: 170px;
    height: 50px;
    border-radius: 999px;
    background: white;
    color: var(--bh-primary-dark);
    display: grid;
    place-items: center;
    font-weight: 900;
}

/* FLOATING WA */
.bh-floating-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    background: linear-gradient(135deg, #22c55e, #7c3aed);
    color: white;
    border-radius: 18px;
    padding: 11px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--bh-shadow);
}

.bh-floating-wa strong,
.bh-floating-wa small {
    display: block;
}

.bh-floating-wa small {
    color: rgba(255,255,255,.78);
}

/* DRAWERS */
.bh-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(2px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
}

.bh-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.bh-category-drawer,
.bh-account-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 110;
    background: #ffffff;
    transition: 0.28s ease;
    box-shadow: var(--bh-shadow);
}

.bh-category-drawer {
    left: 0;
    width: min(365px, 88vw);
    transform: translateX(-105%);
}

.bh-category-drawer.active {
    transform: translateX(0);
}

.bh-account-drawer {
    right: 0;
    width: min(420px, 88vw);
    transform: translateX(105%);
}

.bh-account-drawer.active {
    transform: translateX(0);
}

.bh-drawer-inner {
    height: 100%;
    overflow-y: auto;
    padding: 28px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.bh-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--bh-border);
    margin-bottom: 18px;
}

.bh-drawer-head div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bh-drawer-head span {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--bh-primary), var(--bh-secondary));
    color: white;
    display: grid;
    place-items: center;
}

.bh-drawer-head h3 {
    margin: 0;
    font-size: 22px;
}

.bh-drawer-head button,
.bh-account-head button {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 12px;
    background: #f1f5f9;
    color: var(--bh-muted);
    font-size: 24px;
    cursor: pointer;
}

.bh-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bh-category-list li {
    margin-bottom: 7px;
}

.bh-category-list a {
    min-height: 44px;
    padding: 10px 13px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-weight: 700;
    transition: 0.2s ease;
}

.bh-category-list a::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
}

.bh-category-list li:nth-child(2) a::before { background: #f97316; }
.bh-category-list li:nth-child(3) a::before { background: #22c55e; }
.bh-category-list li:nth-child(4) a::before { background: #0ea5e9; }
.bh-category-list li:nth-child(5) a::before { background: #ef4444; }
.bh-category-list li:nth-child(6) a::before { background: #6366f1; }
.bh-category-list li:nth-child(7) a::before { background: #14b8a6; }
.bh-category-list li:nth-child(8) a::before { background: #a855f7; }
.bh-category-list li:nth-child(9) a::before { background: #ec4899; }
.bh-category-list li:nth-child(10) a::before { background: #f59e0b; }
.bh-category-list li:nth-child(11) a::before { background: #06b6d4; }
.bh-category-list li:nth-child(12) a::before { background: #84cc16; }
.bh-category-list li:nth-child(13) a::before { background: #64748b; }

.bh-category-list a:hover {
    background: #f1f5f9;
    transform: translateX(3px);
}

.bh-category-list a.active {
    background: linear-gradient(135deg, #ecfdf5, #eef2ff);
    color: var(--bh-primary-dark);
    box-shadow: inset 3px 0 0 var(--bh-primary);
}

/* ACCOUNT */
.bh-account-head {
    padding: 26px;
    display: grid;
    grid-template-columns: 36px 54px 1fr;
    gap: 13px;
    align-items: center;
    border-bottom: 1px solid var(--bh-border);
}

.bh-account-avatar {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--bh-primary), var(--bh-secondary));
    color: white;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.bh-account-head h3 {
    margin: 0;
    font-size: 18px;
}

.bh-account-head p {
    margin: 4px 0 0;
    color: var(--bh-muted);
    font-size: 13px;
}

.bh-account-list {
    list-style: none;
    padding: 18px 26px;
    margin: 0;
}

.bh-account-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    color: #334155;
    font-weight: 700;
}

.bh-account-list span {
    width: 28px;
    text-align: center;
}

.bh-logout-link {
    display: block;
    text-align: center;
    color: var(--bh-danger);
    font-weight: 900;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .bh-hero-section {
        grid-template-columns: 1fr;
    }

    .bh-side-promos {
        grid-template-columns: 1fr 1fr;
    }

    .bh-shortcut-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .bh-benefit-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .bh-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bh-cta-section {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .bh-top-strip {
        height: 38px;
        padding: 0 13px;
        font-size: 12px;
    }

    .bh-top-links a:not(:last-child) {
        display: none;
    }

    .bh-navbar {
        top: 38px;
        height: 66px;
        padding: 8px 12px;
        gap: 8px;
    }
.bh-logo {
    min-width: 54px;
    width: 54px;
    height: 42px;
    gap: 0;
    overflow: hidden;
}

.bh-logo-img {
    width: 48px;
    height: 42px;
    object-fit: contain;
}

.bh-logo-text {
    display: none;
}

.bh-logo-text strong {
    display: block;
    color: #1e5a97;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.bh-logo-text small {
    display: block;
    margin-top: 5px;
    color: #73b843;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

    .bh-menu-btn,
    .bh-action-btn {
        width: 34px;
        height: 38px;
        font-size: 20px;
        background: transparent;
    }

    .bh-search {
        height: 42px;
        border-radius: 13px;
    }

    .bh-search input {
        font-size: 14px;
        padding: 0 12px;
    }

    .bh-search button {
        width: 40px;
        font-size: 22px;
    }

    .bh-main {
        padding: 15px 12px 90px;
    }

    .bh-hero-main {
        min-height: 470px;
        border-radius: 26px;
        padding: 28px 22px;
        flex-direction: column;
        align-items: flex-start;
    }

    .bh-hero-content h1 {
        font-size: 36px;
    }

    .bh-hero-content p {
        font-size: 15px;
    }

    .bh-hero-art {
        align-self: center;
        width: 220px;
        height: 220px;
    }

    .bh-hero-art > span {
        font-size: 116px;
    }

    .bh-side-promos {
        grid-template-columns: 1fr;
    }

    .bh-promo-card {
        min-height: 150px;
        border-radius: 22px;
    }

    .bh-section-head,
    .bh-flash-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .bh-section-head h2,
    .bh-flash-head h2 {
        font-size: 24px;
    }

    .bh-shortcut-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .bh-shortcut-item {
        min-height: 96px;
        border-radius: 18px;
        font-size: 12px;
        padding: 12px 6px;
    }

    .bh-shortcut-item div {
        width: 44px;
        height: 44px;
        border-radius: 15px;
        font-size: 23px;
    }

    .bh-benefit-strip {
        grid-template-columns: 1fr;
    }

    .bh-flash-section {
        padding: 18px 12px;
        border-radius: 24px;
    }

    .bh-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .bh-product-card {
        border-radius: 18px;
    }

    .bh-product-image {
        height: 140px;
    }

    .bh-product-image span {
        font-size: 52px;
    }

    .bh-product-body {
        padding: 11px;
    }

    .bh-product-body h3 {
        font-size: 13px;
        min-height: 42px;
    }

    .bh-product-price {
        font-size: 18px;
    }

    .bh-product-meta,
    .bh-old-price del {
        font-size: 12px;
    }

    .bh-product-body button {
        height: 38px;
        border-radius: 12px;
        font-size: 13px;
    }

    .bh-cta-section {
        padding: 24px;
        border-radius: 24px;
    }

    .bh-cta-section h2 {
        font-size: 24px;
    }

    .bh-floating-wa {
        right: 13px;
        bottom: 15px;
        border-radius: 16px;
    }
}

@media (max-width: 420px) {
    .bh-shortcut-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .bh-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bh-category-drawer {
        width: min(340px, 90vw);
    }

    .bh-drawer-inner {
        padding: 24px 20px;
    }

    .bh-category-list a {
        font-size: 14.5px;
    }
}
/* =========================================================
   BACKEND DUMMY EXTENSION - CATEGORY CATALOG
   ========================================================= */
.bh-alert-success {
    width: min(1180px, calc(100% - 44px));
    margin: 18px auto 0;
    padding: 14px 18px;
    border-radius: 18px;
    color: #166534;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    font-weight: 850;
}

.bh-category-hero {
    min-height: 250px;
    padding: 34px;
    border-radius: 32px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.18), transparent 34%),
        linear-gradient(135deg, #052e16 0%, #14532d 50%, #1e3a8a 100%);
    box-shadow: var(--bh-shadow);
    color: #ffffff;
}

.bh-category-hero h1 {
    margin: 10px 0 10px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.02;
    letter-spacing: -1.8px;
}

.bh-category-hero p {
    margin: 0;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    font-weight: 650;
}

.bh-category-search {
    padding: 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.bh-category-search input {
    min-height: 50px;
    padding: 0 16px;
    border: none;
    outline: none;
    border-radius: 16px;
    background: #ffffff;
    color: var(--bh-dark);
    font-size: 14px;
    font-weight: 750;
}

.bh-category-search button {
    min-height: 50px;
    padding: 0 20px;
    border: none;
    border-radius: 16px;
    background: #7ac449;
    color: #102033;
    cursor: pointer;
    font-weight: 950;
}

.bh-filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bh-filter-chip {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--bh-border);
    color: #334155;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.bh-filter-chip.active,
.bh-filter-chip:hover {
    color: #166534;
    background: #ecfdf5;
    border-color: rgba(22, 163, 74, 0.32);
}

.bh-empty-state {
    grid-column: 1 / -1;
    min-height: 180px;
    padding: 28px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    text-align: center;
    background: #ffffff;
    border: 1px dashed #cbd5e1;
}

.bh-empty-state strong {
    color: #0f172a;
    font-size: 22px;
    font-weight: 950;
}

.bh-empty-state p {
    margin: 8px 0 0;
    color: #64748b;
    font-weight: 700;
}

.bh-empty-state a {
    margin-top: 14px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bh-primary);
    color: #ffffff;
    font-weight: 950;
}

.bh-account-list a.active {
    background: linear-gradient(90deg, #ecfdf5, #eef2ff);
    color: #166534;
}

@media (max-width: 900px) {
    .bh-category-hero {
        grid-template-columns: 1fr;
        padding: 24px;
        border-radius: 26px;
    }

    .bh-category-search {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   LBAGSTORE HOME BUBBLE REVAMP
   Bubble punya label di bawah, tidak menutup center.
   Paste paling bawah public/css/home.css
   ========================================================= */

body.home-page {
    background:
        radial-gradient(circle at 8% 4%, rgba(34, 197, 94, 0.07), transparent 24%),
        radial-gradient(circle at 88% 6%, rgba(37, 99, 235, 0.07), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 46%, #ffffff 100%) !important;
}

/* HERO LAYOUT */
.bh-home-bubbles {
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.7fr) !important;
    gap: 20px !important;
    align-items: stretch !important;
}

.bh-home-bubbles .bh-hero-main {
    min-height: 410px !important;
    padding: 34px 38px !important;
    border-radius: 34px !important;
    color: #0f172a !important;
    background:
        radial-gradient(circle at 68% 12%, rgba(34, 197, 94, 0.12), transparent 30%),
        radial-gradient(circle at 88% 88%, rgba(79, 70, 229, 0.10), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95)) !important;
    border: 1px solid rgba(226, 232, 240, 0.96) !important;
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.065),
        inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
    overflow: hidden !important;
}

.bh-home-bubbles .bh-hero-main::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 27px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    pointer-events: none;
}

/* LEFT HERO CONTENT */
.bh-home-bubbles .bh-hero-content {
    position: relative;
    z-index: 5;
    max-width: 470px !important;
}

.bh-home-bubbles .bh-hero-badge {
    width: fit-content;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 7px 12px !important;
    border-radius: 999px !important;
    background: #ecfdf5 !important;
    border: 1px solid #bbf7d0 !important;
    color: #15803d !important;
    font-size: 10.5px !important;
    font-weight: 950 !important;
    letter-spacing: 0.55px !important;
}

.bh-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.bh-home-bubbles .bh-hero-content h1 {
    max-width: 495px !important;
    margin: 17px 0 13px !important;
    color: #0f172a !important;
    font-size: clamp(30px, 2.85vw, 42px) !important;
    line-height: 1.08 !important;
    letter-spacing: -1.45px !important;
    font-weight: 950 !important;
}

.bh-home-bubbles .bh-hero-content h1 span {
    display: block !important;
    background: linear-gradient(135deg, #16a34a 0%, #0ea5e9 50%, #4f46e5 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

.bh-home-bubbles .bh-hero-content p {
    max-width: 455px !important;
    color: #475569 !important;
    font-size: 13.8px !important;
    line-height: 1.72 !important;
    margin: 0 !important;
}

/* BUTTON */
.bh-home-bubbles .bh-hero-actions {
    margin-top: 22px !important;
    gap: 10px !important;
}

.bh-home-bubbles .bh-primary-link,
.bh-home-bubbles .bh-secondary-link {
    min-height: 42px !important;
    padding: 0 17px !important;
    border-radius: 999px !important;
    font-size: 12.5px !important;
    font-weight: 950 !important;
    transition: 0.22s ease !important;
}

.bh-home-bubbles .bh-primary-link {
    background: linear-gradient(135deg, #16a34a, #15803d) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 25px rgba(22, 163, 74, 0.24) !important;
}

.bh-home-bubbles .bh-secondary-link {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.045) !important;
}

.bh-home-bubbles .bh-primary-link:hover,
.bh-home-bubbles .bh-secondary-link:hover {
    transform: translateY(-2px) !important;
}

/* STATS */
.bh-home-bubbles .bh-hero-stats {
    margin-top: 25px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 9px !important;
    max-width: 405px !important;
}

.bh-home-bubbles .bh-hero-stats div {
    padding: 11px 12px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.80) !important;
    border: 1px solid rgba(226, 232, 240, 0.92) !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.035) !important;
}

.bh-home-bubbles .bh-hero-stats strong {
    display: block !important;
    color: #0f172a !important;
    font-size: 14.5px !important;
    line-height: 1.1 !important;
    font-weight: 950 !important;
}

.bh-home-bubbles .bh-hero-stats span {
    display: block !important;
    margin-top: 4px !important;
    color: #64748b !important;
    font-size: 10.5px !important;
    font-weight: 850 !important;
}

/* BUBBLE SHOWCASE */
.bh-bubble-showcase {
    position: relative !important;
    z-index: 4 !important;
    width: 380px !important;
    min-height: 375px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.bh-bubble-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    opacity: 0.7;
    pointer-events: none;
}

.bh-bubble-glow.glow-green {
    width: 190px;
    height: 190px;
    top: 12px;
    right: 24px;
    background: rgba(34, 197, 94, 0.18);
}

.bh-bubble-glow.glow-blue {
    width: 180px;
    height: 180px;
    bottom: 36px;
    left: 18px;
    background: rgba(14, 165, 233, 0.16);
}

.bh-bubble-glow.glow-purple {
    width: 145px;
    height: 145px;
    bottom: 92px;
    right: 28px;
    background: rgba(124, 58, 237, 0.13);
}

.bh-bubble-stage {
    position: relative;
    z-index: 3;
    width: 350px;
    height: 348px;
    margin-bottom: 10px;
}

.bh-bubble-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.bh-bubble-ring.ring-outer {
    width: 272px;
    height: 272px;
    border: 1px dashed rgba(148, 163, 184, 0.42);
}

.bh-bubble-ring.ring-inner {
    width: 168px;
    height: 168px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(8px);
}

/* CENTER */
.bh-bubble-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 126px;
    height: 126px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 5px;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    background:
        radial-gradient(circle at 35% 18%, rgba(255, 255, 255, 0.96), transparent 34%),
        linear-gradient(135deg, #ecfdf5 0%, #dbeafe 55%, #eef2ff 100%);
    border: 1px solid rgba(186, 230, 253, 0.95);
    box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: 0.25s ease;
    overflow: hidden;
}

.bh-bubble-center::after {
    content: "";
    position: absolute;
    width: 66px;
    height: 66px;
    right: -18px;
    bottom: -22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
}

.bh-bubble-center:hover {
    transform: translate(-50%, -50%) scale(1.035);
}

.bh-center-icon {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
    font-size: 27px;
}

.bh-center-copy {
    position: relative;
    z-index: 2;
    max-width: 100px;
}

.bh-center-copy small {
    display: block;
    color: #15803d;
    font-size: 9px;
    line-height: 1.1;
    font-weight: 950;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bh-center-copy strong {
    display: block;
    margin-top: 2px;
    color: #0f172a;
    font-size: 10.5px;
    line-height: 1.12;
    font-weight: 950;
}

.bh-center-copy span {
    display: block;
    margin-top: 3px;
    color: #2563eb;
    font-size: 9.5px;
    font-weight: 950;
}

/* BUBBLE ITEM + LABEL */
.bh-bubble-item {
    position: absolute;
    z-index: 5;
    width: 92px;
    min-height: 98px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-align: center;
    text-decoration: none;
}

.bh-bubble-icon {
    width: 66px;
    height: 66px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    transition: 0.22s ease;
}

.bh-bubble-item:hover .bh-bubble-icon {
    transform: translateY(-3px) scale(1.05);
}

.bh-bubble-icon span {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.82);
    font-size: 24px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.bh-bubble-label {
    width: 104px;
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.055);
    backdrop-filter: blur(10px);
}

.bh-bubble-label strong {
    display: block;
    color: #0f172a;
    font-size: 10.2px;
    line-height: 1.05;
    font-weight: 950;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bh-bubble-label small {
    display: block;
    margin-top: 3px;
    color: #475569;
    font-size: 9px;
    line-height: 1.05;
    font-weight: 850;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Posisi dibuat aman: label tidak menabrak center */
.bh-bubble-item.bubble-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bh-bubble-item.bubble-right {
    top: 118px;
    right: 0;
}

.bh-bubble-item.bubble-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bh-bubble-item.bubble-left {
    top: 118px;
    left: 0;
}

/* Different colors */
.bh-bubble-item.tone-green .bh-bubble-icon {
    background: linear-gradient(135deg, rgba(220, 252, 231, 0.98), rgba(187, 247, 208, 0.9));
}

.bh-bubble-item.tone-orange .bh-bubble-icon {
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.98), rgba(254, 215, 170, 0.9));
}

.bh-bubble-item.tone-blue .bh-bubble-icon {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.98), rgba(191, 219, 254, 0.9));
}

.bh-bubble-item.tone-pink .bh-bubble-icon {
    background: linear-gradient(135deg, rgba(253, 242, 248, 0.98), rgba(251, 207, 232, 0.9));
}

/* DARK DAILY PILL */
.bh-dark-product-pill {
    position: relative;
    z-index: 8;
    width: 300px;
    min-height: 62px;
    display: grid;
    grid-template-columns: 42px 1fr 28px;
    align-items: center;
    gap: 10px;
    padding: 9px 10px 9px 9px;
    border-radius: 999px;
    text-decoration: none;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(30, 41, 59, 0.97));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.24);
    transition: 0.22s ease;
}

.bh-dark-product-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.30);
}

.bh-dark-pill-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    font-size: 20px;
}

.bh-dark-product-pill span {
    display: block;
    color: #bbf7d0;
    font-size: 10.5px;
    font-weight: 950;
}

.bh-dark-product-pill strong {
    display: block;
    margin-top: 3px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.15;
    font-weight: 950;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bh-dark-product-pill b {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 13px;
}

/* RIGHT PROMO */
.bh-home-bubbles .bh-side-promos {
    display: grid !important;
    gap: 16px !important;
}

.bh-home-bubbles .bh-promo-card {
    position: relative;
    min-height: 195px !important;
    padding: 20px !important;
    border-radius: 42px 72px 42px 72px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    color: #0f172a !important;
    text-decoration: none !important;
    border: 1px solid rgba(226, 232, 240, 0.95) !important;
    box-shadow:
        0 18px 44px rgba(15, 23, 42, 0.062),
        inset 0 1px 0 rgba(255, 255, 255, 0.88) !important;
    transition: 0.22s ease !important;
    overflow: hidden !important;
}

.bh-home-bubbles .bh-promo-card::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -52px;
    width: 145px;
    height: 145px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
}

.bh-home-bubbles .bh-promo-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 25px 58px rgba(15, 23, 42, 0.1) !important;
}

.bh-home-bubbles .promo-fresh {
    background:
        radial-gradient(circle at 88% 76%, rgba(255, 255, 255, 0.62), transparent 29%),
        linear-gradient(135deg, #ecfdf5 0%, #bbf7d0 100%) !important;
}

.bh-home-bubbles .promo-soft {
    background:
        radial-gradient(circle at 90% 76%, rgba(255, 255, 255, 0.65), transparent 29%),
        linear-gradient(135deg, #f5f3ff 0%, #ddd6fe 100%) !important;
}

.bh-promo-shape {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.065);
}

.bh-promo-shape span {
    font-size: 25px;
}

.bh-promo-text {
    position: relative;
    z-index: 2;
}

.bh-promo-text small {
    display: block;
    margin-top: 12px;
    color: #15803d;
    font-size: 10.5px;
    font-weight: 950;
}

.promo-soft .bh-promo-text small {
    color: #6d28d9;
}

.bh-home-bubbles .bh-promo-card h2 {
    margin: 5px 0 6px !important;
    color: #0f172a !important;
    font-size: 20px !important;
    line-height: 1.16 !important;
    letter-spacing: -0.45px !important;
    font-weight: 950 !important;
}

.bh-home-bubbles .bh-promo-card p {
    margin: 0 !important;
    max-width: 270px !important;
    color: #475569 !important;
    font-size: 12.7px !important;
    line-height: 1.55 !important;
}

.bh-home-bubbles .bh-promo-card > strong {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    margin-top: 13px;
    color: #15803d;
    font-size: 11.7px;
    font-weight: 950;
}

.bh-home-bubbles .promo-soft > strong {
    color: #6d28d9;
}

/* SECTION */
.bh-section {
    margin-top: 38px !important;
}

.bh-section-head h2,
.bh-flash-head h2 {
    color: #0f172a !important;
    font-size: clamp(23px, 2.35vw, 32px) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.75px !important;
    font-weight: 950 !important;
}

.bh-section-kicker {
    font-size: 11.5px !important;
    font-weight: 950 !important;
}

.bh-shortcut-item {
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04) !important;
}

.bh-shortcut-item div {
    border-radius: 999px !important;
}

.bh-shortcut-item:hover {
    background: #ffffff !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.085) !important;
}

/* PRODUK POPULER DARK THEME */
#produk-populer.bh-flash-section {
    position: relative;
    background:
        radial-gradient(circle at 8% 0%, rgba(34, 197, 94, 0.20), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(99, 102, 241, 0.22), transparent 30%),
        linear-gradient(135deg, #0f172a 0%, #111827 48%, #1e293b 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18) !important;
    overflow: hidden;
}

#produk-populer.bh-flash-section::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -80px;
    top: -80px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

#produk-populer .bh-flash-head {
    position: relative;
    z-index: 2;
}

#produk-populer .bh-section-kicker {
    color: #86efac !important;
}

#produk-populer .bh-flash-head h2 {
    color: #ffffff !important;
}

#produk-populer .bh-flash-head p {
    color: rgba(226, 232, 240, 0.78) !important;
}

#produk-populer .bh-timer {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    color: #ffffff !important;
}

#produk-populer .bh-timer span {
    color: rgba(226, 232, 240, 0.78) !important;
}

#produk-populer .bh-timer strong {
    color: #ffffff !important;
    background: linear-gradient(135deg, #22c55e, #3b82f6) !important;
}

#produk-populer .bh-product-grid {
    position: relative;
    z-index: 2;
}

#produk-populer .bh-product-card {
    background:
        linear-gradient(180deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96)) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.20) !important;
}

#produk-populer .bh-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.26) !important;
}

#produk-populer .bh-product-body h3 {
    color: #ffffff !important;
}

#produk-populer .bh-product-price {
    color: #86efac !important;
}

#produk-populer .bh-old-price,
#produk-populer .bh-product-meta {
    color: rgba(226, 232, 240, 0.70) !important;
}

#produk-populer .bh-product-body button {
    background: rgba(255, 255, 255, 0.10) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.11) !important;
}

#produk-populer .bh-product-body button:hover {
    background: linear-gradient(135deg, #16a34a, #2563eb) !important;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
    .bh-home-bubbles {
        grid-template-columns: 1fr !important;
    }

    .bh-home-bubbles .bh-side-promos {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .bh-home-bubbles .bh-hero-main {
        flex-direction: column !important;
        padding: 30px 24px !important;
    }

    .bh-bubble-showcase {
        width: 100% !important;
        justify-content: center !important;
        place-items: center !important;
    }
}

@media (max-width: 640px) {
    .bh-home-bubbles .bh-hero-main {
        min-height: auto !important;
        border-radius: 26px !important;
        padding: 25px 20px !important;
    }

    .bh-home-bubbles .bh-hero-main::before {
        inset: 10px;
        border-radius: 20px;
    }

    .bh-home-bubbles .bh-hero-content h1 {
        font-size: 29px !important;
        letter-spacing: -1px !important;
    }

    .bh-home-bubbles .bh-hero-content p {
        font-size: 13.2px !important;
    }

    .bh-home-bubbles .bh-hero-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .bh-home-bubbles .bh-primary-link,
    .bh-home-bubbles .bh-secondary-link {
        width: 100% !important;
    }

    .bh-home-bubbles .bh-hero-stats {
        grid-template-columns: 1fr !important;
    }

    .bh-home-bubbles .bh-side-promos {
        grid-template-columns: 1fr !important;
    }

    .bh-bubble-stage {
        width: 315px;
        height: 335px;
        transform: scale(0.94);
        transform-origin: center;
    }

    .bh-bubble-showcase {
        min-height: 385px !important;
    }

    .bh-bubble-item.bubble-left {
        left: -2px;
    }

    .bh-bubble-item.bubble-right {
        right: -2px;
    }

    .bh-dark-product-pill {
        width: min(100%, 305px);
    }
}

/* =========================================================
   ACCOUNT DRAWER SIMPLE STYLE - LIKE REFERENCE IMAGE
   ========================================================= */

.bh-account-drawer {
    background: #ffffff !important;
}

.bh-account-head {
    min-height: 112px !important;
    padding: 28px 28px !important;
    display: grid !important;
    grid-template-columns: 42px 68px 1fr !important;
    align-items: center !important;
    gap: 14px !important;
    border-bottom: 1px solid #edf2f7 !important;
}

.bh-account-head button {
    width: 38px !important;
    height: 38px !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
    font-size: 24px !important;
    line-height: 1 !important;
    cursor: pointer !important;
}

.bh-account-avatar {
    width: 62px !important;
    height: 62px !important;
    border-radius: 20px !important;
    display: grid !important;
    place-items: center !important;
    background: linear-gradient(135deg, #16835d 0%, #6d37d8 100%) !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 950 !important;
    letter-spacing: 0.5px !important;
}

.bh-account-head h3 {
    margin: 0 !important;
    color: #111827 !important;
    font-size: 19px !important;
    line-height: 1.2 !important;
    font-weight: 950 !important;
    letter-spacing: -0.3px !important;
}

.bh-account-head p {
    margin: 5px 0 0 !important;
    color: #64748b !important;
    font-size: 13.5px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
}

/* List menu simple */
.bh-account-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 28px 34px 0 !important;
    display: grid !important;
    gap: 7px !important;
}

.bh-account-list li {
    margin: 0 !important;
    padding: 0 !important;
}

.bh-account-list a {
    min-height: 46px !important;
    padding: 6px 0 !important;
    display: grid !important;
    grid-template-columns: 28px 1fr !important;
    align-items: center !important;
    gap: 14px !important;
    text-decoration: none !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #334155 !important;
    transform: none !important;
    transition: 0.2s ease !important;
}

.bh-account-list a:hover {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: translateX(3px) !important;
}

.bh-account-list a.active {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: #111827 !important;
}

.bh-account-menu-icon {
    width: 24px !important;
    height: 24px !important;
    display: grid !important;
    place-items: center !important;
    background: transparent !important;
    border-radius: 0 !important;
    color: #6b3fa0 !important;
    font-size: 15px !important;
    box-shadow: none !important;
}

.bh-account-list a strong {
    display: block !important;
    color: #334155 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 950 !important;
    letter-spacing: -0.1px !important;
}

.bh-account-list a:hover strong,
.bh-account-list a.active strong {
    color: #111827 !important;
}

/* warna icon per item biar mirip screenshot */
.bh-account-list li:nth-child(1) .bh-account-menu-icon {
    color: #0f172a !important;
}

.bh-account-list li:nth-child(2) .bh-account-menu-icon {
    color: #6d37d8 !important;
}

.bh-account-list li:nth-child(3) .bh-account-menu-icon {
    color: #ec4899 !important;
}

.bh-account-list li:nth-child(4) .bh-account-menu-icon {
    color: #0ea5e9 !important;
}

.bh-account-list li:nth-child(5) .bh-account-menu-icon {
    color: #a78bfa !important;
}

.bh-account-list li:nth-child(6) .bh-account-menu-icon {
    color: #94a3b8 !important;
}

.bh-account-list li:nth-child(7) .bh-account-menu-icon {
    color: #334155 !important;
}

.bh-account-list li:nth-child(8) .bh-account-menu-icon {
    color: #facc15 !important;
}

/* Logout tengah */
.bh-logout-link {
    width: fit-content !important;
    min-width: auto !important;
    height: auto !important;
    margin: 34px auto 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: #ef4444 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 950 !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: 0.2s ease !important;
}

.bh-logout-link:hover {
    color: #dc2626 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: translateY(-1px) !important;
}

/* Mobile */
@media (max-width: 640px) {
    .bh-account-head {
        padding: 26px 28px !important;
        grid-template-columns: 40px 60px 1fr !important;
    }

    .bh-account-avatar {
        width: 58px !important;
        height: 58px !important;
    }

    .bh-account-list {
        padding: 26px 34px 0 !important;
    }

    .bh-account-list a {
        min-height: 45px !important;
    }
}

.bh-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.bh-product-image:has(img) {
    background: #f8fafc !important;
}

/* =========================================================
   CUSTOMER LOGIN STATE ON HOME
   ========================================================= */

.bh-login-state {
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: #ecfdf5;
    color: #15803d;
    font-size: 13px;
    font-weight: 500;
}

.bh-login-state.admin {
    background: #eff6ff;
    color: #2563eb;
}

.bh-customer-pill {
    min-height: 44px;
    max-width: 210px;
    padding: 0 14px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0f172a;
    text-decoration: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    transition: 0.2s ease;
}

.bh-customer-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(22, 163, 74, 0.28);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.bh-customer-pill span {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #ecfdf5;
}

.bh-customer-pill strong {
    max-width: 140px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 500;
}

.bh-customer-pill.admin span {
    background: #eff6ff;
}

@media (max-width: 900px) {
    .bh-customer-pill {
        display: none;
    }

    .bh-login-state {
        display: none;
    }
}

/* =========================================================
   GUEST ACCOUNT DRAWER + MASUK/DAFTAR BUTTON
   ========================================================= */

.bh-auth-nav-btn {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #0f172a;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
    transition: 0.2s ease;
}

.bh-auth-nav-btn:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a, #2563eb);
    border-color: transparent;
    transform: translateY(-2px);
}

.bh-guest-account {
    margin: 30px 30px 0;
    padding: 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 12% 0%, rgba(22, 163, 74, 0.13), transparent 34%),
        radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.11), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.bh-guest-kicker {
    width: fit-content;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: #ecfdf5;
    color: #15803d;
    font-size: 12px;
    font-weight: 500;
}

.bh-guest-account h3 {
    margin: 16px 0 10px;
    max-width: 340px;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.5px;
    font-weight: 600;
}

.bh-guest-account p {
    margin: 0;
    max-width: 360px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
}

.bh-guest-actions {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.bh-guest-login-btn,
.bh-guest-register-btn {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s ease;
}

.bh-guest-login-btn {
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a, #2563eb);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
}

.bh-guest-register-btn {
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.bh-guest-login-btn:hover,
.bh-guest-register-btn:hover {
    transform: translateY(-2px);
}

.bh-guest-benefits {
    margin-top: 22px;
    display: grid;
    gap: 10px;
}

.bh-guest-benefits div {
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid #eef2f7;
}

.bh-guest-benefits span {
    width: 34px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #f1f5f9;
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
}

.bh-guest-benefits strong {
    color: #334155;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}

@media (max-width: 640px) {
    .bh-auth-nav-btn {
        min-height: 40px;
        padding: 0 12px;
        font-size: 12.5px;
    }

    .bh-guest-account {
        margin: 24px 22px 0;
        padding: 22px;
        border-radius: 24px;
    }

    .bh-guest-account h3 {
        font-size: 21px;
    }

    .bh-guest-actions {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   CART EMPTY & CART PAGE CLEAN
   ========================================================= */

.lb-cart-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 22px 80px;
}

.lb-cart-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.lb-cart-head span {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.lb-cart-head h1 {
    margin: 18px 0 8px;
    color: #0f172a;
    font-size: clamp(34px, 3vw, 46px);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -1px;
}

.lb-cart-head p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.lb-cart-add-btn {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.lb-empty-cart {
    min-height: 420px;
    padding: 52px 24px;
    border-radius: 34px;
    display: grid;
    place-items: center;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.055);
}

.lb-empty-cart-icon {
    width: 82px;
    height: 82px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ecfdf5, #dbeafe);
    font-size: 38px;
}

.lb-empty-cart h2 {
    margin: 20px 0 10px;
    color: #0f172a;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 600;
}

.lb-empty-cart p {
    max-width: 460px;
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.75;
}

.lb-empty-cart a {
    min-height: 46px;
    margin-top: 22px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a, #2563eb);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.lb-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
}

.lb-cart-list {
    display: grid;
    gap: 16px;
}

.lb-cart-toolbar,
.lb-cart-item,
.lb-cart-summary {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.045);
}

.lb-cart-toolbar {
    min-height: 70px;
    padding: 16px 20px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lb-cart-toolbar label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lb-cart-toolbar small {
    display: block;
    color: #64748b;
    font-size: 12px;
}

.lb-cart-toolbar button {
    border: 0;
    background: transparent;
    color: #2563eb;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.lb-cart-item {
    padding: 18px 20px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 20px 104px minmax(0, 1fr) 128px 120px;
    align-items: center;
    gap: 16px;
}

.lb-cart-image {
    width: 104px;
    height: 104px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: #f1f5f9;
    overflow: hidden;
    text-decoration: none;
}

.lb-cart-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-cart-image span {
    font-size: 42px;
}

.lb-cart-info a {
    color: #0f172a;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

.lb-cart-info small {
    display: block;
    margin-top: 7px;
    color: #64748b;
    font-size: 13px;
}

.lb-cart-price {
    margin-top: 12px;
    color: #dc2626;
    font-size: 18px;
    font-weight: 600;
}

.lb-cart-price del {
    margin-left: 8px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 400;
}

.lb-cart-qty {
    height: 42px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    align-items: center;
    text-align: center;
}

.lb-cart-qty button {
    border: 0;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
}

.lb-cart-subtotal {
    text-align: right;
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
}

.lb-cart-summary {
    height: fit-content;
    padding: 26px;
    border-radius: 26px;
    position: sticky;
    top: 24px;
}

.lb-cart-summary h2 {
    margin: 0 0 24px;
    color: #0f172a;
    font-size: 24px;
    font-weight: 600;
}

.lb-cart-summary div {
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: #64748b;
    font-size: 15px;
}

.lb-cart-summary strong {
    color: #0f172a;
    font-weight: 600;
}

.lb-cart-summary a {
    min-height: 52px;
    margin-top: 12px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #2563eb;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 980px) {
    .lb-cart-layout {
        grid-template-columns: 1fr;
    }

    .lb-cart-item {
        grid-template-columns: 20px 86px 1fr;
    }

    .lb-cart-qty,
    .lb-cart-subtotal {
        grid-column: 3 / -1;
    }

    .lb-cart-subtotal {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .lb-cart-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .lb-cart-item {
        grid-template-columns: 20px 74px 1fr;
        gap: 12px;
        padding: 16px;
    }

    .lb-cart-image {
        width: 74px;
        height: 74px;
        border-radius: 18px;
    }

    .lb-cart-info a {
        font-size: 14px;
    }
}

.lb-cart-toolbar > div form {
    display: inline-flex;
}

.lb-cart-qty form {
    margin: 0;
    display: inline-flex;
}

.lb-cart-qty button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.lb-cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lb-cart-qty span {
    min-width: 26px;
    text-align: center;
    font-weight: 800;
}

.lb-cart-item.is-updating {
    opacity: 0.72;
    pointer-events: none;
}

.lb-cart-qty button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.lb-cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lb-cart-qty span {
    min-width: 26px;
    text-align: center;
    font-weight: 800;
}

.bh-notification-btn {
    position: relative;
}

.bh-notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bh-account-menu-badge {
    margin-left: 8px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

/* =========================================================
   FLOATING WHATSAPP - MOBILE SAFE
   Supaya tombol "Butuh bantuan" tidak menutupi tombol beli
   ========================================================= */

.bh-floating-wa {
    z-index: 80;
}

/* Mobile umum */
@media (max-width: 768px) {
    .bh-floating-wa {
        right: 14px;
        bottom: calc(86px + env(safe-area-inset-bottom));
        width: 54px;
        height: 54px;
        min-width: 54px;
        padding: 0;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22);
    }

    .bh-floating-wa > span {
        margin: 0;
        font-size: 22px;
    }

    .bh-floating-wa > div {
        display: none;
    }
}

/* Khusus halaman detail produk: naikkan lagi karena ada sticky buy bar */
@media (max-width: 768px) {
    body.product-detail-page .bh-floating-wa {
        right: 14px;
        bottom: calc(116px + env(safe-area-inset-bottom));
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
}

/* Kalau layar sangat pendek, tombol WA tetap kecil dan tidak ganggu */
@media (max-width: 420px) {
    body.product-detail-page .bh-floating-wa {
        bottom: calc(108px + env(safe-area-inset-bottom));
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    body.product-detail-page .bh-floating-wa > span {
        font-size: 20px;
    }
}

.bh-center-icon img,
.bh-bubble-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

/* =========================================================
   PRODUCT CARD FIX - LBAGSTORE
   Rapihkan card produk import dengan nama panjang dan SKU panjang
========================================================= */

.bh-flash-section {
    overflow: hidden;
}

.bh-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.bh-product-card {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 22px;
    text-decoration: none;
}

.bh-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background: #f8fafc;
}

.bh-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.bh-product-image > span {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 42px;
}

.bh-product-image b {
    position: absolute;
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: #0f172a;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bh-product-body {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px 16px 16px;
}

.bh-product-body h3 {
    margin: 0 0 10px;
    min-height: 44px;
    max-height: 44px;
    overflow: hidden;
    color: inherit;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.bh-product-price {
    margin: 0 0 6px;
    color: #22c55e;
    font-size: 21px;
    line-height: 1.1;
    font-weight: 900;
}

.bh-price-empty {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(148, 163, 184, .16);
    color: #94a3b8;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.bh-product-old-price {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 20px;
    margin-bottom: 8px;
    color: #94a3b8;
    font-size: 12px;
}

.bh-product-old-price span {
    padding: 3px 7px;
    border-radius: 999px;
    background: #fee2e2;
    color: #ef4444;
    font-weight: 800;
}

.bh-product-meta,
.bh-product-sku,
.bh-product-stock {
    min-width: 0;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.45;
}

.bh-product-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.bh-product-sku {
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bh-product-stock {
    margin-top: 6px;
}

.bh-product-stock strong {
    color: inherit;
}

.bh-product-body button {
    width: 100%;
    margin-top: auto;
    min-height: 42px;
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    font-weight: 900;
}

/* Tablet */
@media (max-width: 1180px) {
    .bh-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    .bh-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .bh-product-body {
        padding: 12px;
    }

    .bh-product-body h3 {
        min-height: 40px;
        max-height: 40px;
        font-size: 13px;
        line-height: 1.45;
    }

    .bh-product-price {
        font-size: 17px;
    }

    .bh-product-meta,
    .bh-product-sku,
    .bh-product-stock {
        font-size: 11px;
    }

    .bh-product-body button {
        min-height: 38px;
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .bh-product-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   HOME HERO BRAND FIX - LBAGSTORE
   Isolated class supaya tidak bentrok dengan bubble lama.
   Tempel paling bawah public/css/home.css
   ========================================================= */

.bh-brand-home {
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 22px !important;
    align-items: stretch !important;
}

.bh-brand-home .bh-hero-main {
    position: relative !important;
    min-height: 520px !important;
    padding: 34px 38px !important;
    border-radius: 34px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr) !important;
    gap: 22px !important;
    align-items: center !important;
    color: #0f172a !important;
    background:
        radial-gradient(circle at 72% 18%, rgba(34, 197, 94, .15), transparent 31%),
        radial-gradient(circle at 88% 88%, rgba(124, 58, 237, .10), transparent 32%),
        radial-gradient(circle at 54% 88%, rgba(59, 130, 246, .10), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .95)) !important;
    border: 1px solid rgba(226, 232, 240, .96) !important;
    box-shadow:
        0 20px 50px rgba(15, 23, 42, .065),
        inset 0 1px 0 rgba(255, 255, 255, .96) !important;
    overflow: hidden !important;
}

.bh-brand-home .bh-hero-main::before {
    content: "" !important;
    position: absolute !important;
    inset: 14px !important;
    border-radius: 27px !important;
    border: 1px solid rgba(255, 255, 255, .78) !important;
    pointer-events: none !important;
}

.bh-brand-home .bh-hero-content {
    position: relative !important;
    z-index: 5 !important;
    max-width: 500px !important;
}

.bh-brand-home .bh-hero-badge {
    width: fit-content !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 13px !important;
    border-radius: 999px !important;
    background: #ecfdf5 !important;
    border: 1px solid #bbf7d0 !important;
    color: #15803d !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    letter-spacing: .55px !important;
}

.bh-brand-home .bh-hero-content h1 {
    margin: 24px 0 16px !important;
    color: #0f172a !important;
    font-size: clamp(42px, 4.4vw, 64px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.075em !important;
    font-weight: 950 !important;
}

.bh-brand-home .bh-hero-content h1 span {
    display: block !important;
    color: transparent !important;
    background: linear-gradient(90deg, #16a34a, #0284c7, #4f46e5) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

.bh-brand-home .bh-hero-content p {
    max-width: 520px !important;
    margin: 0 !important;
    color: #64748b !important;
    font-size: 16px !important;
    line-height: 1.72 !important;
}

.bh-brand-home .bh-hero-actions {
    margin-top: 26px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.bh-brand-home .bh-hero-stats {
    margin-top: 30px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
    max-width: 470px !important;
}

.bh-brand-home .bh-hero-stats div {
    min-height: 74px !important;
    padding: 12px 16px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .76) !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .045) !important;
}

.bh-brand-home .bh-hero-stats strong {
    display: block !important;
    color: #0f172a !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
}

.bh-brand-home .bh-hero-stats span {
    display: block !important;
    margin-top: 5px !important;
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}

/* BRAND VISUAL */
.bh-brand-visual {
    position: relative !important;
    z-index: 4 !important;
    min-height: 440px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    isolation: isolate !important;
}

.bh-brand-soft-glow {
    position: absolute !important;
    border-radius: 999px !important;
    filter: blur(3px) !important;
    pointer-events: none !important;
}

.bh-brand-soft-glow.glow-a {
    width: 270px !important;
    height: 270px !important;
    top: 32px !important;
    right: 34px !important;
    background: rgba(34, 197, 94, .16) !important;
}

.bh-brand-soft-glow.glow-b {
    width: 220px !important;
    height: 220px !important;
    bottom: 36px !important;
    left: 42px !important;
    background: rgba(59, 130, 246, .11) !important;
}

.bh-brand-soft-glow.glow-c {
    width: 210px !important;
    height: 210px !important;
    right: 20px !important;
    bottom: 28px !important;
    background: rgba(124, 58, 237, .09) !important;
}

.bh-brand-stage {
    position: relative !important;
    width: 410px !important;
    height: 410px !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.bh-brand-ring {
    position: absolute !important;
    border-radius: 999px !important;
    pointer-events: none !important;
}

.bh-brand-ring.ring-one {
    inset: 0 !important;
    border: 1px dashed rgba(15, 23, 42, .13) !important;
}

.bh-brand-ring.ring-two {
    inset: 72px !important;
    background: rgba(255, 255, 255, .48) !important;
    border: 1px solid rgba(255, 255, 255, .82) !important;
    box-shadow:
        inset 0 0 80px rgba(34, 197, 94, .09),
        0 24px 70px rgba(15, 23, 42, .05) !important;
    backdrop-filter: blur(18px) !important;
}

.bh-brand-logo-card {
    position: relative !important;
    z-index: 6 !important;
    width: 245px !important;
    height: 245px !important;
    border-radius: 999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    border: 10px solid rgba(255, 255, 255, .92) !important;
    box-shadow:
        0 26px 58px rgba(15, 23, 42, .12),
        inset 0 1px 0 rgba(255, 255, 255, .96) !important;
    overflow: hidden !important;
    text-decoration: none !important;
}

.bh-brand-logo-card img {
    width: 180px !important;
    height: 180px !important;
    object-fit: contain !important;
    display: block !important;
}

/* small labels around logo */
.bh-brand-mini-card {
    position: absolute !important;
    z-index: 7 !important;
    min-height: 44px !important;
    padding: 8px 12px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255, 255, 255, .88) !important;
    border: 1px solid rgba(226, 232, 240, .94) !important;
    box-shadow: 0 14px 32px rgba(15, 23, 42, .075) !important;
    backdrop-filter: blur(14px) !important;
    white-space: nowrap !important;
}

.bh-brand-mini-card span {
    width: 30px !important;
    height: 30px !important;
    border-radius: 13px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ecfdf5 !important;
    font-size: 16px !important;
}

.bh-brand-mini-card strong {
    color: #0f172a !important;
    font-size: 12px !important;
    font-weight: 950 !important;
}

.bh-brand-mini-card.mini-top {
    top: 26px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.bh-brand-mini-card.mini-right {
    right: 10px !important;
    top: 48% !important;
    transform: translateY(-50%) !important;
}

.bh-brand-mini-card.mini-bottom {
    bottom: 36px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.bh-brand-dark-pill {
    position: absolute !important;
    z-index: 8 !important;
    left: 50% !important;
    bottom: 8px !important;
    width: min(88%, 370px) !important;
    min-height: 68px !important;
    transform: translateX(-50%) !important;
    padding: 10px 12px !important;
    border-radius: 999px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    text-decoration: none !important;
    box-shadow: 0 20px 42px rgba(15, 23, 42, .18) !important;
}

.bh-brand-dark-icon {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    background: rgba(255, 255, 255, .12) !important;
}

.bh-brand-dark-pill div:not(.bh-brand-dark-icon) {
    min-width: 0 !important;
    flex: 1 !important;
}

.bh-brand-dark-pill span {
    display: block !important;
    color: #86efac !important;
    font-size: 11px !important;
    font-weight: 850 !important;
}

.bh-brand-dark-pill strong {
    display: block !important;
    margin-top: 3px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 950 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.bh-brand-dark-pill b {
    width: 34px !important;
    height: 34px !important;
    flex: 0 0 34px !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    background: rgba(255, 255, 255, .13) !important;
}

/* RIGHT PROMO - lebih kecil dan tidak ikut kebesaran */
.bh-brand-home .bh-side-promos {
    display: grid !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 18px !important;
    min-width: 0 !important;
}

.bh-brand-home .bh-promo-card {
    position: relative !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 24px !important;
    border-radius: 38px 58px 38px 58px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    color: #0f172a !important;
    text-decoration: none !important;
    border: 1px solid rgba(226, 232, 240, .94) !important;
    box-shadow:
        0 16px 38px rgba(15, 23, 42, .055),
        inset 0 1px 0 rgba(255, 255, 255, .88) !important;
    overflow: hidden !important;
}

.bh-brand-home .bh-promo-card::after {
    content: "" !important;
    position: absolute !important;
    right: -48px !important;
    bottom: -54px !important;
    width: 145px !important;
    height: 145px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .48) !important;
}

.bh-brand-home .promo-fresh {
    background:
        radial-gradient(circle at 88% 76%, rgba(255, 255, 255, .62), transparent 29%),
        linear-gradient(135deg, #ecfdf5 0%, #bbf7d0 100%) !important;
}

.bh-brand-home .promo-soft {
    background:
        radial-gradient(circle at 88% 76%, rgba(255, 255, 255, .62), transparent 29%),
        linear-gradient(135deg, #f5f3ff 0%, #ddd6fe 100%) !important;
}

.bh-brand-home .bh-promo-shape {
    width: 58px !important;
    height: 58px !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    background: rgba(255, 255, 255, .74) !important;
    box-shadow: 0 16px 30px rgba(15, 23, 42, .06) !important;
}

.bh-brand-home .bh-promo-text {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 24px !important;
}

.bh-brand-home .bh-promo-text small {
    display: block !important;
    color: #15803d !important;
    font-size: 13px !important;
    font-weight: 850 !important;
}

.bh-brand-home .promo-soft .bh-promo-text small {
    color: #6d28d9 !important;
}

.bh-brand-home .bh-promo-text h2 {
    margin: 8px 0 8px !important;
    color: #0f172a !important;
    font-size: 25px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.05em !important;
    font-weight: 950 !important;
}

.bh-brand-home .bh-promo-text p {
    max-width: 280px !important;
    margin: 0 !important;
    color: #475569 !important;
    line-height: 1.55 !important;
    font-size: 14px !important;
}

.bh-brand-home .bh-promo-card > strong {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 22px !important;
    color: #15803d !important;
    font-size: 13px !important;
    font-weight: 950 !important;
}

.bh-brand-home .promo-soft > strong {
    color: #6d28d9 !important;
}

/* TABLET */
@media (max-width: 1180px) {
    .bh-brand-home {
        grid-template-columns: 1fr !important;
    }

    .bh-brand-home .bh-hero-main {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr) !important;
    }

    .bh-brand-home .bh-side-promos {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-rows: auto !important;
    }

    .bh-brand-home .bh-promo-card {
        min-height: 220px !important;
    }
}

@media (max-width: 920px) {
    .bh-brand-home .bh-hero-main {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
        padding: 28px !important;
    }

    .bh-brand-home .bh-hero-content {
        max-width: 100% !important;
    }

    .bh-brand-visual {
        min-height: 390px !important;
    }

    .bh-brand-stage {
        width: 360px !important;
        height: 360px !important;
    }

    .bh-brand-logo-card {
        width: 215px !important;
        height: 215px !important;
    }

    .bh-brand-logo-card img {
        width: 158px !important;
        height: 158px !important;
    }
}

/* MOBILE */
@media (max-width: 640px) {
    .bh-brand-home {
        gap: 16px !important;
    }

    .bh-brand-home .bh-hero-main {
        padding: 22px !important;
        border-radius: 28px !important;
    }

    .bh-brand-home .bh-hero-content h1 {
        font-size: 34px !important;
        line-height: 1.07 !important;
    }

    .bh-brand-home .bh-hero-content p {
        font-size: 14px !important;
        line-height: 1.68 !important;
    }

    .bh-brand-home .bh-hero-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .bh-brand-home .bh-primary-link,
    .bh-brand-home .bh-secondary-link {
        width: 100% !important;
        justify-content: center !important;
        min-height: 48px !important;
        padding: 0 12px !important;
    }

    .bh-brand-home .bh-hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 8px !important;
        margin-top: 20px !important;
    }

    .bh-brand-home .bh-hero-stats div {
        min-height: 68px !important;
        padding: 10px !important;
        border-radius: 20px !important;
    }

    .bh-brand-home .bh-hero-stats strong {
        font-size: 16px !important;
    }

    .bh-brand-home .bh-hero-stats span {
        font-size: 10.5px !important;
    }

    .bh-brand-visual {
        min-height: 330px !important;
    }

    .bh-brand-stage {
        width: 300px !important;
        height: 300px !important;
    }

    .bh-brand-ring.ring-two {
        inset: 54px !important;
    }

    .bh-brand-logo-card {
        width: 178px !important;
        height: 178px !important;
        border-width: 7px !important;
    }

    .bh-brand-logo-card img {
        width: 132px !important;
        height: 132px !important;
    }

    .bh-brand-mini-card {
        min-height: 38px !important;
        padding: 7px 9px !important;
    }

    .bh-brand-mini-card span {
        width: 28px !important;
        height: 28px !important;
    }

    .bh-brand-mini-card strong {
        font-size: 11px !important;
    }

    .bh-brand-mini-card.mini-right {
        right: -4px !important;
    }

    .bh-brand-mini-card.mini-top {
        top: 8px !important;
    }

    .bh-brand-mini-card.mini-bottom {
        bottom: 20px !important;
    }

    .bh-brand-dark-pill {
        bottom: -4px !important;
        width: min(96%, 310px) !important;
        min-height: 58px !important;
    }

    .bh-brand-home .bh-side-promos {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .bh-brand-home .bh-promo-card {
        min-height: 210px !important;
        border-radius: 30px !important;
        padding: 20px !important;
    }

    .bh-brand-home .bh-promo-text {
        margin-top: 18px !important;
    }

    .bh-brand-home .bh-promo-text h2 {
        font-size: 22px !important;
    }
}

@media (max-width: 430px) {
    .bh-brand-home .bh-hero-actions {
        grid-template-columns: 1fr !important;
    }

    .bh-brand-visual {
        min-height: 300px !important;
    }

    .bh-brand-stage {
        width: 270px !important;
        height: 270px !important;
    }

    .bh-brand-logo-card {
        width: 160px !important;
        height: 160px !important;
    }

    .bh-brand-logo-card img {
        width: 120px !important;
        height: 120px !important;
    }

    .bh-brand-mini-card.mini-right {
        display: none !important;
    }

    .bh-brand-mini-card.mini-top,
    .bh-brand-mini-card.mini-bottom {
        transform: translateX(-50%) scale(.92) !important;
    }

    .bh-brand-dark-pill {
        width: 100% !important;
    }
}

/* =========================================================
   HOME CLEAN BRAND HERO - LBAGSTORE
   Ganti bubble menjadi brand showcase card modern.
   Tempel PALING BAWAH public/css/home.css
   ========================================================= */

.bh-clean-home {
    grid-template-columns: minmax(0, 1.42fr) minmax(300px, .64fr) !important;
    gap: 20px !important;
    align-items: stretch !important;
}

.bh-clean-home .bh-hero-main {
    min-height: 500px !important;
    padding: 36px 38px !important;
    border-radius: 34px !important;
    display: grid !important;
    grid-template-columns: minmax(0, .92fr) minmax(360px, .82fr) !important;
    gap: 28px !important;
    align-items: center !important;
    color: #0f172a !important;
    background:
        radial-gradient(circle at 70% 10%, rgba(34, 197, 94, .13), transparent 32%),
        radial-gradient(circle at 85% 92%, rgba(124, 58, 237, .10), transparent 33%),
        radial-gradient(circle at 55% 100%, rgba(59, 130, 246, .10), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .96)) !important;
    border: 1px solid rgba(226, 232, 240, .96) !important;
    box-shadow:
        0 20px 50px rgba(15, 23, 42, .06),
        inset 0 1px 0 rgba(255, 255, 255, .96) !important;
    overflow: hidden !important;
}

.bh-clean-home .bh-hero-main::before {
    content: "" !important;
    position: absolute !important;
    inset: 14px !important;
    border-radius: 27px !important;
    border: 1px solid rgba(255, 255, 255, .78) !important;
    pointer-events: none !important;
}

.bh-clean-home .bh-hero-content {
    position: relative !important;
    z-index: 5 !important;
    max-width: 520px !important;
}

.bh-clean-home .bh-hero-badge {
    width: fit-content !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 13px !important;
    border-radius: 999px !important;
    background: #ecfdf5 !important;
    border: 1px solid #bbf7d0 !important;
    color: #15803d !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    letter-spacing: .55px !important;
}

.bh-clean-home .bh-hero-content h1 {
    margin: 22px 0 16px !important;
    color: #0f172a !important;
    font-size: clamp(38px, 4vw, 58px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.068em !important;
    font-weight: 950 !important;
}

.bh-clean-home .bh-hero-content h1 span {
    display: block !important;
    color: transparent !important;
    background: linear-gradient(90deg, #16a34a, #0284c7, #4f46e5) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

.bh-clean-home .bh-hero-content p {
    max-width: 500px !important;
    margin: 0 !important;
    color: #64748b !important;
    font-size: 15.5px !important;
    line-height: 1.72 !important;
}

.bh-clean-home .bh-hero-actions {
    margin-top: 24px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.bh-clean-home .bh-primary-link,
.bh-clean-home .bh-secondary-link {
    min-height: 46px !important;
    padding: 0 19px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 950 !important;
}

.bh-clean-home .bh-primary-link {
    background: linear-gradient(135deg, #16a34a, #15803d) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 30px rgba(22, 163, 74, .24) !important;
}

.bh-clean-home .bh-secondary-link {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .045) !important;
}

.bh-clean-home .bh-hero-stats {
    margin-top: 28px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    max-width: 430px !important;
}

.bh-clean-home .bh-hero-stats div {
    min-height: 70px !important;
    padding: 11px 13px !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, .82) !important;
    border: 1px solid rgba(226, 232, 240, .94) !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .035) !important;
}

.bh-clean-home .bh-hero-stats strong {
    display: block !important;
    color: #0f172a !important;
    font-size: 18px !important;
    line-height: 1.1 !important;
    font-weight: 950 !important;
}

.bh-clean-home .bh-hero-stats span {
    display: block !important;
    margin-top: 5px !important;
    color: #64748b !important;
    font-size: 11px !important;
    font-weight: 850 !important;
}

/* Brand showcase baru, bukan bubble */
.bh-brand-showcase {
    position: relative !important;
    z-index: 4 !important;
    min-height: 420px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.bh-brand-board {
    position: relative !important;
    width: min(100%, 390px) !important;
    padding: 20px !important;
    border-radius: 34px !important;
    background:
        radial-gradient(circle at top right, rgba(34, 197, 94, .13), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(248, 250, 252, .86)) !important;
    border: 1px solid rgba(226, 232, 240, .96) !important;
    box-shadow:
        0 28px 70px rgba(15, 23, 42, .10),
        inset 0 1px 0 rgba(255, 255, 255, .96) !important;
    backdrop-filter: blur(18px) !important;
    overflow: hidden !important;
}

.bh-brand-board::before {
    content: "" !important;
    position: absolute !important;
    width: 180px !important;
    height: 180px !important;
    right: -70px !important;
    top: -70px !important;
    border-radius: 999px !important;
    background: rgba(34, 197, 94, .14) !important;
}

.bh-brand-board::after {
    content: "" !important;
    position: absolute !important;
    width: 160px !important;
    height: 160px !important;
    left: -70px !important;
    bottom: -70px !important;
    border-radius: 999px !important;
    background: rgba(59, 130, 246, .10) !important;
}

.bh-brand-board-top {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    justify-content: space-between !important;
    gap: 12px !important;
    align-items: center !important;
    margin-bottom: 16px !important;
}

.bh-brand-board-top span {
    color: #15803d !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.bh-brand-board-top strong {
    min-height: 30px !important;
    padding: 0 11px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    color: #166534 !important;
    background: #dcfce7 !important;
    font-size: 11px !important;
    font-weight: 950 !important;
}

.bh-brand-logo-frame {
    position: relative !important;
    z-index: 2 !important;
    min-height: 190px !important;
    border-radius: 28px !important;
    display: grid !important;
    place-items: center !important;
    background:
        radial-gradient(circle at center, #ffffff 0%, #ffffff 42%, #ecfdf5 100%) !important;
    border: 1px solid rgba(226, 232, 240, .96) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96) !important;
}

.bh-brand-logo-frame img {
    width: min(72%, 210px) !important;
    height: 150px !important;
    object-fit: contain !important;
    display: block !important;
}

.bh-brand-board-copy {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 16px !important;
}

.bh-brand-board-copy strong {
    display: block !important;
    color: #0f172a !important;
    font-size: 24px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.04em !important;
    font-weight: 950 !important;
}

.bh-brand-board-copy p {
    margin: 7px 0 0 !important;
    color: #64748b !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
}

.bh-brand-feature-row {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 15px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.bh-brand-feature-row div {
    min-width: 0 !important;
    padding: 10px 8px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, .78) !important;
    border: 1px solid rgba(226, 232, 240, .9) !important;
    text-align: center !important;
}

.bh-brand-feature-row span {
    display: block !important;
    font-size: 19px !important;
    margin-bottom: 6px !important;
}

.bh-brand-feature-row strong {
    display: block !important;
    color: #0f172a !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.bh-brand-feature-row small {
    display: block !important;
    margin-top: 3px !important;
    color: #64748b !important;
    font-size: 9.5px !important;
    font-weight: 800 !important;
}

.bh-brand-cta {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 15px !important;
    min-height: 62px !important;
    padding: 9px 10px !important;
    border-radius: 999px !important;
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) 32px !important;
    gap: 10px !important;
    align-items: center !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    text-decoration: none !important;
    box-shadow: 0 18px 36px rgba(15, 23, 42, .16) !important;
}

.bh-brand-cta > span {
    width: 42px !important;
    height: 42px !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    background: rgba(255, 255, 255, .12) !important;
}

.bh-brand-cta strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 950 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.bh-brand-cta small {
    display: block !important;
    margin-top: 2px !important;
    color: #bbf7d0 !important;
    font-size: 10.5px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.bh-brand-cta b {
    width: 32px !important;
    height: 32px !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    background: rgba(255, 255, 255, .12) !important;
}

/* Promo kanan dibuat compact */
.bh-clean-home .bh-side-promos {
    display: grid !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 18px !important;
}

.bh-clean-home .bh-promo-card {
    min-height: 0 !important;
    padding: 24px !important;
    border-radius: 36px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    color: #0f172a !important;
    text-decoration: none !important;
    border: 1px solid rgba(226, 232, 240, .94) !important;
    box-shadow:
        0 16px 38px rgba(15, 23, 42, .055),
        inset 0 1px 0 rgba(255, 255, 255, .88) !important;
    overflow: hidden !important;
}

.bh-clean-home .promo-fresh {
    background:
        radial-gradient(circle at 90% 78%, rgba(255, 255, 255, .60), transparent 30%),
        linear-gradient(135deg, #ecfdf5 0%, #bbf7d0 100%) !important;
}

.bh-clean-home .promo-soft {
    background:
        radial-gradient(circle at 90% 78%, rgba(255, 255, 255, .60), transparent 30%),
        linear-gradient(135deg, #f5f3ff 0%, #ddd6fe 100%) !important;
}

.bh-clean-home .bh-promo-shape {
    width: 56px !important;
    height: 56px !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    background: rgba(255, 255, 255, .78) !important;
    box-shadow: 0 16px 30px rgba(15, 23, 42, .06) !important;
}

.bh-clean-home .bh-promo-shape span {
    font-size: 26px !important;
}

.bh-clean-home .bh-promo-text {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 22px !important;
}

.bh-clean-home .bh-promo-text small {
    display: block !important;
    color: #15803d !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.bh-clean-home .promo-soft .bh-promo-text small {
    color: #6d28d9 !important;
}

.bh-clean-home .bh-promo-text h2 {
    margin: 7px 0 8px !important;
    color: #0f172a !important;
    font-size: 24px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.05em !important;
    font-weight: 950 !important;
}

.bh-clean-home .bh-promo-text p {
    max-width: 270px !important;
    margin: 0 !important;
    color: #475569 !important;
    line-height: 1.55 !important;
    font-size: 13.5px !important;
}

.bh-clean-home .bh-promo-card > strong {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 20px !important;
    color: #15803d !important;
    font-size: 12.5px !important;
    font-weight: 950 !important;
}

.bh-clean-home .promo-soft > strong {
    color: #6d28d9 !important;
}

/* Tablet */
@media (max-width: 1180px) {
    .bh-clean-home {
        grid-template-columns: 1fr !important;
    }

    .bh-clean-home .bh-hero-main {
        grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr) !important;
    }

    .bh-clean-home .bh-side-promos {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-rows: auto !important;
    }

    .bh-clean-home .bh-promo-card {
        min-height: 220px !important;
    }
}

@media (max-width: 900px) {
    .bh-clean-home .bh-hero-main {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
        padding: 28px !important;
    }

    .bh-clean-home .bh-hero-content {
        max-width: 100% !important;
    }

    .bh-brand-showcase {
        min-height: auto !important;
        margin-top: 6px !important;
    }

    .bh-brand-board {
        width: min(100%, 460px) !important;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .bh-clean-home {
        gap: 16px !important;
    }

    .bh-clean-home .bh-hero-main {
        padding: 22px !important;
        border-radius: 28px !important;
    }

    .bh-clean-home .bh-hero-content h1 {
        font-size: 33px !important;
        line-height: 1.08 !important;
    }

    .bh-clean-home .bh-hero-content p {
        font-size: 14px !important;
        line-height: 1.68 !important;
    }

    .bh-clean-home .bh-hero-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .bh-clean-home .bh-primary-link,
    .bh-clean-home .bh-secondary-link {
        width: 100% !important;
        justify-content: center !important;
    }

    .bh-clean-home .bh-hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 8px !important;
        margin-top: 20px !important;
    }

    .bh-clean-home .bh-hero-stats div {
        min-height: 66px !important;
        padding: 10px !important;
        border-radius: 18px !important;
    }

    .bh-clean-home .bh-hero-stats strong {
        font-size: 16px !important;
    }

    .bh-clean-home .bh-hero-stats span {
        font-size: 10.5px !important;
    }

    .bh-brand-board {
        padding: 16px !important;
        border-radius: 28px !important;
    }

    .bh-brand-logo-frame {
        min-height: 160px !important;
        border-radius: 24px !important;
    }

    .bh-brand-logo-frame img {
        width: min(72%, 180px) !important;
        height: 120px !important;
    }

    .bh-brand-board-copy strong {
        font-size: 22px !important;
    }

    .bh-brand-feature-row {
        grid-template-columns: 1fr !important;
    }

    .bh-brand-feature-row div {
        display: grid !important;
        grid-template-columns: 32px minmax(0, 1fr) !important;
        text-align: left !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .bh-brand-feature-row span {
        margin-bottom: 0 !important;
    }

    .bh-brand-feature-row small {
        display: none !important;
    }

    .bh-clean-home .bh-side-promos {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .bh-clean-home .bh-promo-card {
        min-height: 200px !important;
        padding: 20px !important;
        border-radius: 28px !important;
    }
}

@media (max-width: 430px) {
    .bh-clean-home .bh-hero-actions {
        grid-template-columns: 1fr !important;
    }

    .bh-clean-home .bh-hero-stats {
        grid-template-columns: 1fr !important;
    }

    .bh-brand-cta {
        grid-template-columns: 38px minmax(0, 1fr) 30px !important;
    }

    .bh-brand-cta > span {
        width: 38px !important;
        height: 38px !important;
    }
}

/* =========================================================
   HOME HERO SIMPLE LOGO ONLY - LBAGSTORE
   Final: hanya logo, tanpa bubble, tanpa card, tanpa tulisan.
   Tempel PALING BAWAH public/css/home.css
   ========================================================= */

.bh-simple-logo-home {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .68fr) !important;
    gap: 20px !important;
    align-items: stretch !important;
}

.bh-simple-logo-home .bh-hero-main {
    min-height: 460px !important;
    padding: 38px 40px !important;
    border-radius: 34px !important;
    display: grid !important;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .78fr) !important;
    gap: 26px !important;
    align-items: center !important;
    color: #0f172a !important;
    background:
        radial-gradient(circle at 72% 18%, rgba(34, 197, 94, .13), transparent 30%),
        radial-gradient(circle at 84% 84%, rgba(124, 58, 237, .09), transparent 32%),
        radial-gradient(circle at 55% 90%, rgba(59, 130, 246, .09), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .96)) !important;
    border: 1px solid rgba(226, 232, 240, .96) !important;
    box-shadow:
        0 20px 50px rgba(15, 23, 42, .06),
        inset 0 1px 0 rgba(255, 255, 255, .96) !important;
    overflow: hidden !important;
}

.bh-simple-logo-home .bh-hero-main::before {
    content: "" !important;
    position: absolute !important;
    inset: 14px !important;
    border-radius: 27px !important;
    border: 1px solid rgba(255, 255, 255, .80) !important;
    pointer-events: none !important;
}

.bh-simple-logo-home .bh-hero-content {
    position: relative !important;
    z-index: 4 !important;
    max-width: 520px !important;
}

.bh-simple-logo-home .bh-hero-badge {
    width: fit-content !important;
    padding: 8px 13px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #ecfdf5 !important;
    border: 1px solid #bbf7d0 !important;
    color: #15803d !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    letter-spacing: .55px !important;
}

.bh-simple-logo-home .bh-hero-content h1 {
    margin: 22px 0 16px !important;
    color: #0f172a !important;
    font-size: clamp(38px, 4vw, 58px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.068em !important;
    font-weight: 950 !important;
}

.bh-simple-logo-home .bh-hero-content h1 span {
    display: block !important;
    color: transparent !important;
    background: linear-gradient(90deg, #16a34a, #0284c7, #4f46e5) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

.bh-simple-logo-home .bh-hero-content p {
    max-width: 500px !important;
    margin: 0 !important;
    color: #64748b !important;
    font-size: 15.5px !important;
    line-height: 1.72 !important;
}

.bh-simple-logo-home .bh-hero-actions {
    margin-top: 24px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.bh-simple-logo-home .bh-primary-link,
.bh-simple-logo-home .bh-secondary-link {
    min-height: 46px !important;
    padding: 0 19px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 950 !important;
}

.bh-simple-logo-home .bh-primary-link {
    background: linear-gradient(135deg, #16a34a, #15803d) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 30px rgba(22, 163, 74, .24) !important;
}

.bh-simple-logo-home .bh-secondary-link {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .045) !important;
}

.bh-simple-logo-home .bh-hero-stats {
    margin-top: 28px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    max-width: 430px !important;
}

.bh-simple-logo-home .bh-hero-stats div {
    min-height: 70px !important;
    padding: 11px 13px !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, .82) !important;
    border: 1px solid rgba(226, 232, 240, .94) !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .035) !important;
}

.bh-simple-logo-home .bh-hero-stats strong {
    display: block !important;
    color: #0f172a !important;
    font-size: 18px !important;
    line-height: 1.1 !important;
    font-weight: 950 !important;
}

.bh-simple-logo-home .bh-hero-stats span {
    display: block !important;
    margin-top: 5px !important;
    color: #64748b !important;
    font-size: 11px !important;
    font-weight: 850 !important;
}

/* LOGO ONLY */
.bh-logo-only-visual {
    position: relative !important;
    z-index: 4 !important;
    min-height: 330px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.bh-logo-only-visual::before {
    content: "" !important;
    position: absolute !important;
    width: 330px !important;
    height: 330px !important;
    border-radius: 999px !important;
    background:
        radial-gradient(circle, rgba(255, 255, 255, .72) 0%, rgba(236, 253, 245, .45) 52%, transparent 72%) !important;
    filter: blur(0px) !important;
    z-index: 1 !important;
}

.bh-logo-only-visual::after {
    content: "" !important;
    position: absolute !important;
    width: 410px !important;
    height: 410px !important;
    border-radius: 999px !important;
    background:
        radial-gradient(circle at 35% 30%, rgba(34, 197, 94, .15), transparent 34%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, .12), transparent 32%),
        radial-gradient(circle at 62% 78%, rgba(124, 58, 237, .10), transparent 30%) !important;
    z-index: 0 !important;
}

.bh-logo-only-visual img {
    position: relative !important;
    z-index: 3 !important;
    width: min(82%, 310px) !important;
    max-width: 310px !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    filter: drop-shadow(0 24px 34px rgba(15, 23, 42, .10)) !important;
}

/* Promo kanan tetap compact */
.bh-simple-logo-home .bh-side-promos {
    display: grid !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 18px !important;
}

.bh-simple-logo-home .bh-promo-card {
    min-height: 0 !important;
    padding: 24px !important;
    border-radius: 36px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    color: #0f172a !important;
    text-decoration: none !important;
    border: 1px solid rgba(226, 232, 240, .94) !important;
    box-shadow:
        0 16px 38px rgba(15, 23, 42, .055),
        inset 0 1px 0 rgba(255, 255, 255, .88) !important;
    overflow: hidden !important;
}

.bh-simple-logo-home .promo-fresh {
    background:
        radial-gradient(circle at 90% 78%, rgba(255, 255, 255, .60), transparent 30%),
        linear-gradient(135deg, #ecfdf5 0%, #bbf7d0 100%) !important;
}

.bh-simple-logo-home .promo-soft {
    background:
        radial-gradient(circle at 90% 78%, rgba(255, 255, 255, .60), transparent 30%),
        linear-gradient(135deg, #f5f3ff 0%, #ddd6fe 100%) !important;
}

.bh-simple-logo-home .bh-promo-shape {
    width: 56px !important;
    height: 56px !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    background: rgba(255, 255, 255, .78) !important;
    box-shadow: 0 16px 30px rgba(15, 23, 42, .06) !important;
}

.bh-simple-logo-home .bh-promo-shape span {
    font-size: 26px !important;
}

.bh-simple-logo-home .bh-promo-text {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 22px !important;
}

.bh-simple-logo-home .bh-promo-text small {
    display: block !important;
    color: #15803d !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.bh-simple-logo-home .promo-soft .bh-promo-text small {
    color: #6d28d9 !important;
}

.bh-simple-logo-home .bh-promo-text h2 {
    margin: 7px 0 8px !important;
    color: #0f172a !important;
    font-size: 24px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.05em !important;
    font-weight: 950 !important;
}

.bh-simple-logo-home .bh-promo-text p {
    max-width: 270px !important;
    margin: 0 !important;
    color: #475569 !important;
    line-height: 1.55 !important;
    font-size: 13.5px !important;
}

.bh-simple-logo-home .bh-promo-card > strong {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 20px !important;
    color: #15803d !important;
    font-size: 12.5px !important;
    font-weight: 950 !important;
}

.bh-simple-logo-home .promo-soft > strong {
    color: #6d28d9 !important;
}

/* Tablet */
@media (max-width: 1180px) {
    .bh-simple-logo-home {
        grid-template-columns: 1fr !important;
    }

    .bh-simple-logo-home .bh-hero-main {
        grid-template-columns: minmax(0, 1fr) minmax(280px, .76fr) !important;
    }

    .bh-simple-logo-home .bh-side-promos {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-rows: auto !important;
    }

    .bh-simple-logo-home .bh-promo-card {
        min-height: 220px !important;
    }
}

@media (max-width: 900px) {
    .bh-simple-logo-home .bh-hero-main {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
        padding: 28px !important;
    }

    .bh-simple-logo-home .bh-hero-content {
        max-width: 100% !important;
    }

    .bh-logo-only-visual {
        min-height: 280px !important;
    }

    .bh-logo-only-visual::before {
        width: 280px !important;
        height: 280px !important;
    }

    .bh-logo-only-visual::after {
        width: 340px !important;
        height: 340px !important;
    }

    .bh-logo-only-visual img {
        width: min(76%, 260px) !important;
        max-width: 260px !important;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .bh-simple-logo-home {
        gap: 16px !important;
    }

    .bh-simple-logo-home .bh-hero-main {
        padding: 22px !important;
        border-radius: 28px !important;
    }

    .bh-simple-logo-home .bh-hero-content h1 {
        font-size: 33px !important;
        line-height: 1.08 !important;
    }

    .bh-simple-logo-home .bh-hero-content p {
        font-size: 14px !important;
        line-height: 1.68 !important;
    }

    .bh-simple-logo-home .bh-hero-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .bh-simple-logo-home .bh-primary-link,
    .bh-simple-logo-home .bh-secondary-link {
        width: 100% !important;
        justify-content: center !important;
    }

    .bh-simple-logo-home .bh-hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 8px !important;
        margin-top: 20px !important;
    }

    .bh-simple-logo-home .bh-hero-stats div {
        min-height: 66px !important;
        padding: 10px !important;
        border-radius: 18px !important;
    }

    .bh-simple-logo-home .bh-hero-stats strong {
        font-size: 16px !important;
    }

    .bh-simple-logo-home .bh-hero-stats span {
        font-size: 10.5px !important;
    }

    .bh-logo-only-visual {
        min-height: 230px !important;
    }

    .bh-logo-only-visual::before {
        width: 230px !important;
        height: 230px !important;
    }

    .bh-logo-only-visual::after {
        width: 290px !important;
        height: 290px !important;
    }

    .bh-logo-only-visual img {
        width: min(78%, 220px) !important;
        max-width: 220px !important;
    }

    .bh-simple-logo-home .bh-side-promos {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .bh-simple-logo-home .bh-promo-card {
        min-height: 200px !important;
        padding: 20px !important;
        border-radius: 28px !important;
    }
}

@media (max-width: 430px) {
    .bh-simple-logo-home .bh-hero-actions {
        grid-template-columns: 1fr !important;
    }

    .bh-simple-logo-home .bh-hero-stats {
        grid-template-columns: 1fr !important;
    }

    .bh-logo-only-visual {
        min-height: 205px !important;
    }

    .bh-logo-only-visual::before {
        width: 205px !important;
        height: 205px !important;
    }

    .bh-logo-only-visual::after {
        width: 245px !important;
        height: 245px !important;
    }

    .bh-logo-only-visual img {
        width: min(82%, 190px) !important;
        max-width: 190px !important;
    }
}

/* =========================================================
   HOME HERO LOGO ROUND FIX - LBAGSTORE
   Final: logo bulat, tanpa teks/card, tidak kaku.
   Tempel PALING BAWAH public/css/home.css
   ========================================================= */

.bh-simple-logo-home .bh-logo-only-visual {
    position: relative !important;
    z-index: 4 !important;
    min-height: 360px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    isolation: isolate !important;
}

/* matikan efek logo lama */
.bh-simple-logo-home .bh-logo-only-visual::before,
.bh-simple-logo-home .bh-logo-only-visual::after {
    display: none !important;
    content: none !important;
}

/* background lembut supaya logo tidak kaku */
.bh-simple-logo-home .bh-logo-only-visual .bh-logo-orbit {
    position: absolute !important;
    border-radius: 999px !important;
    pointer-events: none !important;
}

.bh-simple-logo-home .bh-logo-only-visual .bh-logo-orbit.one {
    width: 360px !important;
    height: 360px !important;
    background:
        radial-gradient(circle at 35% 28%, rgba(34, 197, 94, .18), transparent 36%),
        radial-gradient(circle at 78% 78%, rgba(59, 130, 246, .13), transparent 34%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .76), rgba(236, 253, 245, .36) 56%, transparent 72%) !important;
    filter: blur(.2px) !important;
    z-index: 0 !important;
}

.bh-simple-logo-home .bh-logo-only-visual .bh-logo-orbit.two {
    width: 280px !important;
    height: 280px !important;
    border: 1px solid rgba(34, 197, 94, .18) !important;
    background: rgba(255, 255, 255, .26) !important;
    box-shadow:
        inset 0 0 70px rgba(34, 197, 94, .08),
        0 22px 60px rgba(15, 23, 42, .045) !important;
    z-index: 1 !important;
}

/* logo bulat */
.bh-simple-logo-home .bh-logo-round {
    position: relative !important;
    z-index: 4 !important;

    width: 255px !important;
    height: 255px !important;
    border-radius: 999px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 1), rgba(255, 255, 255, .92) 58%, rgba(236, 253, 245, .82) 100%) !important;

    border: 10px solid rgba(255, 255, 255, .95) !important;

    box-shadow:
        0 28px 60px rgba(15, 23, 42, .13),
        0 0 0 1px rgba(226, 232, 240, .72),
        inset 0 1px 0 rgba(255, 255, 255, .98) !important;

    overflow: hidden !important;
}

.bh-simple-logo-home .bh-logo-round::before {
    content: "" !important;
    position: absolute !important;
    inset: 16px !important;
    border-radius: 999px !important;
    border: 1px dashed rgba(22, 163, 74, .22) !important;
    pointer-events: none !important;
}

.bh-simple-logo-home .bh-logo-round::after {
    content: "" !important;
    position: absolute !important;
    top: 26px !important;
    left: 34px !important;
    width: 92px !important;
    height: 38px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .68) !important;
    filter: blur(8px) !important;
    transform: rotate(-18deg) !important;
    pointer-events: none !important;
}

.bh-simple-logo-home .bh-logo-round img {
    position: relative !important;
    z-index: 3 !important;

    width: 178px !important;
    height: 178px !important;

    object-fit: contain !important;
    display: block !important;

    border-radius: 0 !important;
    background: transparent !important;

    filter: drop-shadow(0 12px 18px rgba(15, 23, 42, .10)) !important;
}

/* icon kecil dekoratif, tanpa teks */
.bh-simple-logo-home .bh-logo-dot {
    position: absolute !important;
    z-index: 5 !important;

    width: 54px !important;
    height: 54px !important;
    border-radius: 20px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(255, 255, 255, .88) !important;
    border: 1px solid rgba(226, 232, 240, .92) !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .10) !important;
    backdrop-filter: blur(12px) !important;

    font-size: 24px !important;
}

.bh-simple-logo-home .bh-logo-dot.dot-one {
    top: 42px !important;
    right: 78px !important;
}

.bh-simple-logo-home .bh-logo-dot.dot-two {
    bottom: 58px !important;
    right: 46px !important;
}

.bh-simple-logo-home .bh-logo-dot.dot-three {
    bottom: 76px !important;
    left: 70px !important;
}

/* pastikan gambar langsung lama tidak ikut */
.bh-simple-logo-home .bh-logo-only-visual > img {
    display: none !important;
}

/* Promo kanan tetap tidak kebesaran */
.bh-simple-logo-home .bh-side-promos {
    display: grid !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 18px !important;
}

.bh-simple-logo-home .bh-promo-card {
    min-height: 0 !important;
    padding: 24px !important;
    border-radius: 36px !important;
}

/* Tablet */
@media (max-width: 900px) {
    .bh-simple-logo-home .bh-logo-only-visual {
        min-height: 300px !important;
    }

    .bh-simple-logo-home .bh-logo-only-visual .bh-logo-orbit.one {
        width: 310px !important;
        height: 310px !important;
    }

    .bh-simple-logo-home .bh-logo-only-visual .bh-logo-orbit.two {
        width: 240px !important;
        height: 240px !important;
    }

    .bh-simple-logo-home .bh-logo-round {
        width: 220px !important;
        height: 220px !important;
        border-width: 8px !important;
    }

    .bh-simple-logo-home .bh-logo-round img {
        width: 154px !important;
        height: 154px !important;
    }

    .bh-simple-logo-home .bh-logo-dot {
        width: 46px !important;
        height: 46px !important;
        border-radius: 17px !important;
        font-size: 21px !important;
    }

    .bh-simple-logo-home .bh-logo-dot.dot-one {
        top: 30px !important;
        right: 70px !important;
    }

    .bh-simple-logo-home .bh-logo-dot.dot-two {
        bottom: 42px !important;
        right: 54px !important;
    }

    .bh-simple-logo-home .bh-logo-dot.dot-three {
        bottom: 58px !important;
        left: 74px !important;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .bh-simple-logo-home .bh-logo-only-visual {
        min-height: 245px !important;
        margin-top: 4px !important;
    }

    .bh-simple-logo-home .bh-logo-only-visual .bh-logo-orbit.one {
        width: 250px !important;
        height: 250px !important;
    }

    .bh-simple-logo-home .bh-logo-only-visual .bh-logo-orbit.two {
        width: 198px !important;
        height: 198px !important;
    }

    .bh-simple-logo-home .bh-logo-round {
        width: 180px !important;
        height: 180px !important;
        border-width: 7px !important;
    }

    .bh-simple-logo-home .bh-logo-round::before {
        inset: 12px !important;
    }

    .bh-simple-logo-home .bh-logo-round img {
        width: 126px !important;
        height: 126px !important;
    }

    .bh-simple-logo-home .bh-logo-dot {
        width: 38px !important;
        height: 38px !important;
        border-radius: 15px !important;
        font-size: 18px !important;
    }

    .bh-simple-logo-home .bh-logo-dot.dot-one {
        top: 18px !important;
        right: 48px !important;
    }

    .bh-simple-logo-home .bh-logo-dot.dot-two {
        bottom: 28px !important;
        right: 40px !important;
    }

    .bh-simple-logo-home .bh-logo-dot.dot-three {
        bottom: 42px !important;
        left: 46px !important;
    }
}

@media (max-width: 430px) {
    .bh-simple-logo-home .bh-logo-only-visual {
        min-height: 215px !important;
    }

    .bh-simple-logo-home .bh-logo-only-visual .bh-logo-orbit.one {
        width: 218px !important;
        height: 218px !important;
    }

    .bh-simple-logo-home .bh-logo-only-visual .bh-logo-orbit.two {
        width: 170px !important;
        height: 170px !important;
    }

    .bh-simple-logo-home .bh-logo-round {
        width: 155px !important;
        height: 155px !important;
    }

    .bh-simple-logo-home .bh-logo-round img {
        width: 110px !important;
        height: 110px !important;
    }

    .bh-simple-logo-home .bh-logo-dot.dot-three {
        display: none !important;
    }
}