/* Custom styles & luxury gold/dark accents for Hatteker Website */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary-gold: #d4af37;
  --primary-gold-light: #f3e5ab;
  --primary-gold-dark: #aa820a;
  --dark-bg: #090d16;
  --dark-card: #111827;
  --dark-card-hover: #1f293d;
  --dark-border: rgba(212, 175, 55, 0.2);
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0b0f19;
  color: #f3f4f6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0b0f19;
}

::-webkit-scrollbar-thumb {
  background: #252e42;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d4af37;
}

/* Gold Gradient text and backgrounds */
.text-gold-gradient {
  background: linear-gradient(135deg, #fce881 0%, #d4af37 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gold-gradient {
  background: linear-gradient(135deg, #fce881 0%, #d4af37 50%, #aa820a 100%);
}

.bg-gold-gradient-hover:hover {
  background: linear-gradient(135deg, #fff2a3 0%, #e5c148 50%, #c49615 100%);
}

.gold-glow {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

.gold-glow-lg {
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.35);
}

.border-gold-subtle {
  border-color: rgba(212, 175, 55, 0.25);
}

/* Glassmorphism */
.glass-nav {
  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.15);
}

/* Shimmer animation */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.animate-shimmer {
  position: relative;
  overflow: hidden;
}

.animate-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.08) 20%,
    rgba(255, 255, 255, 0.15) 60%,
    rgba(255, 255, 255, 0)
  );
  animation: shimmer 2.5s infinite;
}

/* Image fallback styling */
.product-img {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.group:hover .product-img {
  transform: scale(1.05);
}

/* Amazon Button Glow */
.btn-amazon {
  background: linear-gradient(135deg, #ff9900 0%, #e68a00 100%);
  color: #111;
  font-weight: 700;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(255, 153, 0, 0.25);
}

.btn-amazon:hover {
  background: linear-gradient(135deg, #ffaa22 0%, #ff9900 100%);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
  transform: translateY(-1px);
}

/* Active Nav Link */
.nav-link.active {
  color: #d4af37;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d4af37;
  border-radius: 2px;
}

/* Modal and Drawer Transitions */
.modal-backdrop {
  transition: opacity 0.3s ease-out;
}

.modal-content {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease-out;
}

/* Toast animation */
@keyframes slideDownFade {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.toast-enter {
  animation: slideDownFade 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Badge Pulsing */
@keyframes pulse-subtle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.03); }
}

.pulse-badge {
  animation: pulse-subtle 3s infinite ease-in-out;
}

