/* Simple responsive styling */
:root{
  --primary:#d35400;
  --bg:#f7f7f7;
  --card:#ffffff;
  --muted:#666;
}
*{box-sizing:border-box}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;margin:0;background:var(--bg);color:#222}
.container{max-width:1000px;margin:0 auto;padding:1rem}
.site-header{background:var(--card);border-bottom:1px solid #eee}
.site-header .container{display:flex;align-items:center;justify-content:space-between;padding:1rem}
.brand{margin:0;color:var(--primary)}
.main-nav a{margin-left:1rem;color:#333;text-decoration:none}
.hero{background:linear-gradient(90deg, #fff, #fff);padding:2rem;border-radius:6px;margin:1rem 0;text-align:center}
.hero-logo{width:150px;height:auto;border-radius:50%;margin-bottom:1rem;box-shadow:0 4px 12px rgba(0,0,0,0.1)}
.btn{background:var(--primary);color:white;padding:0.5rem 1rem;border:none;border-radius:4px;cursor:pointer;text-decoration:none}
.features{display:flex;gap:1rem;margin:1rem 0}
.features article{background:var(--card);padding:1rem;border-radius:6px;flex:1}
.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1rem;margin-top:1rem}
.product-card{background:var(--card);padding:0.8rem;border-radius:6px;border:1px solid #eee;text-align:center}
.product-card img{width:100%;height:140px;object-fit:cover;border-radius:4px}
.price{color:var(--primary);font-weight:700}
.desc{color:var(--muted);font-size:0.9rem}
.cart-summary{background:var(--card);padding:1rem;border-radius:6px;margin-top:1rem}
.order-form input{width:100%;padding:0.5rem;margin:0.3rem 0;border:1px solid #ddd;border-radius:4px}
.contact-list{list-style:none;padding:0}
.site-footer{margin-top:2rem;padding:1rem 0;text-align:center;color:var(--muted)}
.note{font-size:0.9rem;color:var(--muted)}
@media (max-width:600px){
  .features{flex-direction:column}
}