/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 12 2026 | 21:58:33 */
/* ===========================
   EROTICADIGITALE – BUTTON SYSTEM
   Classe ufficiale: .ed-button
   =========================== */

.ed-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 22px;

  font-size: 15px;
  font-weight: 700;
  line-height: 1;

  color: #ffffff !important;
  text-decoration: none !important;
  white-space: nowrap;

  border: none;
  border-radius: 10px;
  cursor: pointer;
	
	margin 20px 0;

  /* Gradiente identico al riferimento */
  background: linear-gradient(
    135deg,
    #ff2e63 0%,
    #ff4d8d 50%,
    #ff6fa5 100%
  );

  /* Profondità */
  box-shadow:
    0 12px 28px rgba(255, 46, 99, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

  transition: 
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;

  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* Hover */
.ed-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);

  box-shadow:
    0 16px 34px rgb 
}
/* === CTA sotto immagini: centratura FORZATA === */
.ed-image-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px 0 28px;
}

/* === Bottone: testo SEMPRE UPPERCASE === */
.ed-image-cta .ed-button {
  text-transform: uppercase;
}

