body {
  font-family: "Manrope", sans-serif;
  background-color: #050505;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}
/* Custom styled range slider */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: #d4af37;
  cursor: pointer;
  margin-top: -10px;
  border: 3px solid #111111;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: #2a2a2a;
  border-radius: 2px;
}
/* Utilities */
.glass-panel {
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.hide-scroll::-webkit-scrollbar {
  display: none;
}
.hide-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Specific Fixes to ensure base inputs on mobile don't zoom iOS */
@media screen and (max-width: 768px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}
/* Hero Luxe 2026 (Dark & Grain) */
.hero-luxe-bg {
  position: absolute;
  inset: 0;
  background-color: #030303; /* Deep space black */
  overflow: hidden;
  z-index: -1; 
}

/* Subtle SVG Noise Texture */
.noise-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04; /* Very subtle grain */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Elegant Asymmetrical Spotlight */
.luxury-spotlight {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.08) 0%, /* Soft Gold */
    rgba(212, 175, 55, 0.03) 30%,
    transparent 70%
  );
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Subtle ambient glow bottom left */
.ambient-glow {
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 60%
  );
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
