@layer components {
    .sf-product-card--quick-actions {
        display: grid;
        grid-template-rows: minmax(0, 1fr) auto;
    }

    .sf-product-card--quick-actions .sf-product-card__link {
        height: auto;
    }

    .sf-product-card__actions {
        display: grid;
        padding: var(--sf-space-3);
        border-top: 1px solid var(--sf-color-border);
        gap: var(--sf-space-2);
    }

    .sf-product-card__actions .sf-button {
        width: 100%;
        min-width: 0;
        text-align: center;
    }

    .sf-product-card__confirmation p {
        margin: 0;
    }

    @media (min-width: 48rem) {
        .sf-product-card__actions {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .sf-product-card__confirmation p {
            grid-column: 1 / -1;
        }
    }
}
