/* Shared storefront calls to action. Keeps primary actions consistent across
   cards, catalog navigation, and the product detail page. */
.storefront-button {
    align-items: center;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    font-weight: 700;
    gap: 0.5rem;
    justify-content: center;
    line-height: 1.2;
    min-height: 42px;
    padding: 0.65rem 1rem;
    text-decoration: none !important;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.storefront-button--primary {
    background-color: var(--primary-color, #FF6B35) !important;
    color: #fff !important;
}

.storefront-button--primary:hover {
    background-color: var(--primary-hover, #e55a2b) !important;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.28);
    color: #fff !important;
    transform: translateY(-1px);
}

.storefront-button:focus-visible {
    outline: 2px solid var(--primary-color, #FF6B35);
    outline-offset: 2px;
}

.storefront-button.is-loading {
    cursor: wait;
}
