.ft-er-widget {
    box-sizing: border-box;
    width: 100%;
    margin: 32px 0 0;
    padding: 24px 16px 20px;
    background: #f2f5f7;
    text-align: center;
    direction: rtl;
    border-radius: 0;
}
.ft-er-title {
    margin: 0 0 15px;
    padding: 0;
    font-size: 21px;
    line-height: 1.6;
    font-weight: 700;
    color: #252525;
}
.ft-er-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
}
.ft-er-choice {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
    font-size: 36px;
    line-height: 1;
    transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
}
.ft-er-choice:hover {
    transform: translateY(-2px) scale(1.08);
}
.ft-er-choice:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}
.ft-er-choice.is-selected {
    transform: scale(1.08);
    box-shadow: 0 0 0 3px rgba(0,0,0,.12);
}
.ft-er-choice:disabled {
    cursor: wait;
    opacity: .55;
}
.ft-er-message {
    min-height: 20px;
    margin: 9px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: #4b5563;
}
.ft-er-summary {
    margin: 3px 0 0;
    font-size: 12px;
    line-height: 1.7;
    color: #6b7280;
}
.ft-er-summary[hidden] {
    display: none !important;
}
@media (max-width: 600px) {
    .ft-er-widget {
        margin-top: 24px;
        padding: 21px 12px 18px;
    }
    .ft-er-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .ft-er-actions {
        gap: 11px;
    }
    .ft-er-choice {
        width: 42px;
        height: 42px;
        font-size: 34px;
    }
}
