.testimonials-section {
    background-color: var(--background-color1);
    padding: 6vw 0 0 0;
    overflow: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4vw;
}

.testimonial-section-title {
    color: var(--text-color1);
    font-family: var(--font2);
    font-weight: 600;
    font-size: 3.5vw;
    line-height: 1.2;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5vw;
    margin-top: 2vw;
}

.testimonials-content {
    display: contents;
}

.kg-product-card {
    background-color: var(--background-color2);
    border: 1px solid var(--text-color1-20-opacity);
    border-radius: 1.4vw;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    width: 100%;
}

.kg-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.kg-product-card-container {
    padding: 3vw;
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    box-shadow: none;
}

.kg-product-card-title-container {
    margin-bottom: 0.5vw;
}

.kg-product-card-title {
    color: var(--text-color1);
    font-family: var(--font2);
    font-weight: 600;
    font-size: 1.8vw;
    line-height: 1.3;
    margin: 0;
}

.kg-product-card-rating {
    display: flex;
    gap: 0.4vw;
    margin: 0.5vw 0;
}

.kg-product-card-rating-star {
    width: 1.4vw;
    height: 1.4vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kg-product-card-rating-star svg {
    width: 100%;
    height: 100%;
    fill: var(--text-color1-20-opacity);
}

.kg-product-card-rating-active svg {
    fill: #fbbf24;
}

.kg-product-card-description {
    color: var(--text-color2);
    line-height: 1.6;
    font-size: 1.1vw;
}

.kg-product-card-description p {
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .container {
        padding: 0 30px;
    }

    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-header {
        margin-bottom: 48px;
    }

    .testimonial-section-title {
        font-size: 42px;
    }

    .testimonials-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 20px;
    }

    .kg-product-card {
        border-radius: 15px;
    }

    .kg-product-card-container {
        padding: 32px 24px;
        gap: 16px;
    }

    .kg-product-card-title {
        font-size: 22px;
    }

    .kg-product-card-rating {
        gap: 6px;
    }

    .kg-product-card-rating-star {
        width: 18px;
        height: 18px;
    }

    .kg-product-card-description {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 479px) {
    .container {
        padding: 0 18px;
    }

    .testimonials-section {
        padding: 60px 0 0 0;
    }

    .testimonials-header {
        margin-bottom: 32px;
    }

    .testimonial-section-title {
        font-size: 32px;
    }

    .testimonials-track {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 16px;
    }

    .kg-product-card {
        padding-bottom: 28px;
        border-bottom: 1px solid var(--text-color2-40-opacity);
    }

    .kg-product-card {
        border-radius: 12px;
    }

    .kg-product-card-container {
        padding: 28px 20px;
        gap: 14px;
    }

    .kg-product-card-title {
        font-size: 20px;
    }

    .kg-product-card-rating {
        gap: 5px;
    }

    .kg-product-card-rating-star {
        width: 16px;
        height: 16px;
    }

    .kg-product-card-description {
        font-size: 14px;
    }
}