.l2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid;
  border-radius: 5px;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}

/* Sizes */
.l2-btn--sm {
  padding: 6px 18px;
  font-size: 10px;
}
.l2-btn--md {
  padding: 10px 30px;
  font-size: 12px;
}
.l2-btn--lg {
  padding: 13px 44px;
  font-size: 14px;
}

.l2-btn--primary {
  background: linear-gradient(
    180deg,
    rgba(60, 50, 35, 0.9) 0%,
    rgba(30, 24, 16, 0.95) 40%,
    rgba(20, 16, 10, 0.98) 100%
  );
  border-color: rgba(139, 115, 85, 0.6);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-button);
}

.l2-btn--secondary {
  background: linear-gradient(
    180deg,
    rgba(45, 40, 32, 0.85) 0%,
    rgba(22, 18, 14, 0.92) 40%,
    rgba(12, 10, 8, 0.95) 100%
  );
  border-color: rgba(90, 80, 64, 0.5);
  color: var(--color-text-primary) #d4c4a0;
  box-shadow: 0 0 4px rgba(90, 80, 64, 0.15);
}

.l2-btn--danger {
  background: linear-gradient(
    180deg,
    rgba(70, 28, 28, 0.9) 0%,
    rgba(40, 14, 14, 0.95) 40%,
    rgba(25, 8, 8, 0.98) 100%
  );
  border-color: rgba(139, 64, 64, 0.6);
  color: #d4a0a0;
  box-shadow: 0 0 8px rgba(139, 64, 64, 0.2);
}

.l2-btn:hover:not(:disabled) {
  filter: brightness(1.25);
  transform: translateY(-1px);
}
.l2-btn:active:not(:disabled) {
  filter: brightness(0.95);
  transform: translateY(0);
}

.l2-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.l2-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 10%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 90%
  );
}
