:root{
  --brand:#c85a3f;
  --accent:#f5d0c5;
  --bg:#fffaf6;
  --text:#2b2b2b;
  --muted:#666;
}
*{box-sizing:border-box}
body{
  font-family:Montserrat,system-ui,Segoe UI,Roboto,"Helvetica Neue",Arial;
  margin:0;background:var(--bg);color:var(--text);line-height:1.4;
}
.container{max-width:1000px;margin:0 auto;padding:1rem}
.site-header{background:linear-gradient(90deg,var(--brand),#e07b5f);color:white}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:0.75rem 0}
.brand{margin:0;font-weight:700}
.main-nav a{color:white;margin:0 0.5rem;text-decoration:none;opacity:0.95}
.header-actions{display:flex;align-items:center;gap:0.75rem}
.cart-link{color:white;text-decoration:none}

.hero{padding:2rem 0;display:flex;align-items:center}
.hero-content{max-width:520px}
.hero-image img{max-width:420px;border-radius:8px}
.lead{font-size:1.1rem;color:var(--muted)}

.featured{padding:1.5rem 0}
.product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem}
.product-card{background:white;padding:0.75rem;border-radius:8px;box-shadow:0 2px 6px rgba(0,0,0,0.06);transition:transform 200ms ease,box-shadow 200ms ease}
.product-card:hover{transform:translateY(-6px);box-shadow:0 8px 20px rgba(0,0,0,0.08)}
.product-card img{width:100%;height:140px;object-fit:cover;border-radius:6px}
.price{font-weight:600;margin:0.5rem 0;color:var(--brand)}
.btn{background:var(--brand);color:white;padding:0.5rem 0.75rem;border-radius:6px;text-decoration:none}
button.add-to-cart{background:var(--accent);border:0;padding:0.5rem 0.75rem;border-radius:6px;cursor:pointer}

.site-footer{background:#f6f6f6;padding:1rem 0;margin-top:2rem}
.muted{color:var(--muted)}

.contact-form{max-width:560px;display:flex;flex-direction:column;gap:0.5rem}
input,textarea{padding:0.6rem;border:1px solid #ddd;border-radius:6px}
.error{color:#b00020;height:1em;font-size:0.9rem}
.success{color:#007a3d}

/* Dark theme */
body.dark{background:#121212;color:#eaeaea}
body.dark .site-header{background:#1f1f1f}
body.dark .product-card{background:#1b1b1b}
body.dark a{color:#eaeaea}

@media (max-width:700px){
  .hero{flex-direction:column;gap:1rem}
  .hero-image img{max-width:100%}
}
