/* Acme Coffee Co. — simple demo styles */

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #333; background: #fafafa; line-height: 1.6; }

.site-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; background: #fff; border-bottom: 1px solid #e0e0e0; }
.logo { font-weight: 700; font-size: 1.3rem; color: #5d4037; }
nav a { margin-left: 20px; text-decoration: none; color: #555; font-weight: 500; }
nav a:hover { color: #3e2723; }

.hero { text-align: center; padding: 80px 20px; background: linear-gradient(135deg, #efebe9 0%, #d7ccc8 100%); }
.hero h1 { font-size: 2.4rem; margin-bottom: 15px; color: #3e2723; }
.hero p { font-size: 1.1rem; color: #5d4037; max-width: 500px; margin: 0 auto 30px; }

.btn { display: inline-block; padding: 14px 36px; font-size: 1rem; font-weight: 600; color: #fff; background: #2e7d32; border-radius: 6px; text-decoration: none; transition: background 0.2s; }
.btn:hover { background: #1b5e20; }

.products { max-width: 960px; margin: 60px auto; padding: 0 20px; }
.products h2 { text-align: center; margin-bottom: 30px; font-size: 1.8rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); text-align: center; padding-bottom: 20px; }
.card-img { height: 160px; }
.card h3 { margin: 15px 0 5px; }
.price { color: #2e7d32; font-weight: 700; margin-bottom: 12px; }
.card button { padding: 10px 24px; border: none; border-radius: 6px; background: #5d4037; color: #fff; font-size: 0.95rem; cursor: pointer; }
.card button:hover { background: #3e2723; }

footer { text-align: center; padding: 40px 20px; color: #888; font-size: 0.9rem; border-top: 1px solid #e0e0e0; margin-top: 40px; }

/* Demo controls */
#demo-controls { position: fixed; bottom: 16px; right: 16px; background: #263238; color: #fff; padding: 10px 14px; border-radius: 8px; font-size: 0.85rem; display: flex; gap: 8px; align-items: center; box-shadow: 0 4px 12px rgba(0,0,0,0.25); z-index: 9999; }
#demo-controls .demo-label { font-weight: 700; margin-right: 6px; color: #b0bec5; }
#demo-controls button, #demo-controls a { background: #37474f; border: none; color: #fff; padding: 6px 12px; border-radius: 4px; font-size: 0.8rem; cursor: pointer; text-decoration: none; }
#demo-controls button:hover, #demo-controls a:hover { background: #455a64; }
