.b-team-header-container-b2ae5af9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background: #ffffff;
}

/* Header Left */
.b-team-header-left-b2ae5af9 {
    display: flex;
    align-items: center;
    flex: 1;
}

.b-team-burger-trigger-b2ae5af9 {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    gap: 12px;
    color: #111111;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    transition: opacity 0.2s ease;
}

.b-team-burger-trigger-b2ae5af9:hover {
    opacity: 0.8;
}

.burger-bar-icon-b2ae5af9 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 18px;
}

.burger-bar-icon-b2ae5af9 span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: currentColor;
    transition: all 0.3s ease;
}

/* Header Center */
.b-team-header-center-b2ae5af9 {
    display: flex;
    justify-content: center;
    flex: 1;
}

.b-team-logo-b2ae5af9 {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    color: #111111;
}

/* Header Right */
.b-team-header-right-b2ae5af9 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex: 1;
}

/* Wishlist & Cart Trigger styling */
.b-team-wishlist-trigger-b2ae5af9,
.b-team-wishlist-icon-link-b2ae5af9,
.b-team-cart-trigger-b2ae5af9 {
    display: inline-flex;
    align-items: center;
    position: relative;
    color: #111111;
    text-decoration: none;
    font-size: 22px;
    cursor: pointer;
}

.b-team-wishlist-shortcode-wrap-b2ae5af9 {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.b-team-wishlist-shortcode-wrap-b2ae5af9 a {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.wl-badge-b2ae5af9,
.cart-count-b2ae5af9 {
    position: absolute;
    top: -5px;
    right: -10px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-sizing: border-box;
}

.wl-badge-b2ae5af9 {
    background-color: #ff2a74;
}

.cart-count-b2ae5af9 {
    background-color: #111111;
}

/* Search Wrapper & Protection against Oval blockage */
.b-team-search-wrap-b2ae5af9 {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 110 !important; /* Ensure always on top of any absolute oval backgrounds */
}

.b-team-search-trigger-b2ae5af9 {
    background: none;
    border: none;
    cursor: pointer;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    z-index: 120;
    transition: transform 0.2s ease;
}

.b-team-search-trigger-b2ae5af9:hover {
    transform: scale(1.08);
}

.b-team-search-overlay-bar-b2ae5af9 {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 115;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    padding: 4px 15px;
    width: 200px;
    display: flex;
    align-items: center;
}

.b-team-search-wrap-b2ae5af9.active .b-team-search-overlay-bar-b2ae5af9 {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
}

.b-team-search-input-b2ae5af9 {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 13px;
    color: #111111;
}

/* Menu Overlay Popup */
.b-team-menu-overlay-b2ae5af9 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}

/* Offset top if WordPress admin bar is loaded */
body.admin-bar .b-team-menu-overlay-b2ae5af9 {
    top: var(--wp-admin--admin-bar--height, 32px);
    height: calc(100vh - var(--wp-admin--admin-bar--height, 32px));
}

.b-team-menu-overlay-b2ae5af9.active {
    opacity: 1;
    visibility: visible;
}

/* Card Popup Style matching request image precisely */
.b-team-menu-popup-card-b2ae5af9 {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 440px;
    max-width: calc(100vw - 50px);
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-15px);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
}

.b-team-menu-overlay-b2ae5af9.active .b-team-menu-popup-card-b2ae5af9 {
    transform: translateY(0);
}

.b-team-popup-header-b2ae5af9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.b-team-popup-title-wrap-b2ae5af9 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.b-team-burger-title-b2ae5af9 {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
}

.b-team-popup-close-b2ae5af9 {
    background: #ffffff;
    border: 1px solid #eaeaea;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #555555;
    transition: background-color 0.2s;
}

.b-team-popup-close-b2ae5af9:hover {
    background-color: #f0f0f0;
}

/* Popup Navigation List */
.b-team-popup-nav-b2ae5af9 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.b-team-popup-nav-b2ae5af9 li {
    margin-bottom: 22px;
}

.b-team-overlay-menu-link-b2ae5af9 {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease, color 0.2s ease;
}

.b-team-overlay-menu-link-b2ae5af9:hover {
    color: #ff2a74;
    transform: translateX(4px);
}

/* Categories Scrolling Strip Marquee */
.b-team-category-strip-outer-b2ae5af9 {
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    padding: 12px 0;
    z-index: 95;
    position: relative;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.b-team-category-strip-b2ae5af9 {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.b-team-category-track-b2ae5af9 {
    display: flex;
    white-space: nowrap;
    animation: b-team-marquee-left 15s linear infinite;
}

/* Direction Class Modifier */
.b-team-marquee-dir-right .b-team-category-track-b2ae5af9 {
    animation-name: b-team-marquee-right;
}

.b-team-category-group-b2ae5af9 {
    display: flex;
    align-items: center;
}

.b-team-cat-item-b2ae5af9 {
    color: #111111;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    margin-right: 20px;
    padding: 10px 24px;
    border: 1px solid #ff2a74;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease-in-out;
}

.b-team-cat-item-b2ae5af9:hover {
    color: #ffffff;
    background-color: #ff2a74;
}

.b-team-cat-item-b2ae5af9 svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    display: block;
}

/* ==========================================
/* DESKTOP 15 LAYOUT CONFIGURATIONS\n/* ==========================================
*/

/* Layout 1: Burger-Trigger Left, Logo Center, Icons Right */
.b-team-desktop-layout-pre-d-layout-1 .b-team-header-container-b2ae5af9 {
    flex-direction: row;
}

/* Layout 2: Logo Left, Menu Middle, Icons Right */
.b-team-desktop-layout-pre-d-layout-2 .b-team-header-container-b2ae5af9 .b-team-header-center-b2ae5af9 {
    order: 2;
    justify-content: flex-start;
}
.b-team-desktop-layout-pre-d-layout-2 .b-team-header-container-b2ae5af9 .b-team-header-left-b2ae5af9 {
    order: 1;
    flex: unset;
}
.b-team-desktop-layout-pre-d-layout-2 .b-team-header-container-b2ae5af9 .b-team-header-right-b2ae5af9 {
    order: 3;
}

/* Layout 3: Logo Left, Right Burger & Icons */
.b-team-desktop-layout-pre-d-layout-3 .b-team-header-container-b2ae5af9 .b-team-header-left-b2ae5af9 {
    order: 2;
    justify-content: flex-end;
}
.b-team-desktop-layout-pre-d-layout-3 .b-team-header-container-b2ae5af9 .b-team-header-center-b2ae5af9 {
    order: 1;
    justify-content: flex-start;
}
.b-team-desktop-layout-pre-d-layout-3 .b-team-header-container-b2ae5af9 .b-team-header-right-b2ae5af9 {
    order: 3;
}

/* Layout 4: Stacked Row Logo Top, Actions Bottom */
.b-team-desktop-layout-pre-d-layout-4 .b-team-header-container-b2ae5af9 {
    flex-direction: column;
    gap: 15px;
}

/* Layout 5: Center Logo, Left Burger, Right Cart & Wishlist with border line split */
.b-team-desktop-layout-pre-d-layout-5 .b-team-header-container-b2ae5af9 {
    border-bottom: 2px solid #eaeaea;
}

/* Layout 6: Left Burger with Navigation Label, Right Centered Layout spacing */
.b-team-desktop-layout-pre-d-layout-6 .b-team-header-container-b2ae5af9 {
    padding: 20px 40px;
}

/* Layout 7: Split Menu Accent Style */
.b-team-desktop-layout-pre-d-layout-7 .b-team-logo-b2ae5af9 {
    border: 2px solid currentColor;
    padding: 5px 15px;
}

/* Layout 8: Minimal Centered Logo with side lines */
.b-team-desktop-layout-pre-d-layout-8 .b-team-header-center-b2ae5af9 {
    position: relative;
}

/* Layout 9: Sidebar Style Mock */
.b-team-desktop-layout-pre-d-layout-9 .b-team-header-container-b2ae5af9 {
    background: #fafafa;
}

/* Layout 10: Elegant Bold inline Pill Search */
.b-team-desktop-layout-pre-d-layout-10 .b-team-search-overlay-bar-b2ae5af9 {
    right: 0;
    top: 100%;
    transform: translateY(10px) scaleY(0);
    transform-origin: top;
}
.b-team-desktop-layout-pre-d-layout-10 .b-team-search-wrap-b2ae5af9.active .b-team-search-overlay-bar-b2ae5af9 {
    transform: translateY(10px) scaleY(1);
}

/* Layout 11: Left Side Header label trigger, right content inline */
.b-team-desktop-layout-pre-d-layout-11 .b-team-header-container-b2ae5af9 {
    justify-content: space-around;
}

/* Layout 12: Reverse alignment style */
.b-team-desktop-layout-pre-d-layout-12 .b-team-header-container-b2ae5af9 {
    flex-direction: row-reverse;
}

/* Layout 13: Top Bar Style simulation */
.b-team-desktop-layout-pre-d-layout-13 .b-team-header-container-b2ae5af9 {
    border-top: 5px solid #ff2a74;
}

/* Layout 14: Luxury Grid Balance */
.b-team-desktop-layout-pre-d-layout-14 .b-team-header-container-b2ae5af9 {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px;
}

/* Layout 15: Clean borderless style */
.b-team-desktop-layout-pre-d-layout-15 .b-team-header-container-b2ae5af9 {
    box-shadow: none;
    border-bottom: 1px solid #f0f0f0;
}


/* ==========================================
/* MOBILE 15 LAYOUT CONFIGURATIONS\n/* ==========================================
*/
@media(max-width: 767px) {
    /* Mobile Layout 1: Burger Left, Logo Center, Cart Right */
    .b-team-mobile-layout-pre-m-layout-1 .b-team-header-container-b2ae5af9 {
        flex-direction: row !important;
    }
    
    /* Mobile Layout 2: Logo Left, Burger Right */
    .b-team-mobile-layout-pre-m-layout-2 .b-team-header-container-b2ae5af9 .b-team-header-left-b2ae5af9 {
        order: 2;
        justify-content: flex-end;
    }
    .b-team-mobile-layout-pre-m-layout-2 .b-team-header-container-b2ae5af9 .b-team-header-center-b2ae5af9 {
        order: 1;
        justify-content: flex-start;
    }
    
    /* Mobile Layout 3: Center stacked row */
    .b-team-mobile-layout-pre-m-layout-3 .b-team-header-container-b2ae5af9 {
        flex-direction: column !important;
        align-items: center;
    }
    
    /* Mobile Layout 4: Icon priority compact bar */
    .b-team-mobile-layout-pre-m-layout-4 .b-team-header-container-b2ae5af9 {
        padding: 5px 15px;
    }
    
    /* Mobile Layout 5: Center trigger row */
    .b-team-mobile-layout-pre-m-layout-5 .b-team-burger-trigger-b2ae5af9 {
        flex-direction: row-reverse;
    }
    
    /* Mobile Layout 6: Custom padding mini bar */
    .b-team-mobile-layout-pre-m-layout-6 .b-team-header-container-b2ae5af9 {
        background: #111111;
    }
    .b-team-mobile-layout-pre-m-layout-6 .b-team-burger-trigger-b2ae5af9,\n    .b-team-mobile-layout-pre-m-layout-6 .b-team-logo-b2ae5af9,\n    .b-team-mobile-layout-pre-m-layout-6 .b-team-cart-trigger-b2ae5af9 {
        color: #ffffff;
    }
    
    /* Mobile Layout 7: Category track priority */
    .b-team-mobile-layout-pre-m-layout-7 .b-team-category-strip-outer-b2ae5af9 {
        position: sticky;
        top: 0;
    }

    /* Mobile Layouts 8 - 15 compacting mobile rules safely */
    .b-team-mobile-layout-pre-m-layout-8 .b-team-header-container-b2ae5af9 { border-radius: 0 0 15px 15px; }
    .b-team-mobile-layout-pre-m-layout-9 .b-team-logo-b2ae5af9 { font-size: 18px; }
    .b-team-mobile-layout-pre-m-layout-10 .b-team-header-container-b2ae5af9 { border-left: 4px solid #ff2a74; }
    .b-team-mobile-layout-pre-m-layout-11 .b-team-burger-trigger-b2ae5af9 .burger-text-b2ae5af9 { display: none; }
    .b-team-mobile-layout-pre-m-layout-12 .b-team-header-container-b2ae5af9 { border-bottom: 2px dashed #ff2a74; }
    .b-team-mobile-layout-pre-m-layout-13 .b-team-header-left-b2ae5af9 { flex: unset; }
    .b-team-mobile-layout-pre-m-layout-14 .b-team-header-container-b2ae5af9 { background: #fdfdfd; }
    .b-team-mobile-layout-pre-m-layout-15 .b-team-header-container-b2ae5af9 { justify-content: space-around; }
}

/* Looping Keyframes */
@keyframes b-team-marquee-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes b-team-marquee-right {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}
