@layer utilities {
  /* Custom Luxury Gold Gradient Text */
  .text-gradient-gold {
    background: linear-gradient(135deg, #FFF0B3 0%, #D4AF37 50%, #AA8825 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* Gold Buttons */
  .btn-gold {
    background: linear-gradient(135deg, #F7E396 0%, #D4AF37 50%, #B89228 100%);
    color: #09090A;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .btn-gold:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
  }
  .btn-gold:active {
    transform: scale(0.97);
  }

  /* Category Pill Buttons */
  .cat-pill {
    padding: 0.5rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: #141418;
    color: #9CA3AF;
    border: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    transition: all 0.2s ease;
  }
  .cat-pill.active {
    background: linear-gradient(135deg, #D4AF37 0%, #AA8825 100%);
    color: #09090A;
    border-color: #D4AF37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
  }

  /* Safe Area paddings */
  .pt-safe {
    padding-top: max(1rem, env(safe-area-inset-top));
  }
}

/* Scrollbar Customization */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Custom Scrollbar for dark theme */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0E0E11;
}
::-webkit-scrollbar-thumb {
  background: #252530;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D4AF37;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fadeIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* User Selection Prevention */
button, select, input {
  user-select: none;
}