/* Kingspet Product Reviews Styles */
.kp-review-statistics-wrap {
    margin-bottom: 30px;
}
.kp-review-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}
.kp-stat-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    padding: 20px;
    background: #fdfdfd;
}
.kp-rating-bars {
    flex: 1;
    min-width: 300px;
}
.kp-bar-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}
.kp-star-label {
    width: 35px;
}
.kp-bar-wrap {
    flex: 1;
    background: #e1e1e1;
    height: 10px;
    margin: 0 10px;
    border-radius: 5px;
    overflow: hidden;
}
.kp-bar-fill {
    background: #f0ad4e;
    height: 100%;
}
.kp-bar-percent {
    width: 40px;
    text-align: right;
    margin-right: 10px;
}
.kp-bar-count {
    width: 80px;
    color: #000;
}
.kp-write-review-action {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}
.kp-write-review-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}
.kp-write-review-btn:hover {
    background-color: #1a1a3a;
}
#kp-review-form-wrapper {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #e1e1e1;
    background: #fff;
    border-radius: 4px;
}
.kp-rating-selector {
    margin-bottom: 15px;
}
.kp-rating-selector label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
.kp-stars {
    display: inline-flex;
    flex-direction: row-reverse;
}
.kp-stars input[type="radio"] {
    display: none;
}
.kp-stars label {
    font-size: 25px;
    color: #ccc;
    cursor: pointer;
    margin: 0;
    display: inline-block;
}
.kp-stars label:before {
    content: '★';
}
.kp-stars input[type="radio"]:checked ~ label {
    color: #f0ad4e;
}
.kp-stars label:hover,
.kp-stars label:hover ~ label {
    color: #f0ad4e;
}
.kp-comment-field textarea {
    width: 100%;
    min-height: 100px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#kp-submit-review {
    background-color: #2b2b5c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}
#kp-submit-review:hover {
    background-color: #1a1a3a;
}
#kp-review-msg {
    margin-top: 15px;
    font-size: 14px;
}
.kp-reviews-list {
    margin-top: 40px;
}
.kp-review-item {
    display: flex;
    padding: 20px 0;
    border-top: 1px solid #f1f1f1;
}
.kp-review-avatar {
    margin-right: 15px;
}
.kp-review-avatar img {
    border-radius: 50%;
}
.kp-review-content-wrap {
    flex: 1;
}
.kp-review-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.kp-review-meta strong {
    font-size: 16px;
    color: #333;
    margin-right: 15px;
}
.kp-review-stars {
    color: #f0ad4e;
    font-size: 14px;
}
.kp-review-text {
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}
.kp-review-date {
    font-size: 12px;
    color: #999;
}
