/* ===== FEEDBACK ===== */

.feedback-section {
    padding: 10px 0 10px;
    background: linear-gradient(180deg, #f7931e 0%, #f0a23a 100%);
    /* 🔥 gradient orange */
}

.feedback-header {
    text-align: center;
    margin-bottom: 18px;
}

.feedback-header p {
    color: #f7931e;
    font-weight: 600;
    margin-top: 4px;
}

/* WRAPPER */
.feedback-wrapper {
    position: relative;
    overflow: hidden;
    /* 🔥 wrapper yang hidden, bukan slider */
}

.feedback-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    padding: 10px 0 14px;
    width: 100%;

    /* 🔥 HIDE SCROLLBAR */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge lama */
    -webkit-overflow-scrolling: touch;
}

.feedback-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

/* CARD */
.feedback-card {
    flex: 0 0 calc(33.333% - 16px);
    /* 🔥 kunci */
    min-width: 0;

    background: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    /* box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15); */
    box-shadow: none;
    overflow: hidden;
    position: relative;
}

.feedback-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.feedback-card p {
    font-size: 13px;
    opacity: 0.8;
}

/* ===== FEEDBACK ROW ===== */
.feedback-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* avatar kiri */
.feedback-row img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* teks kanan */
.feedback-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feedback-text h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* 🔥 nama max 1 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* komentar */
.feedback-comment {
    margin: 0;
    font-size: 13px;
    opacity: 0.75;
    line-height: 1.35;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 🔥 komentar max 2 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-style: italic;
}

.feedback-text p {
    margin: 0;
    font-size: 13px;
    opacity: 0.75;
    line-height: 1.35;
}

/* ===== FEEDBACK NAV BOTTOM ===== */
.feedback-nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 0px;
    /* 🔥 lebih dekat */
}

/* .fb-btn2 {
            background: transparent;
            border: none;
            font-size: 22px;
            cursor: pointer;
            color: #111;
            transition: 0.2s ease;
        } */

.fb-btn2 {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    transition: all 0.25s ease;
}

.fb-btn2:first-child {
    background: white;
}

.fb-btn2:last-child {
    background: white;
    /* color: white; */
}

.fb-btn2:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* BUTTON */
.fb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f7931e;
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

.fb-prev {
    left: -10px;
}

.fb-next {
    right: -10px;
}
