/* 双列酒局/会所卡片 */
.goods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
  background: var(--bg);
}

.goods-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  padding-bottom: 12px;
}

.goods-card-title {
  padding: 10px 10px 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  font-family: KaiTi, '楷体', serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.goods-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 10px 8px;
}

.goods-badge {
  padding: 2px 8px;
  font-size: 11px;
  color: #fff;
  background: #f57a8f;
  border-radius: 4px;
}

.goods-card-img {
  width: calc(100% - 20px);
  margin: 6px 10px 0;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  cursor: pointer;
  display: block;
  border-radius: 8px;
}

.goods-card-desc {
  padding: 8px 10px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  min-height: 54px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.goods-card-foot {
  padding: 0 10px;
  margin-top: 10px;
}

.btn-primary-block {
  display: block;
  width: 100%;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: none;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary-block:active {
  opacity: 0.9;
}


/* 我的菜单（对齐 mobile mine） */
.user-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 16px;
  background: #fff;
}

.user-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #e8f4fc;
}

.user-card-info {
  flex: 1;
  min-width: 0;
}

.user-card-info .name {
  font-size: 18px;
  font-weight: 700;
  color: #1a2a4a;
}

.user-card-info .sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.menu-list {
  margin: 12px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  border-bottom: 1px solid #f5f5f5;
  -webkit-tap-highlight-color: transparent;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:active {
  background: #fafafa;
}

.menu-item .value {
  color: var(--text-muted);
  font-size: 14px;
}

.menu-arrow {
  width: 16px;
  height: 16px;
  color: #ccc;
}

.login-center {
  padding: 25% 16px;
  text-align: center;
}

.login-center .btn-login {
  display: inline-block;
  width: 70%;
  padding: 12px;
  margin-top: 16px;
  background: var(--red);
  color: #fff;
  border-radius: 24px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

/* 单列图文卡片（高尔夫、名酒详情等） */
.media-card {
  margin: 12px;
  padding-bottom: 14px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.media-card-title {
  padding: 14px 14px 10px;
  font-size: 18px;
  font-weight: 700;
}

.media-card-img {
  display: block;
  width: calc(100% - 28px);
  margin: 0 14px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.media-card-desc {
  padding: 12px 14px 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.media-card-actions {
  padding: 12px 14px 0;
  margin-top: 6px;
}

.media-list {
  padding: 0 0 12px;
  background: var(--bg);
}
