/* Farad Product Reviews Widget Styles */

.farad-reviews-container {
    width: 100%;
    direction: rtl;
}

.farad-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.farad-review-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.farad-review-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.farad-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
}

.farad-review-author {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.farad-author-avatar {
    flex-shrink: 0;
}

.farad-author-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.farad-author-info {
    flex: 1;
    min-width: 0;
}

.farad-author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 6px;
}

.farad-review-rating {
    display: flex;
    gap: 2px;
    align-items: center;
}

.farad-review-rating .star {
    font-size: 16px;
    color: #ddd;
    line-height: 1;
}

.farad-review-rating .star.filled {
    color: #FFA500;
}

.farad-review-date {
    font-size: 14px;
    color: #929CA1;
    white-space: nowrap;
    flex-shrink: 0;
}

.farad-review-content {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.farad-review-content p {
    margin: 0 0 12px 0;
}

.farad-review-content p:last-child {
    margin-bottom: 0;
}

.farad-no-reviews {
    text-align: center;
    padding: 40px 20px;
    color: #929CA1;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .farad-review-card {
        padding: 16px;
        border-radius: 12px;
    }

    .farad-review-header {
        flex-direction: column;
        gap: 12px;
    }

    .farad-review-date {
        align-self: flex-start;
        font-size: 13px;
    }

    .farad-author-name {
        font-size: 15px;
    }

    .farad-review-content {
        font-size: 14px;
        line-height: 1.7;
    }

    .farad-author-avatar img {
        width: 40px;
        height: 40px;
    }

    .farad-review-rating .star {
        font-size: 14px;
    }

    .farad-reviews-list {
        gap: 16px;
    }
}

/* RTL Support */
.rtl .farad-reviews-container {
    direction: rtl;
}




