/* ===== PRIMARY BUTTON ===== */
a.btn-primary,
button.btn-primary,
.btn-primary {
  background: var(--brand);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(109, 192, 67, 0.3);
}
a.btn-primary:hover,
button.btn-primary:hover,
.btn-primary:hover {
  background: var(--mid-green);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(109, 192, 67, 0.4);
  text-decoration: none;
}

/* ===== GHOST BUTTON ===== */
a.btn-ghost,
button.btn-ghost,
.btn-ghost {
  background: transparent;
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
a.btn-ghost:hover,
button.btn-ghost:hover,
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white) !important;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ===== GREEN OUTLINE BUTTON ===== */
a.btn-green-outline,
button.btn-green-outline,
.btn-green-outline {
  background: transparent;
  color: var(--brand) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 24px;
  border: 1.5px solid var(--brand);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
a.btn-green-outline:hover,
button.btn-green-outline:hover,
.btn-green-outline:hover {
  background: var(--pale);
  color: var(--brand) !important;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ===== SHIMMER OVERLAY ===== */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

/* ===== PULSE GLOW ===== */
.btn-pulse {
  animation: pulse 2.5s infinite;
}
