/* ========================================
   BUTTONS
   ======================================== */

.btn,
button {
  display: inline-block;
  background: linear-gradient(135deg, #f1c20f 0%, #f5ca2f 100%);
  color: #1b1b1b;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 22px;
  box-shadow: 0 6px 20px rgba(241, 194, 15, 0.3);
  cursor: pointer !important;
  transition: all 0.3s ease;
  border: none;
}

.btn:hover {
  background: linear-gradient(135deg, #f5ca2f 0%, #f1c20f 100%);
  box-shadow: 0 8px 30px rgba(241, 194, 15, 0.4);
  transform: translateY(-2px);
}
