/* Reviews Section */

.reviews_section {
    /* background-color: #fdfcfc; */
    text-align: center;
}

.reviews_title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}
.rating_line {
    font-size: 18px;
    color: green;;        /* 🔥 normal text color */
}

.star_icon {
    color: #FFC107;
    margin-right: 6px;
}
.reviews_subtitle p{
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: -8px;
    
}

.rating_summary {
    color: green;
    font-size: 16px;
    margin-bottom: 30px;
}

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

.review_card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    width: 100%;
    max-width: 350px;    /* optional, control width */
    display: flex;
    flex-direction: column;
    height: 180px;  
}

.review_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.review_user h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.review_user p {
    margin: 0;
    font-size: 13px;
    color: #777;
}
.review_rating {
    text-align: right;
}


.review_img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.stars {
    color: #FFC107;
    font-size: 14px;
}

.review_text {
    font-size: 14px;
    color: #555;
}
.review_date {
    font-size: 12px;
    color: #999;
}
.review_body {
    margin-top: 10px;
    overflow-y: auto;
    flex-grow: 1;
}

.review_body p {
    margin: 0;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* Scrollbar styling */
.review_body::-webkit-scrollbar {
    width: 4px;
}

.review_body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.load_more_btn {
    background-color: #111213;   /* Bootstrap blue */
    color: #fff;                  /* white text */
    font-size: 16px;
    font-weight: 600;
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load_more_btn:hover {
    background-color: #18191a;   /* darker blue on hover */
    transform: translateY(-2px);
}


.menu-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
}

.menu-scroll::-webkit-scrollbar {
    height: 6px;
}

.menu-card {
    min-width: 160px;
    background: #f5f5f5;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    position: relative;
}

.menu-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.menu-card h6 {
    font-size: 14px;
    font-weight: 600;
    color: #7a2b83;
}

.card-footer-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.price {
    font-weight: 600;
}

.add-btn {
    background: #7a2b83;
    color: white;
    border: none;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    font-size: 18px;
}

.view-btn {
    background: #9b4d96;
    color: white;
    border-radius: 20px;
    padding: 5px 15px;
}
