/* The product page's own sheets.
 *
 * Sources, in cascade order:
 *   /inline/dc3b81cb77d86078.css
 *   /inline/pstyle-5297c51c837a.css
 */

/* /inline/dc3b81cb77d86078.css */
/* Estilos del botón */
.bel-back-button {
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 10000;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ab1c3c;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.bel-back-button:hover {
  background: #8f152f;
  transform: scale(1.08);
}
@media (max-width: 768px) {
  .bel-back-button {
    left: 18px;
    bottom: 18px;
    width: 64px;
    height: 64px;
  }
}

/* /inline/pstyle-5297c51c837a.css */
.custom-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #14326b;
  border: none;
  border-radius: 5px;
  box-shadow: 0 3px #999;
}
.custom-button:hover {
  background-color: #14326b;
}
.custom-button:active {
  background-color: #14326b;
  box-shadow: 0 1px #666;
  transform: translateY(4px);
}
