/** Shopify CDN: Minification failed

Line 84:15 Expected "}" to go with "{"

**/
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Position above the text */
  left: 50%;
  margin-left: -60px; /* Center the tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* --- Locations grid for Topo stockists --- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.location {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fafafa;
}

.location h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.location p {
  margin: 3px 0;
  font-size: 14px;
  line-height: 1.4;
}

/* Mobile: stack into one column */
@media (max-width: 749px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}


.map-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 30px;
}

.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  width: 100%;
  height: 100%;