/*
Theme Name: BakeryPress
Theme URI:  https://example.com/bakerypress
Author:     Your Name
Description: A simple, warm WordPress theme for bakeries.
Version:    1.0
Text Domain: bakerypress
*/

:root {
  --max-width: 1100px;
  --accent: #b85c2c;
  --background: #fffaf6;
  --card-bg: #fff;
  --muted: #666;
}

body {
  margin:0;
  font-family: "Georgia", serif;
  color:#333;
  background: var(--background);
  line-height:1.7;
}

a { color: var(--accent); text-decoration:none }
a:hover { text-decoration:underline }

.container { max-width: var(--max-width); margin:0 auto; padding:1rem; }

.site-header, .site-footer {
  background:#fff3e8;
  padding:1rem 0;
  text-align:center;
}

.site-title {
  margin:0;
  font-size:2rem;
  font-weight:bold;
}

.site-description { color: var(--muted); margin:0; }

.site-nav { margin-top:1rem; }
.site-nav ul { list-style:none; padding:0; margin:0; display:flex; gap:1rem; justify-content:center; }
.site-nav li { margin:0; }

.main { margin-top:2rem; }

.product-grid {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
  gap:1.5rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding:1rem;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
  text-align:center;
}

.product-card img { border-radius: 8px; width:100%; height:auto; }
.product-card h3 { margin:.5rem 0; font-size:1.2rem; }
.product-card p.price { color:var(--accent); font-weight:bold; margin:.5rem 0; }

.entry-title { margin-top:0; }

.section-title {
  text-align:center;
  font-size:2rem;
  margin:1rem 0 2rem;
  color: var(--accent);
}
