/* Primary Button (gold) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--gradient-gold);
  background-size: 200% auto;
  color: var(--bg-primary);
  font: 600 13px/1 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: var(--border-radius-full);
  border: none;
  cursor: pointer;
  transition: background-position 0.5s ease, box-shadow var(--duration-normal) ease, transform var(--duration-fast) ease;
  min-height: 48px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary:hover {
  background-position: right center;
  box-shadow: var(--shadow-cta);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Shimmer effect */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.25) 45%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.25) 55%,
    transparent 60%
  );
  transform: skewX(-20deg);
  animation: btnShimmer 4s infinite 2s;
  pointer-events: none;
}

@keyframes btnShimmer {
  0% { left: -60%; }
  20% { left: 120%; }
  100% { left: 120%; }
}

.btn-primary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-large {
  padding: 20px 48px;
  font-size: 14px;
}

/* Secondary Button (outline) */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: transparent;
  color: var(--gold);
  font: 500 13px/1 var(--font-body);
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: var(--border-radius-full);
  border: 1px solid var(--border-default);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-default);
  min-height: 48px;
}

.btn-secondary:hover {
  background: rgba(201, 169, 110, 0.06);
  border-color: var(--border-hover);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Card */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: var(--space-6);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  transition: all var(--duration-normal) var(--ease-default);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

/* Section Label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--gold);
  font: 500 11px/1 var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

@media (min-width: 768px) {
  .btn-primary {
    font-size: 14px;
  }

  .btn-secondary {
    font-size: 14px;
  }

  .section-label {
    font-size: 12px;
  }
}
