/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 17 2026 | 02:45:23 */
/* Estilo Burbuja Kawaii para el widget de Ryviu */
ryviu-widget, ryviu-feature-extend {
    --ryviu-widget-bg: transparent !important; 
}

/* Redondear la tarjeta, quitar bordes y añadir color frutal */
.ryviu-review-item, .ryviu-carousel-item {
    background-color: #FFF5EC !important; /* Melocotón pálido de fondo */
    border: none !important; 
    border-radius: 30px !important; /* Efecto súper burbuja */
    box-shadow: 0 10px 25px rgba(93, 45, 143, 0.12) !important; /* Sombra en Açai Purple */
    padding: 25px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* Forzar la imagen arriba y ponerle un borde morado */
.ryviu-review-item img, .ryviu-carousel-item img {
    order: -2 !important; /* Mueve la imagen al principio */
    width: 85px !important;
    height: 85px !important;
    border-radius: 50% !important;
    border: 3px solid #5D2D8F !important; /* Açai Purple */
    margin-bottom: 12px !important;
    object-fit: cover !important;
}

/* Colocar las estrellas debajo de la imagen */
.ryviu-stars {
    order: -1 !important; 
    color: #FDFD96 !important; /* Amarillo vainilla */
    margin-bottom: 15px !important;
}

/* Texto de la reseña */
.ryviu-review-text {
    color: #5D2D8F !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
}