.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(36, 29, 24, 0.08);
    border-radius: 14px;
    background: transparent;
    color: var(--color-text);
    font-family: var(--font-family-heading);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        background-color var(--transition-base),
        border-color var(--transition-base),
        color var(--transition-base);
}

.button:hover {
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.button--primary {
    background: linear-gradient(180deg, #e56852, #d85b45);
    border-color: rgba(216, 91, 69, 0.24);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(216, 91, 69, 0.18);
}

.button--primary:hover {
    box-shadow: 0 16px 28px rgba(216, 91, 69, 0.24);
}

.button--secondary {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(36, 29, 24, 0.08);
    box-shadow: 0 8px 18px rgba(44, 32, 24, 0.05);
}

.button--secondary:hover {
    background: #ffffff;
    box-shadow: 0 12px 22px rgba(44, 32, 24, 0.08);
}

.button--ghost {
    background: rgba(255, 251, 246, 0.6);
    border-color: rgba(36, 29, 24, 0.06);
}

.button--ghost:hover {
    background: rgba(255, 251, 246, 0.92);
    border-color: rgba(36, 29, 24, 0.1);
}

.button--danger {
    background: linear-gradient(180deg, #cb5a53, #b54543);
    border-color: rgba(181, 69, 67, 0.28);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(181, 69, 67, 0.2);
}

.button--danger:hover {
    box-shadow: 0 16px 28px rgba(181, 69, 67, 0.26);
}

.button--small {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.84rem;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button:focus-visible {
    box-shadow: 0 0 0 4px var(--focus-ring);
}

.button:disabled,
.button[aria-disabled="true"] {
    opacity: 0.72;
    cursor: default;
    transform: none;
    box-shadow: none;
}
