@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

.ngi-reviews-section,
.ngi-reviews-section * {
    font-family: 'Inter', sans-serif !important;
}

.ngi-reviews-section {
    max-width: 1120px;
    margin: 48px auto;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.ngi-reviews-header {
    margin-bottom: 28px;
}

.ngi-reviews-header h2 {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    margin: 0 0 8px;
}

.ngi-reviews-header p {
    margin: 0;
    color: rgba(0,0,0,0.58);
    font-size: 15px;
    font-weight: 600;
}

.ngi-review-form {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.ngi-review-form label {
    display: block;
    font-weight: 900;
    font-size: 15px;
    margin-bottom: 10px;
}

.ngi-review-form textarea {
    width: 100%;
    min-height: 140px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.12);
    padding: 16px;
    font-size: 15px;
    font-weight: 500;
    resize: vertical;
    background: #fafafa;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ngi-review-form textarea:focus {
    border-color: #111;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.06);
    background: #fff;
}

.ngi-review-form button,
.ngi-login-button {
    margin-top: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #111;
    color: #fff;
    border: none;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ngi-review-form button:hover,
.ngi-login-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.16);
}

.ngi-login-box {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
    margin-bottom: 28px;
}

.ngi-login-box h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.ngi-login-box p {
    margin: 0 0 8px;
    color: rgba(0,0,0,0.62);
    font-weight: 600;
}

.ngi-review-notice {
    background: #eef4ff;
    padding: 18px;
    border-radius: 16px;
    font-weight: 800;
    margin-bottom: 28px;
}

.ngi-review-list {
    margin-top: 30px;
    display: grid;
    gap: 18px;
}

.ngi-review-card {
    padding: 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.ngi-review-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    align-items: center;
}

.ngi-review-top strong {
    font-weight: 900;
    font-size: 15px;
}

.ngi-review-top span {
    color: rgba(0,0,0,0.45);
    font-size: 13px;
    font-weight: 700;
}

.ngi-review-card p {
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
    color: rgba(0,0,0,0.72);
    font-weight: 500;
}

.ngi-no-reviews {
    background: #fff;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.08);
    color: rgba(0,0,0,0.55);
    font-weight: 800;
}

@media (max-width: 640px) {
    .ngi-reviews-section {
        padding: 22px;
        margin: 36px auto;
    }

    .ngi-reviews-header h2 {
        font-size: 26px;
    }

    .ngi-review-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}