/**
 * Estilo unificado de botones (pill shape)
 * Primario: fondo #D4AF37, texto blanco, sombra suave
 * Secundario: fondo blanco, borde y texto #D4AF37, sin sombra
 */
.wed-btn {
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
	border-radius: 10px;
}
.wed-btn-primary,
.wed-btn.wed-btn-primary {
	background-color: #D4AF37;
	color: #fff;
	border: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.wed-btn-primary:hover,
.wed-btn.wed-btn-primary:hover {
	background-color: #b08d2b;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.wed-btn-secondary,
.wed-btn.wed-btn-secondary {
	background-color: #fff;
	color: #D4AF37;
	border: 2px solid #D4AF37;
	box-shadow: none;
	padding: 1rem 2rem;
}
.wed-btn-secondary:hover,
.wed-btn.wed-btn-secondary:hover {
	background-color: rgba(212, 175, 55, 0.08);
}
