:root {
  --bg: #fafafa;
  --card-bg: #ffffff;
  --text: #1f3a2e;
  --muted: #4b6558;
  --accent: #5f8f6d;
  --accent-soft: #dbeadd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.shop-wrap {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem 2rem;
}

.shop-title {
  margin-bottom: 1.25rem;
  font-size: 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.products-grid.search-results {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--accent-soft);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(31, 58, 46, 0.08);
}

.image-placeholder {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e7f1e5, #d7e8d9);
  color: var(--muted);
  font-size: 0.9rem;
  border-bottom: 1px dashed #b5cab9;
}

.product-info {
  padding: 0.9rem;
}

.product-name {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.product-desc {
  margin: 0 0 0.6rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.product-price {
  font-weight: 700;
  color: var(--accent);
}

.product-card img{
  width:100%;
  height:160px;
  object-fit:cover;
}

.search-empty {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}
