/* ============================================================
   WIDGET — RESEÑAS / TESTIMONIALS
   ============================================================ */

.hb-testimonials {
    background: var(--hb-cream);
    overflow: hidden;
}

.hb-testimonials__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Slick config */
.hb-testi-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.hb-testi-slider .slick-slide {
    height: auto;
    padding: 8px 10px;
    display: flex !important;
}

    .hb-testi-slider .slick-slide > div {
        display: flex;
        width: 100%;
        height: 100%;
    }

.hb-testi-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 28px 0 0;
    margin: 0;
}

    .hb-testi-slider .slick-dots li button {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--color-rosa2);
        border: none;
        cursor: pointer;
        font-size: 0;
        padding: 0;
        transition: all .3s;
    }

    .hb-testi-slider .slick-dots li.slick-active button {
        background: var(--color-rosa3);
        width: 24px;
        border-radius: 4px;
    }

/* Card */
.hb-testi-card {
    position: relative;
    background: #fff;
    border-radius: var(--hb-radius-lg);
    padding: 0;
    height: 100%;
    border: 1px solid var(--color-rosa2);
    box-shadow: 0 8px 40px rgba(0,0,0,0.04);
    transition: box-shadow .35s, transform .35s;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

    .hb-testi-card:hover {
        
        transform: translateY(-3px);
    }

    /* Barra de acento superior */
    .hb-testi-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 5px;
        background: linear-gradient(180deg, var(--color-rosa3), var(--color-rosa1));
    }

    /* Comillas */
    .hb-testi-card::before {
        content: '\201C';
        font-family: var(--hb-display);
        font-size: 100px;
        color: var(--color-rosa2);
        position: absolute;
        top: -4px;
        right: 10px;
        line-height: 1;
        pointer-events: none;
    }

/* Imagen producto */
.hb-testi-product-link {
    flex-shrink: 0;
    width: 140px;
    align-self: stretch;
    border-radius: var(--hb-radius-lg) 0 0 var(--hb-radius-lg) !important;
    overflow: hidden;
    background: var(--color-rosa1);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hb-testi-product-link:hover .hb-testi-product-img {
        transform: scale(1.06);
    }

.hb-testi-product-img {
    width: 140px;
    height: 100%;
    object-fit: cover;
    padding: 0;
    border-radius: 0 !important;
    transition: transform .4s ease;
}

/* Contenido */
.hb-testi-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    padding: 16px;
    cursor: default;
}

/* Stars */
.hb-testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 6px;
}

    .hb-testi-stars i {
        font-size: 14px;
        color: #f5b942;
    }

/* Nombre producto */
.hb-testi-product-name {
    display: block;
    font-family: var(--hb-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--hb-gray-light);
    text-decoration: none;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    letter-spacing: .5px;
}

    .hb-testi-product-name:hover {
        color: var(--color-rosa3);
    }

/* Comentario */
.hb-testi-text {
    font-family: var(--hb-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--hb-gray);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Author */
.hb-testi-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.hb-testi-avatar {
    width: 32px;
    height: 32px;
    font-size: 13px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--color-rosa1);
    border: 2px solid var(--color-rosa1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-rosa3);
    flex-shrink: 0;
    overflow: hidden;
}

.hb-testi-name {
    font-family: var(--hb-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--hb-dark);
    display: block;
}

.hb-testi-location {
    font-family: var(--hb-body);
    font-size: 10px;
    color: var(--hb-gray-light);
    display: block;
}

/* Badge verificada */
.hb-testi-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--hb-body);
    font-size: 10px;
    font-weight: 600;
    color: #47b881;
    background: rgba(71,184,129,.12);
    border: 1px solid rgba(71,184,129,.25);
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: auto;
    white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .hb-testimonials__inner {
        padding: 0 20px;
    }

    .hb-section-header {
        margin-bottom: 32px;
    }

    .hb-testi-product-link {
        width: 100px;
    }

    .hb-testi-product-img {
        width: 100px;
    }
}
