/* 全局基础重置 + 三端滚动适配 */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* iOS微信滚动顺滑回弹 */
  -webkit-overflow-scrolling: touch;
}

/* 卡片、地图容器开启硬件加速，解决安卓/鸿蒙滑动拖影、重绘卡顿 */
.card, .shop-item, .map-container {
  transform: translateZ(0);
  will-change: transform;
}

/* 移动端屏蔽hover多余样式，减少渲染压力 */
@media (hover: none) {
  a:hover, button:hover {
    background: unset !important;
  }
}

img {
  max-width: 100%;
  display: block;
}