/*
Theme Name: Kadence Child Theme
Template: kadence
*/

/* ===== FILA: estrellas + texto de valoraciones ===== */
.tg-rating-row {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

/* Hace que los widgets internos no ocupen toda la fila */
.tg-rating-row > .elementor-element,
.tg-rating-row > .elementor-widget {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
}

/* Quita márgenes raros del widget de valoración */
.tg-rating-row .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
}

/* Ajuste del bloque de estrellas */
.tg-rating-row .woocommerce-product-rating,
.tg-rating-row .star-rating,
.tg-rating-row .elementor-star-rating {
    margin: 0 !important;
    line-height: 1 !important;
}

/* ===== TEXTO TIPO LINK / BOTÓN ===== */
.tg-rating-fake-link {
    appearance: none !important;
    -webkit-appearance: none !important;
    background: transparent !important;
    border: none !important;
    padding: 2px 0 !important;
    margin: 0 !important;

    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;

    color: #243E90 !important;
    text-decoration: underline !important;
    text-decoration-thickness: 1.5px !important;
    text-underline-offset: 3px !important;

    cursor: pointer !important;
    transition: color .20s ease, transform .15s ease, opacity .20s ease, text-decoration-color .20s ease !important;
}

/* Hover */
.tg-rating-fake-link:hover {
    color: #1C3277 !important;
    text-decoration-color: #1C3277 !important;
    transform: translateY(-1px) !important;
    opacity: 0.95 !important;
}

/* Efecto al presionar */
.tg-rating-fake-link:active {
    transform: translateY(0) scale(0.98) !important;
    color: #122658 !important;
}

/* Focus bonito */
.tg-rating-fake-link:focus,
.tg-rating-fake-link:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(36, 62, 144, 0.12) !important;
    border-radius: 4px !important;
}

/* Tablet */
@media only screen and (max-width: 1024px) {
    .tg-rating-row {
        gap: 10px !important;
    }

    .tg-rating-fake-link {
        font-size: 15px !important;
    }
}

/* Celular */
@media only screen and (max-width: 767px) {
    .tg-rating-row {
        gap: 8px !important;
        align-items: center !important;
    }

    .tg-rating-fake-link {
        font-size: 14px !important;
        text-underline-offset: 2px !important;
    }
}

