.tsf-reviews-wrapper {
    font-family: 'Inter', sans-serif;
    color: #333;
    margin-top: 30px;
}
.tsf-review-section {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,.04);
}
.tsf-section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tsf-review-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    align-items: center;
    background: #f3f4f6;
    padding: 25px;
    border-radius: 8px;
}
.tsf-review-average { text-align: center; }
.tsf-review-average .tsf-score {
    font-size: 48px;
    font-weight: 700;
    color: #17A34A;
    line-height: 1;
    margin-bottom: 5px;
}
.tsf-review-average .tsf-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 5px;
}
.tsf-review-average .tsf-count {
    font-size: 14px;
    color: #6b7280;
}
.tsf-review-bars { flex-grow: 1; }
.tsf-rating-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.tsf-rating-bar-item .tsf-star-label {
    width: 45px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}
.tsf-rating-bar-item .tsf-star-label i { font-size: 12px; color: #fbbf24; }
.tsf-rating-bar-track {
    flex-grow: 1;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}
.tsf-rating-bar-fill {
    height: 100%;
    background-color: #17A34A;
    border-radius: 4px;
}
.tsf-rating-bar-item .tsf-count-label {
    width: 30px;
    font-size: 13px;
    color: #6b7280;
    text-align: right;
}
.tsf-review-action {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.tsf-btn-write-review {
    background-color: #17A34A;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tsf-btn-write-review:hover { background-color: #0D7A34; }

/* Filter */
.tsf-review-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.tsf-filter-btn {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}
.tsf-filter-btn:hover, .tsf-filter-btn.active {
    border-color: #17A34A;
    color: #17A34A;
}
.tsf-filter-btn.active {
    background: #17A34A;
    color: white;
}

/* Review List */
.tsf-review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.review-item {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
}
.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.user-avatar {
    width: 40px;
    height: 40px;
    background-color: #17A34A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}
.user-info { display: flex; flex-direction: column; }
.user-name {
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.verified-badge {
    color: #17A34A;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}
.review-date { font-size: 12px; color: #6b7280; }
.review-rating { color: #fbbf24; font-size: 13px; margin-bottom: 8px; }
.review-content { font-size: 14px; line-height: 1.6; margin-bottom: 12px; }

/* Load More Button */
.tsf-load-more-wrap {
    text-align: center;
    margin-top: 20px;
}
.tsf-btn-load-more {
    background: white;
    border: 1px solid #17A34A;
    color: #17A34A;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.tsf-btn-load-more:hover {
    background: #17A34A;
    color: white;
}
.tsf-btn-load-more.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Modal Popup Form */
.tsf-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
.tsf-modal-overlay.active { display: flex; }
.tsf-modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: slideUp 0.3s ease;
}
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.tsf-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}
.tsf-modal-close:hover { color: #333; }
.tsf-form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
.tsf-form-group { margin-bottom: 15px; }
.tsf-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}
.tsf-rating-input {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #d1d5db;
    font-size: 30px;
    cursor: pointer;
    margin-bottom: 20px;
}
.tsf-rating-input i:hover, .tsf-rating-input i.active { color: #fbbf24; }
.tsf-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
}
.tsf-form-control:focus {
    outline: none;
    border-color: #17A34A;
    box-shadow: 0 0 0 2px rgba(23, 163, 74, 0.2);
}
textarea.tsf-form-control { min-height: 100px; resize: vertical; }
.tsf-btn-submit {
    background-color: #17A34A;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}
.tsf-btn-submit:hover { background-color: #0D7A34; }
.tsf-btn-submit:disabled { background-color: #9ca3af; cursor: not-allowed; }

/* Honeypot hidden field */
.tsf-hp-field {
    display: none !important;
}

@media (max-width: 768px) {
    .tsf-review-summary { flex-direction: column; gap: 20px; padding: 15px; }
    .tsf-review-bars { width: 100%; }
}
