/* VW_STOREFRONT_CART_BUTTON_BASE_V1 */

.vw-cart-button,
.vw-cart-button *,
.vw-cart-button *::before,
.vw-cart-button *::after {
    box-sizing: border-box;
}

.vw-cart-button {
    position: relative;
    flex: 0 0 auto;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent;
}

.vw-cart-button[aria-current="page"] {
    outline:
        2px solid
        color-mix(
            in srgb,
            var(--vw-primary, #4f46e5) 25%,
            transparent
        );
    outline-offset: 2px;
}

.vw-mobile-only-actions .vw-cart-button {
    width: 100%;
    justify-content: space-between;
}

.vw-navbar-menu .vw-cart-button {
    max-width: 100%;
}

@media (max-width: 960px) {
    .vw-navbar-menu .vw-cart-button {
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
    }
}
