.testimonials-section {
    background-color: #121212;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    color: #fff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.testimonial-card {
    background-color: #242427;
    border: 1px solid #3a3a3a;
    border-radius: 15px;
    flex: 1;
    max-width: 380px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.testimonial-card.featured {
    transform: scale(1.05);
    z-index: 2;
    border-color: #a48446;
}

.product-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.review-title {
    font-family: serif;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 25px;
    flex-grow: 1;
}

.stars {
    font-size: 24px;
    margin-bottom: 25px;
    background: linear-gradient(119deg, #d0bf95, #a48446);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #3a3a3a;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.user-location {
    font-size: 13px;
    color: #888;
}

@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        max-width: 100%;
        transform: none !important;
        margin-bottom: 30px;
    }
}