/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
    background: var(--color-orange);
    color: #fff;
}
.btn-primary:hover {
    background: var(--color-orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(242, 96, 15, 0.35);
}
.btn-block { width: 100%; }
.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ---- Responsive ---- */
@media (max-width: 400px) {
    .btn { padding: 12px 20px; font-size: 0.9rem; }
}
