/* =====================================================================
   AStickerPrinting UK - category landing pages
   Scoped under .asc so nothing leaks into the theme, Bootstrap or the
   header. Colour follows the UK theme's own --cnvs-themecolor (#00aa55).
   ===================================================================== */
.asc {
  --asc-brand: var(--cnvs-themecolor, #00aa55);
  /* #00aa55 with white text is 3.05:1 (fails WCAG AA). Buttons and small green text use this
     deeper green (~5.2:1); the brand green stays for icons, borders and accents. */
  --asc-brand-deep: #007a42;
  --asc-brand-deeper: #00652f;
  --asc-brand-ink: #0b3d27;
  --asc-tint: #e8f6ee;
  --asc-ink: #15202a;
  --asc-body: #4f5f6a;
  --asc-muted: #6d7c86;
  --asc-mist: #f3f7f5;
  --asc-line: #e1e9e5;
  --asc-card: #ffffff;
  --asc-radius: 14px;
  --asc-radius-sm: 10px;
  --asc-shadow: 0 1px 2px rgba(21, 32, 42, .05), 0 8px 24px rgba(21, 32, 42, .06);
  color: var(--asc-body);
  font-size: 16px;
  line-height: 1.65;
}
.asc *, .asc *::before, .asc *::after { box-sizing: border-box; }
/* Theme conflicts, measured in the live page:
   - the theme Bootstrap build forces h1 { font-size: var(--cnvs-font-size-h1) !important } (36px)
     -> set that variable in our scope so the theme's own rule yields our size, no !important war
   - an inline theme style sets span { font-size: 18px } globally -> reset spans to inherit here */
.asc .asc-hero { --cnvs-font-size-h1: clamp(32px, 4.4vw, 50px); }
.asc span { font-size: inherit; }
.asc img { max-width: 100%; height: auto; display: block; }
.asc a { color: var(--asc-brand-deep); }
.asc h1, .asc h2, .asc h3, .asc h4 {
  color: var(--asc-ink);
  font-weight: 700;
  letter-spacing: -.012em;
  text-wrap: balance;
  margin: 0;
}
.asc p { margin: 0 0 1em; }
.asc p:last-child { margin-bottom: 0; }
.asc .asc-wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.asc .asc-section { padding: 72px 0; }
.asc .asc-section--mist { background: var(--asc-mist); }
.asc .asc-section--tight { padding: 40px 0; }
.asc .asc-sub { font-size: 20px; margin: 0 0 18px; }
.asc .asc-btn .asc-icon--btn { width: 18px; height: 18px; color: currentColor; }
.asc .asc-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--asc-brand-deep);
  margin-bottom: 10px;
}
.asc .asc-head { max-width: 720px; margin: 0 0 36px; }
.asc .asc-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.asc .asc-head h2 { font-size: clamp(26px, 3.2vw, 36px); line-height: 1.18; margin-bottom: 12px; }
.asc .asc-head p { font-size: 17px; color: var(--asc-body); }
.asc .asc-icon { width: 24px; height: 24px; flex: none; color: var(--asc-brand); }

/* ---- Buttons ---- */
.asc .asc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 28px;
  border-radius: 10px; border: 2px solid transparent;
  font-size: 16px; font-weight: 700; line-height: 1; text-decoration: none;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.asc .asc-btn--primary { background: var(--asc-brand-deep); color: #fff; }
.asc .asc-btn--primary:hover { background: var(--asc-brand-deeper); color: #fff; text-decoration: none; }
.asc .asc-btn--ghost { background: transparent; color: var(--asc-ink); border-color: var(--asc-line); }
.asc .asc-btn--ghost:hover { border-color: var(--asc-brand); color: var(--asc-brand-deep); text-decoration: none; }
.asc .asc-btn--light { background: #fff; color: var(--asc-brand-ink); }
.asc .asc-btn--light:hover { background: var(--asc-tint); color: var(--asc-brand-ink); text-decoration: none; }
.asc .asc-btn:focus-visible, .asc a:focus-visible, .asc summary:focus-visible { outline: 3px solid var(--asc-brand); outline-offset: 3px; }

/* ---- 1. Hero ---- */
.asc .asc-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--asc-mist) 0%, #fff 100%);
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--asc-line);
}
.asc .asc-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.asc .asc-hero h1 { font-size: clamp(32px, 4.4vw, 50px); line-height: 1.08; margin-bottom: 18px; }
.asc .asc-hero h1 span { display: block; color: var(--asc-brand-deep); font-size: .7em; line-height: 1.15; margin-top: .18em; }
.asc .asc-hero__lead { font-size: 18px; line-height: 1.6; max-width: 560px; margin-bottom: 22px; }
.asc .asc-hero__points { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 10px; }
.asc .asc-hero__points li { display: flex; gap: 10px; align-items: flex-start; color: var(--asc-ink); font-weight: 600; }
.asc .asc-hero__points .asc-icon { width: 20px; height: 20px; margin-top: 3px; }
.asc .asc-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.asc .asc-hero__note { margin-top: 16px; font-size: 14px; color: var(--asc-muted); }
.asc .asc-hero__media {
  position: relative; aspect-ratio: 4 / 3; border-radius: 20px; overflow: hidden;
  background: #fff; box-shadow: var(--asc-shadow); border: 1px solid var(--asc-line);
}
.asc .asc-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.asc .asc-hero__badge {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(6px);
  border: 1px solid var(--asc-line); border-radius: 999px;
  padding: 8px 14px; font-size: 13px; font-weight: 700; color: var(--asc-ink);
  display: inline-flex; gap: 8px; align-items: center;
}
.asc .asc-hero__badge .asc-icon { width: 16px; height: 16px; }

/* Illustrated fallback when a category has no photography: a material swatch, never a stock photo */
.asc .asc-swatch { width: 100%; height: 100%; display: grid; place-items: center; position: relative; }
.asc .asc-swatch__label {
  position: relative; z-index: 1; width: 62%; aspect-ratio: 1.6 / 1; border-radius: 18px;
  display: grid; place-items: center; text-align: center; padding: 18px;
  font-weight: 800; font-size: clamp(16px, 2vw, 22px); letter-spacing: -.01em;
  color: var(--asc-ink); background: #fff;
  box-shadow: 0 18px 40px rgba(21, 32, 42, .16), inset 0 0 0 1px rgba(21, 32, 42, .06);
  transform: rotate(-4deg);
}
.asc .asc-swatch--holo { background: conic-gradient(from 210deg at 50% 50%, #c7f5e6, #d9d2ff, #ffd6f0, #fff2c2, #c9f0ff, #c7f5e6); }
.asc .asc-swatch--holo .asc-swatch__label { background: linear-gradient(120deg, #e9fff6 0%, #efe8ff 30%, #ffe8f6 55%, #fffbe3 78%, #e6f8ff 100%); }
.asc .asc-swatch--metal { background: linear-gradient(135deg, #b9975b 0%, #f4e3b5 38%, #a47d3c 62%, #f0dba6 100%); }
.asc .asc-swatch--silver { background: linear-gradient(135deg, #8d959c 0%, #eef1f3 38%, #7b848b 62%, #e3e7ea 100%); }
.asc .asc-swatch--clear {
  background-color: #fff;
  background-image: linear-gradient(45deg, #edf1f0 25%, transparent 25%), linear-gradient(-45deg, #edf1f0 25%, transparent 25%),
                    linear-gradient(45deg, transparent 75%, #edf1f0 75%), linear-gradient(-45deg, transparent 75%, #edf1f0 75%);
  background-size: 28px 28px; background-position: 0 0, 0 14px, 14px -14px, -14px 0;
}
.asc .asc-swatch--clear .asc-swatch__label { background: rgba(255, 255, 255, .45); backdrop-filter: blur(2px); box-shadow: 0 18px 40px rgba(21, 32, 42, .10), inset 0 0 0 2px rgba(0, 137, 74, .35); }
.asc .asc-swatch--fluoro { background: linear-gradient(135deg, #d8ff3a, #ff6fb5 55%, #ffb21f); }
.asc .asc-swatch--reflect { background: repeating-linear-gradient(135deg, #1b2530 0 22px, #2a3643 22px 44px); }
.asc .asc-swatch--reflect .asc-swatch__label { background: #f5f7f8; box-shadow: 0 0 0 3px #fff, 0 0 42px rgba(255, 255, 255, .55); }
.asc .asc-swatch--vehicle { background: linear-gradient(160deg, #26323d 0%, #3c4a57 55%, #56646f 100%); }
.asc .asc-swatch--window { background: linear-gradient(180deg, #dcebf2 0%, #f4f9fb 60%, #e7f0f4 100%); }
.asc .asc-swatch--label { background: linear-gradient(160deg, #f6efe4 0%, #efe3cf 100%); }
.asc .asc-swatch--label .asc-swatch__label { border-radius: 6px; aspect-ratio: 1 / 1.25; width: 40%; transform: rotate(-2deg); }
.asc .asc-swatch--safety { background: repeating-linear-gradient(135deg, #ffd21f 0 26px, #1b1f23 26px 52px); }
.asc .asc-swatch--event { background: radial-gradient(circle at 20% 25%, #ffe4ef 0 18%, transparent 19%), radial-gradient(circle at 80% 70%, #e3f4ff 0 20%, transparent 21%), linear-gradient(135deg, #fff7e8, #f3ecff); }
.asc .asc-swatch--wall { background: linear-gradient(180deg, #efe9df 0%, #e6ded1 100%); }
.asc .asc-swatch--brand { background: linear-gradient(135deg, var(--asc-tint) 0%, #ffffff 60%, var(--asc-tint) 100%); }
.asc .asc-swatch--dome .asc-swatch__label { border-radius: 999px; aspect-ratio: 1 / 1; width: 46%; box-shadow: 0 22px 44px rgba(21, 32, 42, .2), inset 0 -10px 24px rgba(21, 32, 42, .08), inset 0 10px 18px rgba(255, 255, 255, .9); }
.asc .asc-swatch--round .asc-swatch__label { border-radius: 999px; aspect-ratio: 1 / 1; width: 46%; }

/* ---- 2. Trust strip ---- */
.asc .asc-trust { background: #fff; border-bottom: 1px solid var(--asc-line); padding: 26px 0; }
.asc .asc-trust__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.asc .asc-trust__item { display: flex; gap: 12px; align-items: flex-start; }
.asc .asc-trust__item .asc-icon { width: 34px; height: 34px; padding: 7px; border-radius: 10px; background: var(--asc-tint); }
.asc .asc-trust__item strong { display: block; color: var(--asc-ink); font-size: 15px; line-height: 1.3; }
.asc .asc-trust__item span { display: block; font-size: 14px; color: var(--asc-muted); line-height: 1.4; }

/* ---- 3. Types / products ---- */
.asc .asc-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.asc .asc-card {
  display: flex; flex-direction: column; background: var(--asc-card);
  border: 1px solid var(--asc-line); border-radius: var(--asc-radius); overflow: hidden;
  text-decoration: none; color: inherit; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
a.asc-card:hover { border-color: var(--asc-brand); box-shadow: var(--asc-shadow); transform: translateY(-2px); text-decoration: none; }
.asc .asc-card__media { aspect-ratio: 4 / 3; background: var(--asc-mist); overflow: hidden; }
.asc .asc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.asc .asc-card__media .asc-swatch__label { width: 58%; font-size: 15px; }
.asc .asc-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.asc .asc-card__body h3 { font-size: 18px; line-height: 1.3; }
.asc .asc-card__body p { font-size: 15px; color: var(--asc-body); }
.asc .asc-card__cta { margin-top: auto; padding-top: 10px; font-weight: 700; color: var(--asc-brand-deep); display: inline-flex; gap: 6px; align-items: center; }
.asc .asc-products { margin-top: 28px; }

/* ---- 4. Content ---- */
.asc .asc-content { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 56px; align-items: start; }
.asc .asc-prose h2 { font-size: clamp(24px, 2.8vw, 32px); line-height: 1.22; margin: 0 0 14px; }
.asc .asc-prose h3 { font-size: 21px; line-height: 1.3; margin: 34px 0 10px; }
.asc .asc-prose h3:first-child { margin-top: 0; }
.asc .asc-prose p, .asc .asc-prose li { font-size: 17px; line-height: 1.72; max-width: 70ch; }
.asc .asc-prose ul { margin: 0 0 1em; padding-left: 1.2em; }
.asc .asc-prose li { margin-bottom: 6px; }
.asc .asc-prose li::marker { color: var(--asc-brand); }
.asc .asc-glance {
  position: sticky; top: 120px; background: var(--asc-mist);
  border: 1px solid var(--asc-line); border-radius: var(--asc-radius); padding: 26px;
}
.asc .asc-glance h3 { font-size: 18px; margin-bottom: 14px; }
.asc .asc-glance dl { margin: 0; display: grid; gap: 12px; }
.asc .asc-glance dt { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--asc-muted); }
.asc .asc-glance dd { margin: 2px 0 0; color: var(--asc-ink); font-weight: 600; font-size: 15px; line-height: 1.45; }
.asc .asc-glance .asc-btn { width: 100%; margin-top: 20px; }

/* ---- 5. Options ---- */
.asc .asc-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.asc .asc-option { background: #fff; border: 1px solid var(--asc-line); border-radius: var(--asc-radius-sm); padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.asc .asc-option .asc-icon { width: 38px; height: 38px; padding: 8px; border-radius: 10px; background: var(--asc-tint); }
.asc .asc-option h3 { font-size: 16px; margin-bottom: 4px; }
.asc .asc-option p { font-size: 14.5px; line-height: 1.5; color: var(--asc-body); }

/* ---- 6. Mid CTA ---- */
.asc .asc-cta {
  position: relative; overflow: hidden; border-radius: 22px;
  background: radial-gradient(120% 140% at 100% 0%, #0f7a47 0%, var(--asc-brand-ink) 58%);
  color: #d9efe3; padding: 54px 56px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.asc .asc-cta h2 { color: #fff; font-size: clamp(26px, 3.2vw, 36px); line-height: 1.15; margin-bottom: 10px; }
.asc .asc-cta p { color: #cfe8da; font-size: 17px; max-width: 620px; }
.asc .asc-cta__steps { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 14.5px; color: #e6f5ec; }
.asc .asc-cta__steps li { display: inline-flex; gap: 8px; align-items: center; }
.asc .asc-cta__steps .asc-icon { width: 18px; height: 18px; color: #7ce0a8; }

/* ---- 7. Why choose ---- */
.asc .asc-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.asc .asc-why__card { background: #fff; border: 1px solid var(--asc-line); border-radius: var(--asc-radius); padding: 28px; }
.asc .asc-why__card .asc-icon { width: 44px; height: 44px; padding: 10px; border-radius: 12px; background: var(--asc-tint); margin-bottom: 16px; }
.asc .asc-why__card h3 { font-size: 19px; margin-bottom: 8px; }
.asc .asc-why__card p { font-size: 15.5px; }

/* ---- 8. FAQ ---- */
.asc .asc-faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.asc .asc-faq details { background: #fff; border: 1px solid var(--asc-line); border-radius: var(--asc-radius-sm); }
.asc .asc-faq details[open] { border-color: var(--asc-brand); box-shadow: var(--asc-shadow); }
.asc .asc-faq summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 22px; position: relative;
  font-weight: 700; color: var(--asc-ink); font-size: 17px; line-height: 1.4;
}
.asc .asc-faq summary::-webkit-details-marker { display: none; }
.asc .asc-faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 12px; height: 12px; margin-top: -8px;
  border-right: 2.5px solid var(--asc-brand); border-bottom: 2.5px solid var(--asc-brand);
  transform: rotate(45deg); transition: transform .15s ease;
}
.asc .asc-faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.asc .asc-faq__a { padding: 0 22px 22px; font-size: 16px; line-height: 1.7; }

/* ---- 9. Service features ---- */
.asc .asc-service { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.asc .asc-service li { text-align: center; padding: 26px 18px; border-radius: var(--asc-radius); background: #fff; border: 1px solid var(--asc-line); }
.asc .asc-service .asc-icon { width: 48px; height: 48px; padding: 11px; border-radius: 999px; background: var(--asc-tint); margin: 0 auto 12px; display: block; }
.asc .asc-service strong { display: block; color: var(--asc-ink); font-size: 16px; margin-bottom: 4px; }
.asc .asc-service span { display: block; font-size: 14px; color: var(--asc-muted); line-height: 1.45; }

/* ---- 10. Related ---- */
.asc .asc-related { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }
.asc .asc-related a {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 16px 18px; background: #fff; border: 1px solid var(--asc-line); border-radius: var(--asc-radius-sm);
  color: var(--asc-ink); font-weight: 600; text-decoration: none; line-height: 1.3;
}
.asc .asc-related a::after { content: "\2192"; color: var(--asc-brand); font-weight: 700; transition: transform .15s ease; }
.asc .asc-related a:hover { border-color: var(--asc-brand); color: var(--asc-brand-deep); }
.asc .asc-related a:hover::after { transform: translateX(3px); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .asc .asc-content { grid-template-columns: 1fr; gap: 36px; }
  .asc .asc-glance { position: static; }
  .asc .asc-why { grid-template-columns: repeat(2, 1fr); }
  .asc .asc-trust__grid, .asc .asc-service { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .asc .asc-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .asc .asc-hero__media { order: -1; aspect-ratio: 16 / 10; }
  .asc .asc-cta { grid-template-columns: 1fr; padding: 38px 28px; }
  .asc .asc-cta .asc-btn { width: 100%; }
}
@media (max-width: 600px) {
  .asc .asc-section { padding: 52px 0; }
  .asc .asc-hero { padding: 28px 0 44px; }
  .asc .asc-hero__actions .asc-btn { width: 100%; }
  .asc .asc-trust__grid, .asc .asc-service, .asc .asc-why { grid-template-columns: 1fr; }
  /* real product cards carry short text, so two per row keeps the page from running to ~16,000px */
  .asc .asc-products .asc-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .asc .asc-products .asc-card__body { padding: 12px 12px 14px; }
  .asc .asc-products .asc-card__body h3 { font-size: 15px; }
  .asc .asc-products .asc-card__body p { display: none; }
  .asc .asc-products .asc-card__cta { font-size: 14px; }
  .asc .asc-faq summary { font-size: 16px; padding: 18px 50px 18px 18px; }
  .asc .asc-faq__a { padding: 0 18px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .asc *, .asc *::before, .asc *::after { transition: none !important; }
}
