.reviews-page {
    --reviews-ink: #201a1b;
    --reviews-muted: #625a5c;
    --reviews-surface: #fbfaf9;
    --reviews-card: #ffffff;
    --reviews-line: #e8e2e2;
    --reviews-accent: var(--rose-600);
    color: var(--reviews-ink);
    background: var(--reviews-surface);
}

.reviews-page::before {
    display: none;
}

.reviews-page .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.reviews-topbar {
    background: var(--reviews-card);
    border-bottom: 1px solid var(--rose-100);
    box-shadow: 0 4px 20px rgba(244, 63, 94, 0.05);
}

.reviews-topbar-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.reviews-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--rose-600);
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
    transition: color 180ms ease-out, transform 180ms ease-out;
}

.reviews-brand:hover {
    color: var(--rose-700);
    transform: translateY(-1px);
}

.reviews-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.reviews-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews-cart-link {
    position: relative;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--stone-600);
    border-radius: 10px;
    transition: color 180ms ease-out, background 180ms ease-out;
}

.reviews-cart-link:hover {
    color: var(--reviews-accent);
    background: var(--rose-50);
}

.reviews-cart-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    border: 2px solid white;
    border-radius: 50%;
    background: var(--rose-500);
    box-shadow: 0 2px 4px rgba(244, 63, 94, 0.3);
}

.reviews-create-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 8px 14px;
    color: white;
    background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(244, 63, 94, 0.24);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 650;
    transition: background 180ms ease-out, box-shadow 180ms ease-out, transform 180ms ease-out;
}

.reviews-create-link svg {
    flex: 0 0 auto;
}

.reviews-create-link:hover {
    color: white;
    background: linear-gradient(135deg, var(--rose-600), var(--rose-700));
    box-shadow: 0 6px 18px rgba(190, 18, 60, 0.3);
    transform: translateY(-1px);
}

.reviews-page :where(a, button, select):focus-visible {
    outline: 3px solid var(--rose-300);
    outline-offset: 3px;
}

.reviews-page .reviews-hero-section {
    padding: 68px 0 46px;
    color: var(--reviews-ink);
    text-align: center;
    background: var(--reviews-surface);
}

.reviews-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-page .reviews-hero-section h1 {
    max-width: 900px;
    margin: 0;
    color: var(--reviews-ink);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.65rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.035em;
    text-wrap: balance;
    text-shadow: none;
}

.reviews-hero-subtitle {
    max-width: 680px;
    margin: 18px auto 0;
    color: var(--reviews-muted);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.55;
    text-wrap: balance;
}

.reviews-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 30px;
}

.reviews-rating-value {
    color: var(--reviews-ink);
    font-size: 1rem;
    font-weight: 600;
}

.reviews-rating-stars,
.reviews-page .review-stars {
    color: var(--amber-400);
    letter-spacing: 0.04em;
}

.reviews-rating-stars {
    display: inline-flex;
    gap: 3px;
    font-size: 1.55rem;
    line-height: 1;
}

.reviews-audience-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.reviews-avatar-stack {
    display: flex;
    justify-content: center;
    min-height: 34px;
    padding-left: 8px;
}

.reviews-avatar-stack > span,
.reviews-proof-avatar {
    position: relative;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-left: -8px;
    overflow: hidden;
    color: var(--rose-700);
    background: var(--rose-100);
    border: 2px solid var(--reviews-surface);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
}

.reviews-proof-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-page .reviews-showcase-section {
    padding: 0 0 76px;
    background: var(--reviews-surface);
}

.reviews-page .reviews-showcase-grid {
    --reviews-column-count: 3;
    --reviews-card-gap: 16px;
    position: relative;
    width: 100%;
    margin: 0 0 26px;
}

.reviews-page .reviews-showcase-grid.is-state {
    height: auto !important;
}

.reviews-page .review-card {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 20px;
    visibility: hidden;
    color: var(--reviews-ink);
    background: var(--reviews-card);
    border: 1px solid var(--reviews-line);
    border-radius: 14px;
    box-shadow: none;
    transition: border-color 160ms ease-out, box-shadow 160ms ease-out;
}

.reviews-page .review-card.is-positioned {
    visibility: visible;
}

.reviews-page .review-card:hover {
    border-color: var(--rose-200);
    box-shadow: 0 10px 28px rgba(136, 19, 55, 0.07);
    transform: none;
}

.reviews-page .review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0 0 12px;
}

.review-person {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 11px;
}

.reviews-page .review-avatar {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin: 0;
    overflow: hidden;
    color: var(--rose-700);
    background: var(--rose-100);
    border: 0;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
}

.reviews-page .review-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-page .review-avatar-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: inherit;
    background: transparent;
    border-radius: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.reviews-page .review-info {
    min-width: 0;
}

.reviews-page .review-info h3 {
    margin: 0;
    overflow: hidden;
    color: var(--reviews-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review-play-button {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: white;
    background: var(--reviews-accent);
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(190, 18, 60, 0.22);
    transition: transform 180ms ease-out, background 180ms ease-out, box-shadow 180ms ease-out;
}

.review-play-button:hover {
    color: white;
    background: var(--rose-700);
    box-shadow: 0 8px 20px rgba(190, 18, 60, 0.28);
    transform: scale(1.06);
}

.reviews-page .review-stars {
    display: flex;
    gap: 2px;
    margin: 0 0 10px;
    font-size: 1.13rem;
    line-height: 1;
}

.reviews-page .review-stars .is-empty {
    color: var(--stone-200);
}

.reviews-page .review-text {
    margin: 0;
    color: #3f383a;
    font-size: 0.96rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.review-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.reviews-page .review-song-title {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    margin: 0;
    padding: 5px 10px;
    overflow: hidden;
    color: var(--rose-800);
    background: var(--rose-50);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review-song-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 6px 10px;
    color: var(--reviews-ink);
    border: 1px solid #d8d1d2;
    border-radius: 999px;
    font-size: 0.79rem;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
}

.review-song-link:hover {
    color: var(--rose-700);
    border-color: var(--rose-300);
    background: var(--rose-50);
}

.reviews-page .loading-reviews,
.reviews-page .no-reviews,
.reviews-page .reviews-error {
    width: min(100%, 520px);
    margin: 24px auto;
    padding: 40px 24px;
    color: var(--reviews-muted);
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.reviews-page .loading-reviews p,
.reviews-page .no-reviews p,
.reviews-page .reviews-error p {
    margin: 8px 0 0;
    color: var(--reviews-muted);
}

.reviews-page .no-reviews h3,
.reviews-page .reviews-error h3 {
    margin: 0;
    color: var(--reviews-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
}

.reviews-page .loading-spinner {
    width: 28px;
    height: 28px;
    margin: 0 auto 10px;
    border: 3px solid var(--rose-100);
    border-top-color: var(--rose-600);
}

.reviews-state-button,
.reviews-end-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 16px;
    padding: 9px 15px;
    color: var(--rose-700);
    background: white;
    border: 1px solid var(--rose-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.reviews-page .load-more-container {
    padding: 24px 0;
    color: var(--reviews-muted);
}

.reviews-page .end-of-reviews {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 14px;
    max-width: none;
    margin: 34px auto 0;
    padding: 20px 0 0;
    color: var(--reviews-muted);
    background: transparent;
    border-top: 1px solid var(--reviews-line);
    border-radius: 0;
    box-shadow: none;
}

.reviews-page .end-of-reviews p,
.reviews-page .end-of-reviews .reviews-end-link {
    margin: 0;
}

.reviews-page .reviews-cta-section {
    padding: 56px 0;
    color: white;
    text-align: left;
    background: var(--stone-900);
}

.reviews-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.reviews-page .reviews-cta-section h2 {
    margin: 0;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.reviews-page .reviews-cta-section p {
    max-width: 640px;
    margin: 10px 0 0;
    color: #d6d3d1;
    line-height: 1.55;
}

.reviews-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 14px;
    min-height: 50px;
    padding: 12px 18px;
    color: white;
    background: var(--reviews-accent);
    border-radius: 12px;
    font-weight: 650;
    line-height: 1.25;
    text-decoration: none;
}

.reviews-primary-cta:hover {
    color: white;
    background: var(--rose-700);
}

.reviews-primary-cta .price-original {
    color: var(--rose-200);
}

@media (max-width: 900px) {
    .reviews-page .reviews-showcase-grid {
        --reviews-column-count: 2;
    }
}

@media (max-width: 680px) {
    .reviews-topbar-inner {
        min-height: 70px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .reviews-brand {
        gap: 8px;
        font-size: 1.25rem;
    }

    .reviews-brand img {
        width: 36px;
        height: 36px;
    }

    .reviews-nav-actions {
        gap: 7px;
    }

    .reviews-cart-link {
        width: 40px;
        height: 40px;
    }

    .reviews-create-link {
        gap: 6px;
        min-height: 40px;
        padding: 7px 10px;
        font-size: 0.84rem;
    }

    .reviews-create-link svg {
        width: 17px;
        height: 17px;
    }

    .reviews-page .reviews-hero-section {
        padding: 48px 0 38px;
    }

    .reviews-page .reviews-hero-section h1 {
        font-size: clamp(2.2rem, 12vw, 3.2rem);
        line-height: 1.04;
    }

    .reviews-hero-subtitle {
        margin-top: 14px;
        font-size: 0.98rem;
    }

    .reviews-rating-summary {
        margin-top: 24px;
    }

    .reviews-page .reviews-showcase-grid {
        --reviews-column-count: 1;
    }

    .reviews-page .review-card {
        padding: 18px;
    }

    .reviews-page .end-of-reviews {
        flex-direction: column;
        gap: 8px;
    }

    .reviews-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .reviews-primary-cta {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reviews-page *,
    .reviews-page *::before,
    .reviews-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
