:root {
    --bv-primary: #0D5EF4;
    --bv-primary2: #F20F10;
    --bv-header-main-text: #0F2239;
    --body-color: #4D5765;
    --smoke-color: #F3F7FB;
    --black-color: #000000;
    --white-color: #ffffff;
    --light-color: #72849B;
    --yellow-color: #FFB539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #ecf1f9;
}

.header-links>ul,
.header__menu-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
}

.header__submenu,
.header__user-menu {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: block;
}

.header {
    position: relative;
    z-index: 100;
}

.header__overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;

    &.active {
        opacity: 1;
        visibility: visible;
    }
}

.header-top {
    background-color: var(--bv-header-top-bg);
    color: var(--bv-header-top-text);
    position: relative;
    z-index: 10;
}

.header-top__left {
    position: relative;
    z-index: 2;
}

.header-top .header-links>ul {
    gap: 30px;
}

.header-top .header-links li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    padding: 10px 0px;

    & i {
        font-size: 18px;
        color: inherit;
    }

    & a {
        color: inherit;
        text-decoration: none;
        transition: 0.3s;

        &:hover {
            opacity: 0.8;
        }
    }
}

.header-top .header-social-wrap {
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.header-top .header-social {
    display: flex;
    align-items: center;
    gap: 12px;

    & .social-title {
        font-weight: 400;
        margin-right: 5px;
    }

    & a {
        color: rgb(255, 255, 255);
        font-size: 14px;
        transition: 0.3s;
        display: inline-flex;
        align-items: center;
        justify-content: center;

        &:hover {
            color: var(--yellow-color);
        }

        & i {
            font-size: 16px;
        }
    }
}

.header-top .header-top__right {
    position: relative;
}

.header-top .header-right {
    display: flex;
    justify-content: flex-end;

    & ul {
        gap: 0px;
    }

    & li {
        color: rgb(255, 255, 255);
        font-weight: 400;
    }
}

.header__bot {
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 25px;
    position: relative;
    z-index: 5;




    &::before {
        content: "";
        position: absolute;
        right: 0px;
        top: 0px;
        height: 100%;
        width: 88%;
        border-radius: 80px 0px 0px;
        background: var(--bv-header-main-bg);
        z-index: -1;
    }
}

.header__logo .logo-img {
    max-height: 69px;
    display: block;
}

.header__navbar-mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(238, 238, 238);

    & .header__logo img {
        max-height: 40px;
    }
}

.header__navbar-close {
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    color: var(--bv-header-main-text);
    cursor: pointer;
    padding: 5px;

    & i {
        font-size: 28px;
    }
}

.header__menu-list {
    display: flex;
    gap: 30px;
    justify-content: right;
}

.header__menu-item {
    position: relative;
    padding: 25px 0px;
}

.header__menu-link {
    text-decoration: none;
    color: #000;
    font-size: 23px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
    text-transform: uppercase;
    font-family: var(--font-utbebas);








    &:hover {
        color: var(--bv-primary);
    }

    & .menu-chevron {
        font-size: 18px;
    }
}

.header__submenu {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 229px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 15px 50px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;

    & .header__submenu {
        top: 0px;
        left: 100%;
        margin-left: 10px;
        transform: translateX(15px);
    }
}

.header__submenu-item {
    position: relative;
    padding: 8px 20px;

    &:not(:last-child) {
        margin-bottom: 5px;
    }

    &.has-submenu>.header__submenu-link .menu-chevron {
        font-size: 20px;
        opacity: 0.5;
        transition: 0.3s;
        transform: rotate(-90deg);
    }
}

.header__submenu-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--bv-header-main-text);
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    transition: 0.3s;


    & i {
        font-size: 24px;
        color: var(--bv-primary);
        background: rgba(13, 94, 244, 0.1);
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: 0.3s;
        display: none;
    }

    & span {
        flex: 1 1 0%;
    }

    &:hover {
        color: var(--bv-primary);

        & i {
            background: var(--bv-primary);
            color: rgb(255, 255, 255);
        }
    }
}

.header__bot-actions {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 15px;
}

.header__search-wrap {
    position: relative;

    &.active .header__search-form {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }
}

.header__search-form {
    position: absolute;
    top: calc(100% + 15px);
    right: 0px;
    width: 320px;
    background: rgb(255, 255, 255);
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 40px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;

    & form {
        display: flex;
        align-items: center;
        background: rgb(248, 249, 250);
        padding: 5px 5px 5px 15px;
        border-radius: 8px;
        border: 1px solid rgb(238, 238, 238);

        & input {
            flex: 1 1 0%;
            border-width: medium;
            border-style: none;
            border-color: currentcolor;
            border-image: initial;
            background: none;
            font-size: 14px;
            padding-right: 10px;
            outline: none;

            &::placeholder {
                color: rgb(153, 153, 153);
            }
        }

        & button {
            width: 40px;
            height: 40px;
            background: var(--bv-primary);
            border-width: medium;
            border-style: none;
            border-color: currentcolor;
            border-image: initial;
            border-radius: 6px;
            color: rgb(255, 255, 255);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;

            &:hover {
                background: rgb(9, 75, 197);
            }

            & i {
                font-size: 20px;
            }
        }
    }
}

.header__search-btn,
.header__cart {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgb(208, 219, 233);
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bv-header-main-text);
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    position: relative;

    &:hover {
        border-color: var(--bv-primary);
        color: var(--bv-primary);
    }

    & i {
        font-size: 22px;
    }
}

.header__search-btn svg {
    width: 16px;
    height: 16px;
    display: block;
}

.header__cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--bv-primary);
    color: rgb(255, 255, 255);
    font-size: 10px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid rgb(255, 255, 255);
}

.header__btn.btn-theme {
    background: var(--bv-primary);
    color: rgb(255, 255, 255);

    &:hover {
        background: rgb(9, 75, 197);
        box-shadow: rgba(13, 94, 244, 0.3) 0px 5px 15px;
    }
}

.header__btn i {
    font-size: 18px;
}

.header__logo a {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header__logo .logo_text {
    font-size: 18px;
    color: #000;
}

.header__logo .logo_text h2 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    font-family: var(--font-utbebas);
}

.header__logo .logo_text p {
    font-size: 15px;
}

.header__navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    cursor: pointer;
    padding: 5px;

    & span {
        width: 25px;
        height: 2px;
        background: var(--bv-header-main-text);
        border-radius: 2px;
        transition: 0.3s;
    }

    &.active {
        & span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        & span:nth-child(2) {
            opacity: 0;
            width: 0px;
        }

        & span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
    }
}

.header__cart-sidebar {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 450px;
    height: 100%;
    background: rgb(255, 255, 255);
    z-index: 2000;
    box-shadow: rgba(0, 0, 0, 0.1) -10px 0px 50px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 40px;

    &.active {
        transform: translateX(0px);
    }
}

.header__cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;

    & h3 {
        font-size: 24px;
        font-weight: 800;
        color: var(--bv-header-main-text);
        margin: 0px;
    }
}

.header__cart-sidebar-close {
    width: 45px;
    height: 45px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(238, 238, 238);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bv-primary);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px;
    cursor: pointer;
    transition: 0.3s;

    &:hover {
        background: var(--bv-primary);
        color: rgb(255, 255, 255);
        border-color: var(--bv-primary);
        transform: rotate(90deg);
    }

    & i {
        font-size: 24px;
    }
}

.header__cart-sidebar-content {
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    & .empty-cart {
        & i {
            font-size: 80px;
            color: rgb(238, 238, 238);
            margin-bottom: 20px;
        }

        & p {
            font-size: 18px;
            color: rgb(102, 102, 102);
            margin-bottom: 30px;
        }
    }
}

.header__user {
    position: relative;
    z-index: 11;
}

.header__user-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.header__user-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;

    &:hover {
        opacity: 0.8;
    }

    & i {
        font-size: 20px;
    }
}

.header__user-trigger {
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 5px 0px;
    transition: 0.3s;

    & .chevron {
        font-size: 18px;
        transition: 0.3s;
    }
}

.header__user:hover .header__user-trigger .chevron,
.header__user.active .header__user-trigger .chevron {
    transform: rotate(180deg);
}

.header__user-menu {
    position: absolute;
    top: 100%;
    right: 0px;
    width: 200px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
    padding: 10px 0px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;

    & li {
        padding: 0px 10px;

        & a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 15px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            border-radius: 6px;
            transition: 0.3s;
            width: 100%;
            color: rgb(51, 51, 51) !important;

            &:hover {
                background: rgba(13, 94, 244, 0.05);
                color: var(--bv-primary);
            }

            & i {
                font-size: 18px;
                color: var(--bv-primary) !important;
            }
        }

        &.divider {
            height: 1px;
            background: rgb(238, 238, 238);
            margin: 8px 0px;
            padding: 0px;
        }
    }
}

.header__user:hover .header__user-menu,
.header__user.active .header__user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.header.is-scroll {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1000;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 20px;
    animation: 0.4s ease-out 0s 1 normal none running slideDown;

    & .header__bot::before {
        border-radius: 0px;
    }

    & .header-top {
        display: none;
    }
}

.header.is-scroll .box-header-main {
    display: none;
}

html.is-locked {
    overflow: hidden;
}

html.is-locked .header-top {
    z-index: 0;
}

.header.is-scroll .header__bot::before {
    content: "";
    width: 100%;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0px);
    }
}

.header__user {
    background: rgb(56, 54, 54);
    padding: 10px 20px !important;
}

ul.header__user-menu li {
    padding: unset !important;
}

.btn-contact-lien-he .btn-primary {
    background: linear-gradient(90deg, rgb(237, 207, 89) 0%, rgb(249, 171, 25) 16.827%, rgb(249, 223, 123) 32.8%, rgb(255, 243, 166) 52.4%, rgb(249, 223, 123) 72.98%, rgb(243, 170, 34) 99.999%);
    color: #000000;
    border: none;
    padding: 10px 33px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 600;
    border: solid 1px #b57e10;
}

li.btn-contact-lien-he .btn-hack {
    border-radius: 7px;
}

@media (min-width: 1501px) and (max-width: 1550px) {
    .header__bot::before {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .header__menu-item:hover>.header__submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }

    .header__submenu-item:hover>.header__submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0px) translateY(0px);
    }

    .header__submenu-item.has-submenu:hover>.header__submenu-link .menu-chevron {
        transform: rotate(-90deg) translateX(3px);
        opacity: 1;
    }
}

@media (max-width: 1400px) {
    .header__btn {
        font-size: 13px;
        padding: 10px 11px;
    }

    .header__menu-link {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {

    .header-top {
        padding: 5px 0px;
    }

    .header-top .header-links ul {
        gap: 15px;
    }

    .header-top .header-social-wrap {
        border-left-width: medium;
        border-left-style: none;
        border-left-color: currentcolor;
        padding-left: 0px;
    }

    .header__bot {
        padding: 10px 0px;
    }

    .header__bot::before {
        border-radius: 0px;
    }

    .header__navbar {
        position: fixed;
        top: 0px;
        left: -320px;
        width: 300px;
        height: 100vh;
        background: rgb(255, 255, 255);
        z-index: 1000;
        padding: 15px;
        transition: 0.4s cubic-bezier(0.4, 0, 0, 1);
        overflow-y: auto;
        display: block;
        visibility: hidden;

        &.active {
            left: 0px;
            visibility: visible;
            box-shadow: rgba(0, 0, 0, 0.15) 15px 0px 50px;

            & .header__menu-item {
                opacity: 1;
                transform: translateX(0px);
            }
        }
    }

    .header__search-btn,
    .header__cart {
        width: 35px;
        height: 35px;
    }

    .header__navbar-mobile-header {
        display: flex;
    }

    .header__navbar-mobile-header .header__logo {
        display: flex;
        gap: 5px;
        align-items: center;
    }

    .header__navbar-mobile-header .header__logo h2 {
        font-size: 20px;
    }

    .header__navbar-mobile-header .header__logo h2 p {
        font-size: 12px;
    }

    .btn-contact-lien-he .btn-primary {
        display: flex;
        justify-content: center;
    }

    .header__navbar-toggle {
        display: flex;
    }

    .header__navbar-col {
        order: 3;
    }

    .header__menu-list {
        display: block;
    }

    .header__menu-item {
        padding: 0px;
        border-bottom: 1px solid rgb(248, 249, 250);
        opacity: 0;
        transform: translateX(-20px);
        transition: 0.4s cubic-bezier(0.4, 0, 0, 1);

        &:last-child {
            border-bottom-width: medium;
            border-bottom-style: none;
            border-bottom-color: currentcolor;
        }

        &:nth-child(1) {
            transition-delay: 0.1s;
        }

        &:nth-child(2) {
            transition-delay: 0.15s;
        }

        &:nth-child(3) {
            transition-delay: 0.2s;
        }

        &:nth-child(4) {
            transition-delay: 0.25s;
        }

        &:nth-child(5) {
            transition-delay: 0.3s;
        }

        &:nth-child(6) {
            transition-delay: 0.35s;
        }

        &:nth-child(7) {
            transition-delay: 0.4s;
        }
    }

    .btn-contact-lien-he {
        margin-top: 20px;
    }

    .header__menu-link {
        justify-content: space-between;
        padding: 10px 0px;
        font-size: 20px;
    }

    .header__submenu-item {
        padding: 5px 15px;
    }

    .header__submenu-link {
        font-size: 14px;
    }

    .header__submenu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        transform: none;
        display: none;
        border-radius: 0px;
        border-left: 1px solid rgb(238, 238, 238);
        margin-top: 5px;
        margin-bottom: 5px;
        transition: none;

        & .header__submenu {
            position: static;
            margin-left: 0px;
            transform: none;
            transition: none;
        }
    }

    .header__submenu-item.has-submenu>.header__submenu-link .menu-chevron {
        transform: rotate(0deg);
    }

    .has-submenu>a {
        position: relative;
        padding-right: 35px;
    }

    .has-submenu>a>.menu-chevron {
        width: 30px;
        height: 30px;
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
        line-height: 35px;
    }

    .header__search-form {
        position: fixed;
        top: 100px;
        left: 20px;
        right: 20px;
        width: auto;
    }

    .header__cart-sidebar {
        width: 100%;
        padding: 30px;
    }
}

.box-header-main {
    background: rgb(0, 0, 0);
}

.header .topbar {
    background: rgb(0 0 0);
    height: 64px;
    display: flex;
    align-items: center;
    gap: 20px;
    /* position: sticky; */
    top: 0px;
    z-index: 200;
    justify-content: space-between;
}

.header .topbar::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(201, 168, 76), rgb(240, 208, 128), rgb(201, 168, 76), transparent);
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.header .logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1.5px solid rgb(201, 168, 76);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: rgb(17, 17, 17);
}

.header .logo-mark::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), transparent);
}

.header .logo-mark span {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 17px;
    color: rgb(201, 168, 76);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.header .logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.header .logo-name {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 17px;
    color: rgb(232, 213, 160);
    letter-spacing: 0.3px;
}

.header .logo-tagline {
    font-size: 10px;
    color: rgb(122, 104, 64);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

.header .topbar-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(transparent, rgb(58, 46, 24), transparent);
    flex-shrink: 0;
}

.header .contacts {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1 1 0%;
}

.header .contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.header .contact-link:hover {
    opacity: 0.8;
}

.header .contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgb(123 122 121);
    background: rgb(0 0 0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(248 176 5);
    font-size: 11px;
    flex-shrink: 0;
}

.header .contact-label {
    font-size: 10px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.header .contact-val {
    font-size: 14px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-top: 1px;
}

.header .topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header .btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 15px;
    border-radius: 6px;
    /* font-family: "DM Sans", sans-serif; */
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    transition: 0.2s;
    white-space: nowrap;
}

.header .btn-gold {
    background: linear-gradient(90deg, rgb(237, 207, 89) 0%, rgb(249, 171, 25) 16.827%, rgb(249, 223, 123) 32.8%, rgb(255, 243, 166) 52.4%, rgb(249, 223, 123) 72.98%, rgb(243, 170, 34) 99.999%);
    background-size: 200%;
    color: rgb(0 0 0);
    box-shadow: rgba(201, 168, 76, 0.25) 0px 2px 16px;
    border: 1px solid var(--bv-primary);
}

.header .btn-gold:hover {
    background-position: right center;
    box-shadow: rgba(201, 168, 76, 0.4) 0px 4px 24px;
    transform: translateY(-1px);
}

.header .btn-ghost {
    background: transparent;
    color: var(--bv-primary);
    border: 1px solid var(--bv-primary);
}

.header .btn-ghost:hover {
    border-color: rgb(201, 168, 76);
    background: rgba(201, 168, 76, 0.06);
    transform: translateY(-1px);
}

.header .user-chip {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 5px 12px 5px 5px;
    border-radius: 40px;
    border: 1px solid rgba(248, 176, 5, 0.65);
    background: rgb(17, 17, 17);
    cursor: pointer;
    transition: border-color 0.2s;
    position: relative;
}

.header .user-chip:hover {
    border-color: rgb(201, 168, 76);
}

.header .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(58, 46, 24), rgb(201, 168, 76));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: rgb(12, 12, 12);
}

.header .user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header .user-name {
    font-size: 12px;
    font-weight: 600;
    color: rgb(200, 190, 160);
}

.header .user-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgb(34, 197, 94);
    text-transform: uppercase;
    margin-top: 1px;
}

.header .navbar {
    background: rgb(14, 14, 14);
    border-bottom: 1px solid rgb(30, 26, 16);
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0px 32px;
    position: sticky;
    top: 64px;
    z-index: 190;
}

.user-chip:hover .header__user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.header .contact-icon i {
    font-size: 17px;
}

/* Responsive Topbar */
@media (max-width: 991px) {
    .header .topbar {
        gap: 10px;
        padding: 5px 0;
        height: auto;
        flex-wrap: wrap;
        justify-content: end;
    }

    .header .contact-link:nth-child(2) {
        display: none;
        /* Hide email on tablet/mobile */
    }

    .header .contacts {
        gap: 10px;
        padding: 5px 0;
        display: none;
    }

    .header .btn {
        padding: 10px 12px;
        font-size: 12px;
    }

    .header .user-chip {
        padding: 4px 10px 4px 4px;
    }

    .header .user-chip {
        margin: 5px 0;
    }
}

@media (max-width: 575px) {
    .header .topbar {
        /* justify-content: space-between; */
        padding: 5px 0px;
    }

    .header .contacts {
        display: none;
        /* Hide all contacts on very small mobile to save space for actions */
    }

    .header .topbar-actions {
        width: 100%;
        justify-content: end;
        gap: 5px;
    }

    .header .btn {
        padding: 8px 10px;
        font-size: 11px;
    }

    .header .user-chip {
        padding: 3px 8px 3px 3px;
        gap: 5px;
    }

    .header .user-name {
        font-size: 11px;
    }

    .header .user-avatar {
        width: 28px;
        height: 28px;
        font-size: 11px;
        display: none;
    }

    .header__logo .logo-img {
        height: 55px;
    }

    .header .user-info {
        padding: 2px 8px;
    }

    .header__logo .logo_text h2 {
        font-size: 20px;
    }

    .header__logo .logo_text p {
        font-size: 11px;
    }
}

@media (max-width: 410px) {
    .header .topbar-actions {
        gap: 4px;
    }

    .header .btn {
        padding: 6px 8px;
        font-size: 10px;
        gap: 4px;
    }

    .header .btn img,
    .header .btn i {
        width: 14px;
        height: 14px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .header .topbar-actions {
        gap: 5px;
    }

    .header .btn {
        padding: 5px 6px;
        font-size: 9px;
        letter-spacing: 0;
    }

    .header .user-chip {
        padding: 2px 5px 2px 2px;
    }

    .header .user-name {
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

}

/* Mobile Menu Actions */
.header__mobile-actions {
    display: none;
}

@media (max-width: 1200px) {
    .header__mobile-actions {
        display: none !important;
    }
}

@media (max-width: 380px) {
    .header__logo .logo-img {
        max-height: 60px;
    }

    .header__logo .logo_text h2 {
        font-size: 20px;
    }

    .header__logo .logo_text p {
        font-size: 12px;
    }
}