/* ── Tablet ≥640px ────────────────────────────────────────────── */
@media (min-width: 640px) {
  .promos-grid { grid-template-columns: repeat(3, 1fr); }

  /* Map taller on tablet */
  .location-map iframe { height: 320px; }

  /* Social: switch to 3-column grid, icon on top, text centered */
  .location-socials { flex-direction: row; }

  .loc-social {
    flex: 1; flex-direction: column; justify-content: center; align-items: center;
    gap: 12px; padding: 24px 16px; text-align: center;
    border-bottom: none; border-right: 1px solid var(--border);
  }
  .loc-social:last-child { border-right: none; border-bottom: none; }
  .loc-social::after { display: none; }

  .loc-social-icon {
    width: 52px; height: 52px; border-radius: 16px;
  }
  .loc-social-icon svg { width: 26px; height: 26px; }

  .loc-social-text { align-items: center; gap: 4px; }
  .loc-social-name { font-size: .63rem; letter-spacing: 1.2px; }
  .loc-social-handle { font-size: .88rem; }
}

/* ── Desktop ≥900px ───────────────────────────────────────────── */
@media (min-width: 900px) {
  .content {
    max-width: 760px;
    margin: 0 auto;
    padding: 28px 0 48px;
  }

  .promos-grid { grid-template-columns: repeat(3, 1fr); }

  /* Map full-height on desktop */
  .location-map iframe { height: 380px; }

  /* Address in header can show more text */
  .location-head-addr { max-width: 380px; }

  .app-header { padding: 18px 28px; }

  .pm-sheet {
    border-radius: 20px;
    max-width: 460px;
  }
}

/* ── Small mobile ≤480px ─────────────────────────────────────── */
@media (max-width: 480px) {
  .content { gap: 14px; padding: 14px 14px 36px; }

  .app-header { padding: 12px 16px; }

  .pm-body   { padding: 16px 16px 10px; gap: 14px; }
  .pm-footer { padding: 14px 16px; }

  .promo-body  { padding: 10px 12px 12px; }
  .promo-name  { font-size: .8rem; }
  .promo-value { font-size: 1.05rem; }

  /* Map a bit shorter on small phones */
  .location-map iframe { height: 220px; }
}

/* ── Tiny mobile ≤360px ───────────────────────────────────────── */
@media (max-width: 360px) {
  .btn-wa { font-size: .9rem; padding: 13px 18px; }

  .pm-type-btn { font-size: .78rem; padding: 11px 6px; }

  .promos-grid { grid-template-columns: repeat(2, 1fr); }
}
