/* Lazy Picks — Affiliate Site Styles */
:root {
  --green: #2d6a4f;
  --green-light: #40916c;
  --green-dark: #1b4332;
  --bg: #f0f7f4;
  --card: #ffffff;
  --text: #1a1a2e;
  --text-light: #555;
  --accent: #e9c46a;
  --accent-dark: #d4a73a;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --radius: 12px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-light); }

/* Nav */
nav { background: var(--green-dark); color: white; padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
nav .logo { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.5px; }
nav .logo span { color: var(--accent); }
nav a { color: rgba(255,255,255,0.85); margin: 0 0.75rem; font-size: 0.9rem; }
nav a:hover { color: var(--accent); }

/* Hero */
.hero { text-align: center; padding: 4rem 2rem 3rem; background: linear-gradient(135deg, var(--green-dark), var(--green-light)); color: white; }
.hero h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.hero p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* Sections */
.section { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem; }
.section-title { font-size: 1.8rem; margin-bottom: 0.5rem; color: var(--green-dark); }
.section-desc { color: var(--text-light); margin-bottom: 2rem; }

/* Category Cards */
.categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.category-card { background: var(--card); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); transition: transform 0.2s; }
.category-card:hover { transform: translateY(-4px); }
.category-card .emoji { font-size: 2.5rem; margin-bottom: 0.5rem; }
.category-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.category-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; }
.tag { display: inline-block; background: var(--green); color: white; font-size: 0.75rem; padding: 0.2rem 0.6rem; border-radius: 20px; margin-right: 0.3rem; }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.product-card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s; }
.product-card:hover { transform: translateY(-4px); }
.product-card .img-placeholder { height: 180px; background: linear-gradient(135deg, var(--green-light), #52b788); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,0.7); }
.product-card .info { padding: 1.25rem; }
.product-card .info h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.product-card .info p { color: var(--text-light); font-size: 0.85rem; margin-bottom: 0.75rem; }
.product-card .info .badge { display: inline-block; background: var(--accent); color: var(--green-dark); font-weight: 600; font-size: 0.75rem; padding: 0.2rem 0.5rem; border-radius: 6px; margin-bottom: 0.5rem; }

/* Button */
.btn { display: inline-block; background: var(--green); color: white; padding: 0.6rem 1.2rem; border-radius: 8px; font-weight: 500; font-size: 0.9rem; transition: background 0.2s; }
.btn:hover { background: var(--green-light); color: white; }
.btn-accent { background: var(--accent); color: var(--text); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.8rem; }

/* Placeholder Link */
.link-placeholder { display: inline-block; background: #e8e8e8; color: #999; padding: 0.4rem 0.9rem; border-radius: 8px; font-size: 0.8rem; cursor: not-allowed; }

/* Footer */
footer { background: var(--green-dark); color: rgba(255,255,255,0.7); text-align: center; padding: 2rem; font-size: 0.85rem; margin-top: 3rem; }
footer a { color: var(--accent); }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .hero { padding: 2.5rem 1.5rem 2rem; }
  .section { padding: 2rem 1.5rem; }
  .categories { grid-template-columns: 1fr; }
}
