#customer-review-form input,
#customer-review-form textarea {
    border: 1px solid #fec624;
}



#customer-review-form  .fa-star:hover {
    color: #fec624;
    border: #fec624;
}

#customer-review-form input[type='submit'] {
    background: #fec624;
    color: #fff;
    margin: 20px auto;
}

.reviews-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.review-card {
    flex: 1 1 calc(33.33% - 40px);
    box-sizing: border-box;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.review-card h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: #333;
}
.review-date {
    font-size: 0.9em;
    color: #777;
    margin: 10px 0;
}
.review-content {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}
/* .star-rating {
    color: #ffcc00;
    font-size: 1.2em;
    margin-top: 10px;
} */
.star-rating {
    color: #ffcc00;
    font-size: 1.2em;
    margin-top: 10px;
}
.star-rating .fas {
    color: #ffcc00; /* Filled star color */
}
.star-rating .far {
    color: #ccc; /* Empty star color */
}

.review-card .star-rating:before {
    content: none; /* Remove any content */
            display: none; /* Hide the pseudo-element */
            clear: none; /* Remove clear property */
            float: none; /* Remove float property */
            margin: 0; /* Remove margin */
            padding: 0; /* Remove padding */
            border: none; /* Remove border */
            background: none; /* Remove background */
            font-size: inherit; /* Reset font size */
            color: inherit; /* Reset color */
}
@media (max-width: 768px) {
    .review-card {
        flex: 1 1 calc(50% - 20px);
    }
}
@media (max-width: 480px) {
    .review-card {
        flex: 1 1 100%;
    }
}