/* =========================================================
   Vibrafy — Reviews & Experiences CSS
   Página de calificaciones y opiniones de compradores verificados
   ========================================================= */

/* ─── Hero Section ───────────────────────────────────────── */
.reviews-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.35);
    color: var(--primary-light);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.reviews-hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a855f7;
    box-shadow: 0 0 8px #a855f7;
}

.reviews-hero-title {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--text-heading);
    margin-bottom: 0.9rem;
    max-width: 800px;
}

.reviews-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.6;
    margin-bottom: 2.2rem;
}

/* ─── Rating Summary Card ────────────────────────────────── */
.reviews-summary-card {
    width: 100%;
    max-width: 850px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.2rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 2.5rem;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
    margin-bottom: 2rem;
    text-align: left;
}

[data-theme="light"] .reviews-summary-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.summary-score-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-right: 1.5rem;
    border-right: 1px solid var(--border-color);
}

.score-number {
    font-size: 4.2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
    color: var(--text-heading);
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
    margin-bottom: 0.35rem;
}

.score-stars-row {
    display: flex;
    gap: 0.25rem;
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.score-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.btn-leave-review-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--gradient-brand);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(168, 85, 247, 0.35);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-leave-review-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(168, 85, 247, 0.55);
    filter: brightness(1.1);
}

/* Breakdown Bars */
.summary-bars-box {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.star-bar-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
}

.bar-star-label {
    width: 32px;
    font-weight: 700;
    color: var(--text-main);
}

.bar-track {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

[data-theme="light"] .bar-track {
    background: rgba(0, 0, 0, 0.06);
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
    border-radius: 999px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-count {
    width: 38px;
    text-align: right;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ─── Filter Pills Bar (3 filas x 2 eventos) ──────────────── */
.reviews-filters-bar {
    width: 100%;
    max-width: 560px;
    margin: 0 auto 2.2rem auto;
    display: flex;
    justify-content: center;
}

.filter-pills-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 0.85rem;
    width: 100%;
}

.filter-pill {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-pill:hover {
    border-color: rgba(168, 85, 247, 0.4);
    color: var(--text-main);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.filter-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 10px rgba(168, 85, 247, 0.35);
}

/* ─── Tabs Navigation (Ver reviews / Dejar reviews) ───── */
.reviews-tabs-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 0.35rem;
    gap: 0.35rem;
    margin: 0.5rem auto 1.5rem auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 100%;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.96rem;
    font-weight: 700;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    transition: all 0.25s ease;
}

.tab-btn:hover {
    color: var(--text-main);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.tab-btn.active {
    background: var(--gradient-brand);
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.tab-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.tab-panel {
    display: none;
    width: 100%;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Host Review Inline Action Block ─────────────────────── */
.review-action-container {
    width: 100%;
    max-width: 780px;
    margin: 1.5rem auto 3rem auto;
}

/* 1. Auth Prompt Card */
.review-auth-prompt-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}

[data-theme="light"] .review-auth-prompt-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.06) 0%, rgba(59, 130, 246, 0.04) 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.prompt-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    max-width: 680px;
}

.prompt-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.prompt-text {
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.55;
    color: var(--text-heading);
    margin: 0;
}

.btn-google-login-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    background: #ffffff;
    color: #1f2937;
    font-size: 0.96rem;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-google-login-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
    filter: brightness(1.02);
}

/* 2. Ineligible Notice Card */
.review-ineligible-card {
    background: var(--bg-surface);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.8rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.ineligible-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    font-size: 0.8rem;
    font-weight: 800;
}

.ineligible-text {
    font-size: 0.98rem;
    color: var(--text-main);
    line-height: 1.55;
    max-width: 620px;
    margin: 0;
}

.ineligible-btn-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

.btn-view-plans-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    background: var(--gradient-brand);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(168, 85, 247, 0.35);
    transition: transform 0.2s ease;
}

.btn-view-plans-action:hover {
    transform: translateY(-2px);
}

.btn-switch-account-action {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-switch-account-action:hover {
    color: var(--text-heading);
    border-color: var(--text-muted);
}

/* 3. Review Form Card (Comprador Verificado) */
.review-form-card {
    background: var(--bg-surface);
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: var(--radius-lg);
    padding: 2.2rem 2.5rem;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.28), 0 0 25px rgba(168, 85, 247, 0.12);
    backdrop-filter: blur(16px);
    text-align: left;
    animation: fadeInSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-heading);
    margin: 0;
}

.form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.star-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
}

.form-success-banner {
    padding: 0.85rem 1.1rem;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

@media (max-width: 680px) {
    .review-auth-prompt-card {
        padding: 1.4rem 1.1rem;
    }

    .prompt-header-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .prompt-text {
        font-size: 0.95rem;
    }

    .review-form-card {
        padding: 1.6rem 1.2rem;
    }

    .form-grid-2col {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* ─── Main Grid & Cards ──────────────────────────────────── */

.reviews-main-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 5rem 1.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 1.6rem;
}

.review-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.15);
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-author-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.75rem;
}

.author-name {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-heading);
    letter-spacing: -0.01em;
}

.verified-buyer-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
    flex-shrink: 0;
}

.verified-buyer-pill.plan-evento {
    background: rgba(6, 182, 212, 0.12);
    border-color: rgba(6, 182, 212, 0.35);
    color: #38bdf8;
}

.review-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
}

.event-type-tag {
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
}

.review-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-heading);
    margin: 0;
}

.review-comment {
    font-size: 0.94rem;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    white-space: pre-line;
}

.review-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── Skeletons & Empty State ────────────────────────────── */
.review-skeleton-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-header,
.skeleton-stars,
.skeleton-text {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    animation: skeletonPulse 1.5s ease-in-out infinite;
}

.skeleton-header { width: 60%; height: 36px; }
.skeleton-stars { width: 35%; height: 20px; }
.skeleton-text { width: 100%; height: 16px; }
.skeleton-text.short { width: 75%; }

@keyframes skeletonPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.reviews-empty-state {
    text-align: center;
    padding: 4rem 1.5rem;
    background: var(--bg-surface);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 2rem auto;
}

.empty-icon { font-size: 3rem; margin-bottom: 1rem; }

.btn-leave-review-empty {
    margin-top: 1.25rem;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    color: #ffffff;
    background: var(--gradient-brand);
    border: none;
    cursor: pointer;
}

/* ─── Review Modals ──────────────────────────────────────── */
.review-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.review-modal-backdrop.is-open {
    display: flex;
    opacity: 1;
}

.review-modal-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    padding: 2.2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: transparent;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: var(--text-heading);
}

.review-modal-header {
    margin-bottom: 1.6rem;
    text-align: center;
}

.verified-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
    margin-bottom: 0.65rem;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 0.4rem;
}

.modal-subtitle {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Star Rating Picker */
.star-rating-picker {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    padding: 0.5rem 0;
}

.star-btn {
    background: none;
    border: none;
    font-size: 2.2rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: transform 0.15s ease, color 0.15s ease;
    padding: 0 0.1rem;
}

[data-theme="light"] .star-btn {
    color: rgba(0, 0, 0, 0.15);
}

.star-btn.active,
.star-btn.hover {
    color: #fbbf24;
    transform: scale(1.12);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-heading);
}

.label-with-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.char-counter {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-heading);
    font-family: inherit;
    font-size: 0.94rem;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.form-error-banner {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #f87171;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.btn-submit-review {
    width: 100%;
    padding: 0.9rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    background: var(--gradient-brand);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
    transition: all 0.25s ease;
}

.btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.6);
}

/* Ineligible & Auth Modal Styles */
.ineligible-box,
.auth-prompt-box {
    text-align: center;
}

.ineligible-icon,
.auth-prompt-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.ineligible-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-ineligible-plans {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    border-radius: 10px;
    background: var(--gradient-brand);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(168, 85, 247, 0.4);
}

.btn-ineligible-close {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 0.75rem;
    border-radius: 10px;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
}

.btn-google-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.88rem 1.25rem;
    border-radius: 12px;
    background: #ffffff;
    color: #1f2937;
    font-size: 0.96rem;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-google-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ─── Mobile Media Queries ───────────────────────────────── */
@media (max-width: 768px) {
    .reviews-hero {
        padding: 2.2rem 1.1rem 2rem 1.1rem;
    }

    .reviews-summary-card {
        grid-template-columns: 1fr;
        padding: 1.6rem 1.25rem;
        gap: 1.8rem;
    }

    .summary-score-box {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 1.5rem;
    }

    .score-number {
        font-size: 3.5rem;
    }

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

@media (max-width: 480px) {
    .reviews-tabs-nav {
        width: 100%;
        max-width: 330px;
        padding: 0.25rem;
        gap: 0.25rem;
    }

    .tab-btn {
        flex: 1;
        padding: 0.65rem 0.75rem;
        font-size: 0.88rem;
    }

    .filter-pills-group {
        gap: 0.5rem 0.6rem;
    }

    .filter-pill {
        padding: 0.6rem 0.65rem;
        font-size: 0.82rem;
    }
}
