/* Testimonials Slider - Елегантен слайдър за отзиви за всички устройства */

/* Показва се на всички устройства */
.mobile-testimonials-slider {
    display: block;
    position: relative;
    padding: 0;
    margin-bottom: 0;
}

/* Когато е вътре в google-reviews-stats картата */
.google-reviews-stats .mobile-testimonials-slider {
    padding: 0;
}

/* Скриваме desktop grid на всички устройства */
.testimonials-grid {
    display: none !important;
}

/* Общи стилове за всички устройства */
.mobile-testimonials-container {
    position: relative;
    overflow: hidden;
    background: var(--color-two);
    border-radius: 20px;
    padding: 30px 20px;
}

/* Кръгла иконка с кавички */
.mobile-testimonial-icon {
    width: 80px;
    height: 80px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(230, 177, 95, 0.4);
}

.mobile-testimonial-icon i {
    font-size: 36px;
    color: var(--color-one);
}

/* Слайд за отзив */
.mobile-testimonial-slide {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.mobile-testimonial-slide.active {
    display: block;
}

/* Име на автора */
.mobile-testimonial-author {
    font-family: var(--font-family-Fraunces);
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Коментар */
.mobile-testimonial-comment {
    font-family: var(--font-family-Urbanist);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-three);
    margin-bottom: 15px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Звезди */
.mobile-testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.mobile-testimonial-rating i {
    color: var(--main-color);
    font-size: 16px;
}

/* Дата */
.mobile-testimonial-date {
    font-family: var(--font-family-Urbanist);
    font-size: 13px;
    color: var(--color-three);
    opacity: 0.6;
}

/* Индикатори (точки) */
.mobile-testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.mobile-testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-four);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-testimonial-dot.active {
    background: var(--main-color);
    width: 24px;
    border-radius: 4px;
}

/* Анимация за fade in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop стилове */
@media (min-width: 769px) {
    .mobile-testimonials-slider {
        padding: 0 40px;
        margin-bottom: 80px;
    }

    .mobile-testimonials-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 60px 80px;
    }

    .mobile-testimonial-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 30px;
    }

    .mobile-testimonial-icon i {
        font-size: 54px;
    }

    .mobile-testimonial-author {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .mobile-testimonial-comment {
        font-size: 18px;
        line-height: 1.8;
        min-height: 120px;
        max-width: 700px;
        margin: 0 auto 20px;
    }

    .mobile-testimonial-rating i {
        font-size: 20px;
    }

    .mobile-testimonial-date {
        font-size: 15px;
    }

    .mobile-testimonials-dots {
        margin-top: 30px;
        gap: 10px;
    }

    .mobile-testimonial-dot {
        width: 10px;
        height: 10px;
    }

    .mobile-testimonial-dot.active {
        width: 30px;
    }
}

/* Tablet стилове */
@media (min-width: 577px) and (max-width: 768px) {
    .mobile-testimonials-slider {
        padding: 0 30px;
        margin-bottom: 50px;
    }

    .mobile-testimonials-container {
        padding: 40px 40px;
    }

    .mobile-testimonial-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
    }

    .mobile-testimonial-icon i {
        font-size: 44px;
    }

    .mobile-testimonial-author {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .mobile-testimonial-comment {
        font-size: 16px;
        line-height: 1.7;
        min-height: 100px;
    }

    .mobile-testimonial-rating i {
        font-size: 18px;
    }

    .mobile-testimonial-date {
        font-size: 14px;
    }

    .mobile-testimonials-dots {
        margin-top: 25px;
        gap: 9px;
    }

    .mobile-testimonial-dot {
        width: 9px;
        height: 9px;
    }

    .mobile-testimonial-dot.active {
        width: 27px;
    }
}

/* Mobile стилове - само специфични override-и */
@media (max-width: 576px) {
    /* Без промени - използват се общите стилове */
}

