/* styles.css */

.cat-body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 1500px;
    background-color: ;
}

.reviews {
    max-width: 800px;
    width: 90%;
    margin: 20px auto;
    text-align: center;
}

.reviews h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.review-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.review {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    flex: 1 1 calc(50% - 20px); /* Adjust to two-column layout */
    max-width: 100%;
    box-sizing: border-box;
}

.review img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.review-content {
    text-align: left;
}

.review h3 {
    font-size: 1.2em;
    color: #4caf50;
    margin: 0;
}

.stars {
    color: #ffd700; /* Gold color for stars */
    font-size: 1.2em;
    margin: 5px 0;
}

.review p {
    font-size: 1em;
    color: #555;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 600px) {
    .review {
        flex: 1 1 100%; /* Single column layout on small screens */
    }
}

@media (max-width: 768px) {
    .review-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Custom Styles */
/*.card {*/
/*    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
/*}*/

.scorecard {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    /* Adjustments for tablets and below */
    .flex-w {
        flex-wrap: wrap;
    }

    .scorecard {
        margin-left: 0;
        text-align: center;
    }

    .cat-shop-1 {
        margin-top: 1rem;
        display: block;
        text-align: center;
    }

    .review-container {
        display: flex;
        flex-direction: column;
    }

    .review {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    /* Adjustments for mobile devices */
    .review-content {
        text-align: left;
        margin-top: 0.5rem;
    }
}
