:root {
  --paper: #fffdf8;
  --ink: #18120f;
  --muted: #746a62;
  --line: rgba(28, 18, 12, 0.13);
  --orange: #ff7a1a;
  --magenta: #ef2d79;
  --yellow: #ffd748;
  --shadow: 0 24px 70px rgba(44, 31, 20, 0.16);
  --soft-shadow: 0 16px 36px rgba(44, 31, 20, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Vazirmatn", "IRANSans", "Tahoma", system-ui, sans-serif;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 215, 72, 0.22), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(239, 45, 121, 0.11), transparent 22%),
    linear-gradient(120deg, rgba(255, 122, 26, 0.08), transparent 38%),
    var(--paper);
}

button,
a {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(24, 18, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 18, 15, 0.028) 1px, transparent 1px);
  background-size: 34px 34px, 34px 34px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.15));
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 22px clamp(18px, 4vw, 54px);
  pointer-events: none;
}

.brand,
.start-button {
  pointer-events: auto;
}

.brand {
  position: fixed;
  top: 22px;
  right: clamp(18px, 4vw, 54px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 26px;
  font-weight: 950;
  line-height: 1;
}

.brand-word {
  font-size: 28px;
  font-weight: 950;
  letter-spacing: 0;
}

.start-button {
  position: fixed;
  top: 22px;
  left: clamp(18px, 4vw, 54px);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 13px 22px;
  color: var(--ink);
  background: #fff;
  box-shadow: 5px 5px 0 var(--orange);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.start-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--magenta);
}

.workspace {
  min-height: 100vh;
  padding: 92px 20px 28px;
}

.canvas {
  position: relative;
  min-height: 860px;
  max-width: 1440px;
  margin: 0 auto;
  border: 1px solid rgba(24, 18, 15, 0.08);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(rgba(24, 18, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 18, 15, 0.03) 1px, transparent 1px),
    rgba(255, 255, 255, 0.62);
  background-size: 78px 78px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), var(--shadow);
}

.canvas::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 45% 38%, rgba(255, 122, 26, 0.12), transparent 14%),
    radial-gradient(circle at 65% 62%, rgba(239, 45, 121, 0.1), transparent 16%),
    radial-gradient(circle at 32% 68%, rgba(255, 215, 72, 0.2), transparent 17%);
  filter: blur(10px);
}

.canvas-title {
  position: absolute;
  top: 11%;
  right: 9%;
  z-index: 2;
  max-width: 720px;
  transform: rotate(-2deg);
}

.canvas-title p {
  margin: 0;
  font-size: clamp(58px, 8.2vw, 132px);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
}

.canvas-title span {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 12px 8px;
  background: linear-gradient(transparent 46%, rgba(255, 215, 72, 0.88) 46%);
  color: #392921;
  font-size: clamp(19px, 2.1vw, 31px);
  font-weight: 900;
}

.card,
.sticky,
.sketch,
.mini-chip {
  position: absolute;
  z-index: 3;
  border: 0;
  color: var(--ink);
  text-align: right;
  cursor: pointer;
  transform: rotate(var(--card-rotate, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.card {
  width: 235px;
  min-height: 154px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
}

.card:hover,
.sticky:hover,
.sketch:hover,
.mini-chip:hover {
  filter: saturate(1.1);
  transform: translateY(-5px) rotate(var(--hover-rotate, 0deg)) scale(1.02);
}

.card small {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.card strong {
  display: block;
  font-size: 23px;
  font-weight: 950;
  line-height: 1.08;
}

.card em {
  display: block;
  margin-top: 12px;
  color: #5f5148;
  font-size: 13px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.7;
}

.problem {
  background: #fffaf0;
}

.project {
  background: #fff;
}

.preview {
  min-height: 154px;
  background: #19130f;
  color: #fff7ec;
}

.preview small,
.preview em {
  color: rgba(255, 247, 236, 0.68);
}

.wireframe {
  width: 235px;
  min-height: 154px;
  background: #fff;
}

.ui-shot {
  width: 235px;
  background: #fff9fb;
}

.metric {
  width: 235px;
  background: #fff;
}

.metric b {
  display: block;
  margin-top: 18px;
  color: var(--magenta);
  font-size: 48px;
  font-weight: 950;
  line-height: 1;
}

.bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 50px;
  margin-top: 20px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.bars i {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(var(--yellow), var(--orange));
}

.receipt-lines {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.receipt-lines i {
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 45, 121, 0.2), rgba(255, 122, 26, 0.12));
}

.receipt-lines i:nth-child(2) {
  width: 78%;
}

.receipt-lines i:nth-child(3) {
  width: 58%;
}

.receipt-lines i:nth-child(4) {
  width: 88%;
}

.phone-frame {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 10px;
  border: 2px solid #201713;
  border-radius: 24px;
  background: #f8f8f8;
}

.phone-frame i {
  height: 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255, 215, 72, 0.85), rgba(239, 45, 121, 0.2));
}

.sticky {
  width: 228px;
  min-height: 164px;
  padding: 22px;
  border-radius: 4px 18px 6px 16px;
  background: #ffe66d;
  box-shadow: 0 18px 42px rgba(85, 62, 14, 0.2);
  font-family: "Comic Sans MS", "Segoe Print", "Tahoma", sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.55;
}

.note-two {
  background: #ffb4d2;
}

.sticky::before {
  content: "";
  position: absolute;
  top: -13px;
  right: 36px;
  width: 92px;
  height: 28px;
  background: rgba(255, 255, 255, 0.58);
  transform: rotate(3deg);
}

.tape,
.pin {
  position: absolute;
  pointer-events: none;
}

.tape {
  width: 96px;
  height: 28px;
  background: rgba(255, 225, 151, 0.72);
  border-left: 1px dashed rgba(0, 0, 0, 0.12);
  border-right: 1px dashed rgba(0, 0, 0, 0.12);
}

.tape-top {
  top: -14px;
  right: 72px;
  transform: rotate(-5deg);
}

.tape-side {
  top: 30px;
  left: -44px;
  transform: rotate(78deg);
}

.pin {
  top: 12px;
  left: 15px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 122, 26, 0.16);
}

.pin.magenta {
  background: var(--magenta);
  box-shadow: 0 0 0 5px rgba(239, 45, 121, 0.14);
}

.sketch {
  width: 205px;
  height: 92px;
  padding: 0;
  background: transparent;
}

.sketch span {
  position: absolute;
  top: 6px;
  right: 16px;
  color: var(--magenta);
  font-size: 24px;
  font-weight: 950;
  transform: rotate(-9deg);
}

.sketch svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #201713;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-chip {
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 5px 5px 0 rgba(24, 18, 15, 0.18);
  font-size: 14px;
  font-weight: 950;
}

.marker {
  position: absolute;
  z-index: 1;
  height: 18px;
  border-radius: 999px;
  transform: rotate(-4deg);
  opacity: 0.7;
}

.m-one {
  top: 31%;
  right: 38%;
  width: 330px;
  background: rgba(255, 215, 72, 0.72);
}

.m-two {
  top: 66%;
  right: 18%;
  width: 250px;
  background: rgba(239, 45, 121, 0.2);
}

.m-three {
  top: 47%;
  left: 12%;
  width: 210px;
  background: rgba(255, 122, 26, 0.22);
}

.c-sales {
  top: 38%;
  right: 8%;
  transform: rotate(4deg);
  --hover-rotate: 4deg;
}

.c-dairy {
  top: 46%;
  right: 27%;
  transform: rotate(-6deg);
  --hover-rotate: -6deg;
}

.note-one {
  top: 23%;
  left: 22%;
  transform: rotate(8deg);
  --hover-rotate: 8deg;
}

.c-payments {
  top: 62%;
  right: 42%;
  transform: rotate(5deg);
  --hover-rotate: 5deg;
}

.c-cardpay {
  top: 18%;
  left: 7%;
  transform: rotate(-4deg);
  --hover-rotate: -4deg;
}

.c-pawzy {
  top: 70%;
  left: 12%;
  transform: rotate(7deg);
  --hover-rotate: 7deg;
}

.arrow-one {
  top: 36%;
  left: 39%;
  transform: rotate(2deg);
  --hover-rotate: 2deg;
}

.c-araavira {
  top: 54%;
  left: 29%;
  transform: rotate(-8deg);
  --hover-rotate: -8deg;
}

.note-two {
  top: 8%;
  right: 44%;
  transform: rotate(-7deg);
  --hover-rotate: -7deg;
}

.c-booking {
  top: 73%;
  right: 24%;
  transform: rotate(-3deg);
  --hover-rotate: -3deg;
}

.c-soloclass {
  top: 8%;
  right: 19%;
  transform: rotate(7deg);
  --hover-rotate: 7deg;
}

.c-reporting {
  top: 51%;
  left: 4%;
  transform: rotate(4deg);
  --hover-rotate: 4deg;
}

.c-inventory {
  top: 15%;
  right: 4%;
  transform: rotate(-8deg);
  --hover-rotate: -8deg;
}

.c-watchpark {
  top: 79%;
  right: 4%;
  transform: rotate(5deg);
  --hover-rotate: 5deg;
}

.chip-auto {
  top: 7%;
  left: 31%;
  transform: rotate(4deg);
  --hover-rotate: 4deg;
}

.chip-ai {
  top: 41%;
  right: 57%;
  transform: rotate(-5deg);
  --hover-rotate: -5deg;
}

.chip-dashboard {
  top: 84%;
  left: 37%;
  transform: rotate(-3deg);
  --hover-rotate: -3deg;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: min(430px, calc(100vw - 26px));
  height: 100vh;
  padding: 30px;
  overflow-y: auto;
  background: rgba(255, 253, 248, 0.94);
  border-right: 2px solid var(--ink);
  box-shadow: 28px 0 70px rgba(24, 18, 15, 0.18);
  transform: translateX(-106%);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(18px);
}

.drawer.open {
  transform: translateX(0);
}

.close-drawer {
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.drawer-kicker {
  display: inline-block;
  margin-top: 38px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.drawer h2 {
  margin: 18px 0 28px;
  font-size: 44px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.drawer dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.drawer dl div {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.drawer dt {
  margin-bottom: 7px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 950;
}

.drawer dd {
  margin: 0;
  color: #352923;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.9;
}

.related {
  margin-top: 26px;
}

.related > span {
  display: block;
  margin-bottom: 13px;
  font-size: 13px;
  font-weight: 950;
}

#drawerRelated {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

#drawerRelated span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 850;
}

.case-panel {
  position: fixed;
  top: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 35;
  width: min(492px, calc(100vw - 32px));
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 24px;
  background:
    linear-gradient(rgba(24, 18, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 18, 15, 0.03) 1px, transparent 1px),
    rgba(255, 253, 248, 0.96);
  background-size: 36px 36px;
  box-shadow: -22px 24px 80px rgba(24, 18, 15, 0.22);
  transform: translateX(calc(100% + 34px)) rotate(1deg);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(18px);
}

.case-panel.open {
  transform: translateX(0) rotate(0deg);
}

.case-panel::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 24px;
  right: 24px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 215, 72, 0.72);
  transform: rotate(-2deg);
}

.close-case {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 28px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
}

.case-file-tab {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  padding: 8px 13px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  direction: ltr;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.case-form {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow-y: auto;
  padding: 92px 28px 28px;
  scrollbar-width: thin;
}

.case-head span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 950;
}

.case-head h2 {
  max-width: 340px;
  margin: 0;
  font-size: 42px;
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
}

.case-progress {
  display: flex;
  gap: 9px;
  margin: 28px 0 24px;
  direction: ltr;
}

.case-progress i {
  width: 42px;
  height: 9px;
  border-radius: 999px;
  background: rgba(24, 18, 15, 0.12);
  transition: background 180ms ease, width 180ms ease;
}

.case-progress i.active {
  width: 66px;
  background: linear-gradient(90deg, var(--orange), var(--magenta));
}

.case-progress.complete i {
  width: 66px;
  background: var(--yellow);
}

.case-step,
.case-success {
  display: none;
  min-height: 0;
  padding-bottom: 18px;
}

.case-step.active,
.case-success.active {
  display: block;
  animation: caseIn 240ms ease both;
}

.case-step h3,
.case-success h3 {
  margin: 0 0 18px;
  font-size: 25px;
  font-weight: 950;
  line-height: 1.28;
}

.case-options {
  display: grid;
  gap: 10px;
}

.case-options label {
  display: block;
}

.case-options input {
  position: absolute;
  opacity: 0;
}

.case-options span {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(44, 31, 20, 0.06);
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.case-options input:checked + span {
  border-color: var(--ink);
  background: #fff1b8;
  transform: translateX(-4px);
}

.case-step textarea,
.field-label input {
  width: 100%;
  border: 2px solid rgba(24, 18, 15, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.9;
}

.case-step textarea {
  min-height: 220px;
  padding: 18px;
  resize: vertical;
}

.case-step textarea:focus,
.field-label input:focus {
  border-color: var(--magenta);
}

.field-label {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 950;
}

.field-label input {
  height: 54px;
  padding: 0 16px;
}

.case-actions {
  position: sticky;
  bottom: 0;
  z-index: 3;
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding: 18px 0 2px;
  background: linear-gradient(to top, rgba(255, 253, 248, 0.98) 78%, rgba(255, 253, 248, 0));
}

.case-actions button {
  min-height: 50px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(24, 18, 15, 0.16);
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
}

.case-actions button[hidden] {
  display: none;
}

.case-actions .case-next,
.case-actions .case-submit {
  flex: 1;
  background: var(--ink);
  color: #fff;
  box-shadow: 5px 5px 0 var(--orange);
}

.case-success {
  margin-top: 12px;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 10px 10px 0 var(--yellow);
}

.case-stamp {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 2px solid var(--magenta);
  border-radius: 999px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 950;
  transform: rotate(-4deg);
}

.case-success p {
  margin: -8px 0 22px;
  color: #4c4039;
  font-size: 18px;
  font-weight: 850;
}

.case-number {
  display: inline-grid;
  min-width: 180px;
  min-height: 90px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.22), rgba(239, 45, 121, 0.2)),
    #fff;
  box-shadow: 8px 8px 0 var(--ink);
  direction: ltr;
  font-size: 40px;
  font-weight: 950;
  animation: casePulse 900ms ease both;
}

@keyframes caseIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes casePulse {
  0% {
    opacity: 0;
    transform: rotate(-5deg) scale(0.84);
  }
  60% {
    opacity: 1;
    transform: rotate(2deg) scale(1.06);
  }
  100% {
    transform: rotate(-1deg) scale(1);
  }
}

@media (max-width: 900px) {
  .workspace {
    padding: 84px 12px 18px;
  }

  .topbar {
    padding: 16px;
  }

  .brand {
    top: 16px;
    right: 16px;
  }

  .start-button {
    top: 16px;
    left: 16px;
  }

  .brand-word {
    display: none;
  }

  .start-button {
    max-width: 210px;
    padding: 11px 16px;
    font-size: 13px;
    line-height: 1.35;
  }

  .canvas {
    min-height: 1120px;
    border-radius: 20px;
  }

  .canvas-title {
    top: 7%;
    right: 6%;
    max-width: 88%;
  }

  .canvas-title p {
    font-size: clamp(46px, 15vw, 86px);
  }

  .card {
    width: 204px;
    min-height: 138px;
    padding: 15px;
  }

  .card strong {
    font-size: 19px;
  }

  .sticky {
    width: 190px;
    min-height: 140px;
    font-size: 17px;
  }

  .c-inventory {
    top: 23%;
    right: 5%;
  }

  .c-soloclass {
    top: 18%;
    right: 42%;
  }

  .note-two {
    top: 35%;
    right: 7%;
  }

  .c-cardpay {
    top: 36%;
    left: 5%;
  }

  .c-sales {
    top: 51%;
    right: 8%;
  }

  .c-dairy {
    top: 57%;
    right: 42%;
  }

  .c-payments {
    top: 70%;
    right: 8%;
  }

  .c-araavira {
    top: 75%;
    left: 4%;
  }

  [data-card="watchpark"],
  [data-card="reporting"],
  [data-card="dashboards"],
  .m-one,
  .m-two,
  .m-three {
    display: none;
  }

  .note-one {
    top: 88%;
    left: 9%;
  }

  .c-booking {
    top: 91%;
    right: 5%;
  }

  .c-pawzy {
    top: 101%;
    left: 7%;
  }

  .arrow-one {
    top: 47%;
    left: 8%;
  }

  .chip-auto {
    top: 31%;
    left: 8%;
  }

  .chip-ai {
    top: 65%;
    right: 49%;
  }

  .case-panel {
    inset: 10px;
    width: auto;
    border-radius: 20px;
  }

  .case-form {
    padding: 86px 18px 18px;
  }

  .case-head h2 {
    font-size: 32px;
  }

  .case-step h3,
  .case-success h3 {
    font-size: 21px;
  }

  .case-options {
    gap: 8px;
  }

  .case-options span {
    padding: 12px 13px;
    font-size: 14px;
  }

  .case-step textarea {
    min-height: 190px;
  }
}

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