/* Estilos para los métodos de pago */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.payment-method {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 10px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-method:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.payment-method.active {
  background-color: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 102, 255, 0.5);
}

.payment-method-name {
  font-size: 14px;
  font-weight: 500;
  color: white;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
  .payment-methods {
    justify-content: center;
  }
}
