.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-header h1 {
    font-size: 2.5rem;
    color: #5a2d7a;
    margin-bottom: 15px;
    font-weight: 300;
}

.mystic-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0 20px 0;
}

.mystic-divider .line {
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, #8d5ba4, #5a2d7a);
}

.mystic-divider .crystal {
    width: 10px;
    height: 10px;
    background: #8d5ba4;
    transform: rotate(45deg);
    margin: 0 15px;
}

.subtitle {
    font-size: 1.1rem;
    color: #6a6a6a;
    font-style: italic;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eee;
}

.review-card.featured {
    border: 1px solid #8d5ba4;
    box-shadow: 0 5px 20px rgba(141, 91, 164, 0.15);
}

.review-card.featured::after {
    content: "★ Избранный отзыв";
    position: absolute;
    top: -10px;
    right: 20px;
    background: #8d5ba4;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #f0e6f5;
}

.user-info h3 {
    margin: 0 0 5px 0;
    color: #333;
}

.stars {
    color: #ffc107;
    font-size: 1rem;
    letter-spacing: 2px;
}

.date {
    font-size: 0.8rem;
    color: #999;
    margin-top: 3px;
}

.review-content {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #eee;
    padding-top: 15px;
    font-size: 0.85rem;
}

.service {
    color: #8d5ba4;
    font-weight: 500;
}

.like-btn {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.like-btn:hover {
    color: #ff6b6b;
    transform: scale(1.1);
}

.add-review-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.add-review-section h2 {
    text-align: center;
    color: #5a2d7a;
    margin-bottom: 25px;
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group input, 
.form-group select {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.rating span {
    margin-right: 15px;
    color: #555;
}

.stars-input {
    direction: rtl;
    unicode-bidi: bidi-override;
}

.stars-input input {
    display: none;
}

.stars-input label {
    color: #ddd;
    font-size: 1.5rem;
    padding: 0 3px;
    cursor: pointer;
}

.stars-input input:checked ~ label,
.stars-input label:hover,
.stars-input label:hover ~ label {
    color: #ffc107;
}

textarea {
    width: 100%;
    min-height: 150px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 20px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(45deg, #8d5ba4, #6a3d7a);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    width: 200px;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #6a3d7a, #4e2c5a);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        flex-direction: column;
        gap: 10px;
    }
}