.button {
  display: inline-block;
  background: #ED008C;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;

  /* Label styles */
  font-family: 'Patua One', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #FFFFFF;
}

.button:hover {
  background: #C4006F;
  border-color: #FFFFFF;
}

.button:active {
  background: #A3005C;
}

/* Round variant */
.button--round {
  display: inline-block;
  background: #ED008C;
  border: 1px solid #ED008C;
  border-radius: 8px;
  padding: 12px 32px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease;
  cursor: pointer;

  font-family: 'Patua One', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #FFFFFF;
}

.button--round:hover {
  background: #C4006F;
}

/* Outline variant */
.button--outline {
  display: inline-block;
  background: transparent;
  border: 2px solid #ED008C;
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;

  font-family: 'Patua One', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #ED008C;
}

.button--outline:hover {
  background: #ED008C;
  color: #FFFFFF;
}

/* Filled white variant (for dark backgrounds) */
.button--filled-white {
  display: inline-block;
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 6px;
  padding: 12px 32px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;

  font-family: 'Patua One', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ED008C;
}

.button--filled-white:hover {
  background: #f3f3f3;
  border-color: #f3f3f3;
}

/* Outline white variant (for dark backgrounds) */
.button--outline-white {
  display: inline-block;
  background: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 6px;
  padding: 12px 32px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;

  font-family: 'Patua One', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.button--outline-white:hover {
  background: #FFFFFF;
  color: #ED008C;
}
