/* ==========================================================================
   Kippah title tooltips
   The (?) icon beside option titles, and its popover. Loaded on both the
   single-product page and the custom-product editor.
   ========================================================================== */
.kippah-tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-left: 6px;
  padding: 0;
  vertical-align: middle;
  border: none;
  border-radius: 50%;
  background: #3a7fd5;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease-out, transform 0.15s ease-out;
}

.kippah-tip:hover {
  background: #081f5c;
  transform: scale(1.12);
}

.kippah-tip-panel {
  position: absolute;
  z-index: 100001;
  width: 280px;
  max-width: calc(100vw - 24px);
  padding: 14px 30px 14px 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  line-height: 1.5;
  color: #333;
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.kippah-tip-title {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #081f5c;
}

.kippah-tip-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  margin: 0 0 10px;
  border-radius: 4px;
}

.kippah-tip-body p:last-child {
  margin-bottom: 0;
}

.kippah-tip-close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  color: #98a2b3;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.kippah-tip-close:hover {
  color: #081f5c;
}

@media (max-width: 480px) {
  .kippah-tip-panel {
    width: calc(100vw - 24px);
  }
}
