:root {
  --lime-50: #f7f9ea;
  --lime-100: #eaf0cf;
  --olive-900: #3f4131;
  --olive-700: #717559;
  --olive-500: #aeb42b;
  --cream: #f5f0ee;
  --paper: #fffef9;
  --berry: #b84c43;
  --berry-dark: #84251f;
  --ink: #25271d;
  --muted: #6e705f;
  --line: rgba(63, 65, 49, 0.16);
  --shadow: 0 24px 70px rgba(54, 57, 37, 0.13);
  --radius: 24px;
  --font-sans: "Avenir Next", Montserrat, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(234, 240, 207, 0.7), transparent 28rem),
    linear-gradient(180deg, #fff 0, #fffdf9 72%, var(--cream) 100%);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button,
label,
select {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

.sr-only {
  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: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--olive-900);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(184, 76, 67, 0.5);
  outline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner,
.app-shell,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.header-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--olive-900);
  text-decoration: none;
}

.brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-family: var(--font-serif);
  font-size: 21px;
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: var(--olive-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.steps {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.steps li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(100% + 9px);
  width: 16px;
  height: 1px;
  background: #c9cbbd;
}

.steps span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #d3d5c8;
  border-radius: 50%;
  background: #fff;
}

.steps .is-active {
  color: var(--olive-900);
}

.steps .is-active span {
  border-color: var(--olive-900);
  background: var(--olive-900);
  color: #fff;
}

.app-shell {
  padding-block: 58px 88px;
}

.intro {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--berry-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.intro h1 {
  max-width: 700px;
  margin: 0 auto;
  color: var(--olive-900);
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.intro > p:last-child {
  max-width: 600px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.controls,
.preview-panel {
  padding: 36px;
}

.controls {
  background: #fff;
}

.control-heading,
.preview-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.control-heading h2,
.preview-heading h2 {
  margin: 0;
  color: var(--olive-900);
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.text-button,
.download-svg {
  padding: 3px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  color: var(--olive-700);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.text-button:hover,
.download-svg:hover {
  color: var(--berry-dark);
}

.control-section {
  min-width: 0;
  margin: 30px 0 0;
  padding: 28px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.control-section legend {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  color: var(--olive-900);
  font-size: 14px;
  font-weight: 800;
}

.control-section legend span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime-100);
  font-size: 12px;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.style-option {
  position: relative;
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.style-option input,
.palette-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.style-swatch {
  position: relative;
  display: grid;
  aspect-ratio: 1.35;
  place-items: center;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 11px;
  background: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(63, 65, 49, 0.1);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.style-swatch::before,
.style-swatch::after {
  content: "";
  position: absolute;
}

.style-swatch::before {
  inset: 10px 8px;
  border: 1px solid currentColor;
}

.style-swatch i {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 10px;
  font-style: normal;
}

.classic-swatch {
  color: var(--olive-900);
  background: var(--lime-100);
}

.classic-swatch::before {
  border-radius: 50%;
}

.classic-swatch::after {
  top: 9px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--berry);
}

.botanical-swatch {
  color: #495739;
  background: #edf1e2;
}

.botanical-swatch::before {
  border-radius: 18px 18px 5px 5px;
}

.botanical-swatch::after {
  right: 7px;
  bottom: 7px;
  width: 18px;
  height: 7px;
  border-radius: 100% 0;
  background: #7d9559;
  transform: rotate(-35deg);
}

.pantry-swatch {
  color: #fff8e9;
  background: var(--olive-900);
}

.pantry-swatch::before {
  border-style: dashed;
}

.minimal-swatch {
  color: var(--olive-900);
  background: #fff;
}

.minimal-swatch::before {
  inset: 13px 7px;
  border-right: 0;
  border-left: 0;
}

.style-option:hover .style-swatch {
  transform: translateY(-2px);
}

.style-option input:checked + .style-swatch {
  border-color: var(--olive-900);
  box-shadow: 0 0 0 3px rgba(234, 240, 207, 0.9);
}

.style-option input:focus-visible + .style-swatch {
  outline: 3px solid rgba(184, 76, 67, 0.5);
  outline-offset: 2px;
}

.style-option:has(input:checked) {
  color: var(--olive-900);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field,
.compact-field {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 6px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span:first-child,
.control-label {
  color: var(--olive-900);
  font-size: 12px;
  font-weight: 750;
}

.field em {
  color: #9a9b8d;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #dfe1d4;
  border-radius: 10px;
  outline: 0;
  background: #fbfcf7;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--olive-900) 50%),
    linear-gradient(135deg, var(--olive-900) 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 21px,
    calc(100% - 12px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field input:focus,
.field select:focus {
  border-color: var(--olive-700);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(234, 240, 207, 0.8);
}

.field small {
  position: absolute;
  right: 10px;
  bottom: 7px;
  color: #a1a292;
  font-size: 9px;
}

.field:has(small) input {
  padding-right: 50px;
}

.split-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.palette-options {
  display: flex;
  gap: 10px;
  margin-top: 9px;
}

.palette-options label {
  position: relative;
  cursor: pointer;
}

.palette {
  display: block;
  width: 34px;
  height: 34px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #d8dacd;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.palette::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  margin-left: 50%;
  border-radius: 0 20px 20px 0;
}

.moeke-palette {
  background: #eaf0cf;
}

.moeke-palette::after {
  background: #b84c43;
}

.berry-palette {
  background: #6f2439;
}

.berry-palette::after {
  background: #f3d9d5;
}

.apricot-palette {
  background: #eaa36f;
}

.apricot-palette::after {
  background: #fff2cf;
}

.herb-palette {
  background: #526343;
}

.herb-palette::after {
  background: #dce4d0;
}

.palette-options input:checked + .palette {
  transform: scale(1.08);
  box-shadow: 0 0 0 2px var(--olive-900), 0 0 0 5px #fff;
}

.palette-options input:focus-visible + .palette {
  outline: 3px solid rgba(184, 76, 67, 0.5);
  outline-offset: 4px;
}

.compact-field select {
  min-height: 43px;
  padding-block: 9px;
}

.final-settings {
  padding-bottom: 4px;
}

.copies-field .stepper {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  overflow: hidden;
  min-height: 48px;
  border: 1px solid #dfe1d4;
  border-radius: 10px;
  background: #fbfcf7;
}

.copies-field .stepper button {
  border: 0;
  background: transparent;
  color: var(--olive-900);
  cursor: pointer;
  font-size: 20px;
}

.copies-field .stepper button:hover {
  background: var(--lime-100);
}

.copies-field .stepper input {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 800;
  text-align: center;
  -moz-appearance: textfield;
}

.copies-field .stepper input::-webkit-outer-spin-button,
.copies-field .stepper input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.custom-size {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 10px;
  margin-top: 14px;
  padding: 15px;
  border-radius: 12px;
  background: var(--lime-50);
}

.custom-size[hidden] {
  display: none;
}

.custom-size > span {
  padding-bottom: 13px;
  color: var(--muted);
  font-weight: 700;
}

.preview-panel {
  position: sticky;
  top: 0;
  align-self: start;
  border-left: 1px solid rgba(63, 65, 49, 0.12);
  background: var(--lime-100);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border: 1px solid rgba(63, 65, 49, 0.15);
  border-radius: 999px;
  color: var(--olive-900);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6f8c2d;
  box-shadow: 0 0 0 4px rgba(111, 140, 45, 0.12);
}

.preview-stage {
  position: relative;
  display: grid;
  min-height: 400px;
  margin: 26px 0 20px;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.86), rgba(245, 240, 238, 0.64)),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(63, 65, 49, 0.025) 24px);
}

.preview-stage::before,
.preview-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.preview-stage::before {
  top: -75px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: rgba(184, 76, 67, 0.12);
}

.preview-stage::after {
  bottom: -105px;
  left: -95px;
  width: 230px;
  height: 230px;
  background: rgba(112, 139, 69, 0.12);
}

.jar {
  position: relative;
  z-index: 1;
  width: min(290px, 78%);
  filter: drop-shadow(0 24px 22px rgba(54, 49, 34, 0.2));
}

.jar-lid {
  position: relative;
  z-index: 2;
  width: 84%;
  height: 46px;
  margin: 0 auto -5px;
  border: 1px solid #c8c1a1;
  border-radius: 14px 14px 6px 6px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0 4px, transparent 4px 9px),
    linear-gradient(180deg, #d7cc96, #a99b68 80%, #8e8256);
  box-shadow: inset 0 4px 7px rgba(255, 255, 255, 0.4);
}

.jar-glass {
  position: relative;
  height: 300px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px 28px 54px 54px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(239, 238, 219, 0.25) 48%, rgba(255, 255, 255, 0.55));
  box-shadow: inset 0 0 0 2px rgba(150, 144, 112, 0.2), inset -15px 0 22px rgba(255, 255, 255, 0.28);
}

.jar-jam {
  position: absolute;
  inset: 28px 6px 6px;
  border-radius: 20px 20px 46px 46px;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 203, 174, 0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 57%, rgba(255, 203, 174, 0.22) 0 2px, transparent 3px),
    linear-gradient(145deg, #bc4a43, #7c1e25 65%, #61141d);
  opacity: 0.95;
}

.jar-highlight {
  position: absolute;
  z-index: 3;
  top: 30px;
  bottom: 35px;
  left: 18px;
  width: 11px;
  border-radius: 50%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  opacity: 0.65;
}

.label-preview {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 88%;
  max-height: 72%;
  transform: translate(-50%, -46%);
  filter: drop-shadow(0 4px 5px rgba(54, 47, 34, 0.16));
}

.label-preview svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 205px;
}

.sheet-summary {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 16px;
  border: 1px solid rgba(63, 65, 49, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.55);
}

.sheet-summary > span:last-child {
  display: grid;
  gap: 2px;
}

.sheet-summary strong {
  color: var(--olive-900);
  font-size: 13px;
}

.sheet-summary small {
  color: var(--muted);
  font-size: 10px;
}

.sheet-icon {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: repeat(2, 9px);
  gap: 3px;
  padding: 5px;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(63, 65, 49, 0.12);
}

.sheet-icon i {
  width: 9px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-100);
  box-shadow: inset 0 0 0 1px var(--olive-700);
}

.primary-actions {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  border: 1px solid var(--olive-900);
  background: var(--olive-900);
  color: #fff;
  box-shadow: 0 8px 18px rgba(63, 65, 49, 0.2);
}

.button-secondary {
  border: 1px solid var(--olive-900);
  background: transparent;
  color: var(--olive-900);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary:hover {
  background: #2f3124;
  box-shadow: 0 12px 22px rgba(63, 65, 49, 0.25);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.55);
}

.download-svg {
  display: block;
  margin: 12px auto 0;
  font-size: 11px;
}

.print-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid rgba(63, 65, 49, 0.12);
  color: var(--muted);
}

.print-tip svg {
  width: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--olive-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.print-tip p {
  margin: 0;
  font-size: 11px;
}

.print-tip strong {
  color: var(--olive-900);
}

.how-it-works {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 50px;
  margin-top: 74px;
  padding: 42px;
  border-radius: var(--radius);
  background: var(--olive-900);
  color: #fff;
}

.how-it-works h2 {
  max-width: 340px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 39px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.how-it-works .section-kicker {
  color: #d9dfaf;
}

.how-it-works ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.how-it-works li {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.how-it-works li span {
  display: block;
  margin-bottom: 24px;
  color: #cfd6a3;
  font-family: var(--font-serif);
  font-size: 14px;
}

.how-it-works li strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
}

.how-it-works li p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background: var(--lime-100);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.footer-brand p,
.footer-links p {
  margin: 0;
  font-size: 13px;
}

.footer-brand strong {
  color: var(--olive-900);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: var(--olive-700);
  text-align: right;
}

.footer-links a {
  color: var(--olive-900);
  font-weight: 800;
  text-underline-offset: 3px;
}

.footer-links a:hover {
  color: var(--berry-dark);
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100% - 48px));
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--olive-900);
  color: #fff;
  box-shadow: 0 12px 30px rgba(36, 38, 27, 0.25);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.noscript {
  position: fixed;
  z-index: 200;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px;
  background: #84251f;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

#print-root {
  display: none;
}

@media (max-width: 980px) {
  .workspace {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .preview-panel {
    position: static;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .preview-stage {
    min-height: 440px;
  }

  .jar {
    width: 300px;
  }

  .how-it-works {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .app-shell,
  .footer-inner {
    width: min(100% - 26px, 1180px);
  }

  .header-inner {
    min-height: 88px;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .steps {
    display: none;
  }

  .app-shell {
    padding-block: 42px 58px;
  }

  .intro {
    margin-bottom: 30px;
    text-align: left;
  }

  .intro h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .intro > p:last-child {
    font-size: 15px;
  }

  .workspace {
    border-radius: 22px;
  }

  .controls,
  .preview-panel {
    padding: 26px 20px;
  }

  .style-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .field-grid,
  .split-controls,
  .primary-actions {
    grid-template-columns: 1fr;
  }

  .preview-stage {
    min-height: 375px;
  }

  .jar {
    width: min(280px, 87%);
  }

  .how-it-works {
    margin-top: 42px;
    padding: 30px 24px;
  }

  .how-it-works ol {
    grid-template-columns: 1fr;
  }

  .how-it-works li span {
    margin-bottom: 6px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@page {
  size: A4 portrait;
  margin: 10mm;
}

@media print {
  body {
    background: #fff !important;
  }

  body > *:not(#print-root) {
    display: none !important;
  }

  #print-root {
    display: block !important;
  }

  .print-page {
    display: grid;
    width: 190mm;
    height: 277mm;
    align-content: start;
    justify-content: start;
    gap: 3mm;
    margin: 0;
    overflow: hidden;
    break-after: page;
    page-break-after: always;
  }

  .print-page:last-child {
    break-after: auto;
    page-break-after: auto;
  }

  .print-label {
    display: grid;
    place-items: center;
    overflow: hidden;
    break-inside: avoid;
  }

  .print-label svg {
    display: block;
    width: 100%;
    height: 100%;
  }
}
