
.hj-feedback-widget {
    margin: 18px 0 4px;
    border: 1px solid #e8ebef;
    border-radius: 16px;
    background: linear-gradient(135deg,#ffffff 0%,#fbfcfd 100%);
    box-shadow: 0 8px 24px rgba(17,24,39,.045);
    overflow: hidden;
}
.hj-feedback-widget * { box-sizing: border-box; }
.hj-feedback-inner {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 19px 21px;
}
.hj-feedback-copy {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}
.hj-feedback-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff2f2;
    color: #e00000;
    font-size: 16px;
}
.hj-feedback-title {
    margin: 0;
    color: #202832;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
}
.hj-feedback-subtitle {
    margin: 4px 0 0;
    color: #8b95a1;
    font-size: 10.5px;
    line-height: 1.45;
}
.hj-feedback-options {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.hj-feedback-option {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid #e3e7eb;
    border-radius: 10px;
    background: #fff;
    color: #56616e;
    font-size: 9.5px;
    font-weight: 800;
    cursor: pointer;
    transition: .16s ease;
}
.hj-feedback-option:hover {
    transform: translateY(-1px);
    border-color: #e9bcbc;
    color: #e00000;
    background: #fffafa;
}
.hj-feedback-option.is-selected {
    border-color: #e00000;
    background: #fff3f3;
    color: #c90000;
}
.hj-feedback-option i { font-size: 11px; }
.hj-feedback-followup {
    display: none;
    padding: 0 21px 18px;
}
.hj-feedback-widget.is-answered .hj-feedback-followup { display: block; }
.hj-feedback-thanks {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #287948;
    font-size: 10.5px;
    font-weight: 800;
}
.hj-feedback-comment-row {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 8px;
}
.hj-feedback-comment {
    width: 100%;
    min-height: 40px;
    max-height: 90px;
    resize: vertical;
    padding: 9px 11px;
    border: 1px solid #e0e5e9;
    border-radius: 10px;
    background: #fff;
    color: #333d48;
    font: inherit;
    font-size: 10.5px;
    outline: none;
}
.hj-feedback-comment:focus {
    border-color: #d9a5a5;
    box-shadow: 0 0 0 3px rgba(224,0,0,.055);
}
.hj-feedback-comment-btn {
    min-width: 92px;
    border: 0;
    border-radius: 10px;
    padding: 8px 12px;
    background: #252d37;
    color: #fff;
    font-size: 9.5px;
    font-weight: 800;
    cursor: pointer;
}
.hj-feedback-comment-btn:hover { background: #111820; }
.hj-feedback-comment-btn:disabled,
.hj-feedback-option:disabled {
    opacity: .55;
    cursor: wait;
}
.hj-feedback-private {
    margin-top: 8px;
    color: #a0a8b1;
    font-size: 8.8px;
}
.hj-feedback-private i { margin-right: 4px; }

@media (max-width: 880px) {
    .hj-feedback-inner { grid-template-columns: 1fr; }
    .hj-feedback-options { justify-content: flex-start; }
}
@media (max-width: 540px) {
    .hj-feedback-comment-row { grid-template-columns: 1fr; }
    .hj-feedback-comment-btn { width: 100%; }
}
