.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(var(--primary-rgb), .92) 100%);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    box-shadow: none;
}

.site-header .container {
    position: relative;
}

.header-inner {
    display: grid !important;
    grid-template-columns: auto minmax(360px, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 84px;
    padding: 12px 0 10px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.logo-title {
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .03em;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo-sub {
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
}

.header-search {
    max-width: 460px;
    width: 100%;
    justify-self: center;
}

.header-search .box-search {
    display: flex;
    align-items: center;
    min-height: 40px;
    border-radius: 6px;
    background: #fff;
    border: 0;
    padding: 4px;
    box-shadow: none;
}

.header-search input {
    height: 32px;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    border-radius: 6px;
    font-size: 14px;
    color: #0f172a;
    padding: 0 14px;
    padding-right: 86px;
}

.header-search input::placeholder {
    color: #94a3b8;
}

.header-search .button-theme {
    min-height: 32px;
    border-radius: 6px;
    border: 0;
    padding: 0 12px;
    background: var(--secondary-color);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    box-shadow: none;
}

.header-search .button-theme i {
    margin-right: 4px;
}

.header-search_hint {
    display: none;
}

.header-search_hint a {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .9);
    font-size: 12px;
    line-height: 1.2;
}

.header-search_hint a:hover {
    opacity: 1;
    color: #fff;
    background: rgba(255, 255, 255, .18);
}

.header-auth {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-auth a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    box-shadow: none;
}

.header-auth a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.header-auth span {
    display: none;
}

.header-user {
    position: relative;
}

.header-user .user-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 4px 10px 4px 6px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    box-shadow: none;
}

.header-user .user-toggle:hover {
    opacity: 1;
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.header-user .user-avatar {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
}

.header-user .user-name {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.header-user .user-balance {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .24);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.header-user .user-toggle i.fa-chevron-down {
    font-size: 11px;
    color: rgba(255, 255, 255, .8);
}

.header-user.active .fa-chevron-down,
.header-user:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.header-user .user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 228px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, .22);
    background: #fff;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s ease;
    z-index: 1002;
    overflow: hidden;
}

.header-user .user-dropdown ul {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.header-user .user-dropdown ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #334155;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.header-user .user-dropdown ul li a i {
    width: 16px;
    color: var(--primary-color);
    text-align: center;
}

.header-user .user-dropdown ul li a:hover {
    opacity: 1;
    background: #f8fafc;
    color: #0f172a;
}

.header-user .user-dropdown ul li.divider {
    height: 1px;
    margin: 6px 14px;
    background: #e2e8f0;
}

.header-user.show .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .header-user:hover .user-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.btn-menu-toggle {
    background: none;
    border: 0;
    position: absolute;
    right: 0;
    top: 15px;
    width: 34px;
    height: 34px;
    padding: 0;
}

.btn-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 4px auto;
}

.main-nav {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .14);
    background: var(--primary-color);
}

.main-nav__inner {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 46px;
}

.main-nav .menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    flex: 1;
    min-width: 0;
}

.main-nav .menu > li {
    position: relative;
}

.main-nav .menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
    border: 0;
    background: transparent;
    white-space: nowrap;
}

.main-nav .menu > li > a:hover,
.main-nav .menu > li:hover > a {
    opacity: 1;
    color: #fff;
    background: rgba(255, 255, 255, .16);
}

.main-nav .has-dropdown > a i {
    font-size: 11px;
    margin-left: 2px;
    color: rgba(255, 255, 255, .78);
}

.main-nav .dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    display: none;
    margin: 0;
    padding: 6px 0;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, .22);
    background: #fff;
    box-shadow: none;
    overflow: hidden;
}

.main-nav .dropdown li + li {
    border-top: 1px solid #e2e8f0;
}

.main-nav .dropdown li a {
    display: block;
    padding: 10px 14px;
    color: #334155;
    font-size: 13px;
    font-weight: 500;
}

.main-nav .dropdown li a:hover {
    opacity: 1;
    color: #0f172a;
    background: #f8fafc;
}

.main-nav__extra {
    flex-shrink: 0;
}

.main-nav__api {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.main-nav__api:hover {
    opacity: 1;
    color: #fff;
    background: rgba(255, 255, 255, .18);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .46);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    z-index: 998;
}

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

.menu-mobile-header {
    display: none;
}

@media (max-width: 991px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        min-height: 76px;
        gap: 10px;
        padding: 10px 0;
    }

    .logo img {
        height: 40px;
    }

    .header-search {
        grid-column: 1 / -1;
        order: 3;
        max-width: 100%;
        justify-self: stretch;
        margin-top: 4px;
    }

    .header-search_hint {
        display: none;
    }

    .header-user .user-name {
        max-width: 92px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -306px;
        width: 286px;
        height: 100vh;
        z-index: 1001;
        border-top: 0;
        background: #ffffff;
        transition: left .25s ease;
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav .container {
        padding: 0;
    }

    .main-nav__inner {
        display: block;
        min-height: 0;
    }

    .menu-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 14px;
        border-bottom: 1px solid #e2e8f0;
        background: #f8fafc;
    }

    .menu-logo img {
        height: 34px;
        width: auto;
    }

    .btn-menu-close {
        font-size: 28px;
        line-height: 1;
        background: none;
        border: 0;
        color: #334155;
    }

    .main-nav .menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 10px 0;
    }

    .main-nav .menu > li {
        width: 100%;
    }

    .main-nav .menu > li > a {
        display: flex;
        justify-content: space-between;
        margin: 0 10px;
        padding: 11px 12px;
        border-radius: 8px;
        color: #0f172a;
        background: #f8fafc;
    }

    .main-nav .menu > li > a:hover,
    .main-nav .menu > li:hover > a {
        color: #0f172a;
        background: #eef2ff;
    }

    .main-nav .has-dropdown > a i {
        color: #64748b;
    }

    .main-nav .dropdown {
        position: static;
        display: none;
        margin: 4px 10px 0;
        min-width: 0;
        border-radius: 8px;
        border: 1px solid #e2e8f0;
    }

    .main-nav .dropdown li a {
        padding: 10px 12px;
        font-size: 13px;
    }

    .main-nav__extra {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .header-brand {
        min-width: 0;
    }

    .header-search .box-search {
        min-height: 38px;
        border-radius: 6px;
    }

    .header-search input {
        height: 30px;
        border-radius: 6px;
        padding-right: 76px;
    }

    .header-search .button-theme {
        min-height: 30px;
        border-radius: 6px;
        padding: 0 10px;
        font-size: 12px;
    }

    .header-user,
    .header-auth {
        padding-right: 40px;
    }

    .header-user .user-toggle {
        min-height: 34px;
        padding: 4px 8px 4px 5px;
    }

    .header-user .user-toggle i.fa-chevron-down {
        display: block;
    }

    .header-user .user-avatar {
        width: 26px;
        height: 26px;
    }

    .header-user .user-name {
        max-width: none;
        overflow: visible;
        text-overflow: clip;
        white-space: nowrap;
    }

    .header-user .user-balance {
        display: inline-flex;
    }

    .header-user .user-overlay {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, .46);
        opacity: 0;
        visibility: hidden;
        transition: .25s ease;
        z-index: 1001;
        display: block;
    }

    .header-user .user-dropdown {
        position: fixed;
        top: 0;
        left: 0;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        border-radius: 0;
        transform: translateX(-100%);
        transition: transform .25s ease;
        overflow-y: auto;
        z-index: 1002;
    }

    .header-user .user-close {
        position: absolute;
        top: 8px;
        right: 10px;
        font-size: 18px;
        cursor: pointer;
        z-index: 2;
        display: block;
        color: #0f172a;
    }

    .header-user.show .user-dropdown {
        transform: translateX(0);
    }

    .header-user.show .user-overlay {
        opacity: 1;
        visibility: visible;
    }
}


/*# sourceMappingURL=maps/theme.css.map */

/* Moved from resources/views/frontend/netpay/widgets/headcss.blade.php */
};
        --primary-hover: {{getSiteInfo('footer_bg')}};
        --secondary-color: #ee4d2d;
        --primary-rgb: 1, 36, 103;
        --hero-font: "Be Vietnam Pro", "Roboto", Arial, sans-serif;
        --site-font: "Be Vietnam Pro", "Segoe UI", "Roboto", Arial, sans-serif;
    }

    body,
    button,
    input,
    select,

    .footer .container {
        padding-top: 0 !important;
    }

    .card-product .card-title {
        padding-top: 0 !important;
    }

    .site-header {
        background: #fff !important;
        color: #0f172a;
        border-bottom: 1px solid #e2e8f0;
    }

    .header-search .box-search {
        border: 2px solid #cbd5e1 !important;
        background: #fff !important;
        border-radius: 12px !important;
        box-shadow: none !important;
        transition: border-color .2s ease, background-color .2s ease;
    }

    .header-search .box-search:focus-within {
        border-color: var(--primary-color) !important;
        box-shadow: none !important;
        background: #fff !important;
    }

    .header-search input {
        color: #0f172a !important;
        font-weight: 500;
    }

    .header-search input::placeholder {
        color: #94a3b8 !important;
    }

    .header-search .button-theme {
        background: var(--primary-color) !important;
        color: #fff !important;
        border-radius: 9px !important;
        font-weight: 700;
        min-width: 108px;
        box-shadow: none !important;
    }

    .header-search .button-theme:hover {
        background: var(--secondary-color) !important;
        color: #fff !important;
    }

    .header-search_hint a {
        color: #64748b !important;
        border-color: #dbe3ee !important;
        background: #f8fafc !important;
    }

    .header-auth a {
        min-height: 40px !important;
        padding: 0 16px !important;
        border: 1px solid #cbd5e1 !important;
        border-radius: 999px !important;
        background: #ffffff !important;
        color: #0f172a !important;
        font-weight: 700 !important;
        letter-spacing: .02em;
        box-shadow: none !important;
    }

    .header-auth a:hover {
        background: #eef2ff !important;
        border-color: rgba(var(--primary-rgb), .4) !important;
        color: var(--primary-color) !important;
        box-shadow: none !important;
        transform: translateY(-1px);
    }

    .header-auth a i {
        color: var(--primary-color) !important;
        margin-right: 6px;
    }

    .header-auth a:last-child {
        background: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        color: #fff !important;
        box-shadow: none !important;
    }

    .header-auth a:last-child i {
        color: #fff !important;
    }

    .header-auth a:last-child:hover {
        background: var(--secondary-color) !important;
        border-color: var(--secondary-color) !important;
        color: #fff !important;
        box-shadow: none !important;
    }

    .header-user .user-toggle {
        background: #f8fafc !important;
        color: #0f172a !important;
    }

    .header-user .user-toggle:hover {
        background: #eef2ff !important;
        color: #0f172a !important;
    }

    .header-user .user-toggle .user-avatar {
        background: var(--primary-color) !important;
        color: #fff !important;
    }

    .header-user .user-toggle .user-name,
    .header-user .user-toggle .user-balance {
        color: #0f172a !important;
    }

    .header-user .user-toggle .user-balance {
        background: #e2e8f0 !important;
    }

    .header-user .user-toggle i.fa-chevron-down {
        color: #64748b !important;
        background: transparent !important;
    }

    .btn-menu-toggle span {
        color: #64748b !important;
        background: #0f172a !important;
    }

    
.main-nav__auth {
    display: none;
}

@media (max-width: 991px) {
    .main-nav__auth {
        display: block;
        padding: 12px 10px 6px;
        border-bottom: 1px solid #e2e8f0;
    }

    .main-nav__auth-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .main-nav__auth-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        padding: 0 12px;
        border: 1px solid #cbd5e1;
        border-radius: 10px;
        background: #fff;
        color: #0f172a;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .01em;
    }

    .main-nav__auth-link i {
        margin-right: 6px;
        color: var(--primary-color);
    }

    .main-nav__auth-link:hover {
        opacity: 1;
        background: #eef2ff;
        border-color: rgba(var(--primary-rgb), .3);
        color: var(--primary-color);
    }

    .main-nav__auth-link--primary {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }

    .main-nav__auth-link--primary i {
        color: #fff;
    }

    .main-nav__auth-link--primary:hover {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
        color: #fff;
    }
}

@media (max-width: 767px) {
    .header-auth {
        display: none !important;
    }

    .main-nav__auth {
        display: none !important;
        padding: 14px 10px 18px;
        margin-top: 6px;
        border-top: 1px solid #e2e8f0;
        border-bottom: 0;
    }

    .main-nav.active .main-nav__auth {
        display: block !important;
    }

    .main-nav__auth-links {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .main-nav__auth-link,
    .main-nav__auth-link--primary {
        display: flex;
        width: calc(100% - 20px);
        min-height: 46px;
        margin: 0 10px;
        padding: 0 14px;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        justify-content: center;
        box-shadow: none;
    }

    .main-nav__auth-link {
        background: #fff;
        color: #0f172a;
    }

    .main-nav__auth-link--primary {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }

    .main-nav__auth-link i,
    .main-nav__auth-link--primary i {
        display: none;
    }

    .main-nav__auth-link:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
        color: var(--primary-color);
    }

    .main-nav__auth-link--primary:hover {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
        color: #fff;
    }
}
