.find-us-hero {
  background: var(--color-lime);
  padding: clamp(2rem, 5vw, 4rem) var(--section-pad-x);
}
.find-us-hero__title {
  color: var(--color-black);
  margin: 18px 0 20px;
}
.find-us-hero__body {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(15px, 1vw + .5rem, 20px);
  color: var(--color-black);
  max-width: 480px;
  margin: 0 0 26px;
  line-height: 1.35;
}
.find-us-hero__note {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: clamp(13px, .6vw + .5rem, 15px);
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-black);
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  max-width: 520px;
  line-height: 1.4;
  margin: 0 0 4px;
}
.find-us-search {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 560px;
}
.find-us-search input {
  flex: 1 1 200px;
  font-family: var(--font-mono);
  font-size: 15px;
  padding: 15px 20px;
  border-radius: var(--radius-pill);
  border: 3px solid #0A0A0A;
  background: #fff;
  color: #0A0A0A;
}
.find-us-search button {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: #fff;
  background: #0A0A0A;
  border: none;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
}

/* Wrapper for the live store locator (`<div data-module="find-us">`).
   The widget styles itself inside a Shadow DOM, so this only positions it. */
.find-us-locator {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: url('/assets/images/bg-blue-grid.png') repeat;
}

.find-us-body {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .find-us-body { grid-template-columns: 1fr 1.4fr; }
}

.find-us-results {
  background: #0A0A0A;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.find-us-results__label {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-pink);
  letter-spacing: .14em;
  margin-bottom: 4px;
}
.find-us-result-card {
  background: #141414;
  border: 2px solid #222;
  border-radius: 16px;
  padding: 20px;
}
.find-us-result-card__bar {
  height: 14px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.find-us-result-card__line {
  height: 9px;
  background: #333;
  border-radius: 4px;
  margin-bottom: 6px;
}
.find-us-results__note {
  font-family: var(--font-accent);
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin-top: 6px;
}

.find-us-map {
  position: relative;
  background: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background-image:
    linear-gradient(rgba(10, 10, 10, .08) 2px, transparent 2px),
    linear-gradient(90deg, rgba(10, 10, 10, .08) 2px, transparent 2px);
  background-size: 40px 40px;
  padding: 20px;
}
.find-us-map__pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 4px solid #0A0A0A;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.find-us-map__label {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  color: #0A0A0A;
  background: #fff;
  border: 3px solid #0A0A0A;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  text-align: center;
}
