/* Homepage object glows now use hand-drawn SVG outline paths instead of box/oval hotspot glows. */
#home .furniture-glow{
  display:none !important;
}
#home .home-object-outlines{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:6;
  pointer-events:none;
  overflow:visible;
}
#home .home-object-outlines [data-outline]{
  opacity:0;
  fill:none;
  stroke:rgba(255,246,186,.96);
  stroke-width:7;
  stroke-linecap:round;
  stroke-linejoin:round;
  filter:url(#homeSoftObjectGlow);
  transition:opacity .16s ease;
}
#home .home-object-outlines [data-outline].active{
  opacity:1;
}
#home .hot:not(.hot-card){
  pointer-events:auto !important;
  cursor:pointer !important;
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  outline:none !important;
  transform:none !important;
}
#home .hot:not(.hot-card):hover,
#home .hot:not(.hot-card):focus-visible{
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  outline:none !important;
  transform:none !important;
}
#home .hot.hot-card,
#home .hot.hot-card:hover,
#home .hot.hot-card:focus-visible{
  background:transparent!important;
  box-shadow:none!important;
  border:none!important;
  outline:none!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
  transform:none!important;
}
#home .hot .tip{display:none!important;}
