/********** Review Card *************/
/**********************************/

.review-card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/********** Youtube Container *************/
.youtube-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.social-review {
    border-radius: 10px;
    border: 1px solid #e5e5e5;
}

.facebook-review {
    border-left: 4px solid #1877f2;
}

.whatsapp-review {
    border-left: 4px solid #25d366;
}

/********** Section Title *************/
.section-title {
    position: relative;
    margin-bottom: 2rem;
}

/********** Star Rating *************/
.star-rating {
    color: #ffd700;
}

.star-empty {
    color: #e0e0e0;
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
}

/********** Badge *************/
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.badge-verified {
    background-color: #4caf50;
    color: white;
    display: none;
}

/* Show the badge on medium screens and up */
@media (min-width: 768px) {
    .badge-verified {
        display: inline-block;
    }
}
