/* Testimonials Page Styles */

.testimonials-intro {
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonials-intro p {
    font-size: 16px;
    color: #555;
}

.testimonials-list {
    margin-top: 20px;
}

.testimonial-item {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.testimonial-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-item .row {
    display: flex;
    align-items: flex-start;
}

.testimonial-image-wrapper {
    width: 192px;
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.testimonial-product-image {
    width: 192px;
    height: 155px;
    object-fit: contain;
    border-radius: 5px;
    display: block;
}

.testimonial-header h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.3;
}

.testimonial-header a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.testimonial-header a:hover {
    color: #e74c3c;
}

.testimonial-price {
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c;
    margin: 5px 0 10px 0;
}

.testimonial-rating {
    margin: 10px 0;
}

.testimonial-rating .star {
    color: #f39c12;
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-content {
    margin: 15px 0;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.testimonial-footer {
    color: #888;
    font-size: 14px;
    margin-top: 15px;
}

.testimonial-footer strong {
    color: #333;
}

.testimonial-footer .date {
    margin-left: 10px;
}

.testimonials-empty {
    text-align: center;
    padding: 40px 20px;
    color: #888;
    font-size: 16px;
}

/* Responsive styles */
@media (max-width: 991px) {
    .testimonial-item .row {
        flex-direction: column;
    }

    .testimonial-item .col-md-3,
    .testimonial-item .col-md-9 {
        width: 100%;
        max-width: 100%;
    }

    .testimonial-image-wrapper {
        margin: 0 auto 15px;
    }
}

@media (max-width: 768px) {
    .testimonials-intro p {
        font-size: 15px;
    }

    .testimonial-item {
        padding: 15px;
    }

    .testimonial-header h3 {
        font-size: 18px;
    }

    .testimonial-price {
        font-size: 16px;
        margin: 5px 0;
    }

    .testimonial-rating .star {
        font-size: 16px;
    }

    .testimonial-content p {
        font-size: 14px;
    }

    .testimonial-footer {
        font-size: 13px;
    }

    .testimonial-footer .date {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }

    .testimonial-image-wrapper {
        width: 150px;
        height: 121px;
    }

    .testimonial-product-image {
        width: 150px;
        height: 121px;
    }
}

@media (max-width: 480px) {
    .testimonial-item {
        padding: 12px;
    }

    .testimonial-header h3 {
        font-size: 16px;
    }

    .testimonial-price {
        font-size: 15px;
    }

    .testimonial-rating .star {
        font-size: 15px;
    }

    .testimonial-content p {
        font-size: 13px;
    }

    .testimonial-footer {
        font-size: 12px;
    }

    .testimonial-image-wrapper {
        width: 120px;
        height: 97px;
    }

    .testimonial-product-image {
        width: 120px;
        height: 97px;
    }
}