/* Single Review Page Layout */
.single-review-page {
    width: 100%;
    background: #f8f9fa;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.single-review-page .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 20px;
    padding: 10px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Back Link */
.back-link {
    margin-bottom: 30px;
}

.back-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #667eea;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.back-link a:hover {
    background: #667eea;
    color: white;
}

/* Review Header */
.review-header {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.review-header h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #333;
    line-height: 1.3;
}

.review-header p {
    margin: 0;
    color: #666;
}

.review-header a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

/* Single Review Card */
.single-review-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .single-review-page .container {
        padding: 20px 15px;
    }
    
    .review-header,
    .single-review-card {
        padding: 20px;
    }
    
    .review-header h1 {
        font-size: 22px;
    }
}