:root {
  --blue: #113e95;
  --blue-sky-top: #1b52d4;
  --blue-sky-bottom: #2b8ee8;
  --blue-pale: #eef3fc;

  --orange: #f74f15;
  --orange-hover: #ff6526;
  --orange-pale: #fddccc;

  --ink: #1a1a1a;
  --brown: #7d6150;
  --muted: #848484;
  --dim: #868e96;

  --paper: #fff;
  --canvas: #fff;
  --line: #dee2e6;
  --band: #f5f5f5;
  --star: #d9d9d9;
  --field: #e6ecf4;
  --toast: #acc4e9;

  --disabled-bg: #e9ecef;
  --disabled-fg: #adb5bd;

  --sp-2xs: 0.25rem;
  --sp-xs: 0.5rem;
  --sp-sm: 0.75rem;
  --sp-md: 1rem;
  --sp-lg: 1.25rem;
  --sp-xl: 1.5rem;
  --sp-2xl: 2rem;

  --fz-xs: 0.75rem;
  --fz-sm: 0.875rem;
  --fz-md: 1rem;
  --fz-lg: 1.125rem;
  --fz-xl: 1.25rem;

  --lh-sm: 1.45;
  --lh-md: 1.55;
  --lh-lg: 1.6;
  --lh-xl: 1.65;

  --radius: 0.5rem;
  --column: 29.9375rem;
  --header-h: 4.375rem;
}

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

body {
  margin: 0;
  background-color: var(--canvas);
  color: var(--ink);
  font-family: Larsseit, Helvetica, Arial, sans-serif;
  font-size: var(--fz-md);
  line-height: var(--lh-md);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea,
select {
  font: inherit;
}

button,
select {
  text-transform: none;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

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

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: 0 0;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

.shell {
  background: var(--blue-pale);
}

.topbar,
.bottombar {
  position: fixed;
  inset-inline: 0;
  z-index: 100;
  max-width: var(--column);
  margin-inline: auto;
  padding: var(--sp-sm);
  background-color: var(--canvas);
}

.topbar {
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
}

.bottombar {
  bottom: 0;
  border-top: 1px solid var(--line);
}

.column {
  max-width: var(--column);
  min-height: 100dvh;
  margin-inline: auto;
  padding-top: var(--header-h);
  background: var(--paper);
}

.logo {
  width: 4em;
  height: auto;
  object-fit: contain;
}

@property --gap {
  syntax: '*';
  inherits: false;
}

@property --align {
  syntax: '*';
  inherits: false;
}

@property --justify {
  syntax: '*';
  inherits: false;
}

@property --wrap {
  syntax: '*';
  inherits: false;
}

@property --size {
  syntax: '*';
  inherits: false;
}

@property --rule-size {
  syntax: '*';
  inherits: false;
}

@property --rule-color {
  syntax: '*';
  inherits: false;
}

@property --btn-px {
  syntax: '*';
  inherits: false;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: var(--wrap, wrap);
  gap: var(--gap, var(--sp-md));
  align-items: var(--align, center);
  justify-content: var(--justify, flex-start);
}

.col {
  display: flex;
  flex-direction: column;
  gap: var(--gap, var(--sp-md));
  align-items: var(--align, stretch);
  justify-content: var(--justify, flex-start);
}

.pad {
  padding: var(--sp-sm);
}

.rule {
  border-top: var(--rule-size, 1px) solid var(--rule-color, var(--band));
}

.t-sm {
  font-size: var(--fz-sm);
  line-height: var(--lh-sm);
}

.t-lg {
  font-size: var(--fz-lg);
  line-height: var(--lh-lg);
}

.t-xl {
  font-size: var(--fz-xl);
  line-height: var(--lh-xl);
}

.serif {
  font-family: Recoleta, Larsseit, Helvetica, Arial, sans-serif;
}

.title {
  font-family: Recoleta, Larsseit, Helvetica, Arial, sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.35;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.dim {
  color: var(--dim);
}

.brown {
  color: var(--brown);
}

.blue {
  color: var(--blue);
}

.clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.btn {
  --btn-px: 1.125rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: auto;
  height: 2.25rem;
  padding: 0 var(--btn-px);
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  font-size: var(--fz-sm);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
}

.btn:hover:not(:disabled) {
  background-color: var(--orange-hover);
}

.btn:disabled {
  border: 1px solid transparent;
  background: var(--disabled-bg);
  color: var(--disabled-fg);
  cursor: not-allowed;
}

.btn-md {
  --btn-px: 1.375rem;
  height: 2.625rem;
  font-size: var(--fz-md);
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-lead {
  padding-inline-start: calc(var(--btn-px) / 1.5);
}

.btn-outline {
  border: 1px solid var(--orange);
  background: transparent;
  color: var(--orange);
}

.btn-outline:hover:not(:disabled) {
  background-color: var(--orange-pale);
}

.btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: visible;
}

.btn-label {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.btn-icon {
  display: flex;
  align-items: center;
  margin-inline-end: var(--sp-xs);
}

.iconbtn {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: var(--size, 1.75rem);
  height: var(--size, 1.75rem);
  min-width: var(--size, 1.75rem);
  min-height: var(--size, 1.75rem);
  padding: 0;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  line-height: 1;
  text-align: start;
  cursor: pointer;
  user-select: none;
}

.iconbtn:hover:not(:disabled) {
  background-color: var(--orange-hover);
}

.iconbtn:disabled {
  border: 1px solid transparent;
  background: var(--disabled-bg);
  color: var(--disabled-fg);
  cursor: not-allowed;
}

.iconbtn-lg {
  --size: 2.125rem;
}

.iconbtn-xl {
  --size: 2.75rem;
  border-radius: var(--sp-2xl);
}

.iconbtn-outline {
  border: 1px solid var(--orange);
  background: var(--orange-pale);
  color: var(--orange);
}

.iconbtn-outline:hover:not(:disabled) {
  background-color: #fbcbb4;
}

.iconbtn-plain {
  border: 1px solid transparent;
  background: transparent;
  color: var(--blue);
}

.iconbtn-plain:hover:not(:disabled) {
  background-color: transparent;
}

.iconbtn-back {
  border: 1px solid var(--blue);
  background: var(--field);
  color: var(--blue);
}

.iconbtn-back:hover:not(:disabled) {
  background-color: #d8e2f0;
}

.badge {
  display: inline-grid;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: fit-content;
  height: 1.625rem;
  padding: 0 var(--sp-sm);
  border: 1px solid transparent;
  border-radius: 62.5rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.015625rem;
  line-height: calc(1.625rem - 0.125rem);
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: default;
}

.badge > span {
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  text-overflow: ellipsis;
  cursor: inherit;
}

.badge-outline {
  border-color: var(--blue);
  background: #fff;
  color: var(--blue);
}

.card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: var(--canvas);
}

.card img {
  width: 100%;
  object-fit: cover;
}

.product-card {
  transition: all 0.33s ease-in-out;
}

.product-card:hover {
  box-shadow: 0 0 12px #3636361a;
}

.avatar {
  display: block;
  position: relative;
  overflow: hidden;
  width: var(--size, 3rem);
  min-width: var(--size, 3rem);
  height: var(--size, 3rem);
  border-radius: 62.5rem;
}

.avatar > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
