/* Season share control — deliberately mirrors the season favorite trigger. */
.nf-season-share-kit {
  display: inline-flex;
  margin-left: 12px;
  position: relative;
}

.nf-season-share-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  box-sizing: border-box;
  border: 1px solid #d0d3d8;
  border-radius: 50%;
  background: #fff;
  color: #9aa0a6;
  transition: color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}

.nf-season-share-trigger:hover,
.nf-season-share-trigger:focus-visible {
  color: #e0245e;
  border-color: #e0245e;
}

.nf-season-share-trigger:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.nf-season-share-trigger svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nf-season-share-kit .essb-share-button {
  display: none;
}

.nf-season-share-kit .essb-share-button-window {
  display: none !important;
  position: fixed;
  top: var(--nf-share-top, 0);
  left: var(--nf-share-left, 0);
  right: auto;
  z-index: 30;
  width: max-content;
  min-width: 200px;
  padding: 12px;
  border: 1px solid #d0d3d8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgb(0 0 0 / 15%);
}

.nf-season-share-kit.is-open .essb-share-button-window {
  display: block !important;
}

.nf-season-share-kit .essb-share-button-window .essb-share-button-close {
  display: none;
}
}
