/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.28s ease;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 44px;
  min-width: 44px;
  line-height: 1.2;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.btn:active::before {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  20% {
    opacity: 0.85;
  }
  40% {
    opacity: 0.6;
  }
  70% {
    opacity: 0.2;
  }
  100% {
    width: 350px;
    height: 350px;
    opacity: 0;
  }
}

@keyframes premiumGlow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.25), 0 0 25px rgba(212, 175, 55, 0.08);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.28), 0 0 35px rgba(212, 175, 55, 0.15);
    filter: brightness(1.02);
  }
}

@keyframes subtleShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-1px); }
  40% { transform: translateX(1px); }
  60% { transform: translateX(-0.5px); }
  80% { transform: translateX(0.5px); }
}

@keyframes luxeShimmer {
  0%, 100% {
    box-shadow: 
      0 8px 25px rgba(114, 47, 55, 0.25), 
      0 0 25px rgba(212, 175, 55, 0.08),
      inset 0 0 15px rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 
      0 8px 25px rgba(114, 47, 55, 0.28), 
      0 0 35px rgba(212, 175, 55, 0.15),
      inset 0 0 15px rgba(255, 255, 255, 0.08);
  }
}

@keyframes shimmerPass {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.btn--primary {
  background: linear-gradient(135deg, rgba(93, 70, 53, 0.98) 0%, rgba(63, 53, 43, 0.98) 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(63, 53, 43, 0.2);
  transition: all 0.28s ease;
}

.btn--primary:hover {
  background: linear-gradient(135deg, rgba(76, 60, 46, 0.98) 0%, rgba(42, 36, 30, 0.98) 100%);
  box-shadow: 0 22px 42px rgba(63, 53, 43, 0.24);
  transform: translateY(-3px);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 12px 24px rgba(63, 53, 43, 0.18);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.48);
  color: var(--secondary-color);
  border: 1px solid rgba(74, 60, 39, 0.16);
  transition: all 0.28s ease;
  box-shadow: var(--shadow-inset);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.72);
  color: var(--secondary-color);
  border-color: rgba(74, 60, 39, 0.24);
  box-shadow: var(--shadow-soft), var(--shadow-inset);
  transform: translateY(-3px);
}

.btn--secondary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-inset);
}
