/* Luxury Theme - Product Reviews Styles */

.reviews-section { color: #555; }

.reviews-section .empty-state { 
    text-align: center; 
    padding: 30px; 
    background: #fff8e1; /* Light yellow warning bg */
    border: 1px solid #ffe082; 
    border-radius: 8px; 
    color: #8d6e63;
    margin: 20px 0;
}

.reviews-section .empty-state i { 
    font-size: 2.5rem; 
    margin-bottom: 10px; 
    opacity: 0.8; 
    color: #fca000;
}

.review-item { 
    padding: 20px 0; 
    border-bottom: 1px solid #eee; 
}

.review-header { 
    display: flex; 
    justify-content: space-between; 
    font-size: 0.9rem; 
    margin-bottom: 5px; 
}

.review-author { 
    font-weight: 600; 
    color: var(--primary); 
}

.review-date { 
    color: #999; 
}

.review-rating { 
    color: #f39c12; 
    font-size: 0.9rem; 
    margin-bottom: 10px; 
}

.review-body { 
    line-height: 1.6; 
}

.review-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.filter-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    transition: 0.2s;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.review-image {
    margin-top: 15px;
}

.review-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid #eee;
}

.review-image img:hover {
    transform: scale(1.05);
}

.reviews-section .divider { 
    border: 0; 
    border-top: 1px solid #eee; 
    margin: 30px 0; 
}

.review-form-wrapper { 
    background: #f9f9f9; 
    padding: 25px; 
    border-radius: 8px; 
}

.review-form-wrapper h4 { 
    margin-top: 0; 
    margin-bottom: 20px; 
}

.form-group { 
    margin-bottom: 15px; 
}

.form-group label { 
    display: block; 
    margin-bottom: 5px; 
    font-weight: 500; 
    font-size: 0.9rem; 
}

.form-control { 
    width: 100%; 
    padding: 10px; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
    font-family: inherit; 
}

.login-prompt { 
    text-align: center; 
    padding: 20px; 
    border: 1px dashed #ddd; 
    border-radius: 8px; 
}

.login-prompt a { 
    color: var(--accent); 
    font-weight: 600; 
}
