/* Custom Review Form Styles */
.text-pink { color: #f94162 !important; }
.bg-pink { background-color: #f94162 !important; }
.border-pink { border-color: #f94162 !important; }

.rating-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}
.rating-group .rating-input { margin-bottom: 0; }
.custom-file-upload {
    border: 2px dashed #d1d7e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    background: #f8f9fa;
    transition: all 0.3s ease;
}
.custom-file-upload:hover {
    border-color: #f94162;
    background: #fff0f2;
}
.custom-file-upload i {
    font-size: 30px;
    color: #a0a5ba;
    margin-bottom: 10px;
}
.rating-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid #f94162;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.progress-bar-custom {
    height: 6px;
    border-radius: 4px;
    background-color: #e9ecef;
    overflow: hidden;
    display: flex;
}
.progress-bar-custom .fill { background-color: #f94162; height: 100%; }
.review-gallery img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 8px;
    cursor: pointer;
}
.review-gallery .more-photos {
    position: relative;
    display: inline-block;
}
.review-gallery .more-photos::after {
    content: attr(data-count);
    position: absolute;
    top: 0; left: 0; width: 60px; height: 60px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}
.review-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
}
.review-tabs .tab-btn {
    padding: 6px 16px;
    border-radius: 20px;
    background: #f8f9fa;
    color: #333;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.review-tabs .tab-btn.active {
    background: #f94162;
    color: #fff;
}
.avatar-initial {
    width: 50px;
    height: 50px;
    background-color: #ffccd5;
    color: #f94162;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.review-user-info { font-size: 13px; color: #6c757d; line-height: 1.8; }
.review-user-info i { width: 16px; text-align: center; margin-right: 4px; }
.badge-rating {
    background: #f94162;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}