.pn-price-ticker {
  --pn-primary: #042129;
  --pn-primary-soft: #0a3039;
  --pn-accent: #ffe542;
  --pn-gap: 2rem;
  --pn-ticker-duration: 80s;
  position: relative;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: stretch;
  inline-size: 100%;
  max-inline-size: 100%;
  min-inline-size: 0;
  min-height: 54px;
  margin: 0;
  overflow-x: clip;
  overflow-y: hidden;
  background: var(--pn-primary);
  color: #fff;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
  font-family: inherit;
  line-height: 1;
  isolation: isolate;
}

@supports not (overflow: clip) {
  .pn-price-ticker {
    overflow-x: hidden;
  }
}

.pn-price-ticker,
.pn-price-ticker * {
  box-sizing: border-box;
}

.pn-price-ticker__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0 1rem;
  background: var(--pn-accent);
  color: var(--pn-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pn-price-ticker__pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(4, 33, 41, 0.45);
  animation: pn-price-pulse 2.4s ease-out infinite;
}

.pn-price-ticker__filters {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  min-height: 54px;
  padding: 0.45rem 0.65rem;
  background: var(--pn-primary-soft);
  border-inline-end: 1px solid rgba(255, 255, 255, 0.12);
}

.pn-price-ticker__select {
  width: auto;
  min-width: 120px;
  max-width: 185px;
  height: 34px;
  margin: 0;
  padding: 0 2rem 0 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background-color: #fff;
  color: var(--pn-primary);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  cursor: pointer;
}

.pn-price-ticker__select:focus-visible {
  outline: 2px solid var(--pn-accent);
  outline-offset: 2px;
}

.pn-price-ticker__select:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.pn-price-ticker__viewport {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  outline: none;
  mask-image: linear-gradient(to right, transparent, #000 2.5rem, #000 calc(100% - 2.5rem), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 2.5rem, #000 calc(100% - 2.5rem), transparent);
}

.pn-price-ticker__viewport:focus-visible {
  box-shadow: inset 0 0 0 2px var(--pn-accent);
}

.pn-price-ticker__track {
  display: flex;
  align-items: center;
  gap: var(--pn-gap);
  width: max-content;
  max-width: none;
  min-height: 54px;
  will-change: transform;
  animation: pn-price-scroll var(--pn-ticker-duration) linear infinite;
}

.pn-price-ticker__group {
  display: flex;
  align-items: center;
  gap: var(--pn-gap);
  flex: 0 0 auto;
}

.pn-price-ticker__item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.48rem;
  flex: 0 0 auto;
  padding: 0.7rem 0;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
  transition: color 160ms ease, opacity 160ms ease;
}

.pn-price-ticker__item[hidden],
.pn-price-ticker__group[hidden] {
  display: none !important;
}

.pn-price-ticker a.pn-price-ticker__item:hover,
.pn-price-ticker a.pn-price-ticker__item:focus-visible {
  color: var(--pn-accent);
  opacity: 1;
  outline: none;
}

.pn-price-ticker__product {
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.pn-price-ticker__separator {
  color: var(--pn-accent);
  font-weight: 800;
}

.pn-price-ticker__hub {
  color: rgba(255, 255, 255, 0.78);
}

.pn-price-ticker__price {
  color: var(--pn-accent);
  font-size: 1rem;
  font-weight: 800;
}

.pn-price-ticker__unit {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pn-price-ticker__viewport:hover .pn-price-ticker__track,
.pn-price-ticker__viewport:focus-within .pn-price-ticker__track,
.pn-price-ticker.is-user-paused .pn-price-ticker__track {
  animation-play-state: paused;
}

.pn-price-ticker.is-static .pn-price-ticker__viewport {
  mask-image: none;
  -webkit-mask-image: none;
}

.pn-price-ticker.is-static .pn-price-ticker__track {
  width: 100%;
  animation: none;
  transform: none;
}

.pn-price-ticker.is-static .pn-price-ticker__group:not([aria-hidden="true"]) {
  width: 100%;
  justify-content: center;
}

.pn-price-ticker__notice {
  padding: 0.9rem 1rem;
  border-inline-start: 4px solid #dba617;
  background: #fff8e5;
  color: #3c434a;
  font-size: 0.9rem;
}

.pn-price-ticker__sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@keyframes pn-price-scroll {
  to {
    transform: translate3d(calc(-50% - (var(--pn-gap) / 2)), 0, 0);
  }
}

@keyframes pn-price-pulse {
  0% { box-shadow: 0 0 0 0 rgba(4, 33, 41, 0.45); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(4, 33, 41, 0); }
}

@media (max-width: 980px) {
  .pn-price-ticker {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .pn-price-ticker__filters {
    border-inline-end: 0;
  }

  .pn-price-ticker__viewport {
    grid-column: 1 / -1;
    border-block-start: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 767px) {
  .pn-price-ticker {
    min-height: 48px;
  }

  .pn-price-ticker__label,
  .pn-price-ticker__filters,
  .pn-price-ticker__track {
    min-height: 48px;
  }

  .pn-price-ticker__label {
    max-width: 92px;
    padding: 0 0.72rem;
    font-size: 0.68rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .pn-price-ticker__filters {
    gap: 0.35rem;
    padding: 0.35rem 0.45rem;
  }

  .pn-price-ticker__select {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    height: 32px;
    padding-inline-start: 0.5rem;
    font-size: 0.72rem;
  }

  .pn-price-ticker__item {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pn-price-ticker__pulse,
  .pn-price-ticker__track {
    animation: none !important;
  }

  .pn-price-ticker__viewport {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-width: thin;
  }

  .pn-price-ticker__group[aria-hidden="true"] {
    display: none;
  }
}
