*, *::before, *::after { box-sizing: border-box; }
body.shop {
  margin: 0; min-height: 100vh; display: flex; flex-direction: column;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", sans-serif; background: #fafafa; color: #111;
}
a { color: #2563eb; }
.shop-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; background: #fff; border-bottom: 1px solid #eee;
}
.shop-head h1 { margin: 0; font-size: 20px; }
.shop-head h1 a { color: inherit; text-decoration: none; }
.muted { color: #6b7280; font-size: 14px; }
.shop-main { max-width: 1000px; margin: 24px auto; padding: 0 16px; flex: 1; }
.shop-foot {
  margin-top: auto; padding: 20px 16px; border-top: 1px solid #eee;
  background: #fff; font-size: 13px; color: #6b7280; text-align: center; line-height: 1.6;
}
.shop-foot-inner { max-width: 1000px; margin: 0 auto; }
.shop-main.narrow { max-width: 520px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.card {
  background: #fff; border-radius: 10px; padding: 16px; box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.card img { width: 100%; height: 140px; object-fit: cover; border-radius: 6px; margin-bottom: 8px; }
.card h3 { margin: 0 0 8px; font-size: 16px; }
.price { font-size: 18px; font-weight: 700; color: #dc2626; margin: 8px 0; }
.desc { font-size: 13px; color: #4b5563; margin-bottom: 12px; max-height: 72px; overflow: hidden; }
.btn {
  display: inline-block; padding: 8px 14px; background: #2563eb; color: #fff !important;
  border-radius: 6px; text-decoration: none; font-size: 14px;
}

.shop-pager {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #4b5563;
}
.shop-pager__meta { text-align: center; }
.shop-pager__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
}
.shop-pager__current { color: #111; font-weight: 600; }
.shop-pager__btn {
  display: inline-block;
  padding: 8px 16px;
  background: #fff;
  color: #1d4ed8 !important;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}
.shop-pager__btn:hover { border-color: #93c5fd; background: #eff6ff; }
.shop-pager__btn--disabled {
  color: #9ca3af !important;
  background: #f9fafb;
  border-color: #e5e7eb;
  cursor: not-allowed;
  pointer-events: none;
}
