.wc-feedback-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.wc-feedback-trigger {
    border: 1px solid #d8b4fe;
    background: #fff;
    color: #7c3aed;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
}

.wc-feedback-trigger:hover {
    background: #faf5ff;
}

.wc-feedback-success {
    display: none;
    font-size: 0.82rem;
    font-weight: 600;
    color: #15803d;
    background: #dcfce7;
    padding: 8px 12px;
    border-radius: 999px;
}

.wc-feedback-box {
    display: none;
    width: 100%;
    margin-top: 14px;
    border: 1px solid #e9d5ff;
    background: #faf5ff;
    border-radius: 14px;
    padding: 18px;
}

.wc-feedback-header h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.wc-feedback-header p {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 14px;
}

.wc-feedback-ratings {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.wc-rating-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #ddd6fe;
    background: #f8f6ff;
    color: #7c3aed;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
}

.wc-rating-btn:hover {
    background: #ede9fe;
}

.wc-rating-btn.active {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: white;
    border-color: transparent;
}

.wc-feedback-textarea {
    width: 100%;
    min-height: 110px;
    resize: vertical;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 14px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    background: white;
    color: #1e293b;
    transition: all 0.15s ease;
}

.wc-feedback-textarea:focus {
    border-color: #a78bfa;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.08);
}

.wc-feedback-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.wc-feedback-submit {
    border: none;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.wc-feedback-submit:hover {
    opacity: 0.9;
}

.wc-feedback-ratings {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.wc-rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.wc-rating-label {
    font-size: 12px;
    color: #666;
    text-align: center;
}