body.hiwawa-device-pc .hiwawa-topbar {
  background: var(--topbar-bg, #333);
  color: var(--topbar-color, #fff);
  font-size: 11px;
  line-height: 1.2;
  overflow: hidden;
  max-height: 20px;
  transition: none;
}

body.hiwawa-device-pc .hiwawa-topbar.is-hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

body.hiwawa-device-pc .hiwawa-topbar__inner {
  box-sizing: border-box;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--page-gutter-x, 10px);
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.hiwawa-device-pc .hiwawa-topbar__side {
  position: relative;
  display: grid;
  align-items: center;
  height: 20px;
  overflow: hidden;
  flex: 0 1 auto;
  min-width: 0;
}

body.hiwawa-device-pc .hiwawa-topbar__left {
  text-align: left;
}

body.hiwawa-device-pc .hiwawa-topbar__right {
  text-align: right;
  margin-left: auto;
}

body.hiwawa-device-pc .hiwawa-topbar__item {
  display: flex;
  align-items: center;
  grid-area: 1 / 1;
  height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  min-width: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  pointer-events: none;
}

body.hiwawa-device-pc .hiwawa-topbar__right .hiwawa-topbar__item {
  justify-content: flex-end;
}

body.hiwawa-device-pc .hiwawa-topbar__left .hiwawa-topbar__item {
  padding-left: 16px;
}

body.hiwawa-device-pc .hiwawa-topbar__left .hiwawa-topbar__item::before {
  content: "\f0a1";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.95;
  animation: hiwawaTopbarHornPulse 2.2s ease-in-out infinite;
}

body.hiwawa-device-pc .hiwawa-topbar__left .hiwawa-topbar__item::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transform: translateY(-50%) scale(0.8);
  opacity: 0;
  animation: hiwawaTopbarHornWave 2.2s ease-out infinite;
}

body.hiwawa-device-pc .hiwawa-topbar__item.is-active {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
  pointer-events: auto;
}

body.hiwawa-device-pc .hiwawa-topbar__item.is-exiting {
  opacity: 0;
  transform: translateY(-100%);
  z-index: 1;
}

@keyframes hiwawaTopbarHornPulse {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 0.85;
  }
  50% {
    transform: translateY(-50%) translateX(1px);
    opacity: 1;
  }
}

@keyframes hiwawaTopbarHornWave {
  0% {
    transform: translateY(-50%) scale(0.7);
    opacity: 0;
  }
  25% {
    opacity: 0.45;
  }
  75% {
    transform: translateY(-50%) scale(1.7);
    opacity: 0.08;
  }
  100% {
    transform: translateY(-50%) scale(1.9);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.hiwawa-device-pc .hiwawa-topbar,
  body.hiwawa-device-pc .hiwawa-topbar__item {
    transition-duration: 0.1s;
  }
}
