/**/
.container-header{
    margin: 0 auto;
    min-width: 1008px;
    max-width: min(1866px, 100% - 80px);
}
.header-left{
    display: flex;
    gap: 20px;
}
.custom-logo-link{
    width: 130px;
    display: block;
}

.custom-header {
    width: 100%;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,.039),0 4px 6px 0 rgba(0,0,0,.059);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

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

.header-center {
    flex: 1;
    padding: 0 20px;
}

.search-form {
    display: flex;
    width: 100%;
    max-width: 950px;
    border: 1px solid #c1c1c1;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.search-field {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
}

.search-submit {
    padding: 10px 15px;
    border: none;
    background: #1a1a1a;
    color: #fff;
    cursor: pointer;
}

.header-right a {
    margin-left: 20px;
    font-size: 22px;
    position: relative;
}

.cart-count {
    background: red;
    color: white;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 12px;
    position: absolute;
    top: -8px;
    right: -10px;
}

.cat-menu {
    display: flex;
    gap: 60px;
    padding: 5px 0;
    list-style: none !important;
    margin-bottom: 0;
}

.cat-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.text-header{
    color: #000 !important;
    font-size: 14px;
}
@media(max-width: 768px){
    .header-flex {
        flex-direction: column;
        gap: 10px;
    }
}
