.header-navigation {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.header-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    background: #ffffff;
    padding: 8px 11px;
    color: #172033;
    font-weight: 750;
    text-decoration: none;
    transition:
        border-color 0.16s ease,
        background 0.16s ease,
        transform 0.16s ease;
}

.header-cart-link:hover {
    border-color: #5b43d6;
    background: #f7f5ff;
    text-decoration: none;
    transform: translateY(-1px);
}

.header-cart-icon {
    width: 23px;
    height: 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-cart-icon svg {
    width: 100%;
    height: 100%;
}

.header-cart-text {
    font-size: 0.92rem;
}

.header-cart-count {
    min-width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #ed1c24;
    padding: 0 6px;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
}

@media (max-width: 720px) {
    .header-navigation {
        width: 100%;
        gap: 13px;
    }
}

@media (max-width: 620px) {
    .header-cart-link {
        padding: 8px 10px;
    }

    .header-cart-text {
        display: none;
    }

    .header-cart-count {
        position: absolute;
        top: -7px;
        right: -7px;
        border: 2px solid #ffffff;
    }
}
