/* ══════════════════════════════════════════════════════════════
   Placeholder shown in place of the Google Maps iframe until the
   visitor asks for it. See partials/map-consent.js for the why.
   ══════════════════════════════════════════════════════════════ */

.map-consent {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
}

.map-ph {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 28px 24px;
  background:
    repeating-linear-gradient(45deg, #121212 0 12px, #141414 12px 24px);
  border: 1px solid #232323;
  border-radius: 12px;
}

.map-ph-pin {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 198, 26, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

.map-ph-pin svg {
  width: 21px;
  height: 21px;
  fill: var(--red, #FFC61A);
}

.map-ph-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.map-ph-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #8d8d8d;
  max-width: 340px;
  margin: 0;
}

.map-ph-btn {
  margin-top: 8px;
  background: var(--red, #FFC61A);
  color: #0a0a0a;
  border: none;
  padding: 11px 24px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s;
}

.map-ph-btn:hover { background: #E0AC00; }

.map-ph-alt { margin: 4px 0 0; font-size: 0.78rem; }

.map-ph-alt a {
  color: #7a7a7a;
  text-decoration: none;
  transition: color 0.18s;
}

.map-ph-alt a:hover { color: var(--red, #FFC61A); }

/* Once the iframe is in, the placeholder chrome must not linger */
.map-consent.map-loaded { border: none; background: none; }
