/* ============================================================================
 * Feedback section — "Uwagi" textarea (per-producer via PRODUCER_FEATURES)
 * ========================================================================== */

.feedback-section {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.feedback-section.visible {
    display: flex;
}

.feedback-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feedback-header__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    flex-shrink: 0;
}

.feedback-header__icon svg {
    width: 24px;
    height: 24px;
    overflow: visible;
}

.feedback-header__title {
    font-size: 16px;
    font-weight: 510;
    line-height: 24px;
    letter-spacing: -0.45px;
    color: #4d555c;
    margin: 0;
}

.feedback-textarea {
    width: 100%;
    height: 80px;
    padding: 13px;
    border: 1px solid #d3d6da;
    border-radius: 16px;
    background: #ffffff;
    color: #333;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -0.15px;
    resize: none;
    box-sizing: border-box;
}

.feedback-textarea::placeholder {
    color: #878a9b;
}

.feedback-textarea:focus {
    outline: none;
    border: 2px solid var(--main-color-bg);
    padding: 12px;
    caret-color: var(--main-color-bg);
}
