/* Header Styles */
.header-container {
    background: linear-gradient(135deg, #4a90d9 0%, #357abd 100%);
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    flex: 1;
}

.office-title a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.navigation-item {
    flex: 3;
}

#menuLabel {
    display: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.catalog_menu {
    display: none;
}

.icon-menu {
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z'/%3E%3C/svg%3E") no-repeat center;
    background-size: 24px;
}

.sections {
    display: flex;
    justify-content: flex-end;
}

.nav-sections-items {
    display: flex;
    align-items: center;
}

.section-item-title {
    display: none;
}

.navigation {
    display: flex;
}

#mainMenu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

#autoNav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.level0 {
    position: relative;
    margin-left: 20px;
}

.level0:first-child {
    margin-left: 0;
}

.level-top {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.level-top:hover {
    background: rgba(255,255,255,0.2);
}

.level-top span {
    display: block;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1001;
}

.level0.parent:hover .submenu {
    display: block;
}

.submenu .level1 {
    padding: 0;
    margin: 0;
}

.submenu .level1 a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.2s ease;
}

.submenu .level1 a:hover {
    background: #f5f5f5;
}

.header-search-cart-login {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.search_menu {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    color: #fff;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.search_menu:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
}

.cart-item {
    display: flex;
    align-items: center;
}

.minicart-wrapper {
    position: relative;
}

.action.showcart {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.action.showcart .text {
    margin-right: 10px;
}

.counter {
    background: #ff6b6b;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.login-icon {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.login-icon:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
}

.login-container {
    display: flex;
    align-items: center;
}

.login-container .text {
    margin-right: 8px;
    font-size: 14px;
}

.icon-circle-user,
.icon-circle-user-plus {
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .navigation-item {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 15px;
    }
    
    #menuLabel,
    .catalog_menu {
        display: block;
    }
    
    .header-search-cart-login {
        margin-left: auto;
    }
}