.banner-feedback-widget {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 10px;
    overflow: hidden;
    font-family: "Inter", Arial, sans-serif;
    top: 30px;
}

.banner-feedback-container {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-behavior: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 15px 0;
    cursor: grab;
}

.banner-feedback-container::-webkit-scrollbar {
    display: none;
}

.banner-feedback-container.active {
    cursor: grabbing;
}

.feedback-card {
    flex: 0 0 25%;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px;
    text-align: center;
    min-width: 250px;
    transition: transform 0.3s;
}

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

.feedback-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.feedback-name {
    font-weight: bold;
    margin-top: 10px;
}

.feedback-address {
    font-size: 0.9em;
}

.feedback-text {
    margin: 10px 0;
    font-style: italic;
    line-height: 1.4;
}

.feedback-stars {
    color: #FFD700;
    font-size: 1.3em;
}

/* Responsive hiển thị */
@media (max-width: 1024px) {
    .feedback-card { flex: 0 0 50%; }
}
@media (max-width: 600px) {
    .feedback-card { flex: 0 0 80%; }
}
/* ==== HEADER FEEDBACK ==== */
.feedback-header {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}
.feedback-title {
    font-size: 24px;
    font-weight: 700;
}
.feedback-desc {
    font-size: 15px;
    line-height: 1.6;
}
