﻿/* ============================================================
   Blackbaby Fashion House â€” Luxury Public Website CSS
   Palette: Deep Jewel + Magenta Rose + Champagne Gold
   ============================================================ */

:root {
    --bb-bg:      #FFFFFF;
    --bb-bg2:     #F8F4FF;
    --bb-bg3:     #FFF0F8;
    --bb-card:    #FFFFFF;
    --bb-card2:   #FBF8FF;
    --bb-accent:  #E91E8C;
    --bb-accent2: #D4145A;
    --bb-orange:  #FF6B35;
    --bb-purple:  #7B2FBE;
    --bb-gold:    #C9A227;
    --bb-gold2:   #F5C518;
    --bb-green:   #00C853;
    --bb-text:    #1A0A2E;
    --bb-text2:   #4A3060;
    --bb-muted:   #8B7BAA;
    --bb-border:  rgba(123,47,190,.14);
    --bb-shadow:  rgba(123,47,190,.12);
    --bb-font:    'Inter', sans-serif;
    --bb-serif:   'Playfair Display', serif;
    /* legacy compat */
    --bb-dark:    #F8F4FF;
    --bb-darker:  #F0EBF8;
    --bb-mid:     #EDE5F8;
    --bb-violet:  #7B2FBE;
    --bb-glow:    rgba(233,30,140,.15);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--bb-font);
    background: var(--bb-bg);
    color: var(--bb-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Light scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bb-bg2); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--bb-accent), var(--bb-purple));
    border-radius: 3px;
}

/* ============================================================
   GLOBAL ANIMATIONS
   ============================================================ */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(4deg); }
}
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes blobMorph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50%       { border-radius: 50% 60% 30% 40% / 40% 30% 70% 60%; }
    75%       { border-radius: 40% 60% 70% 30% / 60% 40% 30% 70%; }
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,.45); }
    50%       { box-shadow: 0 6px 40px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.08); }
}
@keyframes shimmerSlide {
    0%   { left: -100%; }
    100% { left: 200%; }
}
@keyframes dotFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(15px, -15px) scale(1.1); }
    66%       { transform: translate(-10px, 10px) scale(.9); }
}
@keyframes badgePop {
    0%   { opacity: 0; transform: scale(.7) translateY(-10px); }
    60%  { transform: scale(1.08) translateY(2px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.bb-navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 5%;
    height: 74px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,.92);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(123,47,190,.1);
    transition: all .35s;
    box-shadow: 0 2px 20px rgba(123,47,190,.07);
}
.bb-navbar.scrolled {
    background: rgba(255,255,255,.98);
    box-shadow: 0 4px 30px rgba(123,47,190,.14);
}

/* Logo */
.bb-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.bb-logo img { height: 38px; object-fit: contain; }
.bb-logo-text {
    font-size: 21px; font-weight: 800; letter-spacing: -0.5px;
    font-family: var(--bb-serif);
    background: linear-gradient(135deg, var(--bb-text) 0%, var(--bb-purple) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bb-logo-text span { -webkit-text-fill-color: var(--bb-accent); color: var(--bb-accent); }

/* Nav links */
.bb-nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.bb-nav-links a {
    color: var(--bb-text2); text-decoration: none;
    font-size: 13.5px; font-weight: 600; transition: color .2s;
    position: relative;
}
.bb-nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--bb-accent), var(--bb-orange));
    transform: scaleX(0); transform-origin: right; transition: transform .3s;
    border-radius: 2px;
}
.bb-nav-links a:hover { color: var(--bb-accent); }
.bb-nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.bb-nav-cta {
    background: linear-gradient(135deg, var(--bb-accent2), var(--bb-accent), var(--bb-orange)) !important;
    background-size: 200% 200% !important;
    animation: gradientShift 4s ease infinite !important;
    color: #fff !important; padding: 9px 22px; border-radius: 50px;
    font-size: 13px !important; font-weight: 700 !important;
    box-shadow: 0 4px 18px rgba(233,30,140,.35); transition: all .25s !important;
}
.bb-nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 28px rgba(233,30,140,.5) !important; color: #fff !important; }
.bb-nav-cta::after { display: none !important; }

/* Hamburger */
.bb-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.bb-hamburger span {
    display: block; width: 24px; height: 2px;
    background: linear-gradient(90deg, var(--bb-accent), var(--bb-purple));
    border-radius: 2px; transition: all .3s;
}

/* Mobile menu */
.bb-mobile-menu {
    display: none; position: fixed; top: 74px; left: 0; right: 0;
    background: rgba(255,255,255,.98); -webkit-backdrop-filter: blur(28px); backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(123,47,190,.12); z-index: 999; padding: 24px 5%;
    box-shadow: 0 8px 40px rgba(123,47,190,.12);
}
.bb-mobile-menu.open { display: block; }
.bb-mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.bb-mobile-menu a { color: var(--bb-text); text-decoration: none; font-size: 16px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.bb-mobile-menu a:hover { color: var(--bb-accent); }

/* ============================================================
   HERO
   ============================================================ */
.bb-hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 130px 5% 100px;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #F8F4FF 0%, #FFF0F8 45%, #FFF8E7 100%);
}
.bb-hero::before {
    content: ''; position: absolute; width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(233,30,140,.13) 0%, transparent 70%);
    top: -120px; right: -120px; z-index: 0;
    animation: blobMorph 10s ease-in-out infinite;
}
.bb-hero::after {
    content: ''; position: absolute; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(123,47,190,.10) 0%, transparent 70%);
    bottom: -80px; left: -80px; z-index: 0;
    animation: blobMorph 14s ease-in-out infinite reverse;
}
.bb-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center top; opacity: .18; mix-blend-mode: multiply; z-index: 0; }
.bb-hero-content { position: relative; z-index: 2; max-width: 860px; animation: slideInUp .8s ease both; }

.bb-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, rgba(233,30,140,.1), rgba(255,107,53,.1));
    border: 1.5px solid rgba(233,30,140,.3);
    color: var(--bb-accent); padding: 8px 24px; border-radius: 50px;
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
    margin-bottom: 28px; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    animation: badgePop .7s cubic-bezier(.34,1.56,.64,1) .1s both;
}
.bb-hero-badge::before { content: '\2726'; font-size: 10px; margin-right: 4px; }

.bb-hero h1 {
    font-family: var(--bb-serif);
    font-size: clamp(38px, 7vw, 78px); font-weight: 800; line-height: 1.05;
    color: var(--bb-text); margin-bottom: 24px;
    animation: slideInUp .8s ease .2s both;
}
.bb-hero h1 span {
    background: linear-gradient(135deg, var(--bb-accent) 0%, var(--bb-orange) 50%, var(--bb-gold2) 100%);
    background-size: 200% 200%; animation: gradientShift 4s ease infinite;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.bb-hero p { font-size: 18px; color: var(--bb-muted); margin-bottom: 44px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.8; animation: slideInUp .8s ease .3s both; }

.bb-hero-stats { display: flex; justify-content: center; gap: 40px; margin-top: 54px; padding-top: 40px; border-top: 1px solid rgba(123,47,190,.15); flex-wrap: wrap; animation: slideInUp .8s ease .5s both; }
.bb-hero-stat .num {
    font-size: 28px; font-weight: 800;
    background: linear-gradient(135deg, var(--bb-accent), var(--bb-orange));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.bb-hero-stat .lbl { font-size: 11px; color: var(--bb-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 2px; font-weight: 600; }

/* ============================================================
   BUTTONS
   ============================================================ */
.bb-btn { display: inline-flex; align-items: center; gap: 8px; padding: 15px 38px; border-radius: 50px; font-weight: 700; font-size: 14px; letter-spacing: 0.3px; text-decoration: none; transition: all .3s; cursor: pointer; border: none; position: relative; overflow: hidden; }
.bb-btn::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 50%; height: 100%;
    background: rgba(255,255,255,.35); transform: skewX(-20deg);
    transition: left .5s;
}
.bb-btn:hover::before { left: 200%; }
.bb-btn-primary {
    background: linear-gradient(135deg, var(--bb-accent2), var(--bb-accent), var(--bb-orange));
    background-size: 200% 200%; animation: gradientShift 4s ease infinite;
    color: #fff; box-shadow: 0 6px 24px rgba(233,30,140,.35);
}
.bb-btn-primary:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 14px 40px rgba(233,30,140,.5); }
.bb-btn-outline { background: transparent; color: var(--bb-accent); border: 2px solid var(--bb-accent); }
.bb-btn-outline:hover { background: var(--bb-accent); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(233,30,140,.3); }
.bb-btn-gold {
    background: linear-gradient(135deg, var(--bb-gold), var(--bb-gold2), var(--bb-orange));
    background-size: 200% 200%; animation: gradientShift 4s ease infinite;
    color: #fff; font-weight: 800; box-shadow: 0 6px 24px rgba(201,162,39,.4);
}
.bb-btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(201,162,39,.55); color: #fff; }

/* ============================================================
   SECTIONS
   ============================================================ */
.bb-section { padding: 100px 5%; }
.bb-section-dark { background: linear-gradient(135deg, #F8F4FF 0%, #FFF0F8 100%); }
.bb-section-deeper { background: linear-gradient(135deg, #F0E8FF 0%, #FFE8F4 60%, #FFF4E0 100%); }
.bb-section-header { text-align: center; margin-bottom: 56px; }
.bb-section-eyebrow { font-size: 10.5px; font-weight: 700; color: var(--bb-orange); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px; display: block; }
.bb-section-title { font-family: var(--bb-serif); font-size: clamp(30px, 4.5vw, 52px); font-weight: 700; color: var(--bb-text); margin-bottom: 14px; line-height: 1.15; }
.bb-section-subtitle { color: var(--bb-muted); font-size: 16px; max-width: 560px; margin: 0 auto; }
.bb-divider {
    width: 60px; height: 4px; margin: 18px auto 0;
    background: linear-gradient(90deg, var(--bb-accent), var(--bb-orange), var(--bb-gold2));
    background-size: 200% 200%; animation: gradientShift 3s ease infinite;
    border-radius: 2px;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.bb-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; }
.bb-category-card {
    background: var(--bb-card);
    border: 1.5px solid rgba(123,47,190,.12);
    border-radius: 22px; padding: 36px 24px; text-align: center;
    text-decoration: none; color: var(--bb-text); transition: all .38s;
    position: relative; overflow: hidden;
    box-shadow: 0 4px 20px rgba(123,47,190,.07);
}
.bb-category-card::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
    transform: skewX(-20deg); transition: left .6s;
}
.bb-category-card:hover::before { left: 150%; }
.bb-category-card::after {
    content: ''; position: absolute; inset: 0; border-radius: 22px;
    background: linear-gradient(135deg, rgba(233,30,140,.05), rgba(255,107,53,.05), rgba(123,47,190,.05));
    opacity: 0; transition: opacity .35s;
}
.bb-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(233,30,140,.16), 0 8px 20px rgba(123,47,190,.1);
    color: var(--bb-text); border-color: rgba(233,30,140,.28);
}
.bb-category-card:hover::after { opacity: 1; }
.bb-category-card .icon {
    font-size: 40px; margin-bottom: 16px; display: block;
    background: linear-gradient(135deg, var(--bb-accent), var(--bb-orange));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: float 4s ease-in-out infinite; transition: transform .35s;
}
.bb-category-card:hover .icon { transform: scale(1.2); animation-play-state: paused; }
.bb-category-card .name { font-weight: 700; font-size: 15px; margin-bottom: 6px; color: var(--bb-text); }
.bb-category-card .count { font-size: 12px; color: var(--bb-muted); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.bb-products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 26px; }
.bb-product-card {
    background: var(--bb-card);
    border: 1.5px solid rgba(123,47,190,.10);
    border-radius: 22px; overflow: hidden; transition: all .38s; position: relative;
    box-shadow: 0 4px 20px rgba(123,47,190,.07);
}
.bb-product-card:hover { border-color: rgba(233,30,140,.32); transform: translateY(-8px); box-shadow: 0 28px 60px rgba(233,30,140,.17), 0 8px 24px rgba(123,47,190,.1); }
.bb-product-img { aspect-ratio: 4/5; overflow: hidden; background: linear-gradient(135deg, #F8F4FF, #FFF0F8); position: relative; }
.bb-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.25,.46,.45,.94); }
.bb-product-card:hover .bb-product-img img { transform: scale(1.07); }
.bb-product-img .no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 64px; opacity: .2; color: var(--bb-muted); }
.bb-product-badge {
    position: absolute; top: 14px; left: 14px;
    background: linear-gradient(135deg, var(--bb-accent2), var(--bb-accent), var(--bb-orange));
    background-size: 200% 200%; animation: gradientShift 3s ease infinite;
    color: #fff; font-size: 10px; font-weight: 800; padding: 5px 12px; border-radius: 50px; letter-spacing: 0.5px; text-transform: uppercase; box-shadow: 0 4px 14px rgba(233,30,140,.35);
}
.bb-product-info { padding: 18px; }
.bb-product-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 7px; background: linear-gradient(90deg, var(--bb-accent), var(--bb-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bb-product-name { font-size: 15px; font-weight: 700; color: var(--bb-text); margin-bottom: 10px; line-height: 1.3; }
.bb-product-price { font-size: 20px; font-weight: 800; background: linear-gradient(135deg, var(--bb-accent), var(--bb-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bb-product-actions { display: flex; gap: 8px; margin-top: 14px; }
.bb-product-actions a { flex: 1; padding: 9px; border-radius: 10px; text-align: center; font-size: 13px; font-weight: 600; text-decoration: none; transition: all .25s; }
.bb-product-actions .btn-view { background: rgba(233,30,140,.07); color: var(--bb-accent); border: 1.5px solid rgba(233,30,140,.2); }
.bb-product-actions .btn-view:hover { background: linear-gradient(135deg, var(--bb-accent), var(--bb-orange)); color: #fff; border-color: transparent; box-shadow: 0 4px 16px rgba(233,30,140,.35); }
.bb-product-actions .btn-wa { background: rgba(37,211,102,.07); color: #1a9948; border: 1.5px solid rgba(37,211,102,.22); }
.bb-product-actions .btn-wa:hover { background: #25d166; color: #fff; border-color: transparent; box-shadow: 0 4px 16px rgba(37,211,102,.35); }

/* ============================================================
   LOOKBOOK GRID
   ============================================================ */
.bb-lookbook-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 14px;
}
.bb-lookbook-item {
    border-radius: 20px; overflow: hidden; position: relative; cursor: pointer;
    box-shadow: 0 8px 30px rgba(123,47,190,.10);
    transition: transform .35s, box-shadow .35s;
}
.bb-lookbook-item:hover { transform: scale(1.02); box-shadow: 0 20px 50px rgba(123,47,190,.18); }
.bb-lookbook-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .55s cubic-bezier(.25,.46,.45,.94);
    display: block;
}
.bb-lookbook-item:hover img { transform: scale(1.08); }
.bb-lookbook-tall { grid-row: 1 / 3; }
.bb-lookbook-wide { grid-column: 2 / 4; }
.bb-lookbook-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,10,46,.7) 0%, transparent 55%);
    display: flex; align-items: flex-end; padding: 20px;
    opacity: 0; transition: opacity .35s;
}
.bb-lookbook-item:hover .bb-lookbook-overlay { opacity: 1; }
.bb-lookbook-overlay span {
    font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
    background: linear-gradient(135deg, #fff, var(--bb-gold2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.bb-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.bb-about-img { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(135deg, #F8F4FF, #FFF0F8); border: none; position: relative;
    box-shadow: 0 20px 60px rgba(233,30,140,.12), 0 8px 30px rgba(123,47,190,.08);
}
.bb-about-img img { width: 100%; height: 100%; object-fit: cover; }
.bb-about-content h2 { font-family: var(--bb-serif); font-size: clamp(28px, 4vw, 46px); font-weight: 700; color: var(--bb-text); margin-bottom: 22px; line-height: 1.2; }
.bb-about-content h2 span { background: linear-gradient(135deg, var(--bb-accent), var(--bb-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bb-about-content p { color: var(--bb-muted); font-size: 15px; line-height: 1.85; margin-bottom: 16px; }

.bb-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 36px; }
.bb-stat {
    text-align: center; padding: 22px 12px;
    background: var(--bb-card);
    border: 1.5px solid rgba(233,30,140,.12);
    border-radius: 18px; transition: all .3s;
    position: relative; overflow: hidden;
    box-shadow: 0 4px 16px rgba(233,30,140,.06);
}
.bb-stat::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233,30,140,.06), transparent);
    transform: skewX(-20deg); transition: left .6s;
}
.bb-stat:hover { border-color: rgba(233,30,140,.28); transform: translateY(-5px); box-shadow: 0 16px 36px rgba(233,30,140,.14); }
.bb-stat:hover::before { left: 160%; }
.bb-stat .num { font-size: 30px; font-weight: 800; background: linear-gradient(135deg, var(--bb-accent), var(--bb-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bb-stat .label { font-size: 11px; color: var(--bb-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.bb-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.bb-contact-card { display: flex; align-items: flex-start; gap: 18px; padding: 26px; background: var(--bb-card); border-radius: 20px; border: 1.5px solid rgba(123,47,190,.10); margin-bottom: 16px; transition: all .3s; box-shadow: 0 4px 20px rgba(123,47,190,.06); }
.bb-contact-card:hover { border-color: rgba(233,30,140,.25); transform: translateX(6px); box-shadow: 0 10px 32px rgba(233,30,140,.12); }
.bb-contact-card .icon { font-size: 26px; flex-shrink: 0; background: linear-gradient(135deg, var(--bb-accent), var(--bb-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bb-contact-card h4 { font-size: 13px; font-weight: 700; color: var(--bb-text); margin-bottom: 5px; }
.bb-contact-card p { font-size: 13px; color: var(--bb-muted); margin: 0; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.bb-wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 62px; height: 62px; border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #1aab52);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 28px; text-decoration: none;
    box-shadow: 0 6px 28px rgba(37,211,102,.45); transition: all .3s;
    animation: waPulse 2.5s ease-in-out infinite;
}
.bb-wa-float:hover { transform: scale(1.12) rotate(-8deg); color: #fff; box-shadow: 0 10px 40px rgba(37,211,102,.6); }
@keyframes waPulse {
    0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,.45); }
    50% { box-shadow: 0 6px 40px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.08); }
}
.bb-wa-tooltip { position: absolute; right: 72px; background: rgba(255,255,255,.96); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border: 1px solid rgba(123,47,190,.1); color: var(--bb-text); padding: 7px 14px; border-radius: 10px; font-size: 12px; font-weight: 600; white-space: nowrap; opacity: 0; transition: opacity .3s; pointer-events: none; box-shadow: 0 4px 20px rgba(123,47,190,.12); }
.bb-wa-float:hover .bb-wa-tooltip { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.bb-footer {
    background: linear-gradient(135deg, #1A0A2E 0%, #2D1060 60%, #1A0A2E 100%);
    border-top: 1px solid rgba(233,30,140,.18);
    padding: 70px 5% 36px; position: relative; overflow: hidden;
}
.bb-footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--bb-accent), var(--bb-orange), var(--bb-gold2), var(--bb-purple), var(--bb-accent));
    background-size: 300% 100%; animation: gradientShift 6s ease infinite;
}
.bb-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 48px; }
.bb-footer-brand p { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.8; margin-top: 12px; }
.bb-footer h4 { font-size: 11px; font-weight: 700; color: var(--bb-gold2); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.bb-footer ul { list-style: none; }
.bb-footer ul li { margin-bottom: 10px; }
.bb-footer ul a { color: rgba(255,255,255,.48); text-decoration: none; font-size: 13.5px; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.bb-footer ul a::before { content: '\203A'; color: var(--bb-accent); font-size: 16px; line-height: 1; }
.bb-footer ul a:hover { color: var(--bb-gold2); }
.bb-footer-social { display: flex; gap: 10px; margin-top: 18px; }
.bb-footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; transition: all .25s; }
.bb-footer-social a:hover { background: linear-gradient(135deg, var(--bb-accent), var(--bb-orange)); border-color: transparent; color: #fff; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(233,30,140,.35); }
.bb-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.bb-footer-bottom p { color: rgba(255,255,255,.32); font-size: 12px; }

/* ============================================================
   FILTERS / PAGINATION
   ============================================================ */
.bb-filter-form { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center; }
.bb-filter-input {
    background: var(--bb-card); border: 1.5px solid rgba(123,47,190,.18);
    color: var(--bb-text); border-radius: 12px; padding: 10px 16px;
    font-size: 13.5px; font-family: var(--bb-font); transition: all .2s;
    box-shadow: 0 2px 10px rgba(123,47,190,.06);
}
.bb-filter-input::placeholder { color: var(--bb-muted); }
.bb-filter-input:focus { outline: none; border-color: var(--bb-accent); box-shadow: 0 0 0 3px rgba(233,30,140,.1); background: rgba(255,255,255,.08); }
.bb-filter-btn {
    background: linear-gradient(135deg, var(--bb-accent), var(--bb-orange));
    border: none; color: #fff; border-radius: 10px; padding: 10px 22px;
    font-size: 13px; font-weight: 700; cursor: pointer; transition: all .2s;
    font-family: var(--bb-font); box-shadow: 0 4px 16px rgba(233,30,140,.3);
}
.bb-filter-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(233,30,140,.45); }
.bb-filter-reset { background: transparent; border: 1.5px solid rgba(123,47,190,.25); color: var(--bb-text2); border-radius: 10px; padding: 9px 18px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; font-family: var(--bb-font); }
.bb-filter-reset:hover { border-color: var(--bb-accent); color: var(--bb-accent); background: rgba(233,30,140,.05); }

.bb-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 52px; flex-wrap: wrap; }
.bb-page-link { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--bb-card); border: 1.5px solid rgba(123,47,190,.15); color: var(--bb-text2); text-decoration: none; font-size: 14px; font-weight: 600; transition: all .2s; box-shadow: 0 2px 10px rgba(123,47,190,.06); }
.bb-page-link:hover, .bb-page-link.active { background: linear-gradient(135deg, var(--bb-accent), var(--bb-orange)); border-color: transparent; color: #fff; box-shadow: 0 4px 16px rgba(233,30,140,.35); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .bb-nav-links { display: none; }
    .bb-hamburger { display: flex; }
    .bb-about-grid { grid-template-columns: 1fr; }
    .bb-about-img { max-height: 400px; }
    .bb-contact-grid { grid-template-columns: 1fr; }
    .bb-footer-grid { grid-template-columns: 1fr 1fr; }
    .bb-lookbook-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
    .bb-lookbook-wide { grid-column: 1 / 3; }
    .bb-lookbook-tall { grid-row: auto; }
}
@media (max-width: 640px) {
    .bb-hero { padding: 100px 5% 70px; }
    .bb-hero p { font-size: 15px; }
    .bb-hero-stats { gap: 24px; }
    .bb-footer-grid { grid-template-columns: 1fr; }
    .bb-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .bb-stats { grid-template-columns: 1fr 1fr; }
    .bb-products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
    .bb-categories { grid-template-columns: repeat(2, 1fr); }
    .bb-section { padding: 70px 5%; }
    .bb-lookbook-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; gap: 10px; }
    .bb-lookbook-wide { grid-column: 1 / 3; }
    .bb-lookbook-tall { grid-row: auto; }
}
