/* 🌿 دارچین — قهوه‌ای گرم، طلایی ملایم، بافت‌های طبیعی */
:root {
  --font: 'Vazirmatn', sans-serif;
  --accent: #9a5b2c;
  --accent-2: #c4884d;
  --bg: #fdf6ee;
  --text: #2e1a08;
  --muted: #7a5c3e;
  --card-bg: #fff8f0;
}
body {
  background:
    radial-gradient(800px 400px at 85% -5%, rgba(196,136,77,.12), transparent 60%),
    radial-gradient(600px 300px at 15% 105%, rgba(154,91,44,.1), transparent 55%),
    linear-gradient(180deg, #fdf6ee, #f5eadb);
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6b3a1f, #9a5b2c 40%, #c4884d 70%, #6b3a1f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .logo {
  border: 3px solid #c4884d;
  box-shadow: 0 0 0 5px rgba(196,136,77,.18), 0 12px 28px rgba(107,58,31,.2);
}
.btn-menu {
  background: linear-gradient(135deg, #9a5b2c, #c4884d);
  color: #fff;
  box-shadow: 0 8px 20px rgba(154,91,44,.35), inset 0 1px 0 rgba(255,255,255,.25);
  font-weight: 700;
}
.btn-menu:hover { background: linear-gradient(135deg, #7a4722, #b07840); }
.section-title h2 { font-weight: 700; color: #6b3a1f; }
.category-card {
  background: var(--card-bg);
  border: 1px solid rgba(196,136,77,.2);
  box-shadow: 0 10px 24px rgba(107,58,31,.08);
  animation: cardIn .45s ease both;
}
@keyframes cardIn { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }
.category-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(107,58,31,.14); }
.prod { border-top: 1px dashed rgba(196,136,77,.25); transition: transform .25s ease; }
.prod:hover { transform: translateX(-5px); background: rgba(196,136,77,.04); border-radius: 10px; }
.prod img { border-radius: 12px; border: 1px solid rgba(196,136,77,.25); }
.prod .pr { color: #9a5b2c; font-weight: 700; }
.branch-card {
  background: var(--card-bg);
  border: 1px solid rgba(196,136,77,.18);
  box-shadow: 0 6px 16px rgba(107,58,31,.06);
}
.branch-card a { color: #9a5b2c; }
footer { opacity: .45; font-size: .85rem; }
