/* ==========================================================================
   SANGOYS TESTIMONIALS (SECTION ĐÁNH GIÁ KHÁCH HÀNG)
   Tone màu: Vàng Gold / Nâu Gỗ
   ========================================================================== */

   .sy-testimonials-section {
    padding: 30px 0;
}

/* Phần Header (Tiêu đề) */
.sy-testimonials-header {
    margin-bottom: 30px;
}
.sy-testimonials-header.text-center {
    text-align: center;
}
.sy-testimonials-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #4a3424; /* Nâu gỗ đậm */
    text-transform: uppercase;
}

/* Lưới hiển thị (Grid Mode) */
.sy-testimonials-grid {
    display: grid;
    gap: 20px;
}
.sy-testimonials-grid.sy-cols-4 { grid-template-columns: repeat(4, 1fr); }
.sy-testimonials-grid.sy-cols-3 { grid-template-columns: repeat(3, 1fr); }
.sy-testimonials-grid.sy-cols-2 { grid-template-columns: repeat(2, 1fr); }

/* Giao diện Thẻ Đánh Giá (Card) */
.sy-testimonial-card-wrap {
    width: 100%;
}

.sy-testimonial-card {
    background: #ffffff;
    border: 1px solid #f2e9e1;
    border-radius: 10px;
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-top: 4px solid #d4974a; /* Điểm nhấn viền trên Vàng Gold */
}
.sy-testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(74, 52, 36, 0.08); /* Bóng đổ ngả màu nâu nhạt */
    transform: translateY(-4px);
}

/* Quote Icon */
.sy-tcard-quote {
    width: 35px;
    height: 35px;
    color: #e5d5c5; /* Màu be trầm (sang trọng) */
    margin-bottom: 15px;
}
.sy-tcard-quote svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    opacity: 0.6;
}

/* Stars */
.sy-tcard-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}
.sy-tcard-stars svg {
    width: 18px;
    height: 18px;
    color: #d4974a; /* Vàng Gold */
    fill: currentColor;
}
.sy-tcard-stars svg.inactive {
    color: #e8e8e8;
}

/* Phần nội dung text */
.sy-tcard-content {
    font-size: 0.95rem;
    color: #55443a;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 25px;
    font-style: italic;
}

/* Avatar và Tên (Dưới cùng) */
.sy-tcard-author {
    display: flex;
    align-items: center;
    border-top: 1px dashed #f2e9e1;
    padding-top: 15px;
    margin-top: auto;
}

.sy-tcard-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background: #fdfaf7;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: #d4974a;
    border: 2px solid #f2e9e1;
}

.sy-tcard-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sy-tcard-info {
    display: flex;
    flex-direction: column;
}

.sy-tcard-name {
    font-size: 1rem;
    font-weight: 700;
    color: #4a3424;
    margin: 0;
    line-height: 1.2;
}

/* Responsive */
@media screen and (max-width: 849px) {
    .sy-testimonials-grid.sy-cols-4,
    .sy-testimonials-grid.sy-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .sy-testimonials-grid {
        display: block; /* Disable CSS grid when flickity is active */
    }
    .sy-testimonials-grid .sy-testimonial-card-wrap {
        width: 100%; /* 1 card per view */
        padding: 0 10px; /* Thêm khoảng cách giữa các slide */
        margin-bottom: 15px; /* Để tránh dính nhau nếu không phải dạng slider */
    }
}
