/* 商品ページ「24時間以内に見た人数」表示 */
#firebase-viewer-notice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-width: 325px;
  min-height: 54px;
  padding: 12px 13px 12px 18px;
  border-radius: 5px;
  background: #fc8a05d9;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.24);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0.3s;
  display: none;
}

#firebase-viewer-notice.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}

#firebase-viewer-notice .firebase-viewer-icon {
  display: flex;
  width: 34px;
  height: 24px;
  margin-right: 10px;
  flex: 0 0 auto;
}

#firebase-viewer-notice .firebase-viewer-icon svg {
  width: 34px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#firebase-viewer-notice .firebase-viewer-text {
  flex: 1;
  white-space: nowrap;
}

#firebase-viewer-notice .firebase-viewer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: 14px;
  padding: 0;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #fff;
  color: #ff961e;
  cursor: pointer;
  font: 400 18px/1 Arial, sans-serif;
}

body:has(#firebase-viewer-notice) #floating-menu {
  bottom: 92px;
}

@media (prefers-reduced-motion: reduce) {
  #firebase-viewer-notice {
    transform: none;
    transition-duration: 0.01ms;
  }
}

@media (max-width: 767px) {
  #firebase-viewer-notice {
    right: 14px;
    bottom: 19px;
    left: 14px;
    min-width: 0;
    min-height: 41px;
    padding: 8px 9px 8px 13px;
    font-size: 14px;
    width: 83%;
    background: #fc8a05e6;
  }

  #firebase-viewer-notice .firebase-viewer-icon {
    width: 29px;
    height: 21px;
    margin-right: 7px;
  }

  #firebase-viewer-notice .firebase-viewer-icon svg {
    width: 29px;
    height: 21px;
  }

  #firebase-viewer-notice .firebase-viewer-close {
    width: 21px;
    height: 21px;
    margin-left: 8px;
    font-size: 17px;
  }
}
