/* Header Bar */
.header-bar {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Desktop header */
.header1 {
    display: flex;
    align-items: center;
}

/* Mobile header - hidden on desktop */
.header2 {
    display: none !important;
}

/* Logo section */
.logo-section {
    gap: 10px;
}

.header-img-left {
    max-height: 50px;
    width: auto;
}

.site-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

/* Search column */
.search-column {
    padding: 0 20px;
}

.search-column .dgwt-wcas-search-wrapp {
    width: 100%;
}

/* Header icons */
.header-icons {
    justify-content: flex-end;
}

.header-icons .hstack {
    align-items: center;
}

.header-icons a,
.header-icons .login-section {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    cursor: pointer;
}

.header-icons a:hover,
.header-icons .login-section:hover {
    color: #e8a300;
}

.login-text {
    font-size: 0.8rem;
    margin-right: 4px;
}

.header-icon-amount {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e8a300;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Category menu */
.category-menu {
    display: flex;
    align-items: center;
}

.h-menu-items {
    display: flex;
    gap: 0;
}

.h-menu-items .item {
    padding: 0 15px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    white-space: nowrap;
    height: 100%;
}

.h-menu-items .item:hover {
    color: #e8a300;
}

/* Menu button */
.menu-btn {
    border: none;
    font-size: 1.2rem;
    padding: 0;
    color: #333;
}

/* Offcanvas menu */
.canvas-menu-item a {
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    display: block;
    font-family: "Poppins", sans-serif;
}

.canvas-menu-item a:hover {
    color: #e8a300;
}

/* Responsive */
@media (max-width: 991px) {
    .header1 {
        display: none !important;
    }

    .header2 {
        display: flex !important;
        align-items: center;
        padding: 5px 0;
    }

    .category-menu {
        display: none !important;
    }

    .search-column-header-2 {
        display: flex !important;
    }
}

@media (max-width: 767px) {
    .login-text {
        display: none;
    }
}
