/* =========================================================
   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;
    }
}