
/* Walkinto luxury thin scrollbar — subtle, minimal, and consistent on all pages */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(18, 35, 54, 0.28) transparent;
}

body {
  scrollbar-width: thin;
  scrollbar-color: rgba(18, 35, 54, 0.28) transparent;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(18, 35, 54, 0.28);
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(18, 35, 54, 0.42);
  border: 2px solid rgba(255, 255, 255, 0.28);
  background-clip: padding-box;
}

::-webkit-scrollbar-corner {
  background: transparent;
}
