Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
/* 🔧 Estilo profesional para los botones de cantidad y "Agregar al carrito" */
.product-form__buttons .product-form__submit {
background-color: #f4f4f4 !important;
color: #333 !important;
border: none !important;
border-radius: 10px !important;
font-weight: 600;
padding: 12px 20px;
box-shadow: none !important;
outline: none !important;
}
/* Botón "Comprar ahora" (Shopify Payment Button) */
.shopify-payment-button__button {
background-color: #28a745 !important;
color: white !important;
border-radius: 10px !important;
font-weight: 700;
padding: 12px 20px;
border: none !important;
box-shadow: none !important;
}
/* Botones de cantidad */
.product-form__input--quantity input,
.product-form__input--quantity button {
border-radius: 10px !important;
border: 1px solid #ccc !important;
background-color: #f4f4f4 !important;
color: #333 !important;
}
/* Botones de cantidad */
.quantity__button {
border-radius: 8px !important;
background-color: #f0f0f0 !important;
color: #000 !important;
border: 1px solid #ccc !important;
padding: 8px 12px;
}
/* Botón "Agregar al carrito" */
.product-form__buttons button:not(.shopify-payment-button__button) {
border-radius: 8px !important;
background-color: #e0e0e0 !important;
color: #000 !important;
border: 1px solid #ccc !important;
font-weight: 600;
padding: 12px 18px;
}
/* Botón "Comprar ahora" (se mantiene verde pero con bordes suaves) */
.shopify-payment-button__button {
border-radius: 8px !important;
padding: 12px 18px;
}
/* Redondear botones */
button,
.shopify-payment-button__button,
.product-form__cart-submit,
.product-form__submit,
button.btn,
input[type="submit"] {
border-radius: 999px !important; /* máximo redondeado */
padding: 12px 24px !important; /* más padding para que se vean mejor */
font-weight: bold;
transition: background 0.3s ease;
}
/* Hover opcional: más efecto */
button:hover {
filter: brightness(1.1);
cursor: pointer;
}
/* Redondear el botón "Agregar al carrito" */
.product-form__buttons .product-form__submit,
.product-form__buttons button[type="submit"] {
border-radius: 20px !important;
overflow: hidden !important;
}
/* Redondear el botón "Comprar ahora" */
.shopify-payment-button__button--unbranded,
.shopify-payment-button__button {
border-radius: 20px !important;
overflow: hidden !important;
}
/* También aplica cuando hay hover o focus */
.product-form__buttons .product-form__submit:hover,
.product-form__buttons .product-form__submit:focus,
.shopify-payment-button__button--unbranded:hover,
.shopify-payment-button__button--unbranded:focus {
border-radius: 20px !important;
}