/* Default: Mobile */
.yometro-logo {
  height: clamp(40px, 4vw, 50px);
  width: auto;
}

/* Desktop */
@media (min-width: 768px) {
  .yometro-logo {
    height: 50px;
  }
}



.heading-size {
  font-size: 1.1rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .heading-size {
    font-size: 2rem; /* close to display-5 */
  }
}

section {
    scroll-margin-top: 60px; /* adjust equal to sticky nav height */ 
}
        
.nearby-slider {
  scroll-snap-type: x mandatory;
}

.nearby-slider .card {
  scroll-snap-align: start;
}

.nearby-slider::-webkit-scrollbar {
  display: none; /* Hide scrollbar for cleaner look */
}

/* responsive fixed heights */
.map-wrapper { width:100%; height:250px; }
@media (min-width: 768px) { .map-wrapper { height:360px; } }
@media (min-width: 1200px) { .map-wrapper { height:460px; } }

/* ensure iframe fully fills wrapper */
.map-wrapper iframe { width:100%; height:100%; border:0; display:block; }

.scrollable-div {
  max-height: 300px;   /* adjust height as needed */
  overflow-y: auto;
  padding-right: 6px;  /* spacing so scrollbar doesn’t overlap */
}

.scrollable-div::-webkit-scrollbar {
  width: 6px;
}
.scrollable-div::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 3px;
}
.scrollable-div::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.no-focus:focus {
  outline: none;
  box-shadow: none;
}

/* Share stack sits ABOVE scroll button */
.share-stack-fixed {
  position: fixed;
  right: 20px;
  bottom: 80px; /* ⬅ spacing above scroll button */
  z-index: 1045;
}

.share-stack-fixed .btn {
  width: 30px;
  height: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile: convert to horizontal bar */
@media (max-width: 768px) {
  .share-stack-fixed {
    right: 7.5%;
    transform: translateX(50%);
    bottom: 76px;
  }

  .share-stack-fixed > div {
    flex-direction: row;
  }
}
