/* ═══════════════════════════════════════════════════════════════════
   BENZOHUB — UI LAYER
   PornHub-meets-Apple-Vision OS — Modern, Sleek, Cinematic
   ═══════════════════════════════════════════════════════════════════ */

:root {
    --bh-glow: 0 0 40px rgba(255,107,0,0.45), 0 0 80px rgba(255,107,0,0.2);
    --bh-glow-soft: 0 0 24px rgba(255,107,0,0.18);
    --bh-stripe: linear-gradient(90deg,
        transparent 0%,
        rgba(255,107,0,0.04) 20%,
        rgba(255,107,0,0.08) 50%,
        rgba(255,107,0,0.04) 80%,
        transparent 100%);
    --bh-conic: conic-gradient(from 0deg at 50% 50%,
        #ff6b00, #ffb366, #ff6b00, #ff8a2b, #ff6b00);
    --bh-bezier: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══ GLOBAL FADE-IN ON LOAD ═══ */
body {
    animation: bh-page-in 0.7s var(--bh-bezier);
}
@keyframes bh-page-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══ ANIMATED MESH BG — UPGRADE ═══ */
.mesh-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 20% 10%, rgba(255,107,0,0.10), transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 90%, rgba(255,138,43,0.08), transparent 60%),
        radial-gradient(ellipse 40% 30% at 50% 50%, rgba(255,107,0,0.05), transparent 70%);
    animation: bh-mesh-shift 22s ease-in-out infinite alternate;
}
@keyframes bh-mesh-shift {
    0%   { background-position: 0% 0%, 100% 100%, 50% 50%; filter: hue-rotate(0deg); }
    100% { background-position: 20% 30%, 80% 70%, 60% 40%; filter: hue-rotate(8deg); }
}

/* Floating orbs — additional depth */
.bh-orbs {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.bh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    will-change: transform;
}
.bh-orb.o1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, #ff6b00 0%, transparent 70%);
    top: -100px; left: -120px;
    animation: bh-orb-float-1 18s ease-in-out infinite;
}
.bh-orb.o2 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, #ff9642 0%, transparent 70%);
    bottom: -80px; right: -100px;
    animation: bh-orb-float-2 24s ease-in-out infinite;
}
.bh-orb.o3 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, #ff8a2b 0%, transparent 70%);
    top: 40%; right: 30%;
    opacity: 0.32;
    animation: bh-orb-float-3 30s ease-in-out infinite;
}
@keyframes bh-orb-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(120px, 80px) scale(1.15); }
}
@keyframes bh-orb-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-100px, -120px) scale(1.1); }
}
@keyframes bh-orb-float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(-80px, 60px) scale(1.2); }
    66%      { transform: translate(60px, -80px) scale(0.9); }
}

/* ═══ TOP MARQUEE STRIP ═══ */
.bh-marquee {
    position: relative;
    background: linear-gradient(90deg, #ff6b00 0%, #ff9642 50%, #ff6b00 100%);
    color: #0a0a0d;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    height: 32px;
    display: flex;
    align-items: center;
    z-index: 999;
}
.bh-marquee::before,
.bh-marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.bh-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #ff6b00, transparent);
}
.bh-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, #ff6b00, transparent);
}
.bh-marquee-track {
    display: inline-flex;
    gap: 48px;
    padding-left: 100%;
    animation: bh-marquee-scroll 30s linear infinite;
    align-items: center;
}
.bh-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.bh-marquee-track .dot {
    width: 4px; height: 4px;
    background: #0a0a0d;
    border-radius: 50%;
    flex-shrink: 0;
}
@keyframes bh-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

/* ═══ NAVBAR UPGRADE ═══ */
.navbar {
    background: rgba(8,8,10,0.72) !important;
    backdrop-filter: blur(40px) saturate(220%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(220%) !important;
    transition: all 0.4s var(--bh-bezier);
}
.navbar::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: var(--bh-stripe);
    opacity: 0.6;
}

/* Logo enhanced */
.logo {
    position: relative;
}
.logo-icon {
    position: relative;
    filter: drop-shadow(0 0 20px rgba(255,107,0,0.6)) !important;
}
.logo-text .accent {
    background: linear-gradient(135deg, #ff6b00, #ffb366, #ff6b00);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bh-logo-shine 3s ease-in-out infinite;
}
@keyframes bh-logo-shine {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* Search input — sexier */
.nav-search input {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    transition: all 0.3s var(--bh-bezier) !important;
}
.nav-search input:focus {
    background: rgba(255,255,255,0.07) !important;
    border-color: rgba(255,107,0,0.4) !important;
    box-shadow: 0 0 0 3px rgba(255,107,0,0.12), var(--bh-glow-soft) !important;
}

/* ═══ HERO — CINEMATIC UPGRADE ═══ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 32px 64px !important;
    isolation: isolate;
}
.hero::before {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: radial-gradient(ellipse 80% 60% at 50% 50%,
        rgba(255,107,0,0.12) 0%,
        rgba(255,107,0,0.04) 40%,
        transparent 70%);
    animation: bh-hero-pulse 6s ease-in-out infinite;
}
@keyframes bh-hero-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.05); }
}
.hero h1 {
    font-size: clamp(36px, 6vw, 72px) !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.05 !important;
    margin-bottom: 20px !important;
    background: linear-gradient(180deg, #ffffff 0%, #b8b8c4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 60px rgba(255,255,255,0.05);
}
.hero h1 .accent {
    background: linear-gradient(135deg, #ff6b00 0%, #ffb366 50%, #ff6b00 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bh-logo-shine 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255,107,0,0.4));
}
.hero p {
    font-size: clamp(15px, 1.4vw, 18px) !important;
    color: var(--text-secondary) !important;
    max-width: 640px;
    margin: 0 auto 24px !important;
}
.hero-badges {
    flex-wrap: wrap;
    gap: 10px !important;
}
.hero-badge {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    backdrop-filter: blur(12px);
    transition: all 0.3s var(--bh-bezier) !important;
}
.hero-badge:hover {
    background: rgba(255,107,0,0.1) !important;
    border-color: rgba(255,107,0,0.4) !important;
    transform: translateY(-2px);
    box-shadow: var(--bh-glow-soft);
}

/* Live viewers — sexier */
.live-viewers {
    background: rgba(34,197,94,0.08) !important;
    border: 1px solid rgba(34,197,94,0.25) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 24px rgba(34,197,94,0.1);
}
.live-dot {
    box-shadow: 0 0 12px #22c55e;
}

/* ═══ PRODUCT CARDS — 3D TILT + LIGHT SWEEP ═══ */
.product-card {
    position: relative !important;
    background: linear-gradient(165deg, #16161a 0%, #0e0e11 100%) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    transition: transform 0.4s var(--bh-bezier),
                border-color 0.3s var(--bh-bezier),
                box-shadow 0.4s var(--bh-bezier) !important;
    transform-style: preserve-3d;
    isolation: isolate;
}
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(255,107,0,0) 0%,
        rgba(255,107,0,0) 50%,
        rgba(255,107,0,0.6) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s var(--bh-bezier);
    pointer-events: none;
    z-index: 2;
}
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle 280px at var(--mx, 50%) var(--my, 50%),
        rgba(255,107,0,0.12),
        transparent 60%);
    opacity: 0;
    transition: opacity 0.4s var(--bh-bezier);
    pointer-events: none;
    z-index: 1;
}
.product-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(255,107,0,0.3) !important;
    box-shadow:
        0 24px 60px rgba(0,0,0,0.6),
        0 0 80px rgba(255,107,0,0.12) !important;
}
.product-card:hover::before { opacity: 1; }
.product-card:hover::after  { opacity: 1; }

.product-thumb {
    overflow: hidden;
    position: relative;
}
.product-thumb img {
    transition: transform 0.6s var(--bh-bezier) !important;
}
.product-card:hover .product-thumb img {
    transform: scale(1.08);
}
.product-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
        transparent 30%,
        rgba(255,255,255,0.06) 50%,
        transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s var(--bh-bezier);
    pointer-events: none;
}
.product-card:hover .product-thumb::after {
    transform: translateX(100%);
}

/* Product badges — pulsing */
.product-badge {
    backdrop-filter: blur(8px);
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
}
.product-badge.badge-sale,
.product-badge.badge-trending {
    animation: bh-badge-pulse 2.5s ease-in-out infinite;
}
@keyframes bh-badge-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
    50%      { transform: scale(1.05); box-shadow: 0 4px 20px rgba(255,107,0,0.4); }
}

/* Wishlist heart — bigger pulse */
.wishlist-heart {
    backdrop-filter: blur(12px) !important;
    background: rgba(0,0,0,0.5) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    transition: all 0.3s var(--bh-bezier) !important;
}
.wishlist-heart:hover {
    background: rgba(255,77,109,0.2) !important;
    border-color: rgba(255,77,109,0.6) !important;
    transform: scale(1.1);
}
.wishlist-heart.active {
    background: rgba(255,77,109,0.25) !important;
    border-color: rgba(255,77,109,0.6) !important;
    box-shadow: 0 0 20px rgba(255,77,109,0.4);
}
.wishlist-heart.active .material-icons-round {
    color: #ff4d6d !important;
    animation: bh-heart-beat 1.6s ease-in-out infinite;
}
@keyframes bh-heart-beat {
    0%, 100% { transform: scale(1); }
    25%      { transform: scale(1.15); }
    50%      { transform: scale(1); }
    75%      { transform: scale(1.1); }
}

/* Add-to-cart button — magnetic glow */
.btn-add-cart {
    background: linear-gradient(135deg, #ff6b00, #ff9642) !important;
    border: none !important;
    color: #0a0a0d !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s var(--bh-bezier) !important;
    box-shadow: 0 4px 16px rgba(255,107,0,0.25);
}
.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s var(--bh-bezier);
}
.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,107,0,0.5), 0 0 40px rgba(255,107,0,0.3) !important;
}
.btn-add-cart:hover::before {
    left: 100%;
}
.btn-add-cart:active {
    transform: translateY(0);
}

/* ═══ SECTION HEADERS — UPGRADE ═══ */
.section-header {
    margin: 64px 0 24px !important;
    position: relative;
    padding-left: 16px;
}
.section-header::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 4px; height: 28px;
    background: linear-gradient(180deg, #ff6b00, #ff9642);
    border-radius: 2px;
    transform: translateY(-50%);
    box-shadow: 0 0 16px rgba(255,107,0,0.5);
}
.section-header h2 {
    font-size: clamp(22px, 2.4vw, 32px) !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
}

/* ═══ PRODUCT GRID — RESPONSIVE & TIGHT ═══ */
.product-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
    gap: 20px !important;
}
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
        gap: 12px !important;
    }
}

/* ═══ TRUST BADGES UPGRADE ═══ */
.trust-badges {
    flex-wrap: wrap;
    gap: 10px !important;
}
.trust-badge {
    background: rgba(255,255,255,0.025) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    backdrop-filter: blur(12px);
    transition: all 0.3s var(--bh-bezier);
}
.trust-badge:hover {
    background: rgba(255,107,0,0.08) !important;
    border-color: rgba(255,107,0,0.3) !important;
    transform: translateY(-1px);
}

/* ═══ FLASH BANNER — SEXIER ═══ */
.flash-banner {
    background: linear-gradient(90deg, #ff3b00 0%, #ff6b00 50%, #ff3b00 100%) !important;
    background-size: 200% 100% !important;
    animation: bh-flash-shift 4s ease-in-out infinite !important;
    position: relative;
    overflow: hidden;
}
@keyframes bh-flash-shift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
.flash-banner::after {
    content: '';
    position: absolute;
    top: 0; left: -50%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent);
    animation: bh-flash-sweep 3.5s linear infinite;
}
@keyframes bh-flash-sweep {
    0%   { left: -50%; }
    100% { left: 150%; }
}
.flash-emoji {
    animation: bh-emoji-bounce 1.2s ease-in-out infinite;
    display: inline-block;
}
@keyframes bh-emoji-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-3px) rotate(8deg); }
}

/* ═══ TRENDING CAROUSEL ═══ */
.bh-trending {
    margin: 48px -32px;
    padding: 24px 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(255,107,0,0.03) 50%, transparent 100%);
    overflow: hidden;
    position: relative;
}
.bh-trending-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px 16px;
}
.bh-trending-header h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}
.bh-trending-header h3::before {
    content: '🔥';
    font-size: 22px;
    animation: bh-emoji-bounce 1.4s ease-in-out infinite;
}
.bh-trending-strip {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 8px 32px 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.bh-trending-strip::-webkit-scrollbar { display: none; }
.bh-trending-card {
    flex: 0 0 200px;
    aspect-ratio: 4/5;
    border-radius: 14px;
    background: linear-gradient(165deg, #16161a 0%, #0e0e11 100%);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    scroll-snap-align: start;
    transition: all 0.4s var(--bh-bezier);
}
.bh-trending-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255,107,0,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 60px rgba(255,107,0,0.15);
}
.bh-trending-card img {
    width: 100%;
    height: 70%;
    object-fit: cover;
}
.bh-trending-card .mtc-info {
    padding: 12px;
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
}
.bh-trending-card .mtc-name {
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.bh-trending-card .mtc-price {
    color: #ff9642;
    font-weight: 900;
    font-size: 14px;
}
.bh-trending-card .mtc-rank {
    position: absolute;
    top: 8px; left: 8px;
    background: linear-gradient(135deg, #ff6b00, #ff9642);
    color: #0a0a0d;
    font-weight: 900;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255,107,0,0.4);
}

/* ═══ FOOTER UPGRADE ═══ */
.footer {
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%) !important;
    border-top: 1px solid rgba(255,107,0,0.08) !important;
    margin-top: 80px !important;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: -1px; left: 50%;
    width: 200px; height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b00, transparent);
    transform: translateX(-50%);
}

/* ═══ TOAST UPGRADE ═══ */
.toast {
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    background: rgba(20,20,24,0.85) !important;
    border: 1px solid rgba(255,107,0,0.3) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 60px rgba(255,107,0,0.15) !important;
}

/* ═══ CART DRAWER UPGRADE ═══ */
.cart-drawer {
    background: rgba(8,8,10,0.92) !important;
    backdrop-filter: blur(40px) saturate(220%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(220%) !important;
    border-left: 1px solid rgba(255,107,0,0.15) !important;
}

/* ═══ FAB FLOATING CART ═══ */
.floating-cart {
    background: linear-gradient(135deg, #ff6b00, #ff9642) !important;
    box-shadow: 0 10px 30px rgba(255,107,0,0.4), 0 0 40px rgba(255,107,0,0.2) !important;
    animation: bh-fab-bounce 3s ease-in-out infinite;
}
@keyframes bh-fab-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}
.floating-cart:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 14px 40px rgba(255,107,0,0.6), 0 0 60px rgba(255,107,0,0.4) !important;
}

/* ═══ SOCIAL PROOF UPGRADE ═══ */
.social-proof {
    background: rgba(20,20,24,0.92) !important;
    backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255,107,0,0.2) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 32px rgba(255,107,0,0.1) !important;
}

/* ═══ SKELETON LOADER ═══ */
.bh-skeleton {
    aspect-ratio: 3/4;
    border-radius: 14px;
    background: linear-gradient(110deg,
        #141418 30%,
        #1c1c22 50%,
        #141418 70%);
    background-size: 200% 100%;
    animation: bh-skeleton 1.4s linear infinite;
}
@keyframes bh-skeleton {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ═══ STAGGERED REVEAL ═══ */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--bh-bezier),
                transform 0.7s var(--bh-bezier);
}
[data-reveal].bh-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ MOBILE TWEAKS ═══ */
@media (max-width: 768px) {
    .hero { padding: 56px 20px 40px !important; }
    .bh-trending { margin: 32px -16px; }
    .bh-trending-header { padding: 0 16px 12px; }
    .bh-trending-strip { padding: 8px 16px 16px; }
    .bh-trending-card { flex: 0 0 150px; }
    .section-header { margin: 40px 0 16px !important; }
}

/* ═══ STATS COUNTERS ═══ */
.bh-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0 48px;
}
.stat-card {
    position: relative;
    padding: 24px 20px;
    background: linear-gradient(165deg, rgba(20,20,24,0.7) 0%, rgba(14,14,17,0.7) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    text-align: center;
    overflow: hidden;
    transition: all 0.4s var(--bh-bezier);
}
.stat-card::before {
    content: '';
    position: absolute;
    top: -1px; left: 50%;
    width: 60%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,107,0,0.5), transparent);
    transform: translateX(-50%);
}
.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,107,0,0.3);
    background: linear-gradient(165deg, rgba(28,28,34,0.7) 0%, rgba(20,20,24,0.7) 100%);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 40px rgba(255,107,0,0.1);
}
.stat-icon {
    display: inline-flex;
    width: 48px; height: 48px;
    align-items: center;
    justify-content: center;
    background: rgba(255,107,0,0.12);
    border: 1px solid rgba(255,107,0,0.25);
    border-radius: 12px;
    margin-bottom: 12px;
    color: #ff9642;
}
.stat-icon .material-icons-round { font-size: 24px; }
.stat-num {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #b8b8c4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}
@media (max-width: 768px) {
    .bh-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-card { padding: 18px 12px; }
    .stat-icon { width: 38px; height: 38px; margin-bottom: 8px; }
    .stat-icon .material-icons-round { font-size: 20px; }
}

/* ═══ FEATURE CARDS — WHY US ═══ */
.bh-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.feature-card {
    position: relative;
    padding: 28px 22px;
    background: linear-gradient(165deg, rgba(22,22,26,0.6) 0%, rgba(14,14,17,0.6) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: all 0.4s var(--bh-bezier);
    isolation: isolate;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(from var(--angle, 0deg) at 50% 50%,
        transparent 0deg,
        rgba(255,107,0,0.15) 60deg,
        transparent 120deg);
    opacity: 0;
    transition: opacity 0.5s var(--bh-bezier);
    z-index: -1;
    animation: bh-feature-rotate 6s linear infinite;
}
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes bh-feature-rotate {
    from { --angle: 0deg; }
    to   { --angle: 360deg; }
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,107,0,0.25);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    display: inline-flex;
    width: 52px; height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #0a0a0d;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: transform 0.4s var(--bh-bezier);
}
.feature-icon .material-icons-round { font-size: 26px; }
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-6deg);
}
.feature-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.feature-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 768px) {
    .bh-features { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .feature-card { padding: 18px 14px; }
    .feature-icon { width: 42px; height: 42px; margin-bottom: 10px; }
    .feature-icon .material-icons-round { font-size: 22px; }
    .feature-card h4 { font-size: 14px; }
    .feature-card p { font-size: 12px; }
}

/* ═══ TESTIMONIALS ═══ */
.bh-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.testimonial-card {
    padding: 22px;
    background: linear-gradient(165deg, rgba(20,20,24,0.7) 0%, rgba(14,14,17,0.7) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    transition: all 0.4s var(--bh-bezier);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,107,0,0.2);
}
.t-rating {
    color: #ffb000;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 12px;
}
.t-text {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
    font-style: italic;
    opacity: 0.92;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0d;
    font-weight: 900;
    font-size: 16px;
}
.t-name {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
}
.t-meta {
    color: var(--text-muted);
    font-size: 11px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.t-meta::before {
    content: '✓';
    color: #22c55e;
    font-weight: 900;
}

/* ═══ FAQ ═══ */
.bh-faq {
    max-width: 800px;
    margin: 0 auto;
}
.faq-header {
    text-align: center;
    margin-bottom: 24px;
}
.faq-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.faq-header p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}
.faq-item {
    background: linear-gradient(165deg, rgba(20,20,24,0.6) 0%, rgba(14,14,17,0.6) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.3s var(--bh-bezier);
}
.faq-item[open] {
    border-color: rgba(255,107,0,0.25);
    background: linear-gradient(165deg, rgba(28,22,18,0.7) 0%, rgba(20,16,14,0.7) 100%);
}
.faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 24px;
    color: var(--accent);
    font-weight: 300;
    transition: transform 0.3s var(--bh-bezier);
    line-height: 1;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 22px 18px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ═══ FLY-TO-CART ANIMATION ═══ */
.bh-flying-clone {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255,107,0,0.5);
    transition: all 0.7s cubic-bezier(0.55, -0.4, 0.265, 1.05);
}
.bh-flying-clone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-bumped {
    animation: bh-cart-bump 0.5s var(--bh-bezier);
}
@keyframes bh-cart-bump {
    0%, 100% { transform: scale(1); }
    30%      { transform: scale(0.85); }
    60%      { transform: scale(1.18); }
}

/* ═══ CATEGORY PILLS UPGRADE ═══ */
.cat-pill {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    transition: all 0.3s var(--bh-bezier) !important;
    font-weight: 600 !important;
}
.cat-pill:hover {
    background: rgba(255,107,0,0.1) !important;
    border-color: rgba(255,107,0,0.3) !important;
    transform: translateY(-1px);
}
.cat-pill.active {
    background: linear-gradient(135deg, #ff6b00, #ff9642) !important;
    border-color: transparent !important;
    color: #0a0a0d !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 16px rgba(255,107,0,0.35) !important;
}

/* ═══ LANGUAGE SELECTOR ═══ */
.bh-lang { position: relative; display: flex; align-items: center; }
.bh-lang-trigger {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 100px; padding: 6px 10px 6px 12px;
    color: var(--text-primary); font-size: 13px; font-weight: 700; cursor: pointer;
    transition: all 0.2s var(--bh-bezier);
}
.bh-lang-trigger:hover { background: rgba(255,107,0,0.1); border-color: rgba(255,107,0,0.3); }
.bh-lang-current { display: inline-flex; align-items: center; gap: 6px; }
.bh-lang-menu {
    position: absolute; top: calc(100% + 8px); right: 0; min-width: 170px;
    background: rgba(20,20,24,0.95); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,107,0,0.2); border-radius: 12px; padding: 6px;
    opacity: 0; pointer-events: none; transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s; z-index: 1100;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.bh-lang.open .bh-lang-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.bh-lang-option {
    display: flex; align-items: center; gap: 10px; width: 100%;
    border: none; background: transparent; color: var(--text-primary);
    padding: 10px 12px; font-size: 13px; font-weight: 600;
    border-radius: 8px; cursor: pointer; text-align: left; transition: background 0.15s;
}
.bh-lang-option:hover { background: rgba(255,107,0,0.08); }
.bh-lang-option.active { background: rgba(255,107,0,0.15); color: #ff9642; }
@media (max-width: 640px) {
    .bh-lang-trigger { padding: 5px 8px; font-size: 12px; }
}

/* ═══ COOKIE BANNER ═══ */
.bh-cookie {
    position: fixed; bottom: 16px; left: 16px; right: 16px;
    max-width: 540px; margin: 0 auto;
    background: rgba(14,14,17,0.96); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,107,0,0.3); border-radius: 14px;
    padding: 14px 18px; display: flex; align-items: center; gap: 14px;
    z-index: 9000; box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    animation: bh-cookie-in 0.6s var(--bh-bezier);
}
@keyframes bh-cookie-in { from {opacity:0;transform:translateY(20px);} to {opacity:1;transform:translateY(0);} }
.bh-cookie-text { flex: 1; color: var(--text-secondary); font-size: 12px; line-height: 1.45; }
.bh-cookie-btn {
    background: linear-gradient(135deg, #ff6b00, #ff9642); color: #0a0a0d;
    border: none; padding: 9px 16px; border-radius: 100px;
    font-weight: 800; font-size: 12px; cursor: pointer; flex-shrink: 0;
}
.bh-cookie-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,107,0,0.4); }

/* ═══ ACCESSIBILITY ═══ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
