.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    text-decoration: none;
    border-radius: 100px;
    transition: background var(--transition-fast);
}

.header-cart:hover {
    background: rgba(0, 0, 0, 0.04);
}

.header-cart__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-cart__icon .pokeball {
    width: 22px;
    height: 22px;
}

.header-cart__count {
    position: absolute;
    top: 3px;
    right: 0px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-text);
    color: var(--color-bg);
    font-size: 0.6875rem;
    font-weight: var(--font-weight-bold);
    border-radius: 9px;
    padding: 0 4px;
    line-height: 1;
}

.header-cart__count:empty {
    display: none;
}
