.custom-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.custom-reviews-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.reviews-sort {
    text-align: right;
    margin-bottom: 20px;
}

.reviews-sort-select {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    min-width: 200px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.reviews-sort-select:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: 0 2px 4px rgba(255,152,0,0.1);
}

.custom-reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.review-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review-header {
    margin-bottom: 15px;
}

.review-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.review-stars {
    margin-bottom: 5px;
}

.star {
    color: #ccc;
    font-size: 20px;
}

.star.filled {
    color: #ff9800;
}

.review-verified {
    color: #4CAF50;
    font-size: 14px;
    margin-bottom: 10px;
}

.review-image {
    margin: 15px 0;
}

.review-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.review-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.hidden-review {
    display: none !important;
}

.show-more-reviews {
    text-align: center;
    margin-top: 20px;
}

.show-more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.show-more-button:hover {
    background-color: #e0e0e0;
    text-decoration: none;
    color: #333;
}

@media (max-width: 1200px) {
    .custom-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .custom-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .custom-reviews-grid {
        grid-template-columns: 1fr;
    }
}
