/* ============================================================
   Product Detail page
   ============================================================ */

.detail-page {
    padding-top: 40px;
    padding-bottom: 80px;
}

/* ── Optional 3-col wrapper when a questionnaire session is in context ─── */

.detail-with-sidebar {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.detail-with-sidebar > .detail-main {
    flex: 1;
    min-width: 0;
}

@media (max-width: 860px) {
    .detail-with-sidebar { flex-direction: column; }
    .detail-with-sidebar > .results-sidebar {
        width: 100%;
        position: static;
    }
}

/* ── Main section: 2-col ─────────────────────────────────── */

.detail-main {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

/* ── Left column ─────────────────────────────────────────── */

.detail-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

/* Product info */
.detail-category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
    margin: 0;
}

.detail-title {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    margin: 4px 0 0;
}

.detail-price {
    font-size: 22px;
    font-weight: 800;
    color: #1a3bc1;
    margin: 8px 0 0;
}

/* Attractiveness badge */
.detail-attractiveness {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    margin-top: 6px;
    width: fit-content;
}

.detail-attractiveness--green {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.detail-attractiveness--yellow {
    background: #fef9c3;
    color: #a16207;
    border: 1px solid #fde68a;
}

.detail-attractiveness--red {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.detail-attractiveness--our_choice {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.detail-attractiveness--reviews_are_ok {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.detail-attractiveness--cheapest_price {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

/* Tags */
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.detail-tag {
    padding: 6px 18px;
    background: #1a3bc1;
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

/* Description box */
.detail-description-box {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
}

.detail-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
    margin: 0 0 10px;
}

.detail-description {
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

/* Specifications list */
.detail-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.detail-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 9px 0;
    border-bottom: 1px solid #f3f4f6;
    gap: 16px;
}

.detail-spec-row:last-child { border-bottom: none; }

.spec-key {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-transform: capitalize;
    min-width: 120px;
}

.spec-val {
    font-size: 13px;
    color: #111827;
    text-align: right;
}

/* CTA buttons */
.detail-cta {
    display: flex;
    gap: 12px;
}

.cta-add-cart {
    flex: 1;
    padding: 14px 24px;
    border: 2px solid #1a3bc1;
    border-radius: 50px;
    background: transparent;
    color: #1a3bc1;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}

.cta-add-cart:hover { background: #eef1fc; }

.cta-add-cart.added {
    border-color: #22c55e;
    color: #16a34a;
    background: #dcfce7;
}

.cta-buy-now {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    background: #1a3bc1;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}

.cta-buy-now:hover { background: #1530a0; }

/* ── Right column: main image ────────────────────────────── */

.detail-right {
    width: 420px;
    flex-shrink: 0;
    position: sticky;
    top: 88px;
}

.detail-image-wrap {
    position: relative;
    background: #eaecfb;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.detail-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .4s ease, opacity .3s ease;
}

.detail-image.switching {
    opacity: 0;
    transform: scale(.95);
}

.detail-image-placeholder {
    font-size: 80px;
    opacity: .3;
}

/* Slideshow controls */
.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.88);
    color: #374151;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
    z-index: 10;
}

.slideshow-btn:hover {
    background: #fff;
    color: #1a3bc1;
    box-shadow: 0 4px 14px rgba(0,0,0,.22);
}

.slideshow-btn--prev { left: 12px; }
.slideshow-btn--next { right: 12px; }

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
}

.slideshow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: all .2s;
}

.slideshow-dot:hover { background: #9ca3af; }

.slideshow-dot--active {
    background: #1a3bc1;
    transform: scale(1.35);
}

/* ── Star SVG (shared by tech review card and review sections) ── */

.tech-star polygon {
    fill: #e5e7eb;
    stroke: #d1d5db;
    stroke-width: 1;
}

.tech-star--filled polygon {
    fill: #f59e0b;
    stroke: #f59e0b;
}

.tech-rate-value {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-left: 4px;
}

/* ── Insights row ────────────────────────────────────────── */

.detail-insights {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 20px;
    align-items: stretch;
    margin-top: 32px;
}

.insight-left-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insight-card--chart {
    height: 100%;
}

.price-chart-wrap {
    flex: 1;
    position: relative;
    min-height: 0;
}

.price-chart-wrap canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100% !important;
    height: 100% !important;
}

.insight-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insight-card__title {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

/* Technical review card */
.insight-tech-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.insight-tech-desc {
    font-size: 13px;
    color: #374151;
    line-height: 1.65;
    margin: 0;
}

.insight-tech-link {
    font-size: 13px;
    font-weight: 600;
    color: #1a3bc1;
    text-decoration: none;
    align-self: flex-start;
}

.insight-tech-link:hover { text-decoration: underline; }

/* Customer summary card */
.insight-summary {
    font-size: 13px;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

.insight-ai-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #6b7280;
}

.insight-ai-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #374151;
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    font-style: italic;
    flex-shrink: 0;
}

.insight-categories-label {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin: 2px 0 0;
}

.insight-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.insight-cat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    cursor: default;
}

a.insight-cat { cursor: pointer; }
a.insight-cat:hover { text-decoration: underline; }

.insight-cat--positive { color: #1a3bc1; }
.insight-cat--negative { color: #b91c1c; }
.insight-cat--neutral  { color: #6b7280; }

.insight-cat__icon { flex-shrink: 0; }

.insight-cat__count {
    font-weight: 400;
    color: #6b7280;
}

/* Price history card */
.price-history-empty {
    font-size: 13px;
    color: #9ca3af;
    text-align: center;
    margin: 8px 0 0;
}

/* Empty state (all cards) */
.insight-empty {
    font-size: 13px;
    color: #9ca3af;
    font-style: italic;
    margin: 0;
}

/* ── Reviews expand/collapse trigger (lives in the Customers Say card) ─── */

.insight-reviews-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: auto;
    padding: 9px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 50px;
    background: transparent;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

.insight-reviews-toggle:hover {
    border-color: #1a3bc1;
    color: #1a3bc1;
    background: #eef1fc;
}

.insight-reviews-toggle__count {
    color: #9ca3af;
    font-weight: 500;
}

.insight-reviews-toggle:hover .insight-reviews-toggle__count {
    color: #1a3bc1;
}

.insight-reviews-toggle__chevron {
    transition: transform .2s;
}

.insight-reviews-toggle[aria-expanded="true"] .insight-reviews-toggle__chevron {
    transform: rotate(180deg);
}

/* Collapsed: the reviews section is fully hidden so it adds zero size to its
   Customers Say card parent. */
.detail-reviews.is-collapsed {
    display: none;
}

/* Expanded: pops out of flow as a fixed centered modal — the Customers Say
   card's own size never changes. */
.detail-reviews:not(.is-collapsed) {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    background: rgba(17, 24, 39, .55);
    padding: 48px 20px;
    animation: detail-reviews-backdrop-fade .15s ease-out;
}

.detail-reviews:not(.is-collapsed) > .detail-reviews__content {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 760px;
    padding: 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
    position: relative;
    animation: detail-reviews-modal-rise .2s ease-out;
}

.detail-reviews__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    color: #374151;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s;
}

.detail-reviews__close:hover {
    background: #e5e7eb;
    color: #111827;
}

.detail-reviews.is-collapsed .detail-reviews__close { display: none; }

body.reviews-modal-open { overflow: hidden; }

@keyframes detail-reviews-backdrop-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes detail-reviews-modal-rise {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .detail-reviews:not(.is-collapsed) { padding: 24px 12px; }
    .detail-reviews:not(.is-collapsed) > .detail-reviews__content { padding: 24px 20px; }
}

/* ── Similar products ────────────────────────────────────── */

.detail-similar {
    margin-top: 64px;
}

.similar-title {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Similar card (re-uses product-card patterns) */
.similar-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}

.similar-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
    transform: translateY(-3px);
    border-color: #c7d2fa;
}

.similar-card__image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
}

/* Reuse attractiveness badge for similar cards */
.similar-card__image-wrap .attractiveness-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: .02em;
}

.attractiveness-badge--green {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.attractiveness-badge--yellow {
    background: #fef9c3;
    color: #a16207;
    border: 1px solid #fde68a;
}

.attractiveness-badge--red {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.similar-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}

.similar-card:hover .similar-card__image { transform: scale(1.05); }

.similar-card__placeholder {
    font-size: 48px;
    opacity: .35;
}

.similar-card__body {
    padding: 14px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.similar-card__tags { display: flex; flex-wrap: wrap; gap: 5px; }

.similar-tag {
    font-size: 10px;
    font-weight: 600;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 2px 8px;
    white-space: nowrap;
}

.similar-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.similar-card__desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
}

.similar-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    flex-wrap: wrap;
}

.similar-card__price {
    font-size: 16px;
    font-weight: 800;
    color: #1a3bc1;
}

.similar-card__actions { display: flex; gap: 6px; }

/* Reuse btn-add-cart / btn-buy-now from product_results */
.similar-card .btn-add-cart,
.similar-card .btn-buy-now {
    padding: 7px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
}

.similar-card .btn-add-cart {
    border: 1.5px solid #1a3bc1;
    background: transparent;
    color: #1a3bc1;
}

.similar-card .btn-add-cart:hover { background: #eef1fc; }

.similar-card .btn-buy-now {
    border: none;
    background: #1a3bc1;
    color: #fff;
}

.similar-card .btn-buy-now:hover { background: #1530a0; }

/* ── Reviews ─────────────────────────────────────────────── */

.detail-reviews {
    margin-top: 64px;
    padding-bottom: 48px;
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.reviews-title {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

.reviews-avg {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews-avg-score {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}

.reviews-avg-stars {
    display: flex;
    gap: 2px;
}

.reviews-count {
    font-size: 13px;
    color: #6b7280;
}

/* Star SVG states */
.rev-star polygon {
    fill: #e5e7eb;
    stroke: #d1d5db;
    stroke-width: 1;
}

.rev-star--filled polygon {
    fill: #f59e0b;
    stroke: #f59e0b;
}

/* Star picker (CSS-only, RTL trick) */
.star-picker {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
    margin-bottom: 14px;
}

.star-input { display: none; }

.star-label svg polygon {
    fill: #e5e7eb;
    stroke: #d1d5db;
    stroke-width: 1;
    transition: fill .15s, stroke .15s;
    cursor: pointer;
}

.star-input:checked ~ .star-label svg polygon,
.star-label:hover svg polygon,
.star-label:hover ~ .star-label svg polygon {
    fill: #f59e0b;
    stroke: #f59e0b;
}

/* Review form */
.review-form {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    padding: 24px 28px;
    margin-bottom: 32px;
    max-width: 640px;
}

.review-form-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
}

.review-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    color: #374151;
    resize: vertical;
    outline: none;
    font-family: inherit;
    transition: border-color .15s;
    box-sizing: border-box;
    margin-bottom: 14px;
}

.review-textarea:focus { border-color: #1a3bc1; }

.review-submit {
    padding: 11px 28px;
    background: #1a3bc1;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}

.review-submit:hover { background: #1530a0; }

.review-login-prompt {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 28px;
}

.review-login-prompt a {
    color: #1a3bc1;
    font-weight: 600;
    text-decoration: none;
}

.review-login-prompt a:hover { text-decoration: underline; }

/* Review cards */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
}

.review-card {
    display: flex;
    gap: 14px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 18px 20px;
}

.review-card--own {
    border: 2px solid #1a3bc1;
    background: #f5f7ff;
}

.review-card__you {
    font-size: 10px;
    font-weight: 700;
    color: #1a3bc1;
    background: #eef1fc;
    border-radius: 20px;
    padding: 2px 8px;
    letter-spacing: .04em;
    text-transform: uppercase;
    vertical-align: middle;
}

.review-edit-btn {
    margin-left: auto;
    padding: 4px 14px;
    border: 1.5px solid #1a3bc1;
    border-radius: 20px;
    background: transparent;
    color: #1a3bc1;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, color .15s;
    flex-shrink: 0;
}

.review-edit-btn:hover {
    background: #1a3bc1;
    color: #fff;
}

/* Inline edit form (hidden by default) */
.review-edit-form {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #d1d9fa;
}

.review-edit-form.is-open { display: block; }

.review-edit-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.review-cancel-btn {
    padding: 10px 20px;
    border: 1.5px solid #d1d5db;
    border-radius: 50px;
    background: transparent;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .15s, color .15s;
}

.review-cancel-btn:hover {
    border-color: #9ca3af;
    color: #374151;
}

.review-delete-btn {
    margin-left: auto;
    padding: 10px 20px;
    border: 1.5px solid #fca5a5;
    border-radius: 50px;
    background: transparent;
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}

.review-delete-btn:hover {
    background: #fef2f2;
    border-color: #ef4444;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a3bc1;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-card__body { flex: 1; min-width: 0; }

.review-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.review-card__author {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.review-card__stars { display: flex; gap: 2px; }

.review-card__date {
    font-size: 12px;
    color: #9ca3af;
    margin-left: auto;
}

.review-card__text {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.reviews-empty {
    font-size: 14px;
    color: #9ca3af;
    font-style: italic;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
    .detail-right { width: 340px; }
    .similar-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-insights { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .detail-main {
        flex-direction: column-reverse; /* image on top */
        gap: 28px;
    }
    .detail-right { width: 100%; position: static; }
    .detail-image-wrap { aspect-ratio: 4 / 3; padding: 24px; }
    .similar-grid { grid-template-columns: 1fr; }
    .detail-title { font-size: 22px; }
    .detail-cta { flex-direction: column; }
    .detail-insights { grid-template-columns: 1fr; }
}

/* ── Review pending notice ───────────────────────────────── */

.review-pending-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fefce8;
    border: 1px solid #fde047;
    border-radius: 10px;
    font-size: 13px;
    color: #854d0e;
    font-weight: 500;
    margin-bottom: 20px;
}

/* ── Review reactions (like / dislike) ───────────────────── */

.review-reactions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.reaction-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #f9fafb;
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
    line-height: 1;
}

.reaction-btn:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #374151;
}

.reaction-btn--like.reaction-btn--active {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #1d4ed8;
}

.reaction-btn--dislike.reaction-btn--active {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #b91c1c;
}

.review-reactions--readonly .reaction-btn {
    cursor: default;
    pointer-events: none;
}

.reaction-count { font-variant-numeric: tabular-nums; }
