body {
    font-family: "Inter", sans-serif;
}

h1,
h2,
h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.review-card {
    position: absolute;
    width: 100%;
    padding: 24px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: grab;
    transition: transform 0.4s ease, box-shadow 0.4s;
    user-select: none;
}

/* Hover tilt */
.review-card:hover {
    transform: rotate(5deg) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-dropdown.open {
    max-height: 500px;
    margin-top: 12px;
}

.mobile-chevron {
    transition: transform 0.25s ease;
}

.mobile-chevron.rotate {
    transform: rotate(180deg);
}