/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/* Custom CSS for Nexus Theme
 *
 * This file allows you to customize the theme colors and styles for the entire Nexus template.
 *
 * To customize colors:
 * - Replace the var() references with your own hex colors or other CSS values.
 * - For example, instead of --primary: #4b5563; use --primary: #your-color;
 * - You can also override any CSS properties here.
 */

:root {
    --white: #fff;

    /* Neutral shades */
    --neutral-50: #fbf9fa;
    --neutral-100: #f4f5f7;
    --neutral-200: #e4e4e7;
    --neutral-300: #d0d5dd;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    --neutral-950: #030712;

    /* Neutral shades */
    /* define own pallet with brand colors */
    --primary-50: var(--neutral-50);
    --primary-100: var(--neutral-100);
    --primary-200: var(--neutral-200);
    --primary-300: var(--neutral-300);
    --primary-400: var(--neutral-400);
    --primary-500: var(--neutral-500);
    --primary-600: var(--neutral-600);
    --primary-700: var(--neutral-700);
    --primary-800: var(--neutral-800);
    --primary-900: var(--neutral-900);
    --primary-950: var(--neutral-900);

    /* Primary colors */
    /* Use shades from comments if `primary` colors use other colors, then neutral */
    --primary: var(--neutral-900);          /* var(--primary-600) */
    --primary-lifted: var(--neutral-800);   /* var(--primary-700) */
    --primary-accented: var(--neutral-700); /* var(--primary-800) */

    /* Secondary colors */
    --secondary: var(--neutral-500);
    --secondary-lifted: var(--neutral-600);
    --secondary-accented: var(--neutral-700);

    /* Success colors */
    --success: #00a63e;
    --success-lifted: #008236;
    --success-accented: #016630;

    /* Info colors */
    --info: #155dfc;
    --info-lifted: #1447e6;
    --info-accented: #193cb8;

    /* Notice colors */
    --notice: #7f22fe;
    --notice-lifted: #7008e7;
    --notice-accented: #5d0ec0;

    /* Warning colors */
    --warning: #f54a00;
    --warning-lifted: #ca3500;
    --warning-accented: #9f2d00;

    /* Error colors */
    --error: #e7000b;
    --error-lifted: #c10007;
    --error-accented: #9f0712;

    /* Grayscale colors */
    --grayscale: var(--neutral-900);
    --grayscale-lifted: var(--neutral-800);
    --grayscale-accented: var(--neutral-700);

    /* Neutral colors */
    --neutral: var(--neutral-500);
    --neutral-lifted: var(--neutral-600);
    --neutral-accented: var(--neutral-700);

    /* Text neutral colors */
    --text-inverted: var(--white);
    --text-muted: var(--neutral-400);
    --text-lifted: var(--neutral-500);
    --text-accented: var(--neutral-600);
    --text: var(--neutral-900);

    /* Border neutral colors */
    --border-muted: var(--neutral-200);
    --border: var(--neutral-300);
    --border-lifted: var(--neutral-400);
    --border-accented: var(--neutral-600);

    /* Background neutral colors */
    --bg: var(--white);
    --bg-muted: var(--neutral-50);
    --bg-lifted: var(--neutral-100);
    --bg-accented: var(--neutral-200);
    --bg-inverted: var(--neutral-900);

    /* Additional colors */
    --yellow-200: #fff085;
    --yellow-300: #ffdf20;
    --teal-300: #46edd5;
    --teal-400: #00d5be;
    --emerald-300: #5ee9b5;
    --pink-400: #fb64b6;

    /* Additional custom properties */
    /* Font sizes */
    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-md: 0.875rem;
    --text-lg: 1rem;

    /* Spacing */
    --outline-sm: 1px;
    --outline-md: 2px;
    --outline-lg: 3px;

    /* Rounding */
    --rounding-sm: 0.25rem;
    --rounding-md: 0.5rem;
    --rounding-lg: 0.75rem;

    /* Other */
    --letter-spacing: 0em;
    --disabled-opacity: 25%;
}

/* Import Professional Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ===== PROFESSIONAL HEADER STYLING ===== */

header.header {
    background-color: #0f1a2e !important;
    border-bottom: 1px solid #0a0f1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

header.header .topbar {
    background-color: #0a0f1a !important;
    border-bottom: 1px solid #050709;
    padding: 4px 0;
    font-size: 13px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.75);
}

header.header .topbar .btn {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
}

header.header .topbar .btn:hover {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

header.header .topbar .active-client .input-group-text {
    color: rgba(255, 255, 255, 0.85);
}

header.header .topbar .active-client .btn {
    color: rgba(255, 255, 255, 0.8);
}

header.header .logo-img {
    max-width: 800px !important;
    max-height: 120px !important;
    height: 120px !important;
    width: auto !important;
    filter: brightness(1.1);
    object-fit: contain;
}

header.header .navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
}

header.header .main-navbar-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #0f1a2e;
    padding: 0 !important;
    height: 65px !important;
    min-height: 65px !important;
    max-height: 65px !important;
}

header.header .navbar {
    padding: 0 !important;
    height: 65px !important;
    min-height: 65px !important;
    max-height: 65px !important;
}

header.header .navbar .container {
    align-items: center;
    display: flex;
    height: 65px !important;
}

header.header .navbar a {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
}

header.header .navbar a:hover {
    color: rgba(255, 255, 255, 1);
}

header.header .navbar-nav {
    gap: 8px;
    align-items: center;
    margin: 0 !important;
}

header.header .navbar-nav a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
}

header.header .navbar-nav a:hover {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown Menu Styling - Fix visibility */
header.header .dropdown-menu {
    background-color: #1a2a3e !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 8px 0;
    margin-top: 8px;
}

header.header .dropdown-item {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 10px 20px;
    font-size: 14px;
    transition: all 0.2s ease;
    font-weight: 400;
}

header.header .dropdown-item:hover,
header.header .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 1) !important;
}

header.header .dropdown-item.active,
header.header .dropdown-item:active {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 1) !important;
}

header.header .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Cart Button Styling */
header.header .cart-btn {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px !important;
    padding: 10px 18px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

header.header .cart-btn:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 1) !important;
    transform: translateY(-1px);
}

header.header .cart-btn .badge {
    background-color: #ff6b6b !important;
    font-weight: 600;
    font-size: 11px;
    padding: 4px 7px;
}

header.header .toolbar .nav-link {
    border: 1px solid transparent;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
}

header.header .toolbar .nav-link:hover {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

header.header .toolbar .nav-link .badge {
    background-color: #ff6b6b;
}

header.header .search {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
}

header.header .search .btn,
header.header .search .form-control {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 0 !important;
}

header.header .search .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

header.header .search:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

header.header .btn {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
}

header.header .btn:hover,
header.header .btn:focus {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}
/* Navbar Toggler for Mobile */
header.header .navbar-toggler {
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
}

header.header .navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
