.button.product_type_simple {
  color: white;
  background-color: #e55737 !important;
}


/* Contenedor del producto */
.woocommerce ul.products li.product {
  border: 1px solid #484646;
  border-radius: 8px;
  padding: 16px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Imagen del producto */
.woocommerce ul.products li.product img {
  border-radius: 8px;
}

/* Título del producto */
.woocommerce ul.products li.product h2 {
  color: #484646;
  font-size: 1.2rem;
  text-align: center;
}

/* Precio del producto */
.woocommerce ul.products li.product .price {
  color: #e55737;
  font-weight: bold;
  text-align: center;
}

/* Botón */
.woocommerce ul.products li.product .button {
  background-color: #e55737;
  color: #fff;
  padding: 10px 15px;
  text-align: center;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.woocommerce ul.products li.product .button:hover {
  background-color: #c1462c;
}