.wv-season-switcher {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9999;
  display: inline-flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  --wv-switcher-surface: var(--wp--preset--color--white);
  --wv-switcher-text: var(--e-global-color-accent);
  --wv-switcher-focus: var(--e-global-color-b62fa1a);
  --wv-switcher-icon: var(--e-global-color-e7204c3);
  --wv-switcher-shadow: color-mix(in srgb, var(--wv-switcher-text) 10%, transparent);
  --wv-switcher-glow: color-mix(in srgb, var(--wv-switcher-surface) 42%, transparent);
}

.wv-season-switcher__current,
.wv-season-switcher__option {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0 !important;
  border-radius: 18px !important;
  background: var(--wv-switcher-surface) !important;
  box-shadow:
    0 0 0 12px var(--wv-switcher-glow),
    0 12px 28px var(--wv-switcher-shadow) !important;
  color: var(--wv-switcher-icon) !important;
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(12px);
  z-index: 2;
}

.wv-season-switcher__current span,
.wv-season-switcher__option span {
  font-size: 28px;
  line-height: 1;
}

.wv-season-switcher__current:focus-visible,
.wv-season-switcher__option:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--wv-switcher-focus) 55%, transparent);
  outline-offset: 4px;
}

.wv-season-switcher__current::after,
.wv-season-switcher__option::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  min-width: 0;
  width: max-content;
  max-width: 180px;
  padding: 6px 8px;
  border-radius: 10px;
  background: var(--wv-switcher-text);
  box-shadow: 0 10px 20px var(--wv-switcher-shadow);
  color: var(--wv-switcher-surface);
  font-family: "TriptychTest", sans-serif;
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.wv-season-switcher__current:hover::after,
.wv-season-switcher__current:focus-visible::after,
.wv-season-switcher__option:hover::after,
.wv-season-switcher__option:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.wv-season-switcher__options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
  transform-origin: bottom center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wv-season-switcher:hover .wv-season-switcher__options,
.wv-season-switcher:focus-within .wv-season-switcher__options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.wv-season-switcher__option {
  width: 48px;
  height: 48px;
  border-radius: 16px !important;
  color: var(--wv-switcher-text) !important;
}

.wv-season-switcher__option:hover {
  transform: translateY(-1px);
}

@media (max-width: 992px) {
  .wv-season-switcher {
    display: none;
  }
}
