.sfc-cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.sfc-cart-icon__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
}

.sfc-cart-icon__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sfc-cart-icon-color, #fff);
    transition: transform 150ms ease;
}

.sfc-cart-icon__icon svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: currentColor;
}

.sfc-cart-icon__bubble {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: #f18500;
    color: var(--sfc-cart-icon-bubble-color, #fff);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.4rem;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.sfc-cart-icon[data-count]:not([data-count="0"]) .sfc-cart-icon__bubble,
.sfc-cart-icon__bubble.is-visible {
    display: inline-flex;
}

.sfc-cart-icon__label {
    font-weight: 600;
}

.sfc-cart-icon__sr-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
