[data-header-style="Overlay"] {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}
.btn--remote {
  color: var(--white) !important;
  border-color: var(--base-semi-light) !important;
}
.btn--remote:hover {
  background-color: var(--base-semi-light) !important;
}
.splide__list, .splide__slide {
  transition-timing-function: linear !important;
}
/* ICON WRAPPER */
.styled-button__div {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
/* Make sure both icon elements stack properly */
.styled-button__div .styled-button__icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: opacity, transform;
}
/* Bricks icons often apply styles to inner svg, so ensure transforms affect whole icon */
.styled-button__div .styled-button__icon * {
  pointer-events: none;
}
/* Default state: show arrow (icon-one), hide phone (icon-two) */
.styled-button__div .icon-one {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}
.styled-button__div .icon-two {
  opacity: 0;
  transform: translateX(8px);
  z-index: 1;
}
/* HOVER TRIGGER (works if you hover the button OR just the icon wrapper) */
.styled-button:hover .styled-button__div .icon-one, .styled-button__div:hover .icon-one {
  opacity: 0;
  transform: translateX(-8px);
}
.styled-button:hover .styled-button__div .icon-two, .styled-button__div:hover .icon-two {
  opacity: 1;
  transform: translateX(0);
}
