/* ── WhatsApp primary button ─────────────────────────────────── */
.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px 24px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700;
  letter-spacing: .2px; cursor: pointer; border: none;
  background: #25D366; color: #fff;
  box-shadow: 0 4px 28px rgba(37,211,102,.38);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn-wa:hover  { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(37,211,102,.55); filter: brightness(1.06); }
.btn-wa:active { transform: scale(.97); }
.btn-wa svg    { width: 22px; height: 22px; flex-shrink: 0; }

/* ── Location card ───────────────────────────────────────────── */
.location-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
}

/* Header */
.location-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.location-head-left {
  display: flex; align-items: center; gap: 12px; min-width: 0;
}
.location-head-icon {
  width: 38px; height: 38px; min-width: 38px; border-radius: 10px;
  background: rgba(var(--brand-rgb),.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.location-head-icon svg { width: 18px; height: 18px; }
.location-head-title {
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 3px; color: var(--muted);
  line-height: 1;
}
.location-head-addr {
  font-size: .82rem; font-weight: 500; color: var(--text);
  margin-top: 3px; line-height: 1.4;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 240px;
}
.location-head-cta {
  display: flex; align-items: center; gap: 5px; flex-shrink: 0;
  padding: 7px 12px; border-radius: 8px;
  background: rgba(var(--brand-rgb),.1);
  border: 1px solid rgba(var(--brand-rgb),.25);
  color: var(--brand); font-size: .74rem; font-weight: 700;
  transition: background .15s, border-color .15s;
  -webkit-tap-highlight-color: transparent;
}
.location-head-cta:hover { background: rgba(var(--brand-rgb),.2); border-color: rgba(var(--brand-rgb),.45); }
.location-head-cta svg  { width: 13px; height: 13px; }

/* Map iframe */
.location-map { line-height: 0; }
.location-map iframe { display: block; width: 100%; height: 260px; border: none; }

/* Directions CTA (no embed) */
.location-directions {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 32px 20px;
  color: var(--muted); font-size: .9rem; font-weight: 600;
  transition: color .15s, background .15s;
}
.location-directions:hover { background: var(--surface2); color: var(--text); }
.location-directions svg  { width: 20px; height: 20px; color: var(--brand); }

/* ── Social strip — mobile: stacked list ─────────────────────── */
.location-socials {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
}

.loc-social {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px;
  background: var(--surface); color: var(--text);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background .15s;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.loc-social:last-child { border-bottom: none; }
.loc-social:hover  { background: var(--surface2); }
.loc-social:active { background: var(--surface3); }

/* Colored platform icon */
.loc-social-icon {
  width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.loc-social-icon svg { width: 22px; height: 22px; display: block; }

/* Text block */
.loc-social-text {
  display: flex; flex-direction: column; flex: 1; min-width: 0; gap: 2px;
}
.loc-social-name {
  font-size: .62rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--muted); line-height: 1;
}
.loc-social-handle {
  font-size: .95rem; font-weight: 700; color: var(--text); line-height: 1.3;
}

/* Trailing chevron */
.loc-social::after {
  content: '';
  display: block; flex-shrink: 0;
  width: 7px; height: 7px;
  border-top: 2px solid var(--muted); border-right: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: border-color .15s, transform .15s;
  margin-right: 4px;
}
.loc-social:hover::after {
  border-color: var(--text);
  transform: rotate(45deg) translateX(2px);
}

/* Platform icon fills */
.loc-social.s-fb .loc-social-icon {
  background: linear-gradient(145deg,#1877F2,#0c5bbd);
  box-shadow: 0 4px 14px rgba(24,119,242,.35);
}
.loc-social.s-ig .loc-social-icon {
  background: linear-gradient(135deg,#f09433 0%,#e6683c 30%,#dc2743 55%,#bc1888 100%);
  box-shadow: 0 4px 14px rgba(220,39,67,.35);
}
.loc-social.s-tt .loc-social-icon {
  background: #000;
  box-shadow: 0 4px 14px rgba(254,44,85,.3), 0 2px 8px rgba(37,244,238,.12);
}
.loc-social:hover .loc-social-icon { box-shadow: none; }
