@charset "UTF-8";
.testimonial-container {
    position: relative;
    width:70%;
    margin: 80px auto;
    overflow: hidden;
    text-align: center;
}
.testimonial-container.dragging {
    cursor: grabbing;
}
.testimonial-wrapper {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
    flex: 0 0 100%;
    min-height: 340px;
    display: flex;
    position: relative;
    padding: 10px 0;
    background: white;
    border-radius: 9px;
}
.testimonial-card::after {
    content: '';
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 80%;
    width: 1px;
    background: repeating-linear-gradient(
        180deg,
        #ddd 0,
        #ddd 5px,
        transparent 5px,
        transparent 10px
    );
}
.client-info {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}
.client-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.client-photo:hover {
    transform: scale(1.05);
}
.product-photo {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 10px;
    border: 3px solid #f1f1f1;
    transition: transform 0.3s ease;
}
.product-photo:hover {
    transform: translateY(-5px);
}
.comment-section {
    flex: 1;
    padding: 50px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.comment-text {
    text-align: left;
    font-size: 1.3em;
    line-height: 1.8;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}
.comment-text::before {
    content: '“';
    font-size: 3em;
    position: absolute;
    left: -0.5em;
    top: -0.4em;
    color: #222;
    font-family: serif;
}
.dots-container {
    display: flex;
    justify-content: center;
    margin-top:10px;
    gap: 18px;
}
.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background:#c5dff6;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dot.active {
    background:#5869fa;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
@media (max-width:1277px) {
    .testimonial-card {
        flex-direction: column;
        min-height: auto;
        padding: 30px 0;
    }
    .testimonial-container {
        width:98%;
    }
    .testimonial-card::after {
        display: none;
    }

    .client-info {
        padding: 20px;
    }
    .comment-section {
        padding: 30px 25px;
    }

    .comment-text {
        font-size: 1.1em;
        padding-left: 30px;
    }
}
@media (max-width:713px) {
    .comment-text::before {
        left: -0.4em;
    }
}