@layer webflow {
  /*
    Blueprint “map” callouts: Webflow used parent font-size 0 / hover 1rem to
    toggle copy; re-style as a tooltip (card under the hot dot + upward caret).
    Scoped to `.blueprint` only (product PDP feature grid).
  */

  .blueprint {
    overflow: visible;
  }

  .blueprint .map_dot {
    justify-content: center;
    flex-shrink: 0;
  }

  .blueprint .map_dot,
  .blueprint .map_dot:hover {
    font-size: 0;
  }

  .blueprint .map_tag {
    --tooltip-bg: #141416;
    --tooltip-edge: #2a2a2e;

    position: absolute;
    z-index: 5;
    top: calc(100% + 10px);
    left: 50%;
    width: max-content;
    max-width: min(240px, 70vw);
    margin: 0;
    flex: initial;

    font-family: var(--read-text), system-ui, sans-serif;
    font-size: 10px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
    color: rgba(245, 245, 247, 0.92);

    background-color: var(--tooltip-bg);
    background-image: none;
    border: 1px solid var(--tooltip-edge);
    border-radius: 8px;
    padding: 10px 12px;
    box-shadow:
      0 4px 14px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.04) inset;

    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    -webkit-font-smoothing: antialiased;
    overflow: visible;
    outline: none;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.18s ease,
      visibility 0.18s ease,
      transform 0.18s ease;
    transform: translateX(-50%) translateY(4px);
  }

  /* Upward-pointing caret — reads as “speech bubble” tail to the dot above */
  .blueprint .map_tag::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 8px 7px;
    border-color: transparent transparent var(--tooltip-bg) transparent;
  }

  .blueprint .map_dot:hover .map_tag {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
