.product-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.product-status-badge i {
    font-size: 18px;
}

.status-undetected {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.status-detected {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.4);
}

.status-testing {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.status-updating {
    background: rgba(33, 150, 243, 0.2);
    color: #2196F3;
    border: 1px solid rgba(33, 150, 243, 0.4);
}

.status-testing i {
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.product-info-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-title-status {
    flex: 1;
}

@media (max-width: 768px) {
    .product-info-section {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Reviews */
.review-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(221, 22, 59, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    font-size: 20px;
}

.review-info h4 {
    margin: 0;
    font-size: 17px;
    color: #fff;
}

.review-date {
    font-size: 13px;
    color: #888;
}

.review-rating {
    color: #f1c40f;
    font-size: 16px;
    display: flex;
    gap: 2px;
}

.review-content {
    color: #bbb;
    line-height: 1.7;
    font-size: 15px;
}

.add-review-form {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 35px;
    margin-top: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 30px;
    color: #333;
    transition: color 0.2s;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: #f1c40f;
}

.review-input-field {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 15px !important;
}

.review-input-field:focus {
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    outline: none !important;
}

.review-item.hidden {
    display: none;
}

#load-more-reviews {
    display: block;
    margin: 30px auto;
    padding: 12px 40px;
}