.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--cta {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
  color: var(--text-white);
  padding: 18px 36px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(218, 165, 32, 0.3);
  font-size: 0.95rem;
  line-height: 1.3;
  text-align: center;
}

.btn--cta:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(218, 165, 32, 0.45);
}

.btn--cta-light {
  box-shadow: 0 4px 24px rgba(218, 165, 32, 0.4);
}

.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.btn__arrow svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .btn--cta {
    padding: 16px 28px;
    font-size: 0.85rem;
  }
}
