/* Review List Specific Styles */
.page-header {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Content Wrapper */
.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
    margin: 2rem 0;
}

/* Sidebar */
.sidebar {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.tag-filter {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tag-link {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s;
}

.tag-link:hover,
.tag-link.active {
    background-color: #3182ce;
    color: white;
}

/* Main Content */
.main-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.2s;
}

.review-card:hover {
    border-color: #cbd5e0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-title-section h2 {
    margin-bottom: 0.5rem;
}

.review-title-section h2 a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s;
}

.review-title-section h2 a:hover {
    color: #3182ce;
}

.review-product-info {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #718096;
}

.product-brand {
    font-weight: 600;
}

.review-rating {
    margin-bottom: 1rem;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #f6ad55;
    font-size: 1.2rem;
}

.rating-text {
    font-weight: 600;
    color: #2d3748;
}

.review-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #718096;
}

.review-author,
.review-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-excerpt {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.review-highlights {
    margin-bottom: 1.5rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pros,
.cons {
    padding: 1rem;
    border-radius: 8px;
}

.pros {
    background-color: #f0fff4;
    border: 1px solid #c6f6d5;
}

.cons {
    background-color: #fff5f5;
    border: 1px solid #fed7d7;
}

.pros h4,
.cons h4 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.text-green {
    color: #38a169;
}

.text-red {
    color: #e53e3e;
}

.highlight-text {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 优化 Pros 和 Cons 中的列表样式 */
.pros .highlight-text ul,
.cons .highlight-text ul {
    padding-left: 1.2rem;
    margin: 0.5rem 0;
}

.pros .highlight-text li,
.cons .highlight-text li {
    margin-bottom: 0.3rem;
    padding-left: 0.3rem;
}

.pros .highlight-text ul {
    color: #2f855a;
}

.cons .highlight-text ul {
    color: #c53030;
}

/* 为 Pros 和 Cons 添加自定义项目符号 */
.pros .highlight-text li::before,
.cons .highlight-text li::before {
    content: "•";
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.pros .highlight-text li::before {
    color: #38a169;
}

.cons .highlight-text li::before {
    color: #e53e3e;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background-color: #edf2f7;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.review-footer {
    text-align: right;
}

.read-more {
    color: #3182ce;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: #2c5aa0;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem;
    color: #718096;
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #cbd5e0;
}

.no-results h3 {
    margin-bottom: 1rem;
    color: #2d3748;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 200px 1fr;
        gap: 2rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sidebar {
        order: 2;
        position: static;
        margin-bottom: 1.5rem;
    }
    
    .main-content {
        order: 1;
        margin-bottom: 0;
    }
    
    .review-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-product-info {
        gap: 0.5rem;
    }
    
    .review-meta {
        gap: 1rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 12px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .sidebar {
        padding: 1.5rem;
        border-radius: 8px;
        margin-bottom: 1rem;
    }
    
    .main-content {
        padding: 1.5rem;
        border-radius: 8px;
    }
    
    .review-card {
        padding: 1.2rem;
    }
    
    .review-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .container {
        padding: 0 8px;
        max-width: 100%;
    }
}

@media (max-width: 360px) {
    .page-header {
        padding: 1.5rem 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .sidebar {
        padding: 1rem;
        border-radius: 6px;
    }
    
    .main-content {
        padding: 1rem;
        border-radius: 6px;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .container {
        padding: 0 5px;
        max-width: 100%;
    }
}