/* Base Automotive Button (Desktop Default) */
.nx-btn-auto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px !important;
  font-size: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #0A0A0C !important;
  background-color: #FF3B30 !important;
  border-radius: 4px !important;
  transition: transform 0.3s ease, background-color 0.3s ease !important;
}

/*  Responsive Override: Full Width khusus Mobile (< 768px) */
@media (max-width: 767px) {
  .nx-btn-auto {
    width: 100% !important;   /* Melebar penuh di layar HP */
    display: flex !important;
  }
}