* {
    box-sizing: border-box;
    font-family: "Vazirmatn", sans-serif;
}

body {
    margin: 0;
    background: #faf7f3;
    color: #333;
}

.reviews-wrapper {
    max-width: 700px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

h1 {
    text-align: center;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

.review-form .form-group {
    margin-bottom: 18px;
}

/* ================= REVIEWS LIST ================= */

.reviews-list {
    margin-bottom: 50px;
}

.reviews-list h2 {
    text-align: center;
    margin-bottom: 25px;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.review-content {
    padding: 15px;
}

.review-content h4 {
    margin: 0 0 8px;
    font-size: 15px;
    color: #c9a44d;
}

.review-content p {
    font-size: 13px;
    line-height: 1.8;
    color: #555;
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

input[type="text"],
textarea,
input[type="file"] {
    width: 100%;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-size: 14px;
}

textarea {
    resize: none;
    min-height: 100px;
}

.preview-box {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.preview-box img {
    max-width: 100%;
    max-height: 220px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: #c9a44d;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

@media (max-width: 600px) {
    .reviews-wrapper {
        margin: 20px;
        padding: 20px;
    }
}