/* ======================================================================
   Order Growth Plugin — styles.css
   WHAT'S INSIDE
   - Base layout, typography, colors
   - Boxed highlight section
   - Buttons & simple utilities
   WHERE IT'S USED
   - Linked from index.php (head)
   ====================================================================== */

:root{
  --bg:#f5f7fb;        /* page background */
  --text:#111827;      /* base text */
  --muted:#6b7280;     /* muted/secondary text */
  --card:#ffffff;      /* card background */
  --border:#e5e7eb;    /* card borders */
  --accent:#246A73;    /* primary accent (buttons/links) */
  --radius:14px;
  --shadow:0 10px 28px rgba(2,8,20,.06);
}

/* Base */
*{ box-sizing:border-box }
html, body{ height:100% }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font:18px/1.85 "Noto Sans Bengali", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
a{ color:var(--accent); text-decoration:none }
a:hover{ text-decoration:underline }

/* Layout */
.wrap{ max-width:900px; margin:0 auto; padding:30px 16px 60px }
.section{ display:flex; flex-direction:column; gap:20px }
.block{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
}
h1{ margin:10px 0 16px; font-size:34px; letter-spacing:.3px; text-align:center }
h2{ font-size:22px; margin:6px 0 12px }

/* Highlight/Intro box */
.highlight-box{
  background:#fff8f0;
  border:2px solid var(--accent);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}
.highlight-box p{ margin:0 0 12px; font-size:19px }
.highlight-box ul{ margin:0; padding-left:22px; font-size:19px }
.highlight-box li+li{ margin-top:10px }

/* Download */
.download{ display:flex; gap:12px; align-items:center; flex-wrap:wrap }
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 18px; border-radius:10px;
  border:1px solid var(--accent);
  background:var(--accent); color:#fff;
  font-weight:700; cursor:pointer;
}
.btn[disabled]{ opacity:.6; cursor:not-allowed }
.muted{ color:var(--muted); font-size:14px }

/* Contact */
.contact a{ display:inline-block; margin-right:10px }

/* Footer */
footer{ margin-top:22px; text-align:center; color:var(--muted); font-size:14px }
