/* ============================================
   PROFESSIONAL HEADER STYLES - OVERRIDE THEME - STARTS
   ============================================ */

    /* Override theme's white color - Make icons dark/professional */
    .topbar-toolbar a.auth-icon-link,
    .topbar-toolbar a.auth-user-btn {
        color: #2c3e50 !important;  /* Professional dark slate color */
        transition: all 0.3s ease;
        position: relative;
    }

    /* Hover effect */
    .topbar-toolbar a.auth-icon-link:hover,
    .topbar-toolbar a.auth-user-btn:hover {
        color: #D4AF37 !important;  /* Your brand gold color */
    }

    /* User name text style when logged in */
    .topbar-toolbar .auth-user-btn span {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.3px;
        color: #2c3e50 !important;
    }

    .topbar-toolbar .auth-user-btn:hover span {
        color: #D4AF37 !important;
    }

    /* Cart count badge - Professional design */
    .topbar-toolbar .cart-count-badge {
        position: absolute;
        top: -8px;
        right: -12px;
        background: #D4AF37;  /* Gold color for brand consistency */
        color: #1a1a1a;
        font-size: 10px;
        font-weight: 700;
        min-width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 5px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        font-family: 'Poppins', sans-serif;
    }

    /* Wishlist count badge */
    .topbar-toolbar .wishlist-count {
        position: absolute;
        top: -8px;
        right: -12px;
        background: #D4AF37;
        color: #1a1a1a;
        font-size: 10px;
        font-weight: 700;
        min-width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 5px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }

    /* Dropdown menu styling */
    .topbar-toolbar .dropdown-menu {
        border-radius: 12px;
        padding: 8px 0;
        min-width: 200px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .topbar-toolbar .dropdown-item {
        font-size: 13px;
        font-weight: 500;
        padding: 10px 20px;
        color: #2c3e50;
        transition: all 0.2s ease;
    }

    .topbar-toolbar .dropdown-item i {
        width: 20px;
        font-size: 13px;
    }

    .topbar-toolbar .dropdown-item:hover {
        background-color: #f8f9fa;
        color: #D4AF37 !important;
        padding-left: 24px;
    }

    .topbar-toolbar .dropdown-item:hover i {
        color: #D4AF37 !important;
    }

    .topbar-toolbar .dropdown-item.text-danger:hover {
        background-color: #fee2e2;
        color: #dc3545 !important;
    }

    /* Dropdown toggle arrow styling */
    .auth-user-btn.dropdown-toggle::after {
        vertical-align: middle;
        margin-left: 6px;
        font-size: 10px;
    }

    /* Icon sizes */
    .topbar-toolbar .iccl {
        font-size: 20px;
    }

    /* Mobile responsive adjustments */
    @media (max-width: 768px) {
        .topbar-toolbar .cart-count-badge,
        .topbar-toolbar .wishlist-count {
            top: -6px;
            right: -10px;
            min-width: 16px;
            height: 16px;
            font-size: 9px;
        }
        
        .topbar-toolbar .iccl {
            font-size: 18px;
        }
    }

    /* For pages where header has white logo (home page with dark menu) */
    .navbar-custom .topbar-toolbar a.auth-icon-link,
    .navbar-custom .topbar-toolbar a.auth-user-btn {
        color: #000 !important;
    }

    /* Keep white color only when explicitly needed for dark backgrounds */
    .navbar-custom.bg-dark .topbar-toolbar a.auth-icon-link,
    .navbar-custom.bg-dark .topbar-toolbar a.auth-user-btn {
        color: #ffffff !important;
    }

    .navbar-custom.bg-dark .topbar-toolbar a.auth-icon-link:hover,
    .navbar-custom.bg-dark .topbar-toolbar a.auth-user-btn:hover {
        color: #D4AF37 !important;
    }

.text_white{color: white !important;}
.text_black{color: #000 !important;}
.text_orange{color: #D4AF37 !important;}

