html, body { overscroll-behavior-y: none; }

.bu-marquee {
    position: relative;
    top: auto;
    transform: none;
    transition: none;
    width: 100%;
    height: var(--bu-marquee-h, 40px);
    z-index: 900;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--bu-marquee-bg, var(--bu-brand));
    color: var(--bu-marquee-color, var(--bu-ink));
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.15em;
}

.bu-marquee__track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: bu-marquee-scroll var(--bu-marquee-duration, 18s) linear infinite;
    will-change: transform;
}

.bu-marquee__msg { padding: 0 24px; flex-shrink: 0; }
.bu-marquee__sep { opacity: 0.5; flex-shrink: 0; }

a.bu-marquee,
a.bu-marquee:hover,
a.bu-marquee:focus,
a.bu-marquee:visited {
    color: var(--bu-marquee-color, var(--bu-ink));
    text-decoration: none;
    cursor: pointer;
}
a.bu-marquee:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -3px;
}

@keyframes bu-marquee-scroll {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@media (min-width: 640px) { .bu-marquee { font-size: 14px; } }

.bu-header.rey-siteHeader {
    position: relative;
    top: auto;
    transform: none;
    transition: none;
    z-index: 850;
    background: rgba(254, 253, 251, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--bu-border);
}

.bu-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
    height: var(--bu-header-h, 56px);
    max-width: 1480px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .bu-header__inner { padding: 0 40px 0 24px; }
}

.bu-header__mobile-left {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
    margin-left: -8px;
}
.bu-header__desktop-left {
    display: none;
    align-items: center;
    gap: 40px;
}
@media (min-width: 1024px) {
    .bu-header__mobile-left  { display: none; }
    .bu-header__desktop-left { display: flex; }
}

.bu-header .bu-header__hamburger {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    width: 40px; height: 40px;
    background: none; border: none;
    cursor: pointer;
    color: var(--bu-foreground);
}
.bu-header__hamburger > span {
    display: block;
    width: 20px; height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.bu-header__logo {
    display: flex;
    align-items: center;
    line-height: 1;
}
.bu-header__logo .custom-logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.bu-header__logo img.custom-logo {
    height: auto;
    width: auto;
    max-height: 42px;
    max-width: 120px;
}
@media (min-width: 1024px) {
    .bu-header__logo img.custom-logo { max-width: 150px; }
}
.bu-header__logo-text {
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: inherit;
    text-decoration: none;
}
.bu-header__logo-text > span { color: var(--bu-brand); }

.bu-nav {
    display: flex; align-items: center;
    gap: 28px;
    margin: 0; padding: 0;
    list-style: none;
    font-size: 14px;
}
.bu-nav a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.bu-nav a:hover { color: var(--bu-brand); }

.bu-header__right {
    display: flex; align-items: center;
    gap: 2px;
    height: 40px;
}
@media (min-width: 1024px) { .bu-header__right { gap: 8px; } }

.bu-search {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bu-muted);
    border: 1px solid var(--bu-border);
    border-radius: 999px;
    padding: 4px;
    height: 46px;
    box-sizing: border-box;
}

.bu-search__cat {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    height: 100%;
    padding: 0 8px 0 14px;
    border-radius: 999px;
    background: rgba(24, 20, 16, 0.06);
    color: var(--bu-ink);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}
.bu-search__cat:hover { background: rgba(24, 20, 16, 0.1); }
.bu-search__select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border: none;
    background: transparent;
    opacity: 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
.bu-search[data-enhanced] .bu-search__select { pointer-events: none; }
.bu-search__cat-label { pointer-events: none; }
.bu-search__caret {
    width: 14px; height: 14px;
    flex-shrink: 0;
    pointer-events: none;
    opacity: 0.7;
    transition: transform 0.2s;
}
.bu-search__cat[aria-expanded="true"] .bu-search__caret { transform: rotate(180deg); }

.bu-search__input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    outline: none;
    font: inherit;
    color: var(--bu-ink);
    padding: 0 12px;
}
.bu-search__input::placeholder { color: var(--bu-muted-foreground); opacity: 1; }

.bu-search__btn {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 999px;
    background: var(--bu-brand);
    color: var(--bu-brand-foreground);
    cursor: pointer;
    transition: background 0.2s;
}
.bu-search__btn:hover { background: var(--bu-brand-hover); }
.bu-search__btn-icon { width: 18px; height: 18px; }

.bu-search__cat-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 60;
    min-width: 180px;
    max-height: 320px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid var(--bu-border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 4px;
    list-style: none;
    margin: 0;
}
.bu-search__cat-panel[hidden] { display: none; }
.bu-search__cat-option {
    padding: 8px 14px;
    font-size: 14px;
    color: var(--bu-ink);
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
}
.bu-search__cat-option:hover,
.bu-search__cat-option.is-active { background: rgba(24, 20, 16, 0.06); }
.bu-search__cat-option[aria-selected="true"] { font-weight: 700; }

.bu-search__predict {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 55;
    background: #ffffff;
    border: 1px solid var(--bu-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
    padding: 6px;
    max-height: 62vh;
    overflow-y: auto;
}
.bu-search__predict[hidden] { display: none; }
.bu-predict__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--bu-ink);
}
.bu-predict__item:hover,
.bu-predict__item.is-active { background: var(--bu-muted); }
.bu-predict__thumb {
    width: 48px; height: 48px;
    flex-shrink: 0;
    border-radius: 6px;
    object-fit: cover;
    background: var(--bu-muted);
}
.bu-predict__info { min-width: 0; }
.bu-predict__title {
    font-size: 14px;
    line-height: 1.3;
    margin: 0 0 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bu-predict__price { font-size: 13px; font-weight: 600; color: var(--bu-brand-pdp); }
.bu-predict__price del { color: var(--bu-muted-foreground); font-weight: 400; margin-right: 6px; }
.bu-predict__empty,
.bu-predict__loading {
    padding: 16px;
    text-align: center;
    font-size: 14px;
    color: var(--bu-muted-foreground);
}
.bu-predict__all {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--bu-brand);
    text-decoration: none;
    border-top: 1px solid var(--bu-border);
    margin-top: 4px;
}

.bu-search--desktop {
    display: none;
    width: 380px;
    margin-right: 8px;
    font-size: 14px;
}
.bu-search--mobile {
    display: flex;
    margin: 0 16px 12px;
    height: 52px;
    font-size: 16px;
}
@media (min-width: 1024px) {
    .bu-search--desktop { display: flex; }
    .bu-search--mobile  { display: none; }
}

@media (max-width: 1023px) {
    .bu-search__input,
    .bu-search__select { font-size: 16px !important; }
}

.bu-header__currency {
    display: inline-flex;
    align-items: center;
    height: 40px;
    min-width: 60px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}
@media (min-width: 640px) { .bu-header__currency { font-size: 12px; } }

.bu-header .bu-header__currency .yay-currency-single-page-switcher {
    margin-bottom: 0;
}
.bu-header .bu-header__currency .yay-currency-custom-select__trigger {
    height: 40px;
    align-self: center;
    background: transparent;
    border: none;
    padding: 0 4px;
    gap: 6px;
    color: inherit;
    line-height: 1;
}
.bu-header .bu-header__currency .yay-currency-custom-select__trigger:hover {
    border: none;
    color: var(--bu-brand);
}
.bu-header .bu-header__currency .yay-currency-custom-select__trigger .yay-currency-selected-option {
    font-size: 12px;
    font-weight: 500;
}
.bu-header__currency .yay-currency-flag {
    min-width: 24px;
    min-height: 18px;
}
.bu-header__currency .yay-currency-custom-arrow,
.bu-header__currency .yay-currency-custom-arrow .yay-currency-arrow-icon {
    width: 14px;
    height: 14px;
}
.bu-header__currency img {
    height: 24px;
    width: auto;
    display: block;
}

.bu-header__icon-btn {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.bu-header__icon-btn:hover { color: var(--bu-brand); }
.bu-header__icon-btn svg { width: 24px; height: 24px; }

.bu-header__cart.rey-headerCart-wrapper {
    position: relative;
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
}
.bu-header__cart .rey-headerCart {
    display: grid;
    place-items: center;
    width: 100%; height: 100%;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.bu-header__cart .rey-headerCart:hover { color: var(--bu-brand); }
.bu-header__cart .rey-headerIcon-icon svg { width: 24px; height: 24px; display: block; }

.bu-header__cart .rey-headerIcon-counter {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--bu-brand);
    color: var(--bu-brand-foreground);
    font-size: 10px;
    font-weight: 600;
    display: grid;
    place-items: center;
    pointer-events: none;
    line-height: 1;
}
.bu-header__cart .__cart-count {
    display: inline-block;
    line-height: 1;
}
.bu-header__cart[data-rey-cart-count="0"] .rey-headerIcon-counter {
    display: none;
}

.bu-drawer {
    position: fixed;
    inset: 0;
    z-index: 1060;
    background: var(--bu-background);
    color: var(--bu-foreground);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    overflow: auto;
    display: flex;
    flex-direction: column;
}
.bu-drawer[aria-hidden="false"] { transform: translateX(0); }
@media (min-width: 1024px) { .bu-drawer { display: none !important; } }

.bu-drawer__inner {
    display: flex; flex-direction: column;
    height: 100%;
    padding: 20px 30px;
}
.bu-drawer__head {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.bu-drawer__logo { display: inline-flex; align-items: center; }
.bu-drawer__logo .custom-logo-link { display: inline-flex; align-items: center; }
.bu-drawer__logo img.custom-logo {
    height: auto; width: auto;
    max-height: 42px; max-width: 49px;
}

.bu-drawer__close {
    position: absolute;
    top: 0; right: 0;
    display: grid; place-items: center;
    width: 40px; height: 40px;
    background: none; border: none;
    cursor: pointer;
    color: inherit;
}
.bu-drawer__close:hover { color: var(--bu-brand); }
.bu-drawer__close svg { width: 16px; height: 16px; }

.bu-drawer__body { flex: 1; overflow-y: auto; }
.bu-drawer__nav { list-style: none; margin: 0; padding: 0; }
.bu-drawer__nav a {
    display: block;
    padding: 6px 0;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    color: inherit;
    text-decoration: none;
}
.bu-drawer__nav a:hover { color: var(--bu-brand); }

.bu-drawer__foot {
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.bu-drawer__account,
.bu-drawer__logout {
    display: flex; align-items: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: inherit;
    text-decoration: none;
    padding: 4px 0;
}
.bu-drawer__account svg {
    margin-left: auto;
    width: 20px; height: 20px;
}
.bu-drawer__account { margin-bottom: 15px; }
.bu-drawer__account:hover,
.bu-drawer__logout:hover { color: var(--bu-brand); }

.bu-drawer__backdrop {
    position: fixed;
    inset: 0;
    z-index: 1059;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
body.bu-drawer-open .bu-drawer__backdrop {
    opacity: 1;
    pointer-events: auto;
}
body.bu-drawer-open,
body.bu-lightbox-open { overflow: hidden; }

.bu-footer {
    background: var(--bu-background);
    border-top: 1px solid var(--bu-border);
    color: inherit;
}

.bu-footer__grid {
    display: grid;
}
@media (min-width: 1024px) {
    .bu-footer__grid {
        grid-template-columns: 42fr 58fr;
    }
}

.bu-footer__newsletter {
    display: none;
}
@media (min-width: 1024px) {
    .bu-footer__newsletter {
        display: block;
        padding: 120px 100px 120px 40px;
        border-right: 1px solid var(--bu-border);
    }
}

.bu-footer__eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(0,0,0,0.8);
    margin: 0 0 12px;
}
.bu-footer__heading {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 400;
    margin: 0;
}
@media (min-width: 1024px) { .bu-footer__heading { font-size: 44px; } }

.bu-footer__form { margin-top: 24px; max-width: 28rem; }
.bu-footer__form > form,
.bu-footer__form form.mc4wp-form {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--bu-border);
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
}
.bu-footer__form input[type="email"] {
    flex: 1;
    height: 54px;
    padding: 0 16px;
    font-size: 16px;
    border: none;
    background: transparent;
    outline: none;
    color: inherit;
}
.bu-footer__form button[type="submit"] {
    padding: 0 24px;
    background: var(--bu-brand);
    color: var(--bu-brand-foreground);
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.bu-footer__form button[type="submit"]:hover { background: var(--bu-brand-hover); }
.bu-footer__form p { margin: 0; flex: 1; }

.bu-footer__copy {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 28rem;
    color: rgba(0,0,0,0.8);
}

.bu-footer__right {
    padding: 40px 16px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (min-width: 1024px) {
    .bu-footer__right {
        padding: 120px 40px 120px 60px;
        gap: 60px;
    }
}

.bu-footer__menus {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (min-width: 1024px) {
    .bu-footer__menus {
        flex-direction: row;
        gap: 30px;
    }
}
.bu-footer__menu { flex: 1; }

.bu-footer .bu-footer__menu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    margin: 0;
    background: none;
    border: 0 none;
    border-bottom: 1px solid #e6e2dc;
    color: inherit;
    cursor: pointer;
    text-align: left;
    font: inherit;
}
@media (min-width: 1024px) {
    .bu-footer .bu-footer__menu-toggle {
        cursor: default;
        border-bottom: none;
        pointer-events: none;
    }
}
.bu-footer .bu-footer__menu-title {
    margin: 0;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}
.bu-footer__menu-chev {
    width: 16px; height: 16px;
    color: rgba(0,0,0,0.6);
    flex-shrink: 0;
    transition: transform 0.2s;
}
.bu-footer__menu[data-open="true"] .bu-footer__menu-chev { transform: rotate(180deg); }
@media (min-width: 1024px) { .bu-footer__menu-chev { display: none; } }

.bu-footer__menu-list {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    font-size: 14px;
}
.bu-footer__menu[data-open="true"] .bu-footer__menu-list { display: grid; }
@media (min-width: 1024px) {
    .bu-footer__menu-list {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 6px;
        margin-top: 12px;
    }
}
.bu-footer__menu-list a {
    color: rgba(0,0,0,0.85);
    text-decoration: none;
    transition: color 0.2s;
}
.bu-footer__menu-list a:hover { color: var(--bu-brand); }

.bu-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media (min-width: 1024px) {
    .bu-footer__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.bu-footer__social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.bu-footer__social a {
    display: grid;
    place-items: center;
    width: 48px; height: 48px;
    border: 1px solid var(--bu-border);
    border-radius: 999px;
    color: rgba(0,0,0,0.75);
    transition: all 0.2s;
}
.bu-footer__social a:hover {
    background: var(--bu-brand);
    border-color: var(--bu-brand);
    color: var(--bu-brand-foreground);
}
.bu-footer__social svg { width: 18px; height: 18px; }

.bu-footer__copyright {
    font-size: 14px;
    color: rgba(0,0,0,0.7);
    margin: 0;
}

.bu-soldout-band,
li.product.outofstock .rey-productThumbnail::after,
.bu-product-soldout .woocommerce-product-gallery::after {
    position: absolute;
    left: -10%;
    right: -10%;
    top: 50%;
    transform: translateY(-50%) rotate(-8deg);
    background: var(--bu-sale, #d64545);
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 7px 0;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}
li.product.outofstock .rey-productThumbnail { position: relative; }
li.product.outofstock .rey-productThumbnail::after { content: "SOLD OUT"; }
li.product.outofstock .rey-productThumbnail img {
    filter: grayscale(55%);
    opacity: 0.8;
}
li.product.outofstock .rey-soldout-badge { display: none; }

.bu-product-soldout .woocommerce-product-gallery { position: relative; }
.bu-product-soldout .woocommerce-product-gallery::after {
    content: "SOLD OUT";
    left: -2%;
    right: -2%;
    transform: translateY(-50%) rotate(-6deg);
    font-size: 15px;
    letter-spacing: 0.3em;
    padding: 13px 0;
    z-index: 21;
}
.bu-product-soldout .woocommerce-product-gallery img { filter: grayscale(45%); }
.bu-product-soldout form.cart .quantity { display: none !important; }
.bu-product-soldout form.cart .single_add_to_cart_button,
.bu-product-soldout .single_add_to_cart_button {
    background: transparent !important;
    border: 1px solid var(--bu-border) !important;
    color: var(--bu-muted-foreground) !important;
    pointer-events: none;
}
.bu-product-soldout .rey-stickyAtc-wrapper { display: none !important; }

.single-product .stock.out-of-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 10px 14px;
    background: rgba(208, 78, 44, 0.07);
    border: 1px solid rgba(208, 78, 44, 0.22);
    border-radius: 8px;
    color: var(--bu-sale, #d04e2c);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.single-product .stock.out-of-stock svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.bu-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 55vh;
    padding: 72px 24px 96px;
}
.bu-404__code {
    margin: 0;
    font-size: 108px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--bu-brand);
}
@media (min-width: 640px) { .bu-404__code { font-size: 160px; } }
.bu-404__title {
    margin: 14px 0 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}
@media (min-width: 640px) { .bu-404__title { font-size: 32px; } }
.bu-404__text {
    margin: 12px 0 0;
    max-width: 430px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--bu-muted-foreground);
}
.bu-404__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.bu-404__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.bu-404__btn--primary {
    background: var(--bu-brand);
    color: var(--bu-brand-foreground);
}
.bu-404__btn--primary:hover {
    background: var(--bu-brand-hover);
    color: var(--bu-brand-foreground);
}
.bu-404__btn--ghost {
    border: 1px solid var(--bu-border);
    color: inherit;
}
.bu-404__btn--ghost:hover {
    border-color: var(--bu-brand);
    color: var(--bu-brand);
}

#bh-popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 20px;
}

.bh-popup-content {
    background: linear-gradient(145deg, #1f1d1c 0%, #171615 100%);
    padding: 50px 40px;
    width: 100%;
    max-width: 440px;
    text-align: center;
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 25px 80px -12px rgba(0, 0, 0, 0.5),
        0 0 60px -20px rgba(255, 142, 71, 0.3);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

.bh-popup-content::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF8E47, transparent);
}

.bh-popup-content::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 80px;
    background: radial-gradient(ellipse at top, rgba(255, 142, 71, 0.15), transparent);
    pointer-events: none;
}

.bh-sparkle {
    position: absolute;
    color: #FF8E47;
    font-size: 14px;
    opacity: 0.6;
    animation: sparkle-float 3s ease-in-out infinite;
}
.bh-sparkle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.bh-sparkle-2 { top: 30%; right: 12%; animation-delay: 1s; }
.bh-sparkle-3 { bottom: 25%; left: 8%; animation-delay: 2s; }

@keyframes sparkle-float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-8px) rotate(180deg); opacity: 0.8; }
}

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

.bh-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 142, 71, 0.1);
    border: 1px solid rgba(255, 142, 71, 0.3);
    color: #FF8E47;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.bh-badge-dot {
    width: 6px;
    height: 6px;
    background: #FF8E47;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.bh-popup-content h3 {
    margin: 0 0 16px;
    font-size: 32px;
    color: #ffffff;
    font-weight: 700;
    font-family: Georgia, serif;
    letter-spacing: -0.5px;
}

.bh-popup-content h3 em {
    font-style: italic;
    color: #FF8E47;
}

.bh-description {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 20px;
    font-weight: 400;
}

.bh-date-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.bh-date-box svg {
    color: #FF8E47;
    width: 16px;
    height: 16px;
}

.bh-date-box span {
    font-size: 13px;
    color: #FDF8F3;
}

.bh-date-box strong {
    color: #FF8E47;
}

.bh-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #FF8E47 0%, #ff7b29 100%);
    color: #fff;
    border: none;
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(255, 142, 71, 0.35);
    font-family: inherit;
}

.bh-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 142, 71, 0.45);
}

.bh-cta-btn svg {
    transition: transform 0.3s ease;
}

.bh-cta-btn:hover svg {
    transform: translateX(2px);
}

.bh-code-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.bh-code-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8a817a;
    margin-bottom: 12px;
}

.bh-code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 142, 71, 0.1);
    border: 2px dashed rgba(255, 142, 71, 0.4);
    color: #FF8E47;
    font-size: 24px;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 12px;
    letter-spacing: 4px;
    font-family: Georgia, serif;
}

.bh-copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #FDF8F3;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bh-copy-btn:hover {
    background: #FF8E47;
}

.bh-code-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    color: #4ade80;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bh-shop-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF8E47;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 142, 71, 0.3);
    transition: all 0.3s ease;
}

.bh-shop-link:hover {
    background: rgba(255, 142, 71, 0.1);
    border-color: #FF8E47;
}

#bh-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #8a817a;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

#bh-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FDF8F3;
}

#bh-close-btn svg {
    width: 16px;
    height: 16px;
}

.bh-subtext {
    color: #8a817a;
    font-size: 12px;
    cursor: pointer;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.bh-subtext:hover {
    color: #FDF8F3;
}

.bh-visible { opacity: 1 !important; }
.bh-visible .bh-popup-content {
    transform: translateY(0) scale(1);
}

@media (max-width: 480px) {
    .bh-popup-content {
        padding: 40px 28px;
    }

    .bh-popup-content h3 {
        font-size: 26px;
    }

    .bh-sparkle {
        display: none;
    }

    .bh-code-box {
        font-size: 20px;
        letter-spacing: 2px;
    }
}
