/* ==========================================================================
   homegizmohub.com — product detail page
   Layout: utility strip, logo + nav, free
   shipping bar, breadcrumb, live-visitor line, gallery + buy box two-up,
   volume tiers, stock meter, payment row, policy accordions, long-form
   description shots, four-column footer.
   Reference type scale: Bree Serif headings over Montserrat 13px body,
   warm-brown ink. Palette sampled from the logo: maroon #401010, tan #d0b090.
   ========================================================================== */

:root {
  --maroon-900: #2b0a0a;
  --maroon-800: #401010;
  /* logo house outline */
  --maroon-700: #5a1a1a;
  --maroon-600: #742626;
  --maroon-100: #f0dede;
  --maroon-050: #faf1f1;

  --tan-700: #8a6c48;
  --tan-600: #a3814f;
  --tan-500: #c0a078;
  --tan-400: #d0b090;
  /* logo gear / circuit */
  --tan-100: #f4ebdd;

  --ink: #3a2a20;
  --ink-70: #57453a;
  --ink-55: #6e5c50;
  --line: #e6ded6;
  --paper: #fffffd;
  /* reference paper */
  --paper-2: #f5f4f0;

  --sale: #a81f1f;
  --ok: #4c5546;

  --wrap: 1200px;

  --f-head: "Bree Serif", Georgia, serif;
  --f-body: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shadow-sm: 0 1px 2px rgba(43, 10, 10, .06), 0 2px 8px rgba(43, 10, 10, .05);
  --shadow-md: 0 6px 20px rgba(43, 10, 10, .12);
  --shadow-lg: 0 14px 38px rgba(43, 10, 10, .2);
}

*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

h1,
h2 {
  font-family: var(--f-head);
  margin: 0;
  line-height: 1.28;
  font-weight: 400
}

p {
  margin: 0 0 1em
}

ul {
  margin: 0;
  padding: 0;
  list-style: none
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--maroon-800);
  color: #fff;
  padding: 10px 16px
}

.skip:focus {
  left: 0
}

:where(a, button, input, summary):focus-visible {
  outline: 3px solid var(--maroon-700);
  outline-offset: 2px;
  border-radius: 4px
}

/* ----------------------------------------------------------- utility ---- */
.util {
  background: var(--maroon-900);
  color: #fff;
  font-size: 12px
}

.util__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px
}

.util__hot {
  color: var(--tan-400);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px
}

/* ------------------------------------------------------------ header ---- */
.hdr {
  background: var(--paper);
  border-bottom: 1px solid var(--line)
}

.hdr__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px
}

.brand img {
  width: auto;
  height: 54px
}

.hdr__nav {
  display: flex;
  gap: 28px
}

.hdr__nav a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--ink-70);
  padding: 8px 2px;
  transition: color .18s
}

.hdr__nav a:hover {
  color: var(--maroon-700)
}

.ship {
  margin: 0;
  padding: 9px 20px;
  text-align: center;
  background: var(--tan-100);
  color: #6d5232;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------ crumb ----- */
.crumb {
  padding-block: 18px 10px;
  font-size: 12.5px;
  color: var(--ink-55)
}

.crumb a {
  display: inline-block;
  padding-block: 6px
}

.crumb a {
  transition: color .18s
}

.crumb a:hover {
  color: var(--maroon-700)
}

.crumb span[aria-current] {
  color: var(--ink)
}

.browsing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  font-size: 12.5px;
  color: var(--ok);
  font-weight: 600
}

.browsing__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  flex: none;
  animation: blip 2.2s ease-in-out infinite
}

@keyframes blip {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

/* -------------------------------------------------------------- pdp ----- */
.pdp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  gap: 44px;
  align-items: start;
  padding-bottom: 50px
}

/* gallery */
.gal__main {
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line)
}

.gal__main img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover
}

.gal__thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 12px
}

.thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 2px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-2);
  cursor: pointer;
  transition: border-color .18s;
}

.thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover
}

.thumb:hover {
  border-color: var(--tan-500)
}

.thumb.is-on {
  border-color: var(--maroon-700)
}

/* buy box */
.buy__h1 {
  font-size: clamp(21px, 2.4vw, 27px);
  color: var(--maroon-900);
  margin-bottom: 8px;
  line-height: 1.3
}

.buy__sold {
  margin: 0 0 16px;
  font-size: 12.5px;
  color: var(--ink-55);
  letter-spacing: .04em
}

.buy__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px
}

.buy__now {
  font-family: var(--f-head);
  font-size: 34px;
  color: var(--sale);
  line-height: 1
}

.buy__cur {
  font-size: 14px;
  color: var(--ink-55)
}

.buy__was {
  font-size: 16px;
  color: var(--ink-55)
}

.buy__off {
  padding: 4px 11px;
  border-radius: 5px;
  background: var(--sale);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em
}

.tiers {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px
}

.tiers li {
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--tan-100);
  border: 1px solid var(--tan-400);
  font-size: 13px;
  color: #6d5232
}

.tiers li b {
  color: var(--maroon-800)
}

.tiers__note {
  margin: 0 0 22px;
  font-size: 12px;
  color: var(--ink-55)
}

.qty {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px
}

.qty__label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-70)
}

.qty__ctl {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff
}

.qty__btn {
  width: 42px;
  height: 44px;
  border: 0;
  background: var(--paper-2);
  color: var(--ink);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  transition: background .18s
}

.qty__btn:hover {
  background: var(--tan-100)
}

.qty__in {
  width: 56px;
  height: 44px;
  border: 0;
  text-align: center;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  -moz-appearance: textfield
}

.qty__in::-webkit-outer-spin-button,
.qty__in::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0
}

.stock {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  font-size: 13.5px;
  color: var(--ink-70)
}

.stock b {
  color: var(--sale)
}

.stock__bar {
  display: block;
  width: 110px;
  height: 7px;
  border-radius: 4px;
  background: var(--line);
  overflow: hidden;
  flex: none
}

.stock__bar span {
  display: block;
  height: 100%;
  background: var(--sale);
  border-radius: 4px
}

.buy__actions {
  display: grid;
  gap: 11px;
  margin-bottom: 22px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s, color .18s;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(180deg, var(--maroon-700), var(--maroon-900));
  color: #fff;
  box-shadow: var(--shadow-md)
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg)
}

.btn--ghost {
  background: #fff;
  color: var(--maroon-800);
  border: 2px solid var(--maroon-800)
}

.btn--ghost:hover {
  background: var(--maroon-800);
  color: #fff
}

.btn--lg {
  font-size: 16px;
  padding: 19px 42px
}

.secure {
  margin: 0 0 9px;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-55)
}

.pay {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 24px
}

.pay li {
  padding: 5px 11px;
  border-radius: 5px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--ink-70)
}

/* accordions */
.acc {
  border-top: 1px solid var(--line)
}

.acc__i {
  border-bottom: 1px solid var(--line)
}

.acc__s {
  padding: 15px 2px;
  cursor: pointer;
  list-style: none;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--maroon-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.acc__s::-webkit-details-marker {
  display: none
}

.acc__s::after {
  content: "+";
  font-size: 19px;
  font-weight: 400;
  color: var(--tan-600)
}

.acc__i[open] .acc__s::after {
  content: "−"
}

.acc__b {
  padding: 0 2px 16px
}

.acc__b p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-70)
}

/* -------------------------------------------------------------- desc ---- */
.desc {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 48px 0 56px
}

.desc__h {
  font-size: clamp(22px, 2.6vw, 29px);
  color: var(--maroon-900);
  text-align: center;
  margin-bottom: 26px
}

.spec {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 36px
}

.spec li {
  padding: 16px 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-55);
  line-height: 1.4;
}

.spec li b {
  display: block;
  font-size: 18px;
  color: var(--maroon-700);
  font-family: var(--f-head);
  font-weight: 400;
  margin-bottom: 3px
}

.shot {
  margin: 0 auto 18px;
  max-width: 900px
}

.shot img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-sm)
}

.finalcta {
  margin: 34px auto 0;
  max-width: 900px;
  padding: 32px 24px;
  border-radius: 14px;
  background: var(--maroon-050);
  border: 1px solid var(--maroon-100);
  text-align: center
}

.finalcta__p {
  margin: 0 0 18px;
  font-family: var(--f-head);
  font-size: 20px;
  color: var(--maroon-800)
}

/* ------------------------------------------------------------ footer ---- */
.ftr {
  background: var(--maroon-900);
  color: rgba(255, 255, 255, .74);
  font-size: 13.5px
}

.ftr__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  padding-block: 44px
}

.ftr__col--wide {
  grid-column: span 1
}

.ftr__h {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px
}

.ftr__ul li {
  margin-bottom: 9px
}

.ftr__ul a {
  display: inline-block;
  padding-block: 4px;
  transition: color .18s
}

.ftr__ul a:hover {
  color: var(--tan-400)
}

.ftr__addr {
  font-style: normal;
  line-height: 1.8;
  font-size: 13px;
  color: rgba(255, 255, 255, .7)
}

.ftr__addr a {
  color: rgba(255, 255, 255, .92);
  display: inline-block;
  padding-block: 4px
}

.ftr__bar {
  border-top: 1px solid rgba(255, 255, 255, .12)
}

.ftr__bar-in {
  padding-block: 18px;
  text-align: center;
  font-size: 12.5px
}

.ftr__bar-in p {
  margin: 0
}

/* --------------------------------------------------------- responsive --- */
@media (max-width:980px) {
  .pdp {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .spec {
    grid-template-columns: repeat(3, 1fr)
  }

  .ftr__cols {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:820px) {
  .hdr__nav {
    display: none
  }
}

@media (max-width:620px) {
  .brand img {
    height: 42px
  }

  .hdr__in {
    min-height: 66px
  }

  .gal__thumbs {
    grid-template-columns: repeat(4, 1fr)
  }

  .buy__now {
    font-size: 29px
  }

  .spec {
    grid-template-columns: repeat(2, 1fr)
  }

  .ftr__cols {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 34px
  }

  .desc {
    padding: 36px 0 42px
  }

  .finalcta {
    padding: 26px 18px
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }
}

/* ==========================================================================
   Shared UI layer - alias this site's palette onto generic names
   ========================================================================== */
:root {
  --ui-brand: var(--maroon-800);
  --ui-dark: var(--maroon-900);
  --ui-accent: var(--tan-700);
  --ui-soft: var(--maroon-050);
  --ui-line: var(--line);
  --ui-ink: var(--ink);
  --ui-ink-70: var(--ink-70);
  --ui-ink-55: var(--ink-55);
  --ui-paper: var(--paper);
  --ui-f-head: var(--f-head);
  --ui-f-body: var(--f-body);
}

/* --------------------------------------------------------- advertorial -- */
.advlabel {
  margin: 0;
  padding: 7px 20px;
  text-align: center;
  background: var(--ui-soft);
  color: var(--ui-ink-55);
  border-bottom: 1px solid var(--ui-line);
  font-family: var(--ui-f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------ site CTA -- */
.sitecta {
  padding: 60px 0 64px;
  background: linear-gradient(160deg, var(--ui-dark), var(--ui-brand) 65%, var(--ui-dark));
  color: #fff;
}

.sitecta__in {
  max-width: 760px;
  margin-inline: auto;
  text-align: center
}

.sitecta__h {
  font-family: var(--ui-f-head);
  font-size: clamp(25px, 3.6vw, 38px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.2;
}

.sitecta__p {
  margin: 0 auto 26px;
  max-width: 56ch;
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .94)
}

.sitecta__list {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.sitecta__list li {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .1);
  font-size: 14px;
  color: #fff;
}

.sitecta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 44px;
  border-radius: 10px;
  background: #fff;
  color: var(--ui-dark);
  font-family: var(--ui-f-head);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
  transition: transform .18s ease, box-shadow .18s ease;
}

.sitecta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .32)
}

.sitecta__btn:active {
  transform: translateY(0)
}

.sitecta__fine {
  margin: 18px auto 0;
  max-width: 54ch;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .86)
}

/* ------------------------------------------------- compliance footer ---- */
.ftr-c {
  background: var(--ui-dark);
  color: rgba(255, 255, 255, .78);
  padding-block: 44px;
  margin-top: 0
}

.ftr-c__in {
  text-align: center
}

.ftr-c__nav {
  display: flex;
  justify-content: center;
  gap: 6px 24px;
  flex-wrap: wrap;
  margin-bottom: 22px
}

.ftr-c__nav a {
  color: #fff;
  text-decoration: none;
  padding: 8px 2px;
  font-family: var(--ui-f-body);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color .18s;
}

.ftr-c__nav a:hover {
  border-bottom-color: #fff
}

.ftr-c__addr {
  font-style: normal;
  line-height: 1.8;
  margin: 0 auto 20px;
  max-width: 62ch;
  font-family: var(--ui-f-body);
  font-size: 14px;
  color: rgba(255, 255, 255, .82);
}

.ftr-c__addr strong {
  color: #fff
}

.ftr-c__addr a {
  color: #fff;
  display: inline-block;
  padding-block: 4px
}

.ftr-c__compliance {
  max-width: 70ch;
  margin: 0 auto 18px;
  font-family: var(--ui-f-body);
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .7);
}

.ftr-c__copy {
  margin: 0;
  font-family: var(--ui-f-body);
  font-size: 13px;
  color: rgba(255, 255, 255, .8)
}

/* ------------------------------------------------------- inner pages ---- */
.ip-head {
  background: var(--ui-paper);
  border-bottom: 1px solid var(--ui-line)
}

.ip-head__in {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px
}

.ip-head__in img {
  width: auto;
  height: 46px
}

.ip {
  padding: 44px 0 56px;
  background: var(--ui-paper)
}

.ip__in {
  max-width: 820px;
  margin-inline: auto
}

.ip__h1 {
  font-family: var(--ui-f-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--ui-dark);
  margin: 0 0 10px;
  line-height: 1.2;
}

.ip__lede {
  font-family: var(--ui-f-body);
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ui-ink-55);
  margin: 0 0 30px
}

.ip h2 {
  font-family: var(--ui-f-head);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--ui-brand);
  margin: 38px 0 12px;
  line-height: 1.3;
}

.ip h3 {
  font-family: var(--ui-f-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--ui-dark);
  margin: 24px 0 8px;
}

.ip p,
.ip li {
  font-family: var(--ui-f-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ui-ink-70)
}

.ip p {
  margin: 0 0 1.1em
}

.ip ul {
  margin: 0 0 1.3em;
  padding: 0;
  list-style: none
}

.ip ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px
}

.ip ul li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: .62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ui-accent);
}

.ip a {
  color: var(--ui-brand);
  text-decoration: underline;
  text-underline-offset: 2px
}

.ip a:hover {
  color: var(--ui-accent)
}

.ip__updated {
  margin: 0 0 30px;
  font-family: var(--ui-f-body);
  font-size: 13px;
  color: var(--ui-ink-55);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ui-line);
}

.ip-card {
  margin: 26px 0;
  padding: 24px 26px;
  border-radius: 12px;
  background: var(--ui-soft);
  border: 1px solid var(--ui-line);
}

.ip-card h2 {
  margin-top: 0
}

.ip-card p:last-child {
  margin-bottom: 0
}

.ip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 24px 0 30px
}

.ip-grid .ip-card {
  margin: 0
}

/* contact form */
.ip-form {
  display: grid;
  gap: 16px;
  margin: 22px 0 8px
}

.ip-form label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--ui-f-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ui-dark);
}

.ip-form input,
.ip-form textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 8px;
  border: 1px solid var(--ui-line);
  background: #fff;
  font-family: var(--ui-f-body);
  font-size: 15.5px;
  color: var(--ui-ink);
}

.ip-form input:focus,
.ip-form textarea:focus {
  outline: 3px solid var(--ui-accent);
  outline-offset: 1px;
  border-color: transparent
}

.ip-form textarea {
  min-height: 150px;
  resize: vertical
}

.ip-form__btn {
  justify-self: start;
  padding: 15px 34px;
  border: 0;
  border-radius: 8px;
  background: var(--ui-brand);
  color: #fff;
  cursor: pointer;
  font-family: var(--ui-f-head);
  font-size: 16px;
  font-weight: 700;
  transition: filter .18s, transform .18s;
}

.ip-form__btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px)
}

.ip-form__note {
  margin: 4px 0 0;
  font-family: var(--ui-f-body);
  font-size: 13px;
  color: var(--ui-ink-55)
}

.ip-form__status {
  margin: 10px 0 0;
  padding: 13px 16px;
  border-radius: 8px;
  background: var(--ui-soft);
  border: 1px solid var(--ui-line);
  font-family: var(--ui-f-body);
  font-size: 14.5px;
  color: var(--ui-dark);
}

.ip-form__status[hidden] {
  display: none
}

/* ----------------------------------------------------- cookie consent --- */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 400;
  max-width: 940px;
  margin-inline: auto;
  padding: 20px 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--ui-line);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  /* No entrance animation: a consent notice must be visible the moment
     [hidden] is removed, regardless of whether animations run. Dismissal is
     the only animated state, and the JS hides the element either way. */
}

.cookie.is-out {
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s ease, opacity .3s ease;
}

.cookie[hidden] {
  display: none
}

.cookie__txt {
  flex: 1 1 340px;
  margin: 0;
  font-family: var(--ui-f-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ui-ink-70)
}

.cookie__txt b {
  color: var(--ui-dark)
}

.cookie__txt a {
  color: var(--ui-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline-block;
  padding-block: 5px
}

.cookie__acts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.cookie__btn {
  padding: 13px 26px;
  border-radius: 8px;
  border: 2px solid var(--ui-brand);
  cursor: pointer;
  font-family: var(--ui-f-head);
  font-size: 14.5px;
  font-weight: 700;
  transition: filter .18s, background .18s, color .18s;
}

.cookie__btn--accept {
  background: var(--ui-brand);
  color: #fff
}

.cookie__btn--accept:hover {
  filter: brightness(1.12)
}

.cookie__btn--decline {
  background: #fff;
  color: var(--ui-brand)
}

.cookie__btn--decline:hover {
  background: var(--ui-soft)
}

@media (max-width:820px) {
  .ip-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:620px) {
  .sitecta {
    padding: 44px 0 48px
  }

  .sitecta__btn {
    font-size: 17px;
    padding: 17px 28px;
    width: 100%
  }

  .ip {
    padding: 32px 0 40px
  }

  .ip-head__in {
    min-height: 66px
  }

  .ip-head__in img {
    height: 38px
  }

  .cookie {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 16px;
    gap: 14px
  }

  .cookie__acts {
    width: 100%
  }

  .cookie__btn {
    flex: 1
  }
}

@media (prefers-reduced-motion:reduce) {
  .cookie.is-out {
    transition: none
  }
}

/* commerce-layer:step-g */

/* ==========================================================================
   Commerce layer - cart drawer + checkout
   Modelled on the reference store's flow (add to cart -> drawer -> one-page
   checkout). Written against the generic --ui-* tokens so the same block
   serves every palette in the batch.
   ========================================================================== */
:root {
  --ck-err: #a4232b;
  --ck-ok: #1c6b45;
  --ck-panel: #f6f7f9;
}

/* --------------------------------------------------------- cart trigger -- */
.cartbtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--ui-line);
  background: var(--ui-paper);
  color: var(--ui-ink-70);
  cursor: pointer;
  font-family: var(--ui-f-body);
  font-size: 13px;
  font-weight: 600;
  transition: border-color .18s, color .18s, background .18s;
}

.cartbtn:hover {
  border-color: var(--ui-brand);
  color: var(--ui-brand)
}

.cartbtn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7
}

.cartbtn__n,
.iconbtn__n {
  font-variant-numeric: tabular-nums
}

.cartbtn__n {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--ui-brand);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

/* an <a> converted to a <button> keeps the card button's block layout */
button.pc__btn {
  width: 100%;
  cursor: pointer
}

/* --------------------------------------------------------- cart drawer -- */
.cd[hidden] {
  display: none
}

.cd {
  position: fixed;
  inset: 0;
  z-index: 120
}

.cd__scrim {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 26, .5);
  border: 0;
  width: 100%;
  cursor: pointer
}

.cd__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  display: flex;
  flex-direction: column;
  background: var(--ui-paper);
  box-shadow: -8px 0 40px rgba(12, 18, 26, .24);
}

.cd__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--ui-line);
}

.cd__h {
  font-family: var(--ui-f-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--ui-dark);
  margin: 0
}

.cd__x {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: var(--ui-ink-70);
}

.cd__x:hover {
  background: var(--ui-soft);
  color: var(--ui-dark)
}

.cd__nudge {
  margin: 0;
  padding: 11px 20px;
  background: var(--ui-soft);
  border-bottom: 1px solid var(--ui-line);
  font-family: var(--ui-f-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ui-dark);
}

.cd__nudge[hidden] {
  display: none
}

.cd__items {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
  flex: 1 1 auto
}

.cd__items[hidden] {
  display: none
}

.cd__it {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ui-line)
}

.cd__it img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--ck-panel)
}

.cd__t {
  margin: 0 0 4px;
  font-family: var(--ui-f-body);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ui-dark);
}

.cd__v {
  margin: 0 0 8px;
  font-family: var(--ui-f-body);
  font-size: 12.5px;
  color: var(--ui-ink-55)
}

.cd__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap
}

.cd__step {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  overflow: hidden
}

.cd__qty {
  width: 34px;
  height: 34px;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  color: var(--ui-ink-70);
}

.cd__qty:hover {
  background: var(--ui-soft);
  color: var(--ui-dark)
}

.cd__n {
  min-width: 32px;
  text-align: center;
  font-family: var(--ui-f-body);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ui-dark);
  font-variant-numeric: tabular-nums
}

.cd__p {
  font-family: var(--ui-f-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--ui-dark);
  font-variant-numeric: tabular-nums
}

.cd__rm {
  border: 0;
  background: none;
  padding: 6px 0;
  cursor: pointer;
  font-family: var(--ui-f-body);
  font-size: 12.5px;
  color: var(--ui-ink-55);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cd__rm:hover {
  color: var(--ck-err)
}

.cd__empty {
  margin: 0;
  padding: 44px 20px;
  text-align: center;
  font-family: var(--ui-f-body);
  font-size: 15px;
  color: var(--ui-ink-55);
  flex: 1 1 auto
}

.cd__empty[hidden] {
  display: none
}

.cd__foot {
  padding: 18px 20px 22px;
  border-top: 1px solid var(--ui-line);
  background: var(--ck-panel)
}

.cd__tot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 0 4px;
  font-family: var(--ui-f-body)
}

.cd__tot span:first-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--ui-ink-70)
}

.cd__tot span:last-child {
  font-family: var(--ui-f-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--ui-dark);
  font-variant-numeric: tabular-nums
}

.cd__save {
  margin: 0 0 4px;
  font-family: var(--ui-f-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ck-ok)
}

.cd__save[hidden] {
  display: none
}

.cd__note {
  margin: 0 0 14px;
  font-family: var(--ui-f-body);
  font-size: 12.5px;
  color: var(--ui-ink-55)
}

.cd__go {
  display: block;
  text-align: center;
  padding: 15px 20px;
  border-radius: 8px;
  background: var(--ui-brand);
  color: #fff;
  font-family: var(--ui-f-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
}

.cd__go:hover {
  filter: brightness(1.1)
}

.cd__go[aria-disabled="true"] {
  opacity: .45;
  pointer-events: none
}

.cd__cont {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 11px;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: var(--ui-f-body);
  font-size: 13.5px;
  color: var(--ui-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ------------------------------------------------------------- toast ---- */
.cdtoast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 130;
  max-width: calc(100% - 32px);
  padding: 13px 20px;
  border-radius: 10px;
  background: var(--ui-dark);
  color: #fff;
  box-shadow: 0 10px 30px rgba(12, 18, 26, .3);
  font-family: var(--ui-f-body);
  font-size: 14px;
  font-weight: 600;
}

.cdtoast[hidden] {
  display: none
}

/* ============================================================ checkout == */
.ck-head {
  background: var(--ui-paper);
  border-bottom: 1px solid var(--ui-line)
}

.ck-head__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px
}

.ck-head__in img {
  width: auto;
  height: 42px
}

.ck-head__secure {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-family: var(--ui-f-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ui-ink-55);
}

.ck-head__secure svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8
}

.ck {
  background: var(--ui-paper);
  padding: 30px 0 60px
}

.ck__h1 {
  font-family: var(--ui-f-head);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--ui-dark);
  margin: 0 0 6px;
}

.ck__crumb {
  margin: 0 0 26px;
  font-family: var(--ui-f-body);
  font-size: 13px;
  color: var(--ui-ink-55)
}

.ck__crumb a {
  color: var(--ui-brand);
  text-decoration: underline;
  text-underline-offset: 2px
}

.ck__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  gap: 44px;
  align-items: start
}

.ck__grid[hidden] {
  display: none
}

.ck__sec {
  margin: 0 0 30px
}

.ck__sechead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px
}

.ck__h2 {
  font-family: var(--ui-f-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--ui-dark);
  margin: 0
}

.ck__hint {
  margin: 0;
  font-family: var(--ui-f-body);
  font-size: 13px;
  color: var(--ui-ink-55)
}

.ck__hint a {
  color: var(--ui-brand);
  text-decoration: underline;
  text-underline-offset: 2px
}

.ck__field {
  margin: 0 0 12px
}

.ck__two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.ck__field label {
  display: block;
  margin: 0 0 5px;
  font-family: var(--ui-f-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ui-ink-70);
}

.ck__field input,
.ck__field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid var(--ui-line);
  background: #fff;
  font-family: var(--ui-f-body);
  font-size: 15.5px;
  color: var(--ui-ink);
}

.ck__field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px
}

.ck__field input:focus,
.ck__field select:focus {
  outline: 3px solid var(--ui-accent);
  outline-offset: 1px;
  border-color: transparent
}

.ck__field input[aria-invalid="true"],
.ck__field select[aria-invalid="true"] {
  border-color: var(--ck-err)
}

.ck__err {
  margin: 5px 0 0;
  font-family: var(--ui-f-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ck-err)
}

.ck__err[hidden] {
  display: none
}

.ck__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 4px;
  cursor: pointer;
  font-family: var(--ui-f-body);
  font-size: 13.5px;
  color: var(--ui-ink-70);
  padding-block: 5px
}

.ck__check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--ui-brand)
}

.ck__opts {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none
}

#ck-billing-fields[hidden] {
  display: none
}

.ck__opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.ck__opt:has(input:checked) {
  border-color: var(--ui-brand);
  box-shadow: inset 0 0 0 1px var(--ui-brand);
  background: var(--ui-soft)
}

.ck__opt input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--ui-brand)
}

.ck__opt b {
  font-family: var(--ui-f-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ui-dark);
  display: block
}

.ck__opt small {
  font-family: var(--ui-f-body);
  font-size: 12.5px;
  color: var(--ui-ink-55);
  display: block
}

.ck__opt .ck__optp {
  margin-left: auto;
  font-family: var(--ui-f-body);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ui-dark);
  font-variant-numeric: tabular-nums;
  white-space: nowrap
}

.ck__note {
  margin: 12px 0 0;
  padding: 13px 15px;
  border-radius: 8px;
  background: var(--ui-soft);
  border: 1px solid var(--ui-line);
  font-family: var(--ui-f-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ui-ink-70);
}

.ck__note a {
  color: var(--ui-brand);
  text-decoration: underline;
  text-underline-offset: 2px
}

.ck__pay {
  display: block;
  width: 100%;
  margin: 22px 0 10px;
  padding: 18px 24px;
  border: 0;
  border-radius: 8px;
  background: var(--ui-brand);
  color: #fff;
  cursor: pointer;
  font-family: var(--ui-f-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .04em;
}

.ck__pay:hover {
  filter: brightness(1.1)
}

.ck__pay:disabled {
  opacity: .5;
  cursor: not-allowed;
  filter: none
}

.ck__status {
  margin: 0;
  font-family: var(--ui-f-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ck-ok)
}

.ck__status[hidden] {
  display: none
}

.ck__status.is-err {
  color: var(--ck-err)
}

.ck__fine {
  margin: 14px 0 0;
  font-family: var(--ui-f-body);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ui-ink-55)
}

.ck__fine a {
  color: var(--ui-brand);
  text-decoration: underline;
  text-underline-offset: 2px
}

/* ------------------------------------------------------- order summary -- */
.ck__sum {
  position: sticky;
  top: 20px;
  padding: 22px;
  border-radius: 12px;
  background: var(--ck-panel);
  border: 1px solid var(--ui-line);
}

.ck-sum__items {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px
}

/* numbered steps on the returns page */
.ip ol.ip-steps {
  margin: 0 0 1.3em;
  padding-left: 24px;
  list-style: decimal
}

.ip ol.ip-steps li {
  margin-bottom: 9px;
  padding-left: 4px
}

.ip ol.ip-steps li::marker {
  color: var(--ui-accent);
  font-weight: 700
}

.ck-sum__it {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: start
}

.ck-sum__thumb {
  position: relative;
  width: 64px;
  height: 64px
}

.ck-sum__thumb img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--ui-line);
  background: #fff
}

.ck-sum__q {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  background: var(--ui-ink-70);
  color: #fff;
  font-family: var(--ui-f-body);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}

.ck-sum__t {
  margin: 0;
  font-family: var(--ui-f-body);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ui-dark)
}

.ck-sum__v {
  margin: 3px 0 0;
  font-family: var(--ui-f-body);
  font-size: 12.5px;
  color: var(--ui-ink-55)
}

.ck-sum__p {
  font-family: var(--ui-f-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--ui-dark);
  font-variant-numeric: tabular-nums;
  white-space: nowrap
}

.ck-sum__totals {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--ui-line)
}

.ck-sum__totals>div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 9px
}

.ck-sum__totals>div[hidden] {
  display: none
}

.ck-sum__totals dt {
  font-family: var(--ui-f-body);
  font-size: 14px;
  color: var(--ui-ink-70)
}

.ck-sum__totals dd {
  margin: 0;
  font-family: var(--ui-f-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ui-dark);
  font-variant-numeric: tabular-nums
}

.ck-sum__totals .is-off dd {
  color: var(--ck-ok)
}

.ck-sum__totals .is-total {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--ui-line)
}

.ck-sum__totals .is-total dt {
  font-family: var(--ui-f-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--ui-dark)
}

.ck-sum__totals .is-total dd {
  font-family: var(--ui-f-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--ui-dark)
}

.ck-sum__cur {
  font-family: var(--ui-f-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ui-ink-55);
  margin-right: 5px
}

.ck-sum__tax {
  margin: 12px 0 0;
  font-family: var(--ui-f-body);
  font-size: 12.5px;
  color: var(--ui-ink-55)
}

.ck__empty {
  padding: 56px 24px;
  text-align: center;
  border-radius: 12px;
  background: var(--ck-panel);
  border: 1px solid var(--ui-line);
}

.ck__empty[hidden] {
  display: none
}

.ck__empty p {
  margin: 0 0 18px;
  font-family: var(--ui-f-body);
  font-size: 16px;
  color: var(--ui-ink-70)
}

.ck__back {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 8px;
  background: var(--ui-brand);
  color: #fff;
  font-family: var(--ui-f-head);
  font-size: 15px;
  font-weight: 700;
}

.ck__back:hover {
  filter: brightness(1.1)
}

.ck-ftr {
  background: var(--ck-panel);
  border-top: 1px solid var(--ui-line);
  padding: 22px 0
}

.ck-ftr__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  justify-content: center
}

.ck-ftr__nav a {
  font-family: var(--ui-f-body);
  font-size: 13px;
  color: var(--ui-ink-70);
  text-decoration: underline;
  text-underline-offset: 2px;
  padding-block: 6px;
}

.ck-ftr__nav a:hover {
  color: var(--ui-brand)
}

@media (max-width:940px) {
  .ck__grid {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .ck__sum {
    position: static;
    order: -1
  }
}

@media (max-width:620px) {
  .ck__two {
    grid-template-columns: 1fr
  }

  .ck {
    padding: 22px 0 44px
  }

  .ck__sum {
    padding: 18px
  }

  .cd__panel {
    width: 100%
  }
}

/* ---------------------------------------------------------- thank you --- *
 * Order confirmation shown after checkout. Reuses the checkout summary
 * classes; only the confirmation panel and detail rows are new.
 * ------------------------------------------------------------------------ */
.ty__banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 30px;
  padding: 22px 24px;
  border-radius: 12px;
  background: var(--ck-panel);
  border: 1px solid var(--ui-line);
}

.ty__tick {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ck-ok);
  display: grid;
  place-items: center;
}

.ty__tick svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ty__banner h1 {
  font-family: var(--ui-f-head);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--ui-dark);
  margin: 0 0 6px;
  line-height: 1.2;
}

.ty__banner p {
  margin: 0;
  font-family: var(--ui-f-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ui-ink-70)
}

.ty__banner b {
  color: var(--ui-dark)
}

.ty__rows {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1px;
  background: var(--ui-line);
  border: 1px solid var(--ui-line);
  border-radius: 12px;
  overflow: hidden
}

.ty__rows>li {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 18px;
  background: var(--ui-paper)
}

.ty__k {
  font-family: var(--ui-f-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ui-ink-55)
}

.ty__v {
  font-family: var(--ui-f-body);
  font-size: 14px;
  color: var(--ui-dark);
  white-space: pre-line;
  word-break: break-word
}

.ty__v#ty-ref {
  font-weight: 700;
  letter-spacing: .04em
}

.ty__next {
  margin: 0 0 26px
}

.ty__next h2 {
  font-family: var(--ui-f-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--ui-dark);
  margin: 0 0 12px
}

.ty__next ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 9px
}

.ty__next li {
  font-family: var(--ui-f-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ui-ink-70)
}

.ty__next a {
  color: var(--ui-brand);
  text-decoration: underline;
  text-underline-offset: 2px
}

.ty__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px
}

.ty__acts .ck__back {
  padding: 13px 24px
}

.ty__ghost {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 8px;
  background: transparent;
  color: var(--ui-dark);
  border: 1px solid var(--ui-line);
  font-family: var(--ui-f-head);
  font-size: 15px;
  font-weight: 700;
}

.ty__ghost:hover {
  border-color: var(--ui-brand);
  color: var(--ui-brand)
}

.ty__help {
  margin: 0;
  font-family: var(--ui-f-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ui-ink-55)
}

.ty__help a {
  color: var(--ui-brand);
  text-decoration: underline;
  text-underline-offset: 2px
}

@media (max-width:620px) {
  .ty__banner {
    padding: 18px
  }

  .ty__rows>li {
    grid-template-columns: 1fr;
    gap: 4px
  }

  .ty__acts .ck__back,
  .ty__ghost {
    flex: 1 1 100%;
    text-align: center
  }
}