body.bajhi-minimal-mode {
    margin: 0;
    padding: 15px;
    background: #0a0a0f !important;
}

body.bajhi-minimal-mode header,
body.bajhi-minimal-mode footer,
body.bajhi-minimal-mode .site-header,
body.bajhi-minimal-mode .site-footer,
body.bajhi-minimal-mode .elementor-location-header,
body.bajhi-minimal-mode .elementor-location-footer,
body.bajhi-minimal-mode #masthead,
body.bajhi-minimal-mode #colophon,
body.bajhi-minimal-mode .navigation-top,
body.bajhi-minimal-mode .bajhi-sticky-bottom,
body.bajhi-minimal-mode #bajhi-sticky-bottom {
    display: none !important;
}


/* =========================================
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DOKAN DASHBOARD DESIGN OVERRIDE - EMERALD
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ========================================= */
:root {
    --dokan-emerald-dark: #050507;
    --dokan-emerald-card: rgba(15, 18, 28, 0.85);
    /* Matches content-product-tiled */
    --dokan-emerald-border: rgba(139, 156, 180, 0.15);
    --dokan-emerald-text: #e9edf6;
    --dokan-emerald-muted: #8b9bb4;
    --dokan-emerald-primary: #10b981;
    /* Emerald 500 */
    --dokan-emerald-primary-glow: rgba(16, 185, 129, 0.3);
    --dokan-glass: blur(10px);
}

/* Main Wrapper Override */
.dokan-dashboard-wrap {
    background: #000 !important;
    /* Force black base */
    color: var(--dokan-emerald-text);
    font-family: 'Inter', sans-serif;
}

/* Sidebar Override */
.dokan-dashboard-wrap .dokan-dash-sidebar {
    background: var(--dokan-emerald-card) !important;
    border-right: 1px solid var(--dokan-emerald-border) !important;
    backdrop-filter: var(--dokan-glass);
}

.dokan-dashboard-menu-item a {
    color: var(--dokan-emerald-muted) !important;
    border-bottom: 1px solid var(--dokan-emerald-border) !important;
}

.dokan-dashboard-menu-item:hover a,
.dokan-dashboard-menu-item.active a {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #fff !important;
    border-left: 3px solid var(--dokan-emerald-primary) !important;
}

/* Content Area */
.dokan-dashboard-content {
    background: transparent !important;
}

.dokan-dashboard-wrap .entry-title {
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* Cards / Containers */
.dokan-panel,
.dokan-order-filter-serach,
.dokan-dashboard-header,
.dashboard-widget {
    background: var(--dokan-emerald-card) !important;
    border: 1px solid var(--dokan-emerald-border) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

/* Tables */
.dokan-table {
    border-collapse: separate !important;
    border-spacing: 0 8px !important;
    background: transparent !important;
    border: none !important;
}

.dokan-table thead th {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #a7f3d0 !important;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    padding: 12px !important;
}





.dokan-table tbody tr {
    background: rgba(255, 255, 255, 0.03) !important;
    transition: transform 0.2s, background 0.2s;
}

.dokan-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    transform: translateY(-2px);
}

.dokan-table td {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #e2e8f0 !important;
    vertical-align: middle !important;
}

.dokan-table td:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.dokan-table td:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}


/* Buttons */
.dokan-btn,
input[type="submit"],
button {
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Task 3: Fix Chat Button Font (Override above !important) */
.dokan-btn.bm-lc-button {
    background: linear-gradient(135deg, #2a2a2a 0%, #111111 100%) !important;
    border-color: #111 !important;
    color: #fff !important;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    text-transform: none !important;
}

.dokan-btn.bm-lc-button.dokan-btn-sm {
    padding: 4px 10px !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    border-radius: 4px !important;
    height: auto !important;
    min-height: unset !important;
}

.dokan-btn-theme:not(.bm-lc-button),
.dokan-btn-success {
    background: linear-gradient(135deg, #000000 0%, #1B61E7 100%) !important;
    color: #C0FFD4 !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(176, 82, 255, 0.2) !important;
}

.dokan-btn-theme:not(.bm-lc-button):hover,
.dokan-btn-success:hover {
    background: linear-gradient(135deg, #2a0a40 0%, #1B61E7 100%) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(176, 82, 255, 0.4) !important;
}

/* =========================
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LEFT NAVIGATION MENU 
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ========================= */
#dokan-navigation {
    background: #000000 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5) !important;
}

ul.dokan-dashboard-menu {
    background: transparent !important;
    padding-top: 20px !important;
}

ul.dokan-dashboard-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    margin-bottom: 2px !important;
}

ul.dokan-dashboard-menu li a {
    color: #8b9bb4 !important;
    /* Muted Blue-Grey */
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 12px 18px !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
    border-left: 3px solid transparent !important;
}

/* Sidebar Icons */
ul.dokan-dashboard-menu li a i {
    color: #1B61E7 !important;
    /* Purple Icons */
    font-size: 16px !important;
    width: 24px !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
}

/* Hover & Active States */
ul.dokan-dashboard-menu li:hover a,
ul.dokan-dashboard-menu li.active a,
ul.dokan-dashboard-menu li.dokan-common-links a:hover {
    background: linear-gradient(90deg, rgba(176, 82, 255, 0.15) 0%, transparent 100%) !important;
    color: #fff !important;
    border-left-color: #1B61E7 !important;
    text-shadow: 0 0 10px rgba(176, 82, 255, 0.4) !important;
}

/* Icon Glow on Hover */
ul.dokan-dashboard-menu li:hover a i,
ul.dokan-dashboard-menu li.active a i {
    color: #C0FFD4 !important;
    /* Mint Green Highlight */
    filter: drop-shadow(0 0 6px rgba(192, 255, 212, 0.5));
    transform: scale(1.1);
}

/* Badge Styling */
.bp-better-messages-unread {
    background: #1B61E7 !important;
    color: #fff !important;
    box-shadow: 0 0 8px rgba(176, 82, 255, 0.6) !important;
}

/* Inputs */
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
textarea,
select {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 10px !important;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--dokan-emerald-primary) !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2) !important;
}

/* Dark mode autofill fix — prevents browser from forcing white background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #0d1117 inset !important;
    box-shadow: 0 0 0 1000px #0d1117 inset !important;
    -webkit-text-fill-color: #e2e8f0 !important;
    caret-color: #e2e8f0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px !important;
}

/* Modal Overrides (Already Dark but refined) */
.dw-modal-overlay {
    display: none;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    opacity: 1 !important;
    visibility: visible !important;

}

/* Task 1: Product Image Height Cap - GLOBAL (Mobile + Desktop) */
.product-grid-item .product-element-top img,
.product-grid-item img,
.wdm-card-v5 .product-image-link img,
.wdm-card-v5 img {
    width: 100% !important;
    height: auto !important;
    max-height: 300px !important;
    object-fit: cover !important;
    object-position: top !important;
    display: block !important;
}

/* Ensure wrapper doesn't force height or padding */
.product-grid-item .product-element-top,
.wdm-card-v5 .product-element-top {
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Hide Launch Now button everywhere */
.bajhi-launch-agent-btn {
    display: none !important;
}



body .wdm-card-v5 .product-element-top .product-image-link,
body .wdm-card-v5 .product-element-top .product-image-link img,
body .wdm-card-v5 .product-element-top img,
body .product-grid-item .wdm-card-v5 img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: 275px !important;
    object-fit: cover !important;
    object-position: top !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Optimization removed: Restore bajhi-slide-loader for quotes */

/* Ensure slide panel is dark mode ready while iframe loads - Strict Enforcement */
#bajhi-product-slide-panel,
#bajhi-product-slide-panel iframe,
body.bajhi-panel-open #bajhi-product-slide-panel {
    background-color: #000000 !important;
    background: #000000 !important;
}

/* Force iframe to be transparent initially or black to prevent white flash of default user agent stylesheet */
iframe#bajhi-product-slide-frame {
    background-color: #000000 !important;
    color-scheme: dark !important;
    position: relative !important;
    z-index: 1 !important;
}

#bajhi-slide-loader {
    z-index: 999999 !important;
}

/* Unified Premium Card Background (matches bajhi-hero-text) */
body .wdm-card-v5 {
    background: rgba(10, 12, 22, .9) !important;
    border: 1px solid rgba(139, 92, 246, .2) !important;
    box-shadow: 0 0 0 1px rgba(139, 92, 246, .06),
        0 16px 48px rgba(0, 0, 0, .5),
        inset 0 1px 0 rgba(255, 255, 255, .06) !important;
    position: relative;
    overflow: hidden !important;
    border-radius: 8px !important;
    transition: border-color 0.3s ease;
}

/* Add ambient glow effect to cards */
body .wdm-card-v5::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(139, 92, 246, .14) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 90%, rgba(6, 182, 212, .10) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Ensure content stays above glow */
body .wdm-card-v5>* {
    position: relative;
    z-index: 1;
}

body .wdm-card-v5:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Desktop Chat Scroll Fix */
@media (min-width: 769px) {
    /* Desktop specific overrides if needed */

    .bp-messages-wrap .list-view {
        max-height: 70vh;
        overflow-y: auto;
    }
}

/* Explicit high z-index for apply modal */
#dw-prop-modal {
    z-index: 2147483647 !important;
}

.dw-modal-content {
    background: #1e1e1e;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    color: #f0f0f0;
    width: 600px;
    max-width: 90%;
    margin: 5vh auto;
    padding: 30px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dw-modal-content h3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding-bottom: 15px;
    margin-top: 0;
    font-family: 'Inter', sans-serif;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #888;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.close-modal:hover {
    color: #fff;
}

/* Apply Modal Specifics (Emerald) */
#dw-prop-modal .dw-modal-content {
    background: linear-gradient(135deg, rgba(10, 30, 25, 0.98) 0%, rgba(5, 20, 15, 0.98) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.1);
}

#dw-prop-modal h3 {
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.2);
}

#dw-prop-modal label {
    color: #a7f3d0;
    text-transform: uppercase;
    font-size: 0.85em;
    margin-bottom: 5px;
    display: block;
}

/* Submit Button - Gradient Text Style */
#dw-prop-submit-btn {
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    background-color: rgba(16, 185, 129, 0.1) !important;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

#dw-prop-submit-btn:hover {
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-1px);
    border-color: rgba(16, 185, 129, 0.6) !important;
}

.vendor-modal {
    width: 900px;
    height: 80vh;
    overflow-y: auto;
}

/* Alerts */
.dokan-alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 10px;
    border-radius: 6px;
}

.dokan-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
    padding: 10px;
    border-radius: 6px;
}

/* Stacked Chat Icons - Left Side (Premium Circular Design) */
#bp-better-messages-mini-mobile-open,
.bp-better-messages-mini-mobile-open,
.sb-chat-btn,
#sb-chat-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10000 !important;
    position: fixed !important;
    left: 20px !important;
    right: auto !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    border-radius: 50% !important;
    background: #111111 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
    overflow: visible !important;
    padding: 0 !important;
    transition: transform 0.2s ease, background 0.2s ease !important;
}

#bp-better-messages-mini-mobile-open:hover,
.sb-chat-btn:hover {
    transform: scale(1.1) !important;
    background: #222 !important;
}

/* Center Icons/SVGs - Refined for Support Board Shape */
#bp-better-messages-mini-mobile-open svg,
.sb-chat-btn i,
#sb-chat-btn i,
#bp-better-messages-mini-mobile-open .bp-better-messages-mini-mobile-open-icon svg,
.sb-chat-btn svg,
#sb-chat-btn svg {
    width: 22px !important;
    height: 22px !important;
    font-size: 22px !important;
    color: #fff !important;
    margin: 0 !important;
    display: grid !important;
    place-items: center !important;
    line-height: 1 !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

.sb-chat-btn img,
#sb-chat-btn img {
    width: 60px !important;
    height: auto !important;
    max-width: 100%;
}

/* Standardize Count Badge for Better Messages (Floating) */
#bp-better-messages-mini-mobile-open .count {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    background: #ff4757 !important;
    color: #fff !important;
    font-size: 10px !important;
    min-width: 18px !important;
    height: 18px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #111 !important;
    padding: 0 4px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    z-index: 10100 !important;
}

/* Toolbar Counter Badge (Mobile) */
.wd-toolbar-messages .count {
    position: absolute !important;
    top: -2px !important;
    right: 15px !important;
    background: #ff4757 !important;
    color: #fff !important;
    font-size: 9px !important;
    min-width: 16px !important;
    height: 16px !important;
    border-radius: 8px !important;
    display: none;
    /* Hidden if 0 */
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #fff !important;
    padding: 0 3px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

/* Individual Positioning (Desktop Default) */
#bp-better-messages-mini-mobile-open,
.bp-better-messages-mini-mobile-open {
    bottom: 20px !important;
}

.sb-chat-btn,
#sb-chat-btn {
    left: 10px !important;
    bottom: 70px !important;
}

.sb-chat.sb-chat-left {
    left: 0 !important;
}

.sb-chat.sb-chat-left>.sb-body {
    right: auto !important;
    left: 70px !important;
}

/* Ensure SB Body aligns correctly */

/* Header Integration Styles (When moved via JS) */
.whb-mobile-right #bp-better-messages-mini-mobile-open,
.whb-mobile-right .sb-chat-btn,
.whb-col-right #bp-better-messages-mini-mobile-open,
.whb-col-right .sb-chat-btn {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    margin-left: 10px !important;
    box-shadow: none !important;
}

/* Mobile Stack Adjustment (Backup for pages without relocation) */
@media (max-width: 768px) {

    #bp-better-messages-mini-mobile-open,
    .bp-better-messages-mini-mobile-open {
        bottom: 65px !important;
    }

    .sb-chat-btn,
    #sb-chat-btn {
        bottom: 100px !important;
    }

    #bajhi-product-slide-close {
        top: auto;
        bottom: 65px;
        right: 20px;
    }
}

/* User Request: Mobile Position and Height Fixes */
@media (max-width: 1024px) {

    /* Hide floating icons when integrated into toolbar or on tablet/mobile */
    #bp-better-messages-mini-mobile-open,
    .bp-better-messages-mini-mobile-open,
    .bpbm-mobile-open-left,
    .bpbm-mobile-open-right,
    .bp-better-messages-mini-chat-toggler,
    #bp-better-messages-mini-chat-toggler,
    .sb-chat-btn,
    #sb-chat-btn {
        display: none !important;
        z-index: -1 !important;
        visibility: hidden !important;
        bottom: -1000px !important;
        /* Push way off screen */
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

@media (max-width: 600px) {
    #bajhi-sticky-bottom {
        z-index: 10000 !important;
        /* height: 80px !important; Removed to prevent breaking flex-column wrap on mobile */
    }

    #bajhi-sticky-input-wrap {
        /* height: 80px !important; */
    }

    #bajhi-sticky-input {
        /* height: 80px !important; */
        /* padding-top: 20px !important; */
        /* padding-bottom: 20px !important; */
    }
}

/* Transparency for Better Messages Dark Theme */
body.bm-messages-dark #bp-better-messages-mini-mobile-open {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}


/* Stats Grid - Unified Horizontal Scroll */
.bajhi-stats-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    width: 100%;
    padding-bottom: 10px;
    /* Space for scrollbar if visible/needed */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    align-items: stretch;
    /* Same height */
    margin-bottom: 25px;
}

.bajhi-stats-grid::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

/* Stat Card */
.bajhi-stat-card {
    background-color: var(--bajhi-card-bg, #1a1b1e);
    border: 1px solid var(--bajhi-border-color, #2a2b2e);
    border-radius: 8px;
    padding: 12px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    color: var(--bajhi-text-primary, #ffffff);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* Flex Item Props */
    flex: 0 0 150px;
    width: 150px;
    min-width: 150px;
    min-height: 100px;
}

.bajhi-stat-card:hover {
    background-color: var(--bajhi-hover-bg, #ffffff08);
    border-color: #666;
}

/* Flex Row for Icon + Value */
.bajhi-stat-top-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.bajhi-stat-card .stat-icon {
    font-size: 16px;
    padding: 6px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

/* Icon Colors by Type */
.bajhi-maker-stat .stat-icon {
    color: var(--bajhi-accent-blue, #3b82f6);
}

.bajhi-affiliate-stat .stat-icon {
    color: var(--bajhi-accent-green, #10b981);
}

.bajhi-stat-card .stat-value {
    font-size: 20px;
    font-weight: 500;
    color: var(--bajhi-text-primary, #ffffff);
    line-height: 1;
}

/* Stat Label - Normal Case */
.bajhi-stat-card .stat-label {
    font-size: 11px;
    color: #9AA0A6;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding-left: 2px;
}

@media screen and (min-width: 769px) {
    .bajhi-stat-card .stat-value {
        font-size: 22px !important;
    }

    .bajhi-stat-card .stat-label {
        font-size: 11px !important;
    }

    .bajhi-stat-card {
        padding: 14px !important;
    }
}

/* --- PROFILE CARD STYLES --- */
.bajhi-profile-card {
    /* Flex Item Props for Desktop */
    flex: 0 0 350px;
    width: 350px;
    min-width: 300px;
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.bajhi-profile-card:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.bajhi-profile-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: #333;
    flex-shrink: 0;
}

.bajhi-profile-icon-fallback {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 24px;
    color: #888;
    flex-shrink: 0;
}

.bajhi-profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bajhi-profile-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.2;
}

.bajhi-profile-meta {
    font-size: 13px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.bajhi-profile-arrow {
    color: #666;
    font-size: 16px;
    margin-left: 10px;
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .bajhi-profile-card {
        /* Mobile: Tighter width as requested */
        flex: 0 0 82vw !important;
        width: 82vw !important;
        min-width: 82vw !important;
    }
}


/* Hide Better Messages, Header, Footer, Sticky Bar, Admin Bar, Toolbar, History */
body.bajhi-minimal-mode .bm-lc-button,
body.bajhi-minimal-mode .bm-chat-icon,
body.bajhi-minimal-mode #bp-better-messages-mini-chat,
body.bajhi-minimal-mode #bp-better-messages-mini-mobile-open,
body.bajhi-minimal-mode .whb-sticky-header,
body.bajhi-minimal-mode .whb-header,
body.bajhi-minimal-mode header.whb-header,
body.bajhi-minimal-mode .wd-tools-element.wd-header-search-form-mobile,
body.bajhi-minimal-mode .woodmart-sticky-sidebar-opener,
body.bajhi-minimal-mode #bajhi-sticky-search-bar,
body.bajhi-minimal-mode #bajhi-chat-history,
/* Hide History inside panel */
body.bajhi-minimal-mode footer,
body.bajhi-minimal-mode .footer-container,
body.bajhi-minimal-mode .copyrights-wrapper,
body.bajhi-minimal-mode #wpadminbar,
body.bajhi-minimal-mode .wd-toolbar {
    display: none !important;
}

/* Reset Layout */
body.bajhi-minimal-mode,
body.bajhi-minimal-mode .main-page-wrapper {
    padding-top: 0 !important;
    margin-top: 0 !important;
    background: #0a0a0f !important;
    /* Force dark background matches panel */
}

/* Ensure content is visible */
/* Padding removed as per user request to fix minimal mode spacing */

/* Admin Bar Adjustments */
html.bajhi-minimal-html {
    margin-top: 0 !important;
    --wd-admin-bar-height: 0px !important;
}

/* Dark Scrollbars for White Gap Fix */
body.bajhi-minimal-mode::-webkit-scrollbar,
body.bajhi-minimal-mode *::-webkit-scrollbar {
    width: 8px;
}

body.bajhi-minimal-mode::-webkit-scrollbar-track,
body.bajhi-minimal-mode *::-webkit-scrollbar-track {
    background: #0a0a0f;
}

body.bajhi-minimal-mode::-webkit-scrollbar-thumb,
body.bajhi-minimal-mode *::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

body.bajhi-minimal-mode::-webkit-scrollbar-thumb:hover,
body.bajhi-minimal-mode *::-webkit-scrollbar-thumb:hover {
    background: #555;
}

html.bajhi-minimal-html,
body.bajhi-minimal-mode {
    scrollbar-color: #333 #0a0a0f;
    scrollbar-width: thin;
}


.bajhi-share-wrap-top:hover .bajhi-collapsible-share,
.bajhi-share-wrap-top.active .bajhi-collapsible-share,
.bajhi-share-trigger:hover+.bajhi-collapsible-share {
    display: flex !important;
}

.bajhi-share-trigger:hover {
    color: #333;
}

.bajhi-collapsible-share .share-icon:hover {
    color: #fff !important;
}

.bajhi-custom-header-stats {
    position: relative;
}

@media (max-width: 768px) {
    .bajhi-custom-header-stats {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
        padding-bottom: 5px;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
        width: calc(100% + 30px);
    }

    .bajhi-custom-header-stats::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .bajhi-custom-header-stats>div,
    .bajhi-custom-header-stats>a {
        flex-shrink: 0 !important;
    }

    .bajhi-header-left {
        flex: 0 0 auto !important;
    }
}

.quantity {
    display: none !important;
}

button.bajhi-follow-btn.following,
.bajhi-follow-btn.following {
    background: #1B61E7 !important;
    color: #fff !important;
    border-color: #1B61E7 !important;
}

.dokan-vendor-name button.bajhi-follow-btn {
    margin-left: 8px;
}


/* Vendor Section Dark Mode */
.dokan-vendor-info-wrap.bajhi-vendor-dark {
    background: #1a1b1f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    /* Compact */
    /* Compact */
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Compact */
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: #ccc;
}

/* Hide Quantity Input Globally on Single Product Pages */
.single-product .quantity,
.quantity {
    display: none !important;
}

/* Compact View Specifics */
.dokan-vendor-info-wrap.compact-view .dokan-vendor-header {
    display: flex;
    gap: 12px;
    width: 100%;
}

/* Vendor Image */
.dokan-vendor-image img {
    width: 40px !important;
    /* Compact */
    height: 40px !important;
    /* Compact */
    border-radius: 10px !important;
    object-fit: contain !important;
    border: 1px solid #333;
    background: #25262b;
}

/* Vendor Details */
.dokan-vendor-name h5 {
    color: #fff !important;
    margin: 0 0 2px;
    font-size: 15px;
    font-weight: 600;
}

.vendor-location {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 4px;
}

/* Rating & Followers */
.dokan-vendor-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888;
}

.rating-val {
    color: #fbbf24;
    font-weight: bold;
}

/* Star Rating Size Override */
.star-rating {
    font-size: 12px !important;
    margin: 0 !important;
    width: 5em !important;
}

/* About Section */
.vendor-about-section {
    font-size: 13px;
    color: #ccc;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 8px;
    margin-top: 5px;
}

/* Buttons */
.vendor-actions-row {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}

.bajhi-chat-btn,
.bajhi-follow-btn-profile {
    flex: 1;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
}

.bajhi-chat-btn {
    background: #4f46e5;
    color: white;
}

.bajhi-chat-btn:hover {
    background: #4338ca;
}

.bajhi-follow-btn-profile {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.bajhi-follow-btn-profile:hover {
    background: rgba(255, 255, 255, 0.2);
}

.bajhi-follow-btn-profile.following {
    background: #10b981;
    color: white;
}

/* Tags Styling (Badges) */
.bajhi-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.bajhi-tag-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ccc !important;
    font-size: 12px;
    text-decoration: none !important;
    transition: all 0.2s;
}

.bajhi-tag-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Optimization for Extra Compactness */
@media (max-width: 768px) {
    .dokan-vendor-info-wrap.bajhi-vendor-dark {
        padding: 8px !important;
        gap: 6px !important;
    }

    .dokan-vendor-image img {
        width: 32px !important;
        height: 32px !important;
    }

    .dokan-vendor-name h5 {
        font-size: 14px !important;
    }

    .vendor-location,
    .dokan-vendor-rating,
    .vendor-prod-count {
        font-size: 11px !important;
    }

    .vendor-actions-row {
        margin-top: 4px !important;
    }

    .bajhi-chat-btn,
    .bajhi-follow-btn-profile {
        padding: 4px 10px !important;
        font-size: 12px !important;
        height: 30px !important;
    }

    .bajhi-share-wrap {
        margin-top: 15px !important;
        padding-top: 10px !important;
    }

    .share-icon {
        width: 28px !important;
        height: 28px !important;
    }
}

/* Share Icons */
.bajhi-share-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.share-label {
    font-weight: 600;
    margin-right: 5px;
    color: #fff;
    font-size: 14px;
}

.share-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    transition: all 0.2s;
    font-size: 14px;
}

.share-icon:hover {
    transform: translateY(-2px);
}

.share-icon.fb:hover {
    background: #1877f2;
}

.share-icon.tw:hover {
    background: #000;
    border: 1px solid #333;
}

.share-icon.li:hover {
    background: #0077b5;
}

.share-icon.wa:hover {
    background: #25D366;
}

.share-icon.tg:hover {
    background: #0088cc;
}

.share-icon.mail:hover {
    background: #EA4335;
}

.share-icon.copy:hover {
    background: #666;
}

.share-icon.aff:hover {
    background: #10b981;
}

/* Description Font Increase */
.woocommerce-product-details__short-description p,
.woocommerce-Tabs-panel--description p {
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: #ccc;
}


/* MAIN DASHBOARD CONTAINER (2 COLUMN DESKTOP) */
.bajhi-vendor-dashboard-container {
    background: transparent !important;
    /* Removed background */
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    /* Slim dim border */
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    box-shadow: none !important;
    /* Remove shadow for slim look */
    font-family: 'Inter', sans-serif;
}

/* Dim Vendor Name */
.dokan-vendor-name h5 {
    color: #777 !important;
    /* Even dimmer */
    font-weight: 500 !important;
}

@media (max-width: 1024px) {
    .single-product .wd-builder-off {
        --wd-single-spacing: 0px !important;
    }
}

@media (max-width: 767px) {
    .bajhi-vendor-dashboard-container {
        width: calc(100% + 30px) !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        padding: 10px 15px !important;
        /* Super compact padding */
        gap: 8px !important;
    }

    /* Shrink Avatar on mobile */
    .dokan-vendor-image {
        min-width: 32px !important;
        gap: 0 !important;
    }

    .dokan-vendor-image img {
        width: 28px !important;
        height: 28px !important;
        border-radius: 6px !important;
    }

    /* Show first name only on mobile */
    .bajhi-vendor-last-name {
        display: none !important;
    }

    /* Hide Chat text, show only icon on mobile */
    .bajhi-chat-btn .bm-button-text {
        display: none !important;
    }

    .bajhi-chat-btn {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        /* Fix distortion */
        min-height: 28px !important;
        /* Fix distortion */
        flex: none !important;
        /* Fix distortion */
        justify-content: center !important;
        padding: 0 !important;
        border-radius: 50% !important;
        /* Circle like follow button */
        gap: 0 !important;
    }

    .bajhi-chat-btn i {
        font-size: 14px !important;
    }

    .bajhi-affiliate-text {
        display: none !important;
    }

    /* Minimum padding for product summary on mobile */
    .product-summary-shadow .summary-inner {
        padding: 10px 15px !important;
    }

    /* Tighten header/meta spacing */
    .dokan-vendor-header {
        gap: 10px !important;
        margin-bottom: 5px !important;
    }

    .bajhi-vendor-meta-row {
        gap: 8px !important;
        font-size: 11px !important;
    }
}

@media (min-width: 768px) {
    .bajhi-vendor-dashboard-container {
        flex-direction: row;
        align-items: stretch;
    }

    .bajhi-vendor-left {
        flex: 1.2;
        padding-right: 15px;
    }

    .bajhi-vendor-right {
        flex: 0.8;
        padding-left: 15px;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* --- LEFT BLOCK: VENDOR INFO --- */
.dokan-vendor-header {
    display: flex;
    align-items: flex-start;
    /* Compact: Align Top */
    gap: 12px;
    margin-bottom: 8px;
    /* Compact */
}

.dokan-vendor-image img {
    width: 55px !important;
    height: 55px !important;
    border-radius: 12px !important;
    /* Fixed distortion */
    object-fit: contain !important;
    background: #25262b;
    border: 1px solid #333;
}

.dokan-vendor-name h5 {
    color: #fff !important;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
}

/* Align Buttons alongside name */
.dokan-vendor-name {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.dokan-vendor-name a {
    text-decoration: none;
}

.vendor-location {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dokan-vendor-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888;
}

.rating-val {
    color: #fbbf24;
    font-weight: 700;
}

.star-rating {
    width: 5.5em;
    font-size: 12px !important;
}

.vendor-about-section {
    font-size: 13px;
    color: #bbb;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vendor-actions-row {
    display: flex;
    gap: 10px;
}

.bajhi-chat-btn,
.bajhi-follow-btn-profile {
    flex: 1;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1.2;
}

.bajhi-chat-btn {
    background: #4f46e5;
    color: white;
    border-radius: 6px;
    height: 28px;
    padding: 0 12px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
}

.bajhi-chat-btn:hover {
    background: #4338ca;
    color: white !important;
}

/* Product Card Icon-Only Chat Button */
.bm-lc-button.icon-only {
    flex: 3 !important;
    min-height: 28px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    transition: all 0.2s ease !important;
}

.bm-lc-button.icon-only:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px);
}

.bm-lc-button.icon-only i {
    font-size: 14px !important;
    margin: 0 !important;
}

.bajhi-follow-btn {
    transition: transform 0.2s;
}

.bajhi-follow-btn:hover {
    transform: scale(1.05);
}

.bajhi-follow-btn-profile.following {
    background: #10b981;
    color: white;
}

/* --- RIGHT BLOCK: ACTIONS & STATS --- */
.bajhi-dashboard-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

/* Tags & Badges */
.bajhi-product-tags,
.bajhi-product-cats-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
    justify-content: center;
    /* Center align */
}

/* Share Icons */
.bajhi-share-wrap {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    justify-content: center;
    /* Center align */
    align-items: center;
    /* Align items vertically */
}

.share-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: all 0.2s;
    font-size: 14px;
    text-decoration: none !important;
    flex-shrink: 0;
}

.share-icon.pill {
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
    gap: 8px;
}

.share-icon.pill span.aff-text {
    font-size: 12px;
    font-weight: 500;
}

.share-icon:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

.share-icon.wa:hover {
    background: #25D366;
}

.share-icon.tg:hover {
    background: #0088cc;
}

.share-icon.mail:hover {
    background: #EA4335;
}

.share-icon.fb:hover {
    background: #3b5998;
}

.share-icon.li:hover {
    background: #0077b5;
}

.share-icon.copy:hover,
.share-icon.aff:hover {
    background: #4f46e5;
}

/* Vendor Socials */
.bajhi-vendor-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.bajhi-vendor-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.vendor-social-link {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #888;
    font-size: 11px;
    transition: 0.2s;
    text-decoration: none !important;
}

.vendor-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.bajhi-vendor-email-reveal {
    font-size: 12px;
    color: #666;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.bajhi-vendor-email-reveal:hover {
    color: #aaa;
}

.bajhi-vendor-email-reveal.revealed {
    cursor: text;
    color: #ddd;
    user-select: all;
}

/* Dashboard Stats Row */
.bajhi-dashboard-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
}

.bajhi-stats-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.bajhi-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #bbb;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.04);
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

/* Tags & Badges */
.bajhi-product-tags,
.bajhi-product-cats-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.bajhi-tag-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: #aaa !important;
    font-size: 11px;
    text-decoration: none !important;
    transition: 0.2s;
}

.bajhi-tag-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff !important;
}

/* Category Badges (Distinct) */
.bajhi-cat-badge {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(79, 70, 229, 0.1);
    /* Indigo tint */
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 4px;
    color: #c7d2fe !important;
    font-size: 10px;
    text-decoration: none !important;
    transition: 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bajhi-cat-badge:hover {
    background: rgba(79, 70, 229, 0.2);
    color: #fff !important;
    border-color: rgba(79, 70, 229, 0.4);
}

/* Liquid Glass Button Effect */
.bajhi-glass-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #fff !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px !important;
    /* Smaller size */
}

.bajhi-glass-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Following State Override */
.bajhi-glass-btn.following {
    background: rgba(16, 185, 129, 0.2) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    color: #6ee7b7 !important;
}

/* Vendor Product Count */
.vendor-prod-count {
    font-size: 11px;
    color: #888;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bajhi-cats-tiny {
    display: none;
    /* Hidden in favor of badges */
}

/* Share Icon Colors */
.share-icon.fb:hover {
    background: #1877F2;
}

.share-icon.li:hover {
    background: #0077b5;
}

/* Description Font Increase */
.woocommerce-product-details__short-description p,
.woocommerce-Tabs-panel--description p {
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: #ccc;
}