.testimonials-section.stl-a {
    margin-bottom: 40px;
    padding: 25px;
    background: #fff;
    border: 1px solid var(--shop-sol-border-color);
    border-radius: 8px;
}
/* 用户评论版块样式 */
.testimonials-section.stl-a .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.testimonials-section.stl-a .testimonial-item {
    background: #fff9f4; /* 浅橙色调背景，与主题色呼应 */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #f1e0d0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonials-section.stl-a .stars {
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonials-section.stl-a .comment {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.testimonials-section.stl-a .client-info {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonials-section.stl-a .client-avatar {
    width: 45px;
    height: 45px;
    background: var(--shop-sol-primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.testimonials-section.stl-a .client-detail strong {
    display: block;
    font-size: 15px;
    color: #333;
}

.testimonials-section.stl-a .client-detail span {
    display: block;
    font-size: 12px;
    color: #888;
}

/* 响应式 */
@media (max-width: 900px) {
    .testimonials-section.stl-a .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 独立客户案例版块 --- */
.testimonials-section.stl-b {
    padding: 100px 5%;
    background-color: #f8f8f8;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000;
    line-height: 1.6;
}

/* 独立标题样式 */
.testimonials-section.stl-b .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-section.stl-b .section-header span {
    display: block;
    font-size: 1rem;
    color: #c5a059;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.testimonials-section.stl-b .section-header h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px;
    text-transform: uppercase;
}

/* 网格布局 */
.testimonials-section.stl-b .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* 卡片样式 */
.testimonials-section.stl-b .testimonial-card {
    background: #ffffff;
    padding: 50px 40px;
    border-bottom: 3px solid transparent;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.testimonials-section.stl-b .testimonial-card:hover {
    border-bottom-color: #c5a059;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* 装饰元素 */
.testimonials-section.stl-b .quote-icon {
    font-size: 3.5rem;
    color: #c5a059;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -15px;
    font-family: serif;
}

.testimonials-section.stl-b .testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    color: #1a1a1a;
}

/* 用户信息 */
.testimonials-section.stl-b .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonials-section.stl-b .client-avatar {
    width: 52px;
    height: 52px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a059;
    font-weight: bold;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonials-section.stl-b .client-details strong {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 2px;
}

.testimonials-section.stl-b .client-details span {
    font-size: 0.8rem;
    color: #777777;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .testimonials-section.stl-b {
        padding: 60px 5%;
    }
    .testimonials-section.stl-b .testimonial-card {
        padding: 35px 25px;
    }
}

.review-section.stl-c .text-center { text-align: center; }

.review-section.stl-c .highlight-text {
    color: #c47d58; /* var(--color-accent) */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.review-section.stl-c .review-section {
    margin-top: 60px;
}

.review-section.stl-c .review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-section.stl-c .review-card {
    background: #fcfcfc;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #e5e5e5; /* var(--color-grey-light) */
    position: relative;
}

.review-section.stl-c .review-card::before {
    content: "“";
    font-size: 4rem;
    color: #c47d58; /* var(--color-accent) */
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.review-section.stl-c .rating-stars {
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-section.stl-c .reviewer-name {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #2d2d2d; /* var(--color-dark) */
}

.review-section.stl-c .verified-badge {
    font-size: 0.75rem;
    color: #6b8e23; /* var(--color-success) */
    margin-left: 5px;
    font-weight: normal;
}

.review-section.stl-c .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out; /* var(--transition-speed) */
}

.review-section.stl-c .reveal.active {
    opacity: 1;
    transform: translateY(0);
}