/* ── Reviews Page ── */
body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #FFFFFF;
}

/* ── Feedback Section ── */
.feedback-section {
    padding-top: 10rem;
    padding-bottom: 3rem;
    text-align: center;
}

.feedback-title {
    font-family: 'Geist', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

/* Stars */
.feedback-stars {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 2rem;
}

.feedback-stars .star {
    font-size: 2rem;
    color: #E3E3E3;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
}

.feedback-stars .star:hover {
    transform: scale(1.15);
}

.feedback-stars .star.active {
    color: #FF9800;
}

/* Feedback input */
.feedback-input-wrapper {
    max-width: 540px;
    margin: 0 auto 2rem;
}

.feedback-input {
    width: 100%;
    background: #F9F9F8;
    border: 1px solid #00000014;
    border-radius: 20px;
    padding: 1rem 1.25rem;
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: #333;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s ease;
    box-shadow:
        1px 9px 20px 0px #D1D1D11A,
        6px 36px 37px 0px #D1D1D117,
        13px 82px 50px 0px #D1D1D10D,
        23px 145px 59px 0px #D1D1D103,
        36px 227px 64px 0px #D1D1D100;
}

.feedback-fullname {
    height: auto;
    padding: 1rem 1.25rem;
}

.feedback-input::placeholder {
    color: #A3A3A3;
}

.feedback-input:focus {
    border-color: #009688;
}

/* Buttons */
.feedback-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-cancel,
.btn-done {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.7rem 2.5rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel {
    background: #ADF5EF;
    color: #1a1a1a;
}

.btn-cancel:hover {
    background: #8eeee6;
}

.btn-done {
    background: #009688;
    color: #FFFFFF;
}

.btn-done:hover {
    background: #00796b;
}

/* ── Reviews Grid ── */
.reviews-section {
    padding: 2rem 0 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.review-card {
    background: #F8F9F8;
    border-radius: 16px;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
}

.review-card-inner {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1.5rem 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.review-stars {
    display: flex;
    gap: 0.15rem;
}

.review-star {
    font-size: 1.1rem;
    color: #E3E3E3;
}

.review-star.filled {
    color: #FF9800;
}

.review-text {
    font-family: 'Geist', sans-serif;
    font-size: 0.85rem;
    color: #00000099;
    line-height: 1.55;
}

.review-name {
    font-family: 'Geist', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #000000;
    margin-top: auto;
    padding-top: 0.25rem;
}

/* ── Pagination Dots ── */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.dot {
    width: 32px;
    height: 12px;
    border-radius: 6px;
    background: #E3E3E3;
    cursor: pointer;
    transition: background 0.2s ease;
}

.dot.active {
    background: #FF6F61;
}

.dot:hover:not(.active) {
    background: #c9c9c9;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .feedback-title {
        font-size: 1.8rem;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding-top: 7rem;
        padding-bottom: 2rem;
    }

    .feedback-title {
        font-size: 1.5rem;
    }

    .feedback-stars .star {
        font-size: 1.6rem;
    }

    .feedback-input-wrapper {
        max-width: 100%;
    }

    .feedback-buttons {
        flex-direction: row;
    }

    .btn-cancel,
    .btn-done {
        padding: 0.65rem 2rem;
        font-size: 0.9rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 320px) {
    .feedback-title {
        font-size: 1.3rem;
    }

    .btn-cancel,
    .btn-done {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
}
