/* Widget Reviews Style */
.parana-reviews-widget-wrapper {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    direction: rtl;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.parana-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.parana-reviews-main-title {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.parana-write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1.5px solid #D0D5DD;
    border-radius: 12px;
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.parana-write-review-btn:hover {
    background-color: #f9fafb;
    border-color: #98A2B3;
}

.parana-reviews-content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

/* Reviews List */
.parana-reviews-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.parana-review-card {
    background-color: #fff;
    border: 1px solid #F2F4F7;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
}

.parana-review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.parana-review-meta-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.parana-review-user-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.parana-review-author-name {
    font-weight: 700;
    font-size: 16px;
    color: #1A1A1A;
}

.parana-review-date {
    font-size: 13px;
    color: #667085;
}

.parana-review-avatar img {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    object-fit: cover;
}

.parana-review-rating-stars {
    color: #FDB022;
    display: flex;
    gap: 2px;
}

.parana-review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #475467;
    margin-bottom: 15px;
}

.parana-verified-buyer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #344054;
    font-size: 14px;
    font-weight: 500;
}

.parana-verified-buyer i {
    color: #1570EF;
}

.parana-show-more-box {
    margin-top: 30px;
    text-align: center;
}

.parana-show-more-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1.5px dashed #D0D5DD;
    border-radius: 12px;
    color: #706ab2;
    text-decoration: none;
    font-weight: 600;
    width: 100%;
    background: #ffffff;
}

.parana-show-more-btn:hover {
    background-color: #6d66b0;
    border: 1px solid white;
}

/* Summary Card */
.parana-summary-card {
    background-color: #fff;
    border: 1px solid #F2F4F7;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
}

.parana-avg-rating-value {
    font-size: 56px;
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1;
    margin-bottom: 10px;
}

.parana-avg-stars {
    color: #FDB022;
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.parana-total-reviews-count {
    font-size: 14px;
    color: #667085;
    margin-bottom: 30px;
}

.parana-rating-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.parana-rating-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.parana-bar-label {
    min-width: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.parana-bar-label i {
    color: #FDB022;
    font-size: 12px;
}

.parana-bar-track {
    flex-grow: 1;
    height: 8px;
    background-color: #F2F4F7;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.parana-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FDB022 0%, #FEC84B 100%);
    border-radius: 10px;
}

.parana-bar-percent {
    min-width: 35px;
    font-size: 14px;
    color: #667085;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .parana-reviews-content-grid {
        grid-template-columns: 1fr;
    }
    
    .parana-reviews-summary-col {
        order: -1;
    }
    
    .parana-reviews-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .parana-write-review-btn {
        width: 100%;
        justify-content: center;
    }
}
