/* Utility bar — Hilti style, white background + black dividers */
.header-utility-bar {
    background: #ffffff;
    color: #1a1a2e;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid #e0e0e0;
}

.header-utility-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
    height: 48px;
    box-sizing: border-box;
}

.header-utility-left {
    flex: 0 0 110px;
    position: relative;
    overflow: hidden;
    min-width: 110px;
    background: #ffffff;
    align-self: stretch;
}

.header-utility-right {
    display: flex;
    align-items: center;
    flex: 0;
    justify-content: flex-start;
    height: 100%;
    padding-right: 1rem;
}

.header-utility-link {
    color: #1a1a2e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
    white-space: nowrap;
    height: 100%;
    padding: 0 0.8rem;
    border-left: 1px solid #1a1a2e;
}

.header-utility-link:hover,
.header-utility-link:focus {
    color: #ff7a00;
}

.header-utility-link i {
    font-size: 0.9rem;
}

.header-utility-cart {
    position: relative;
}

.header-utility-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #ff7a00;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    min-width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    border-radius: 50%;
    padding: 0 3px;
}

.header-utility-divider {
    display: inline-block;
    width: 0;
    height: 45%;
    border-left: 1px solid #1a1a2e;
    margin: 0 0 0 0.8rem;
    vertical-align: middle;
}

.header-utility-search {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1.5px solid #1a1a2e;
    border-radius: 4px;
    padding: 0.45rem 0.8rem;
    margin: 0 0 0 1rem;
    transition: border-color 0.2s ease;
    flex: 0 0 auto;
    max-width: none;
    min-width: 220px;
}

.header-utility-search:focus-within {
    border-color: #ff7a00;
}

.header-utility-search input {
    background: transparent;
    border: none;
    color: #1a1a2e;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    width: 100%;
    outline: none;
    padding: 0;
    margin-right: 0.5rem;
}

.header-utility-search input::placeholder {
    color: #6b6b6b;
    opacity: 1;
}

.header-utility-search button {
    background: none;
    border: none;
    color: #1a1a2e;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.header-utility-search button:hover {
    color: #ff7a00;
}

@media (max-width: 768px) {
    .header-utility-slogan {
        display: none;
    }

    .header-utility-inner {
        padding: 0.35rem 0.6rem;
    }

    .header-utility-right {
        width: 100%;
        justify-content: flex-end;
    }

    .header-utility-link {
        padding: 0 0.6rem;
        border-left: 1px solid #1a1a2e;
    }

    .header-utility-link span {
        display: none;
    }

    .header-utility-link i {
        font-size: 1rem;
    }

    .header-utility-search {
        min-width: auto;
        margin-left: 0.6rem;
        padding: 0.25rem;
    }

    .header-utility-search input {
        width: 0;
        padding: 0;
        margin-right: 0;
    }

    .header-utility-search input:focus {
        width: 90px;
    }
}

@media (max-width: 480px) {
    .header-utility-inner {
        padding: 0.25rem 0.4rem;
    }

    .header-utility-link {
        padding: 0 0.4rem;
        border-left: none;
    }

    .header-utility-search {
        margin-left: 0.4rem;
    }

    .header-utility-divider {
        margin-left: 0.4rem;
    }
}
