/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.heet-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--heet-header-bg);
    color: var(--heet-header-text);
}

.heet-header__top {
    padding: 77px 0;
}

.heet-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.heet-header__logo {
    display: inline-flex;
    align-items: center;
}

.heet-header__logo:hover {
    text-decoration: none;
}

.heet-header__logo-img {
    max-height: 36px;
    width: auto;
    display: block;
}

/* Actions */
.heet-header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.heet-header__icon {
    display: flex;
    align-items: center;
    padding: 0;
}

.heet-header__icon:hover {
    text-decoration: none;
    opacity: 0.7;
}

.heet-header__icon svg {
    display: block;
}

/* SEARCH FIELD */
.heet-header__search {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.heet-header__search input {
    width: 0;
    padding: 0;
    border: none;
    background: transparent;
    outline: none;
    opacity: 0;
    font-size: 14px;
    color: var(--heet-header-text);
    transition: width 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    border-bottom: 1px solid transparent;
}

.heet-header__search.is-active input {
    width: 200px;
    opacity: 1;
    border-bottom-color: #ccc;
    padding-bottom: 2px;
}

.heet-header__search input::placeholder {
    color: #b3b3b3;
}

.heet-header__cart-count {
    font-size: 0.625rem;
    min-width: 1.125rem;
    height: 1.125rem;
    background: var(--heet-color-primary);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -6px;
    margin-top: -10px;
}

/* LOGIN */
.heet-header__login {
    font-family: 'Helvetica Neue', 'Ghroob', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.heet-header__login:hover {
    text-decoration: none;
    opacity: 0.7;
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.heet-header__nav {
    background: var(--heet-header-bg);
    position: sticky;
    top: 0;
    z-index: 99;
}

.heet-header__nav-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

/* Nav links — Regular */
.heet-header__nav a {
    font-family: 'Helvetica Neue', 'Ghroob', Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 1.5px solid transparent;
    transition: border-color 0.15s ease;
}

.heet-header__nav a:hover {
    text-decoration: none;
    border-bottom-color: currentColor;
}

/* Active page — Bold + underline */
.heet-header__nav a.is-active {
    font-family: 'Helvetica Neue', 'Ghroob', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    border-bottom-color: currentColor;
}

/* ═══════════════════════════════════════
   Responsive
═══════════════════════════════════════ */
@media (max-width: 768px) {
    .heet-header__top {
        padding: 24px 0;
    }

    .heet-header__nav-inner {
        gap: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .heet-header__nav-inner::-webkit-scrollbar {
        display: none;
    }

    .heet-header__nav a {
        font-size: 13px;
    }
}