/* Custom Header Styles - Matching Design 100% (No Cart & Account) */
.custom-header {
    background-color: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* Logo */
.header-logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo-img {
    height: 46px;
    width: 46px;
    object-fit: contain;
    margin-right: 10px;
    border-radius: 50%;
}

.header-logo-text {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.35;
    max-width: 130px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

/* Nav Menu */
.header-navigation-menu {
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.header-nav-item {
    position: relative;
}

.header-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 14px;
    display: block;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.header-nav-link:hover,
.header-nav-item.active .header-nav-link {
    color: var(--primary-color);
    font-weight: 600;
}

/* Dropdown Menu Indicator */
.header-nav-link.has-dropdown::after {
    content: '▾';
    font-size: 10px;
    margin-left: 3px;
    display: inline-block;
    vertical-align: middle;
}

/* Search Bar */
.header-search-form {
    position: relative;
    width: 200px;
    flex-shrink: 0;
}

.header-search-input {
    width: 100%;
    padding: 8px 34px 8px 14px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-pill);
    background-color: var(--bg-light);
    color: var(--text-color);
    outline: none;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
}

.header-search-input:focus {
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(0, 75, 145, 0.08);
}

.header-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Hotline */
.header-hotline {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    border-left: 1px solid var(--border-color);
    padding-left: 15px;
    margin-left: 5px;
}

.header-hotline-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(0, 75, 145, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 8px;
}

.header-hotline-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.header-hotline-info {
    display: flex;
    flex-direction: column;
}

.header-hotline-label {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.2;
}

.header-hotline-number {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}
