/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 20 2025 | 02:43:20 */
/* Botón Tienda en Línea – diseño corporativo animado */
[data-header*="type-1"] .ct-header [data-id="button"] [class*="ct-button"] {
  /* Variables fáciles de ajustar */
  --btn-font-size: 1rem;
  --btn-padding-y: 12px;
  --btn-padding-x: 28px;
  --btn-radius: 40px;

  position: relative;
  display: inline-block;
  font-size: var(--btn-font-size);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--btn-radius);
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(120deg, #A60303, #dababb, #A60303);
  background-size: 300% 300%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: gradient-move 6s ease infinite;
}

/* Hover: sutil empuje y sombra más marcada */
[data-header*="type-1"] .ct-header [data-id="button"] [class*="ct-button"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Animación del gradiente en movimiento */
@keyframes gradient-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

[data-header*="type-1"] .ct-header [data-id="button"] [class*="ct-button"]:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 25px rgba(130,24,26,0.5), 0 0 12px rgba(218,186,187,0.6);
  filter: brightness(1.1);
}