:root {
  --ink: #17251f;
  --muted: #53645c;
  --paper: #fbfaf6;
  --card: #ffffff;
  --leaf: #185c47;
  --leaf-dark: #0d4031;
  --sun: #f4bd4f;
  --line: #dfe5df;
  --max: 1120px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); line-height: 1.65; }
a { color: inherit; }
.site-header { max-width: var(--max); margin: auto; padding: 1.25rem; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); }
.brand { color: var(--leaf-dark); font-weight: 850; font-size: 1.35rem; text-decoration: none; letter-spacing: -.03em; }
.site-header span { color: var(--muted); font-size: .92rem; }
main { max-width: var(--max); margin: auto; padding: 2.5rem 1.25rem 5rem; }
.hero, .article-hero { max-width: 800px; padding: 3rem 0 1.5rem; }
h1, h2 { line-height: 1.12; letter-spacing: -.035em; }
h1 { margin: .3rem 0 1rem; font-size: clamp(2.45rem, 7vw, 5.3rem); }
.article-hero h1 { font-size: clamp(2.35rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); }
.lede { max-width: 720px; color: var(--muted); font-size: 1.18rem; }
.arabic-lede { max-width: 720px; font-size: 1.25rem; color: var(--leaf-dark); }
.eyebrow { margin: 0; color: var(--leaf); font-size: .78rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.disclosure { margin: 1.5rem 0 2rem; padding: 1rem 1.1rem; border: 1px solid #e0c26f; border-radius: 14px; background: #fff8df; font-size: .91rem; }
.guide-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.guide-card { min-height: 250px; padding: 1.5rem; border: 1px solid var(--line); border-radius: 20px; background: var(--card); box-shadow: 0 14px 35px rgba(23, 37, 31, .05); }
.guide-card h2 { margin: .7rem 0; }
.guide-card h2 a { text-decoration: none; }
.guide-card h2 a:hover, .text-link:hover { color: var(--leaf); }
.text-link { color: var(--leaf); font-weight: 750; }
.method, .checklist, .shopping-block, .arabic, .before-buying, .legal { max-width: 820px; margin-top: 3.25rem; }
.method, .shopping-block, .arabic { padding: 1.6rem; border-radius: 20px; background: #eef4ef; }
.breadcrumb { color: var(--muted); font-size: .9rem; }
.checklist li, .method li, .arabic li { margin: .7rem 0; padding-left: .35rem; }
.button-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; margin-top: 1.2rem; }
.shop-button { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 1rem; border-radius: 12px; background: var(--leaf); color: white; text-decoration: none; font-weight: 760; transition: transform .15s ease, background .15s ease; }
.shop-button:hover { transform: translateY(-1px); background: var(--leaf-dark); }
.arabic { font-family: Tahoma, Arial, sans-serif; }
.arabic .shop-button span { transform: rotate(180deg); }
.before-buying { border-top: 1px solid var(--line); padding-top: 1.3rem; color: var(--muted); }
footer { padding: 2rem 1.25rem; border-top: 1px solid var(--line); text-align: center; color: var(--muted); font-size: .88rem; }
code { background: #edf1ed; padding: .1rem .3rem; border-radius: 4px; }

@media (max-width: 700px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  main { padding-top: 1rem; }
  .hero { padding-top: 2rem; }
  .guide-grid, .button-grid { grid-template-columns: 1fr; }
  .guide-card { min-height: auto; }
}
