.tbex-reviews-container {
    padding: 2rem 0;
    text-align: right;
    font-family: inherit;
}

.tbex-section-header-wrap {
    text-align: center;
    margin-bottom: 2rem;
}

.tbex-section-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: #f0f0f0;
    color: #333;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 12px;
}

.tbex-reviews-title {
    font-size: 2rem;
    margin: 0 0 10px;
    font-weight: bold;
}

.tbex-reviews-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

.tbex-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tbex-review-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tbex-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.tbex-sku-warning {
    background: #fff3cd;
    color: #856404;
    padding: 8px;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    border: 1px solid #ffeeba;
}

.tbex-product-info {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.tbex-product-img {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
    margin-left: 12px;
}

.tbex-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tbex-product-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.tbex-review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.tbex-review-star {
    color: #ffc107;
    fill: #ffc107;
}

.tbex-star-empty {
    color: #e0e0e0;
}

.tbex-review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tbex-reviewer-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tbex-reviewer-name {
    font-size: 16px;
    color: #111;
}

.tbex-customer-label {
    font-size: 13px;
    color: #777;
}

.tbex-review-badge {
    position: absolute;
    top: 20px;
    left: 20px; /* Left side for RTL */
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .tbex-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tbex-reviews-grid {
        grid-template-columns: 1fr;
    }
}
