/* =====================================================================
   AStickerPrinting UK - homepage sections, product page extras and the
   sticky mobile quote bar. Everything is scoped under .asp-* so nothing
   leaks into the theme, Bootstrap or the header.

   Colour roles (the structure of the hangtagsco.com build, rebuilt in
   this site's own green - never the reference yellow):
     accent      #00aa55  theme --cnvs-themecolor. Structure + wayfinding:
                          offset panels, top rules, chip edges, stars, dashes.
                          3.05:1 on white, so it is never used for text or
                          as a fill behind white text.
     accent-deep #007a42  Action: button fills with white text (5.44:1) and
                          green text on white (5.44:1). Same value the
                          category pages use.
     accent-edge #00652f  2px bottom edge / hover on action buttons (white
                          text on it is 7.2:1).
     mark        #bfe9d3  Emphasis: ~25% tint behind the H1 head term; ink
                          #15202a on it is 12.4:1.
   Measured theme gotchas: the theme forces h1 { font-size:
   var(--cnvs-font-size-h1) !important } and an inline style sets
   span { font-size: 18px } - so set the variable and reset spans.
   ===================================================================== */
.asp-scope, .asp-hero, .asp-trust, .asp-feat, .asp-fp, .asp-eco, .asp-why, .asp-cta, .asp-tst, .asp-intro, .asp-footer, .asp-mbar, .asp-pdp {
  --asp-accent: var(--cnvs-themecolor, #00aa55);
  --asp-accent-deep: #007a42;
  --asp-accent-edge: #00652f;
  --asp-mark: #bfe9d3;
  --asp-tint: #e8f6ee;
  --asp-ink: #15202a;
  --asp-body: #4f5f6a;
  --asp-muted: #5f6e78;
  --asp-line: #e1e9e5;
  --asp-surface: #f3f7f5;
  --asp-radius: 12px;
  color: var(--asp-body);
  font-size: 16px;
  line-height: 1.65;
}
.asp-hero *, .asp-trust *, .asp-feat *, .asp-fp *, .asp-eco *, .asp-why *, .asp-cta *, .asp-tst *, .asp-intro *, .asp-footer *, .asp-mbar *, .asp-pdp * { box-sizing: border-box; }
.asp-hero span, .asp-trust span, .asp-feat span, .asp-fp span, .asp-eco span, .asp-why span, .asp-cta span, .asp-tst span, .asp-intro span, .asp-footer span, .asp-mbar span, .asp-pdp span { font-size: inherit; }
.asp-wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.asp-hero h1, .asp-hero h2, .asp-feat h2, .asp-feat h3, .asp-fp h2, .asp-fp h3, .asp-eco h2, .asp-why h2, .asp-why h3, .asp-cta h2, .asp-tst h2, .asp-intro h2, .asp-footer h2 {
  color: var(--asp-ink); font-weight: 700; letter-spacing: -.015em; text-transform: none; margin: 0;
}

/* eyebrow with the short accent dash (wayfinding) */
.asp-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--asp-muted); margin: 0 0 12px; }
.asp-eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--asp-accent); border-radius: 2px; }
.asp-eyebrow--both::after { content: ""; width: 22px; height: 3px; background: var(--asp-accent); border-radius: 2px; }

/* buttons (action) */
.asp-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 6px; font-weight: 700; font-size: 16px; line-height: 1.2; text-decoration: none !important; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.asp-btn--primary { background: var(--asp-accent-deep) !important; color: #fff !important; border-bottom: 2px solid var(--asp-accent-edge); }
.asp-btn--primary:hover, .asp-btn--primary:focus { background: var(--asp-accent-edge) !important; color: #fff !important; }
.asp-btn--outline { background: transparent !important; color: var(--asp-ink) !important; border: 2px solid var(--asp-ink); padding: 11px 22px; }
.asp-btn--outline:hover, .asp-btn--outline:focus { background: var(--asp-ink) !important; color: #fff !important; }
.asp-btn--light { background: #fff !important; color: var(--asp-ink) !important; border-bottom: 2px solid var(--asp-accent); }
.asp-btn--light:hover, .asp-btn--light:focus { background: var(--asp-tint) !important; }
.asp-btn:focus-visible, .asp-link:focus-visible { outline: 3px solid var(--asp-accent); outline-offset: 3px; }
.asp-link { color: var(--asp-ink) !important; font-weight: 700; text-decoration: none !important; border-bottom: 2px solid var(--asp-accent); padding-bottom: 2px; }
.asp-link:hover { border-bottom-color: var(--asp-ink); }

/* ---- 2. hero ---- */
.asp-hero { background: linear-gradient(180deg, var(--asp-surface) 0%, #fff 100%); padding: 56px 0 60px; border-bottom: 1px solid var(--asp-line); --cnvs-font-size-h1: clamp(32px, 4.2vw, 48px); }
.asp-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.asp-hero h1 { font-size: clamp(32px, 4.2vw, 48px); line-height: 1.12; letter-spacing: -.025em; margin: 0 0 16px; color: var(--asp-ink) !important; }
.asp-mark { background: linear-gradient(transparent 56%, var(--asp-mark) 56%, var(--asp-mark) 93%, transparent 93%); padding: 0 3px; border-radius: 1px; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.asp-hero__sub { font-size: 18px; line-height: 1.6; max-width: 560px; margin: 0 0 20px; color: var(--asp-body); }
.asp-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 24px; }
.asp-chips li { font-size: 13px; font-weight: 600; color: var(--asp-ink); background: #fff; border: 1px solid var(--asp-line); border-left: 3px solid var(--asp-accent); border-radius: 4px; padding: 6px 11px; line-height: 1.4; margin: 0; }
.asp-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.asp-stage { position: relative; display: inline-block; padding: 16px 16px 0 0; max-width: 100%; }
.asp-stage::before { content: ""; position: absolute; top: 0; right: 0; width: 62%; height: 62%; background: var(--asp-accent); border-radius: 16px; z-index: 0; }
.asp-stage img { position: relative; z-index: 1; display: block; max-width: 100%; height: auto; border-radius: 16px; background: #fff; box-shadow: 0 12px 30px rgba(15, 17, 20, .14); }

/* ---- 3. trust bar ---- */
.asp-trust { background: #fff; border-bottom: 1px solid var(--asp-line); }
.asp-trust ul { list-style: none; display: flex; flex-wrap: wrap; margin: 0; padding: 0; }
.asp-trust li { flex: 1 1 200px; margin: 0; padding: 16px 18px; text-align: center; border-right: 1px solid var(--asp-line); border-top: 3px solid var(--asp-accent); }
.asp-trust li:last-child { border-right: none; }
.asp-trust .n { display: block; font-weight: 800; font-size: 16px; color: var(--asp-ink); letter-spacing: -.01em; }
.asp-trust .l { display: block; font-size: 13px; color: var(--asp-muted); margin-top: 3px; }
.asp-trust a { color: inherit !important; text-decoration: none !important; }
.asp-trust a:hover .l { text-decoration: underline; }
.asp-stars { color: var(--asp-accent); letter-spacing: -1px; }

/* shared section head */
.asp-section { padding: 68px 0; }
.asp-section--surface { background: var(--asp-surface); }
.asp-head { max-width: 720px; margin: 0 auto 38px; text-align: center; }
.asp-head h2 { font-size: clamp(26px, 3.2vw, 36px); margin: 0 0 12px; }
.asp-head p { margin: 0; color: var(--asp-muted); font-size: 16.5px; }

/* ---- 4. feature cards ---- */
.asp-feat__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.asp-feat__card { display: flex; flex-direction: column; height: 100%; padding: 26px 22px 22px; background: #fff; border: 1px solid var(--asp-line); border-top: 3px solid var(--asp-accent); border-radius: 10px; text-decoration: none !important; color: inherit !important; transition: transform .18s ease, box-shadow .18s ease; }
.asp-feat__card:hover, .asp-feat__card:focus { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(15, 17, 20, .10); }
.asp-feat__card--alt { background: var(--asp-tint); }
.asp-feat__card h3 { font-size: 18px; margin: 0 0 8px; }
.asp-feat__card p { flex: 1 1 auto; margin: 0 0 16px; font-size: 15px; line-height: 1.6; }
.asp-feat__card .asp-link { align-self: flex-start; font-size: 14px; }

/* ---- 5. popular sticker types ---- */
.asp-fp__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.asp-pc { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--asp-line); border-radius: 10px; overflow: hidden; text-decoration: none !important; color: inherit !important; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.asp-pc:hover, .asp-pc:focus-visible { border-color: var(--asp-accent); box-shadow: 0 6px 18px rgba(0, 0, 0, .08); transform: translateY(-3px); }
.asp-pc__media { display: block; position: relative; width: 100%; padding-top: 75%; background: var(--asp-surface); overflow: hidden; }
.asp-pc__media img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.asp-pc__body { display: flex; flex-direction: column; flex: 1 1 auto; padding: 16px; }
.asp-pc__title { font-size: 16px; font-weight: 700; color: var(--asp-ink); margin: 0 0 6px; line-height: 1.35; }
.asp-pc__blurb { display: block; font-size: 14px; line-height: 1.55; color: var(--asp-muted); margin: 0 0 14px; flex: 1 1 auto; }
.asp-pc__cta { align-self: flex-start; font-size: 14px; font-weight: 700; color: var(--asp-ink); border-bottom: 2px solid var(--asp-accent); padding-bottom: 2px; }

/* ---- 6. materials ---- */
.asp-eco__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.asp-eco h2 { font-size: clamp(26px, 3.2vw, 36px); margin: 0 0 14px; }
.asp-eco__lead { font-size: 16.5px; max-width: 54ch; margin: 0 0 22px; }
.asp-eco__list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.asp-eco__list li { position: relative; padding-left: 26px; margin: 0; font-size: 15px; line-height: 1.5; }
.asp-eco__list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 15px; height: 15px; border-radius: 50%; background: var(--asp-accent); }
.asp-eco__list li::after { content: ""; position: absolute; left: 4.5px; top: 8px; width: 6px; height: 3px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }
.asp-eco__list a { color: var(--asp-ink) !important; text-decoration: none !important; border-bottom: 1px solid var(--asp-line); }
.asp-eco__list a:hover { border-bottom-color: var(--asp-accent); }
.asp-eco__note { margin: 16px 0 0; font-size: 14px; color: var(--asp-muted); }

/* ---- 7. why + FAQ ---- */
.asp-why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.asp-why h3.asp-why__h { font-size: 20px; margin: 0 0 16px; }
.asp-faq details { border-bottom: 1px solid var(--asp-line); padding: 0; }
.asp-faq summary { cursor: pointer; list-style: none; padding: 18px 34px 18px 0; position: relative; font-weight: 700; color: var(--asp-ink); font-size: 16px; }
.asp-faq summary::-webkit-details-marker { display: none; }
.asp-faq summary::after { content: "+"; position: absolute; right: 4px; top: 14px; font-size: 22px; font-weight: 400; color: var(--asp-accent-deep); }
.asp-faq details[open] summary::after { content: "\2212"; }
.asp-faq .asp-faq__a { padding: 0 0 18px; font-size: 15px; }
.asp-faq .asp-faq__a p { margin: 0 0 .7em; }
.asp-faq summary:focus-visible { outline: 3px solid var(--asp-accent); outline-offset: 2px; }
.asp-whylist { list-style: none; padding: 0; margin: 0 0 28px; }
.asp-whylist li { display: flex; gap: 16px; padding: 0 0 20px; margin: 0 0 20px; border-bottom: 1px solid var(--asp-line); }
.asp-whylist li:last-child { border-bottom: none; margin-bottom: 0; }
.asp-whylist .num { flex: none; display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 8px; background: var(--asp-tint); border: 2px solid var(--asp-accent); color: var(--asp-ink); font-size: 13px; font-weight: 800; }
.asp-whylist h3 { font-size: 17px; margin: 6px 0 6px; }
.asp-whylist p { font-size: 15px; margin: 0; }
.asp-why__cta { padding: 22px; border: 1px solid var(--asp-line); border-top: 3px solid var(--asp-accent); border-radius: 10px; background: #fff; }
.asp-why__cta p { font-weight: 600; color: var(--asp-ink); margin: 0 0 14px; }
.asp-why__cta .asp-link { margin-left: 14px; font-size: 15px; }

/* ---- 8. quote CTA card ---- */
.asp-cta__card { position: relative; overflow: hidden; background: radial-gradient(120% 140% at 15% 0%, #0a3d2c 0%, #062b1f 55%, #041a13 100%); color: #d7e4de; padding: 60px 20px 56px; text-align: center; }
.asp-cta__card::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--asp-accent); }
.asp-cta__kicker { color: #b9cdc4 !important; font-size: 15px; margin: 0 0 12px; }
.asp-cta__card h2 { color: #fff !important; font-size: clamp(24px, 3.2vw, 34px); margin: 0 0 22px; }
.asp-cta__points { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; padding: 0; margin: 0 0 28px; }
.asp-cta__points li { font-size: 13px; font-weight: 600; color: #e6efeb; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-left: 3px solid var(--asp-accent); border-radius: 4px; padding: 6px 12px; margin: 0; }

/* ---- 9. testimonials ---- */
.asp-tst__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.asp-tst__card { display: flex; flex-direction: column; align-items: center; height: 100%; margin: 0; padding: 26px 20px 22px; background: #fff; border: 1px solid var(--asp-line); border-top: 3px solid var(--asp-accent); border-radius: 10px; text-align: center; }
.asp-tst__avatar { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--asp-tint); border: 2px solid var(--asp-accent); color: var(--asp-ink); font-weight: 800; font-size: 18px; margin: 0 0 14px; }
.asp-tst blockquote { flex: 1 1 auto; margin: 0 0 14px; padding: 0; border: 0; font-size: 15px; line-height: 1.65; color: var(--asp-body); quotes: none; }
.asp-tst figcaption { font-weight: 700; font-size: 15px; color: var(--asp-ink); }
.asp-tst__date { display: block; font-weight: 400; font-size: 13px; color: var(--asp-muted); margin-top: 3px; }
.asp-tst__verify { text-align: center; margin: 28px 0 0; font-size: 15px; color: var(--asp-muted); }
.asp-tst__verify strong { color: var(--asp-ink); }
.asp-tst__verify a { color: var(--asp-ink) !important; text-decoration: underline; text-decoration-color: var(--asp-accent); text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* ---- intro copy (CMS home content) ---- */
.asp-intro { max-width: 860px; margin: 0 auto; }
.asp-intro h2 { font-size: clamp(24px, 3vw, 32px); margin: 0 0 14px; }
.asp-intro p { color: var(--asp-body); }

/* ---- 10. footer rating + contact ---- */
.asp-footer-rating { display: inline-flex; align-items: baseline; gap: 8px; color: #fff !important; text-decoration: none !important; }
.asp-footer-rating strong { font-size: 26px; font-weight: 800; }
.asp-footer-rating .asp-stars { color: var(--asp-accent) !important; font-size: 15px; }
.asp-footer-contact { list-style: none; padding: 0; margin: 16px 0 0; }
.asp-footer-contact li { margin: 0 0 8px; font-size: 15px; }

/* ---- product page extras ---- */
.asp-pdp .asp-glance-shape { text-transform: capitalize; }
@media (max-width: 1024px) { .asc.asp-pdp .asc-hero__media { order: -1; } }

/* ---- sticky mobile quote bar (category + product pages) ---- */
.asp-mbar { display: none; }
@media (max-width: 767px) {
  .asp-mbar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 99990; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: #fff; border-top: 3px solid var(--asp-accent); box-shadow: 0 -6px 18px rgba(15, 17, 20, .12); }
  .asp-mbar__t { font-size: 13px; line-height: 1.3; color: var(--asp-ink); font-weight: 600; }
  .asp-mbar .asp-btn { padding: 11px 16px; font-size: 15px; white-space: nowrap; }
  body.asp-has-mbar { padding-bottom: 72px; }
  body.asp-has-mbar .whatsapp-float { bottom: 92px; }
}

/* ---- responsive ---- */
@media (max-width: 991px) {
  .asp-hero__grid, .asp-eco__grid, .asp-why__grid { grid-template-columns: 1fr; gap: 32px; }
  .asp-hero__media { order: -1; }
  .asp-feat__grid, .asp-fp__grid, .asp-tst__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .asp-stage { padding: 12px 12px 0 0; }
  .asp-stage::before { width: 58%; height: 58%; }
}
@media (max-width: 575px) {
  .asp-hero { padding: 36px 0 40px; }
  .asp-section { padding: 48px 0; }
  .asp-feat__grid, .asp-fp__grid, .asp-tst__grid, .asp-eco__list { grid-template-columns: 1fr; }
  .asp-trust li { flex-basis: 50%; border-right: none; }
  .asp-why__cta .asp-link { display: inline-block; margin: 12px 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  .asp-feat__card, .asp-pc, .asp-btn { transition: none; }
  .asp-feat__card:hover, .asp-pc:hover { transform: none; }
}

/* ---- hero product gallery (category + product pages, 2026-09-16) ----
   Main image plus up to three product photos, each linking to its product. */
.asc .asc-hero__media.asp-gallery { aspect-ratio: auto; overflow: visible; background: transparent; box-shadow: none; border: 0; border-radius: 0; display: grid; gap: 12px; }
.asc .asp-gallery .asp-gallery__main { position: relative; aspect-ratio: 4 / 3; border-radius: 20px; overflow: hidden; background: #fff; border: 1px solid #e1e9e5; box-shadow: 0 1px 2px rgba(21, 32, 42, .05), 0 8px 24px rgba(21, 32, 42, .06); }
.asc .asp-gallery .asp-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.asc .asp-gallery__thumbs { list-style: none; margin: 0; padding: 0; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); gap: 12px; }
.asc .asp-gallery__thumbs li { margin: 0; min-width: 0; }
.asc .asp-gallery__thumbs a, .asc .asp-gallery__thumbs .asp-gallery__still { display: block; border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid #e1e9e5; text-decoration: none; transition: border-color .18s ease, box-shadow .18s ease; }
.asc .asp-gallery__thumbs a:hover, .asc .asp-gallery__thumbs a:focus-visible { border-color: #00aa55; box-shadow: 0 6px 16px rgba(15, 17, 20, .08); }
.asc .asp-gallery__thumbs img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.asc .asp-gallery__thumbs span { display: block; font-size: 12.5px; line-height: 1.3; padding: 7px 9px; color: #15202a; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.asc .asp-gallery .asc-hero__badge { top: 16px; bottom: auto; }
@media (max-width: 480px) { .asc .asp-gallery__thumbs span { display: none; } .asc .asp-gallery__thumbs { gap: 8px; } }
@media (prefers-reduced-motion: reduce) { .asc .asp-gallery__thumbs a { transition: none; } }

/* 2026-09-16: the theme colours every h1 > span with --cnvs-themecolor; the marked head term stays ink (12.4:1 on the tint) */
.asp-hero h1 > span.asp-mark { color: var(--asp-ink) !important; }
