.eyebrow {
    margin: 0 0 8px;
    color: var(--primary-strong);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #dc8d56 100%);
    color: #fff;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--line);
    color: var(--text);
}

.btn-block {
    width: 100%;
}

.btn-table {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
}

.btn-table.danger {
    color: var(--danger);
    border-color: rgba(194, 65, 65, 0.24);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field span {
    font-size: 13px;
    font-weight: 600;
}

.field input,
.field select,
.field textarea,
.search-input,
.select-input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.82);
    outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.search-input:focus,
.select-input:focus {
    border-color: rgba(196, 106, 47, 0.5);
    box-shadow: 0 0 0 4px rgba(196, 106, 47, 0.12);
}
