/* ==========================================================================
   IPTV Shqip — stylesheet
   System fonts only: no render-blocking external font request, zero CLS.
   ========================================================================== */

:root {
  --red: #e41e26;
  --red-dark: #b4161d;
  --ink: #0d1220;
  --ink-2: #1a2135;
  --body: #33405c;
  --muted: #6b7794;
  --line: #e3e8f2;
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --bg-dark: #0d1220;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(13, 18, 32, .05), 0 8px 24px rgba(13, 18, 32, .07);
  --shadow-lg: 0 2px 4px rgba(13, 18, 32, .06), 0 18px 48px rgba(13, 18, 32, .12);
  --max: 1160px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.22; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.05rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1.1em; }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 20px; }
.container.narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.sr-only, .hp {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--red); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 4px; }

/* ------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 12px 22px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: .97rem; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(228, 30, 38, .3); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-alt); }
.btn-light { background: #fff; color: var(--ink); }
.btn-lg { padding: 15px 30px; font-size: 1.03rem; }
.btn-sm { padding: 9px 17px; font-size: .88rem; }
.btn-block { width: 100%; }

/* -------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .94); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: .65rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.12rem; font-weight: 800; letter-spacing: -.02em; }
.brand-text small { font-size: .72rem; color: var(--muted); }

.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a { color: var(--body); font-weight: 600; font-size: .95rem; }
.site-nav a:hover, .site-nav a.active { color: var(--red); text-decoration: none; }
.site-nav a.btn { color: #fff; }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .5rem 20px 1.2rem; display: none; box-shadow: var(--shadow);
  }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .site-nav a { padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .site-nav a.btn { margin-top: .9rem; border-bottom: none; }
}

/* ---------------------------------------------------------------- hero */
.hero {
  background: linear-gradient(165deg, #0d1220 0%, #1a2340 55%, #2a1622 100%);
  color: #e9edf7; padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero h1 { color: #fff; margin-bottom: .55em; }
.hero .lead { font-size: 1.11rem; color: #c3cbe0; max-width: 60ch; }
.hero .lead strong { color: #fff; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: #ff8a8f; background: rgba(228, 30, 38, .16);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 1.1rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin: 1.8rem 0 1.4rem; }
.hero .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .3); }
.hero .btn-ghost:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.hero-badges { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.2rem; font-size: .9rem; color: #9fabc7; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-media { order: -1; }
}

/* --------------------------------------------------------------- strip */
.strip { background: var(--ink); color: #fff; padding: 1.6rem 0; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.strip-grid div { display: flex; flex-direction: column; }
.strip-grid strong { font-size: 1.6rem; font-weight: 800; color: #fff; }
.strip-grid span { font-size: .84rem; color: #93a0bd; }
@media (max-width: 640px) { .strip-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; } }

/* ------------------------------------------------------------ sections */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-intro { font-size: 1.06rem; max-width: 72ch; color: var(--body); }
.page-head { padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.page-head .lead { font-size: 1.1rem; color: var(--body); }
.center-page { text-align: center; }
.err-code { font-size: 4.5rem; font-weight: 800; color: var(--red); margin: 0; line-height: 1; }
.err-detail { background: var(--bg-alt); padding: 1rem; border-radius: var(--radius-sm); overflow-x: auto; text-align: left; }

/* -------------------------------------------------------------- grids */
.grid { display: grid; gap: 1.6rem; }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 2.4rem; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.section-alt .feature { background: #fff; }
.feature-icon { font-size: 1.8rem; margin-bottom: .6rem; }
.feature h3 { margin-bottom: .4em; }
.feature p { margin: 0; font-size: .95rem; color: var(--muted); }

.channel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.4rem; margin: 2.2rem 0; }
.channel-group { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; }
.channel-group h2, .channel-group h3 { font-size: 1.02rem; margin-bottom: .7em; color: var(--red); }
.channel-group ul { list-style: none; margin: 0; padding: 0; font-size: .93rem; }
.channel-group li { padding: .3rem 0; border-bottom: 1px dashed var(--line); color: var(--body); }
.channel-group li:last-child { border-bottom: none; }

.steps { counter-reset: step; list-style: none; margin: 2rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem; }
.steps li { counter-increment: step; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.6rem 1.6rem 4.2rem; position: relative; }
.steps li::before {
  content: counter(step); position: absolute; left: 1.4rem; top: 1.5rem;
  width: 32px; height: 32px; border-radius: 50%; background: var(--red); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: .95rem;
}

.check-list { list-style: none; padding: 0; margin: 1.2rem 0; }
.check-list li { padding-left: 1.9rem; position: relative; margin-bottom: .6rem; }
.check-list li::before { content: "✔"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* -------------------------------------------------------------- cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-media { display: block; aspect-ratio: 16 / 9; background: var(--bg-alt); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card-title { font-size: 1.1rem; margin-bottom: .5em; }
.card-title a { color: var(--ink); }
.card-title a:hover { color: var(--red); text-decoration: none; }
.card-excerpt { font-size: .93rem; color: var(--muted); flex: 1; margin-bottom: 1rem; }
.card-meta { font-size: .82rem; color: var(--muted); display: flex; gap: .5rem; flex-wrap: wrap; }

.tag {
  display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--red); background: rgba(228, 30, 38, .09);
  padding: 4px 11px; border-radius: 999px; margin-bottom: .8rem;
}
.tag:hover { text-decoration: none; background: rgba(228, 30, 38, .16); }

/* -------------------------------------------------------------- plans */
.plans { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.6rem; margin-top: 2.4rem; align-items: start; }
.plan { background: #fff; border: 2px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; position: relative; display: flex; flex-direction: column; }
.plan-featured { border-color: var(--red); box-shadow: var(--shadow-lg); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; font-size: .74rem; font-weight: 700;
  padding: 5px 15px; border-radius: 999px; white-space: nowrap;
}
.plan-name { font-size: 1.15rem; margin-bottom: .3em; }
.plan-price { margin: 0 0 1.2rem; display: flex; align-items: baseline; gap: .25rem; flex-wrap: wrap; }
.plan-price .amount { font-size: 2.6rem; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.plan-price .currency { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.plan-price small { color: var(--muted); font-size: .9rem; }
.plan-features { list-style: none; padding: 0; margin: 0 0 1.6rem; flex: 1; font-size: .93rem; }
.plan-features li { padding: .45rem 0 .45rem 1.65rem; position: relative; border-bottom: 1px solid var(--line); }
.plan-features li::before { content: "✔"; position: absolute; left: 0; color: var(--red); }
.plan-features li:last-child { border-bottom: none; }

/* ----------------------------------------------------------------- FAQ */
.faq { margin-top: 1.8rem; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .8rem; overflow: hidden; }
.faq summary { padding: 1.15rem 1.4rem; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--red); font-weight: 400; line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: "−"; }
.faq summary h3 { margin: 0; font-size: 1.03rem; }
.faq-answer { padding: 0 1.4rem 1.3rem; color: var(--body); font-size: .96rem; }
.faq-answer p { margin: 0; }

/* -------------------------------------------------------------- prose */
.prose { font-size: 1.06rem; }
.prose h2 { margin-top: 2.2em; padding-top: .3em; scroll-margin-top: 90px; }
.prose h3 { margin-top: 1.8em; scroll-margin-top: 90px; }
.prose ul, .prose ol { padding-left: 1.4rem; margin-bottom: 1.3em; }
.prose li { margin-bottom: .45em; }
.prose img { border-radius: var(--radius); margin: 1.8em 0; box-shadow: var(--shadow); }
.prose blockquote {
  margin: 1.8em 0; padding: 1.1rem 1.5rem; border-left: 4px solid var(--red);
  background: var(--bg-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink-2);
}
.prose blockquote p:last-child { margin: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.8em 0; font-size: .95rem; display: block; overflow-x: auto; }
.prose th, .prose td { padding: .8rem 1rem; border: 1px solid var(--line); text-align: left; }
.prose th { background: var(--bg-alt); font-weight: 700; color: var(--ink); }
.prose code { background: var(--bg-alt); padding: .15em .45em; border-radius: 5px; font-size: .9em; }
.prose pre { background: var(--ink); color: #e8ecf6; padding: 1.2rem; border-radius: var(--radius-sm); overflow-x: auto; }
.prose pre code { background: none; padding: 0; color: inherit; }

/* --------------------------------------------------------------- post */
.post-head { padding: clamp(2.2rem, 5vw, 3.5rem) 0 1.6rem; }
.post-meta { font-size: .9rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: .5rem; }
.post-cover { margin: 0 0 2.4rem; }
.post-cover img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 40 / 21; object-fit: cover; }
.post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 3rem; align-items: start; padding-bottom: 3rem; }
.post-main { min-width: 0; }
@media (max-width: 980px) { .post-layout { grid-template-columns: 1fr; gap: 2.4rem; } }

.toc { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin-bottom: 2.4rem; }
.toc h2 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .8em; }
.toc ol { margin: 0; padding-left: 1.2rem; font-size: .94rem; }
.toc li { margin-bottom: .35em; }
.toc .toc-h3 { margin-left: 1rem; font-size: .89rem; }
.toc a { color: var(--body); }
.toc a:hover { color: var(--red); }

.post-faq { margin-top: 3rem; }
.post-cta { margin-top: 3rem; background: linear-gradient(140deg, #0d1220, #24182b); color: #dfe5f2; border-radius: var(--radius); padding: 2rem; }
.post-cta h2 { color: #fff; font-size: 1.35rem; }
.post-cta p { color: #b5bfd6; }

.post-side { position: sticky; top: 92px; display: grid; gap: 1.4rem; }
@media (max-width: 980px) { .post-side { position: static; } }
.side-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; }
.side-box h2 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .9em; }
.side-list { list-style: none; margin: 0; padding: 0; font-size: .95rem; }
.side-list li { border-bottom: 1px solid var(--line); }
.side-list li:last-child { border-bottom: none; }
.side-list a { display: flex; justify-content: space-between; align-items: center; gap: .5rem; padding: .6rem 0; color: var(--body); }
.side-list a:hover { color: var(--red); text-decoration: none; }
.count { font-size: .78rem; color: var(--muted); background: var(--bg-alt); padding: 2px 9px; border-radius: 999px; }
.side-cta { background: var(--bg-alt); }
.side-cta h2 { color: var(--ink); font-size: 1.05rem; text-transform: none; letter-spacing: 0; }
.side-cta p { font-size: .92rem; color: var(--muted); }

/* -------------------------------------------------- breadcrumbs / nav */
.breadcrumbs { background: var(--bg-alt); border-bottom: 1px solid var(--line); font-size: .86rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: .8rem 0; }
.breadcrumbs li { display: flex; gap: .45rem; align-items: center; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs .sep { color: var(--line); }
.breadcrumbs [aria-current] { color: var(--ink); font-weight: 600; }

.cat-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.2rem; }
.cat-pills a {
  padding: 8px 17px; border: 1px solid var(--line); border-radius: 999px;
  font-size: .89rem; font-weight: 600; color: var(--body); background: #fff;
}
.cat-pills a:hover { border-color: var(--ink); text-decoration: none; }
.cat-pills a.active { background: var(--red); border-color: var(--red); color: #fff; }
.cat-pills a.active .count { background: rgba(255, 255, 255, .25); color: #fff; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 3rem; flex-wrap: wrap; }
.page-info { font-size: .9rem; color: var(--muted); }
.empty { text-align: center; color: var(--muted); padding: 3rem 0; }

/* -------------------------------------------------------------- forms */
.search-form { display: flex; gap: .6rem; margin-top: 1.6rem; max-width: 520px; }
.search-form input {
  flex: 1; padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px;
  font-size: .97rem; font-family: inherit; background: #fff; color: var(--ink);
}
.form { max-width: 560px; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .4rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 1rem; font-family: inherit; background: #fff; color: var(--ink);
}
.field textarea { resize: vertical; }
.alert { padding: 1rem 1.3rem; border-radius: var(--radius-sm); margin-bottom: 1.6rem; font-weight: 600; }
.alert-ok { background: #e7f7ee; color: #12683f; border: 1px solid #b9e8cd; }
.alert-error { background: #fdeaea; color: #971b1b; border: 1px solid #f6c6c6; }
.contact-alt { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.contact-alt ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 1.4rem; }

/* ----------------------------------------------------------- CTA band */
.cta-band { background: linear-gradient(135deg, var(--red), #8e1219); color: #fff; padding: clamp(3rem, 6vw, 4.5rem) 0; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .9); font-size: 1.08rem; margin-bottom: 1.8rem; }

/* -------------------------------------------------------------- footer */
.site-footer { background: var(--bg-dark); color: #9aa6c2; padding: 3.5rem 0 1.6rem; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.4rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.brand-footer { color: #fff; margin-bottom: 1rem; }
.brand-footer strong { font-size: 1.1rem; }
.footer-title { font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; color: #fff; margin-bottom: 1em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { color: #9aa6c2; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 1rem; }
.footer-social a { color: #fff; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 2.6rem; padding-top: 1.5rem; font-size: .86rem; }
.footer-bottom p { margin: 0 0 .3rem; }

/* ------------------------------------------------------------ checkout */
.order-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.6rem; margin-bottom: 1.6rem; flex-wrap: wrap;
}
.order-summary h2 { font-size: 1.15rem; margin: 0 0 .2em; }
.order-summary p { margin: 0; font-size: .9rem; }
.order-total { text-align: right; display: flex; flex-direction: column; }
.order-total strong { font-size: 1.7rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.order-total small { font-size: .85rem; }
.order-features { margin-bottom: 2.2rem; }
.pay-title { font-size: 1.05rem; margin: 2rem 0 1rem; }
.pay-methods { display: grid; gap: .8rem; }
.pay-note { margin-top: 1.2rem; text-align: center; }
.field small { display: block; margin-top: .35rem; font-size: .84rem; }

/* ----------------------------------------------------------- WhatsApp */
:root {
  --wa: #25d366;
  --wa-dark: #128c7e;
  --wa-deep: #075e54;
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
  box-shadow: 0 6px 18px rgba(37, 211, 102, .3);
}
.btn-wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); color: #fff; }
.btn-wa .wa-icon { flex-shrink: 0; }

.btn-wa-ghost {
  background: transparent;
  color: var(--wa-deep);
  border-color: var(--wa);
  box-shadow: none;
}
.btn-wa-ghost:hover { background: rgba(37, 211, 102, .1); color: var(--wa-deep); }

/* Header CTA keeps its white text on the green pill */
.site-nav a.btn-wa { color: #fff; }

/* Contact page panel */
.wa-panel {
  background: linear-gradient(150deg, #f2fdf6, #e8faf0);
  border: 1px solid #b9ecd0;
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  margin-bottom: 2.4rem;
}
.wa-panel-icon { color: var(--wa-dark); line-height: 1; margin-bottom: .6rem; }
.wa-panel h2 { margin-bottom: .4em; }
.wa-panel p { max-width: 46ch; margin-inline: auto; }
.wa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  margin: 1.6rem 0 1rem;
}
.wa-number { font-size: .95rem; color: var(--body); margin: 0; }
.wa-number strong { color: var(--ink); letter-spacing: .02em; }

/* Alternative-order block on checkout */
.wa-alt {
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.wa-alt p { margin-bottom: .8rem; font-size: .92rem; }

.footer-wa { margin-top: 1.1rem; }

/* Contact page cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.contact-card h2 { font-size: 1.02rem; margin-bottom: .5em; }
.contact-card p { margin: 0; font-size: .93rem; color: var(--muted); }

.contact-note {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
}
.contact-note h2 { font-size: 1.05rem; }

/* Floating button: the CTA is reachable from any scroll position. */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  transition: transform .15s ease, background .15s ease;
}
.wa-float:hover { background: var(--wa-dark); transform: scale(1.06); text-decoration: none; }
.wa-float svg { width: 30px; height: 30px; }
@media print { .wa-float { display: none; } }

/* -------------------------------------------------------- print / dark */
@media print {
  .site-header, .site-footer, .post-side, .post-cta, .cta-band, .breadcrumbs { display: none; }
  body { font-size: 12pt; color: #000; }
}
