/* ── GS PACK TOOLTIP ─────────────────────────────────────── */
.gs-pack-tooltip {
  position: absolute;
  z-index: 9999;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  padding: 12px 14px;
  min-width: 240px;
  max-width: 300px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  font-size: 12px;
  line-height: 1.5;
  color: #333;
}
.gs-pack-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}
.gs-pack-tooltip-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1B8BDF;
  margin-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 5px;
}
.gs-pack-tooltip-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 3px 0;
  border-bottom: 1px solid #f7f7f7;
}
.gs-pack-tooltip-item:last-child {
  border-bottom: none;
}
.gs-pack-tooltip-name {
  font-weight: 600;
  color: #222;
  flex-shrink: 0;
}
.gs-pack-tooltip-attrs {
  color: #888;
  font-size: 11px;
  text-align: right;
  flex-wrap: wrap;
}
.gs-pack-tooltip-price {
  color: #1B8BDF;
  font-weight: 700;
  white-space: nowrap;
  font-size: 11px;
}
.gs-pack-tooltip-loading {
  color: #aaa;
  font-size: 11px;
  text-align: center;
  padding: 6px 0;
}
@media (max-width: 768px) {
  .gs-pack-tooltip { display: none !important; }
}
