/* === LOC: TOPBAR-HOVER-POPOVER === */
.hover-wrap {
  position: relative;
}

.collect-popover,
.service-popover {
  background: #fff;
  border: 1px solid #e8edf6;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  left: 50%;
  min-width: 180px;
  opacity: 0;
  padding: 12px 14px;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 40px;
  transform: translate(-50%, 6px);
  transition: transform 0.2s ease, opacity 0.2s ease;
  visibility: hidden;
  z-index: 99;
}

.service-popover {
  min-width: 236px;
  padding: 14px 16px 16px;
}

.collect-popover {
  border-color: #e5ebf6;
  box-shadow: 0 12px 28px rgba(26, 43, 85, 0.16);
  min-width: 190px;
  padding: 14px 16px 16px;
}

.collect-popover::before,
.service-popover::before {
  border-color: transparent transparent #fff;
  border-style: solid;
  border-width: 0 6px 7px;
  content: "";
  left: 50%;
  position: absolute;
  top: -7px;
  transform: translateX(-50%);
}

.hover-wrap:hover .collect-popover,
.hover-wrap:hover .service-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.collect-title,
.service-title {
  color: #2f3a4f;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.collect-shortcut {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.key-btn {
  align-items: center;
  background: linear-gradient(180deg, #1f66dd, #0f52be);
  border: 1px solid #0d48aa;
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 10px rgba(17, 69, 168, 0.28);
  color: #fff !important;
  display: inline-flex;
  font-family: "Segoe UI", "SF Pro Text", Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  letter-spacing: 0.3px;
  line-height: 1;
  min-width: 54px;
  padding: 0 12px;
  text-align: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.plus {
  color: #3f4c62;
  font-size: 18px;
  font-weight: 500;
}

.service-desc {
  color: #8f9596;
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
}

.service-qr-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.service-qr-wrap[hidden] {
  display: none !important;
}

.service-qr-image {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #edf2fb;
  background: #fff;
  box-shadow: 0 10px 24px rgba(26, 43, 85, 0.12);
}

/* === LOC: PAGE-MAIN === */
.main {
  padding: 0 18px 26px;
}

