/* ============================================================
   REORDENAR VALORACIONES - FORMULARIO PRIMERO
   ============================================================ */

/* Contenedor principal de reseñas */
#reviews {
    display: flex !important;
    flex-direction: column !important;
}

/* Forzamos al formulario a ser el primer elemento */
#review_form_wrapper {
    order: 1 !important;
    margin-bottom: 50px !important;
    padding: 30px !important;
    background: #fdfbfd !important; /* Un lila casi blanco muy sutil */
    border: 1px solid #f2edf5 !important;
    border-radius: 20px !important;
}

/* La lista de comentarios pasa a ser el segundo elemento */
#comments {
    order: 2 !important;
}

/* Estilo del botón de enviar para que combine con tus descargas */
#reviews #submit {
    background-color: #5B2C6F !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-weight: bold !important;
    border: none !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

#reviews #submit:hover {
    background-color: #EAB839 !important;
    transform: translateY(-2px) !important;
}

/* Título de las reseñas */
.woocommerce-Reviews-title {
    color: #5B2C6F !important;
    font-size: 1.5rem !important;
    margin-bottom: 20px !important;
}