.pir-reactions-wrapper {
    margin-top: 40px;
    padding: 24px 20px 26px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pir-title {
    font-size: 24px;
    margin-bottom: 24px;
    color: #111827;
    font-weight: 700;
}

.pir-reactions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.pir-reaction {
    background: #f9fafb;
    border-radius: 18px;
    padding: 12px 18px 14px;
    border: 1px solid transparent;
    cursor: pointer;
    min-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.18s ease-out;
}

.pir-reaction:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

.pir-reaction--active {
    border-color: #4f46e5;
    background: #eef2ff;
    box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.2);
}

.pir-emoji {
    font-size: 32px;
    line-height: 1;
}

.pir-label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.pir-count {
    margin-top: 2px;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #111827;
}

.pir-reaction--active .pir-count {
    background: #4f46e5;
    color: #ffffff;
}

.pir-note {
    margin-top: 18px;
    font-size: 12px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 640px) {
    .pir-reaction {
        min-width: 78px;
        padding: 10px 12px 12px;
    }

    .pir-emoji {
        font-size: 26px;
    }

    .pir-title {
        font-size: 20px;
    }
}
