/* Minimal styles for the one-page store */
:root{
  --bg:#f7f7f8;
  --card:#ffffff;
  --muted:#6c7076;
  --accent:#0b6efd;
  --radius:10px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:#111;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
}
.container{max-width:1000px;margin:0 auto;padding:28px}
.site-header{padding:28px 0 8px}
.site-header h1{margin:0;font-size:1.6rem}
.tagline{margin:6px 0 0;color:var(--muted)}
.products{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  margin-top:22px;
}
.product-card{
  background:var(--card);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 6px 18px rgba(16,24,40,0.06);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:150px;
  transition:transform .14s ease, box-shadow .14s ease;
}
.product-card:hover{transform:translateY(-6px);box-shadow:0 14px 30px rgba(16,24,40,0.08)}
.product_title{font-size:1.05rem;margin:0 0 8px}
.product_desc{margin:0 0 14px;color:var(--muted);font-size:0.95rem}
.price-row{margin-top:auto}
.product_price{font-weight:700;color:var(--accent);font-size:1.05rem}
.site-footer{padding:24px 0 48px;color:var(--muted)}
.site-footer a{color:var(--accent);text-decoration:none}
@media (max-width:420px){
  .container{padding:18px}
  .site-header h1{font-size:1.3rem}
}
