/* Cart icon in header (before Login) */
.header-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #35404e;
    font-size: 18px;
    vertical-align: middle;
    margin-right: 18px;
    text-decoration: none;
    position: relative;
    line-height: 1;
}

.header-cart-link:hover {
    color: var(--primary-color);
}

.header-cart-count {
    display: none;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 9px;
    text-align: center;
    padding: 0 5px;
    font-weight: 700;
}
