
:root {
  --accent: #fb923c; /* dawn orange */
  --accent-2: #60a5fa; /* sky */
  --bg: #fffdf8;
  --text: #111827;
  --muted: #6b7280;
  --card: #ffffff;
  --radius: 16px;
}
* { box-sizing: border-box; }
body { margin:0; font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial; background: var(--bg); color: var(--text); }
header { position: sticky; top: 0; background: rgba(255,255,255,0.85); border-bottom: 1px solid #eee; backdrop-filter: blur(8px); }
.nav { max-width: 1100px; margin: 0 auto; padding: 14px 22px; display: flex; align-items: center; justify-content: space-between; }
.brand { display:flex; align-items:center; gap:12px; font-weight:800; }
.brand img { height: 30px; }
.nav a { color: var(--text); text-decoration: none; margin-left: 18px; font-weight: 700; }
.container { max-width: 1100px; margin: 24px auto; padding: 0 22px; }
.hero { background: linear-gradient(180deg, #fff, #fff6ea); border-radius: var(--radius); padding: 30px; box-shadow: 0 10px 30px rgba(16,24,40,0.06); }
.hero h1 { margin: 0 0 6px; font-size: 1.9rem; letter-spacing: -0.3px; }
.hero p { margin: 0; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; margin-top: 24px; }
.card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: 0 6px 24px rgba(16,24,40,0.05); display: flex; flex-direction: column; }
.card img { width: 100%; height: 180px; object-fit: cover; }
.card .content { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.badge { display: inline-block; padding: 4px 8px; border-radius: 999px; background: #fff1e6; color: #9a3412; font-weight: 800; font-size: 12px; margin-bottom: 8px; }
.price { font-weight: 900; margin-top: auto; }
.btn { display: inline-block; padding: 10px 14px; border-radius: 12px; background: var(--accent); color: #111; text-decoration: none; font-weight: 900; border: none; cursor: pointer; }
.btn.secondary { background: #111827; color: #fff; }
footer { color: var(--muted); font-size: 14px; padding: 30px 0; text-align: center; }
.small { color: var(--muted); font-size: 14px; }
.kicker { text-transform: uppercase; letter-spacing: .2em; font-size: 12px; color: var(--muted); margin: 0 0 8px; }
.product-detail { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; }
.product-detail img { width: 100%; border-radius: var(--radius); height: 360px; object-fit: cover; }
.table { width: 100%; border-collapse: collapse; }
.table td, .table th { padding: 8px 0; border-bottom: 1px solid #eee; }
.source { font-size: 12px; color: var(--muted); }
.newsletter { display:flex; gap:8px; margin-top:12px; }
.newsletter input { padding:10px 12px; border-radius:10px; border:1px solid #e5e7eb; width: 260px; }
.banner { border-radius: 12px; padding: 10px 14px; background: #eef2ff; color: #3730a3; font-weight: 700; }
.cart-pill { font-size: 12px; background: #111827; color: #fff; padding: 4px 10px; border-radius: 999px; margin-left: 8px; }
@media (max-width: 880px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-detail img { height: 260px; }
}
