@font-face {
  font-family: "PT Root UI";
  src: url("assets/fonts/pt-root-ui-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: optional;
}

@font-face {
  font-family: "PT Root UI";
  src: url("assets/fonts/pt-root-ui-medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: optional;
}

@font-face {
  font-family: "PT Root UI";
  src: url("assets/fonts/pt-root-ui-bold.woff") format("woff");
  font-style: normal;
  font-weight: 700 900;
  font-display: optional;
}

@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/unbounded-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: optional;
}

:root {
  --paper: #f6f6f2;
  --white: #ffffff;
  --ink: #171815;
  --muted: #74766f;
  --line: #e5e6e0;
  --soft-line: #eeeeea;
  --orange: #ff5a1f;
  --orange-soft: #ffb08e;
  --shadow: 0 24px 70px rgb(23 24 21 / 10%);
  --display: "Unbounded", "Arial Black", sans-serif;
  --body: "PT Root UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  font-family: var(--body);
  font-synthesis: none;
  background: var(--white);
}

* {
  box-sizing: border-box;
}

.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;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--white);
  color: var(--ink);
}

body.is-locked {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  width: 100%;
  height: 86px;
  margin: 0 auto;
  padding-inline: max(24px, calc((100vw - 1440px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 96%);
  backdrop-filter: blur(14px);
}

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

.brand-sign {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
}

.brand-name {
  font-family: var(--body);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.header-nav {
  margin-left: auto;
  margin-right: clamp(24px, 4vw, 58px);
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.header-nav button {
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease;
}

.header-nav button:hover,
.header-nav button:focus-visible {
  color: var(--ink);
  outline: none;
}

.header-actions {
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-trigger {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 7px 17px 7px 9px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.account-trigger:hover,
.account-trigger[aria-expanded="true"] {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.account-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--paper);
}

.account-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.account-label {
  min-width: 112px;
  display: grid;
  gap: 2px;
  text-align: left;
}

.account-label strong {
  font-size: 13px;
  font-weight: 700;
}

.account-label small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.cart-trigger {
  min-width: 212px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 7px 7px 14px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 8px 24px rgb(23 24 21 / 14%);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.cart-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgb(23 24 21 / 20%);
}

.cart-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

.cart-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-label {
  min-width: 92px;
  display: grid;
  gap: 2px;
  text-align: left;
}

.cart-label strong {
  font-size: 14px;
  font-weight: 700;
}

.cart-label small {
  color: rgb(255 255 255 / 65%);
  font-size: 10px;
  font-weight: 500;
}

.cart-count {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0 8px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.landing-main {
  overflow: clip;
}

.supply-hero {
  --route-size: clamp(84px, 8vw, 132px);
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 86px);
  display: grid;
  place-items: center;
  isolation: isolate;
  padding: clamp(96px, 11vw, 160px) max(24px, calc((100vw - 1440px) / 2));
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 24.9%, rgb(23 24 21 / 4%) 25%, transparent 25.1%),
    linear-gradient(90deg, transparent 49.9%, rgb(23 24 21 / 4%) 50%, transparent 50.1%),
    linear-gradient(90deg, transparent 74.9%, rgb(23 24 21 / 4%) 75%, transparent 75.1%),
    var(--white);
}

.supply-hero::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid var(--soft-line);
  pointer-events: none;
}

.supply-shutter-scene {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.supply-route {
  --route-offset: 48vh;
  --route-final-opacity: 0.05;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 166vw;
  height: var(--route-size);
  opacity: var(--route-final-opacity);
  pointer-events: none;
}

.supply-route--outer {
  --route-offset: 48vh;
  --route-final-opacity: 0.05;
  height: clamp(44px, 4.2vw, 70px);
}

.supply-route--middle {
  --route-offset: 41vh;
  --route-final-opacity: 0.08;
  height: clamp(62px, 6vw, 98px);
}

.supply-route--inner {
  --route-offset: 34vh;
  --route-final-opacity: 0.14;
}

.supply-route > span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff3d00 0%, var(--orange) 54%, #ff7842 100%);
  box-shadow: 0 22px 70px rgb(255 90 31 / 24%);
}

.supply-route--upper {
  transform-origin: left center;
  transform: translate3d(calc(-50% + 16vw), calc(-50% - var(--route-offset)), 0) rotate(7deg) scaleX(1.02) scaleY(1.02);
}

.supply-route--lower {
  transform-origin: left center;
  transform: translate3d(calc(-50% + 16vw), calc(-50% + var(--route-offset)), 0) rotate(-7deg) scaleX(1.02) scaleY(1.02);
}

.supply-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1280px);
  display: grid;
  justify-items: start;
  text-align: left;
}

.supply-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.supply-hero h1 {
  margin: 26px 0 0;
  max-width: 1280px;
  font-family: var(--display);
  font-size: clamp(50px, 6.05vw, 92px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
  animation: hero-copy-reveal 720ms 160ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.supply-hero h1 span {
  display: block;
  white-space: nowrap;
}

.supply-hero h1 span:last-child {
  margin: 8px 0 0;
  color: var(--orange);
}

.supply-hero .supply-kicker {
  animation: hero-copy-reveal 580ms 90ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.supply-hero-foot {
  width: min(100%, 720px);
  margin: clamp(38px, 4.5vw, 62px) 0 0;
  display: grid;
  justify-items: start;
  animation: hero-copy-reveal 680ms 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.supply-hero-foot p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.55;
}

.business-directions {
  position: relative;
  z-index: 3;
  min-height: max(640px, calc(100svh - 86px));
  padding: clamp(12px, 1.6vw, 20px) max(24px, calc((100vw - 1440px) / 2)) 18px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(8px, 1.2vh, 12px);
  overflow: hidden;
  background: var(--paper);
}

.business-directions::after {
  content: none;
}

.directions-heading {
  position: relative;
  z-index: 2;
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
}

.directions-heading h2 {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: clamp(26px, 2.7vw, 40px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.directions-heading > p:last-child {
  display: none;
}

.supply-network {
  position: relative;
  width: min(100%, 1240px);
  height: 100%;
  min-height: 520px;
  margin-inline: auto;
  isolation: isolate;
}

.supply-network::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(58vw, 780px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 112 31 / 10%) 0 32%, transparent 72%);
  transform: translate(-50%, -50%);
}

.supply-hub {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: clamp(320px, 42vw, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid rgb(255 90 31 / 28%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ffb27c 0%, var(--orange) 54%, #cb3c00 100%);
  color: var(--ink);
  opacity: 0.09;
  filter: saturate(0.65) contrast(0.9);
  transform: translate(-50%, -48%);
  pointer-events: none;
}

.supply-hub::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 2px solid currentColor;
  border-radius: inherit;
}

.supply-hub-mark {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 700;
  line-height: 1;
}

.business-category-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  align-content: center;
  gap: 10px;
  padding: 20px 0;
}

.business-category-grid::before {
  content: none;
}

.business-category {
  --card-offset: 0px;
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
  min-height: 0;
  display: block;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(rgb(255 255 255 / 96%), rgb(255 255 255 / 96%)) padding-box,
    linear-gradient(135deg, var(--category-start), var(--category-end), var(--category-start)) border-box;
  background-size: 100% 100%, 220% 220%;
  color: var(--ink);
  box-shadow: 0 12px 30px rgb(23 24 21 / 7%);
  text-align: left;
  text-decoration: none;
  transform: translateY(var(--card-offset));
  animation:
    category-rise 700ms cubic-bezier(0.22, 1, 0.36, 1) both,
    category-border-shimmer 6s ease-in-out infinite alternate;
  transition: box-shadow 220ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.business-category:nth-child(2) {
  --card-offset: -18px;
  animation-delay: 70ms;
}
.business-category:nth-child(3) { animation-delay: 140ms; }
.business-category:nth-child(4) { animation-delay: 210ms; }
.business-category:nth-child(5) { animation-delay: 280ms; }
.business-category:nth-child(6) { animation-delay: 350ms; }
.business-category:nth-child(7) { animation-delay: 420ms; }
.business-category:nth-child(8) {
  --card-offset: 18px;
  animation-delay: 490ms;
}
.business-category:nth-child(9) { animation-delay: 560ms; }

.business-category-node {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(92px, 36%) minmax(0, 1fr);
  grid-template-rows: 1fr;
  gap: 9px;
  padding: 7px;
}

.business-category-media {
  min-height: 0;
  display: block;
  overflow: hidden;
  border-radius: 11px;
  background: color-mix(in srgb, var(--category-start) 10%, var(--paper));
}

.business-category-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.business-category-label {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 5px 7px 5px 2px;
}

.business-category-label small {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.business-category-label strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.business-category-label > span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.business-category:hover,
.business-category:focus-visible {
  border-color: transparent;
  box-shadow: 0 24px 54px color-mix(in srgb, var(--category-start) 24%, transparent);
  transform: translateY(calc(var(--card-offset) - 7px)) scale(1.012);
  outline: none;
}

.business-category:hover .business-category-image,
.business-category:focus-visible .business-category-image {
  transform: scale(1.035);
}

.business-category:focus-visible {
  box-shadow:
    0 0 0 4px var(--paper),
    0 0 0 7px var(--category-start),
    0 24px 54px color-mix(in srgb, var(--category-start) 24%, transparent);
}

@keyframes category-border-shimmer {
  from { background-position: 0 0, 0% 50%; }
  to { background-position: 0 0, 100% 50%; }
}

.catalog-page-main {
  min-height: calc(100svh - 86px);
}

.catalog-intro {
  position: relative;
  min-height: 430px;
  padding: clamp(72px, 8vw, 118px) max(24px, calc((100vw - 1440px) / 2)) clamp(70px, 8vw, 108px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.catalog-intro::after {
  content: "";
  position: absolute;
  top: -24%;
  right: max(-110px, calc((100vw - 1580px) / 2));
  width: min(40vw, 520px);
  aspect-ratio: 1;
  border: clamp(16px, 2vw, 30px) solid var(--orange);
  border-radius: 50%;
  opacity: 0.85;
}

.catalog-back {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-bottom: clamp(54px, 6vw, 82px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.catalog-back span {
  color: var(--orange);
  font-size: 21px;
  transition: transform 180ms ease;
}

.catalog-back:hover span {
  transform: translateX(-4px);
}

.catalog-intro h1 {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 16px 0 16px;
  font-family: var(--display);
  font-size: clamp(58px, 8vw, 118px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.catalog-intro-description {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.55;
}

.catalog-page-products {
  padding-top: clamp(68px, 8vw, 110px);
}

.catalog-page-products .section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.catalog,
.site-footer {
  width: min(100% - 48px, 1440px);
  margin-inline: auto;
}

.eyebrow,
.drawer-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog {
  padding: 54px 0 110px;
}

.section-heading {
  margin-bottom: 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading .eyebrow {
  margin-bottom: 8px;
}

.section-heading h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.catalog-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-field {
  width: clamp(240px, 23vw, 340px);
  height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  transition: border-color 180ms ease;
}

.search-field:focus-within {
  border-color: var(--ink);
}

.search-field svg,
.filter-trigger svg,
.catalog-empty svg {
  width: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-field input {
  min-width: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}

.search-field input::placeholder {
  color: #969891;
}

.search-field input:focus-visible {
  outline: none;
}

.search-field input::-webkit-search-cancel-button {
  cursor: pointer;
}

.filter-control {
  position: relative;
}

.filter-trigger {
  min-width: 138px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid var(--ink);
  border-radius: 13px;
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.filter-trigger:hover,
.filter-trigger[aria-expanded="true"] {
  background: var(--ink);
  color: var(--white);
}

.filter-menu {
  position: absolute;
  z-index: 25;
  top: calc(100% + 10px);
  right: 0;
  width: 230px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 20px 54px rgb(23 24 21 / 14%);
}

.filter-option {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.filter-option:hover {
  background: var(--paper);
}

.filter-option-mark {
  opacity: 0;
  font-size: 12px;
}

.information-layer {
  position: fixed;
  z-index: 65;
  inset: 0;
  place-items: center;
  padding: 24px;
}

.information-layer:not([hidden]) {
  display: grid;
}

.information-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgb(23 24 21 / 34%);
  animation: fade-in 220ms ease both;
}

.information-dialog {
  position: relative;
  width: min(100%, 560px);
  padding: clamp(32px, 5vw, 56px);
  background: var(--white);
  box-shadow: var(--shadow);
  animation: product-in 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.information-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.information-dialog h2 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.information-placeholder {
  margin: 32px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.6;
}

.filter-option[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.filter-option[aria-pressed="true"] .filter-option-mark {
  opacity: 1;
}

.catalog-empty {
  grid-column: 1 / -1;
  min-height: 360px;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
}

.catalog-empty svg {
  width: 34px;
  margin-bottom: 18px;
  color: var(--muted);
}

.catalog-empty h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}

.catalog-empty p {
  max-width: 38ch;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 38px 14px;
}

.product-card {
  min-width: 0;
}

.product-visual-wrap {
  position: relative;
}

.product-visual {
  width: 100%;
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--paper);
  cursor: pointer;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgb(23 24 21 / 7%);
}

.product-visual::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 15%;
  left: 0;
  height: 1px;
  background: rgb(23 24 21 / 10%);
}

.product-placeholder {
  position: relative;
  z-index: 1;
  width: calc(100% - 36px);
  min-height: 70%;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 20px 16px;
  border: 1px solid rgb(23 24 21 / 12%);
  background: var(--white);
  text-align: left;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease;
}

.product-placeholder small {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-placeholder strong {
  font-family: var(--display);
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.product-card:hover .product-placeholder {
  border-color: var(--ink);
  transform: translateY(-6px);
}

.product-visual svg,
.product-photo {
  width: 69%;
  height: auto;
  z-index: 1;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card:hover .product-visual svg,
.product-card:hover .product-photo {
  transform: translateY(-8px) rotate(-1deg);
}

.product-description {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.product-more {
  position: absolute;
  z-index: 2;
  right: 11px;
  bottom: 11px;
  padding: 6px 8px;
  border-radius: 7px;
  background: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-visual:hover .product-more,
.product-visual:focus-visible .product-more {
  opacity: 1;
  transform: translateY(0);
}

.favorite-button {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgb(23 24 21 / 10%);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.favorite-button:hover {
  transform: scale(1.06);
}

.favorite-button svg,
.favorite-detail-button svg {
  width: 17px;
  fill: transparent;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.favorite-button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.favorite-button[aria-pressed="true"] svg,
.favorite-detail-button[aria-pressed="true"] svg {
  fill: currentColor;
}

.product-meta {
  padding-top: 13px;
}

.product-category {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-title-row {
  display: grid;
  gap: 7px;
}

.product-title-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
}

.product-title-row h3 button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
}

.product-title-row h3 button:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.product-price {
  flex: none;
  font-size: 13px;
  font-weight: 600;
}

.site-footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.product-layer {
  position: fixed;
  z-index: 60;
  inset: 0;
  place-items: center;
  padding: 24px;
}

.product-layer:not([hidden]) {
  display: grid;
}

.product-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgb(23 24 21 / 34%);
  animation: fade-in 220ms ease both;
}

.product-dialog {
  position: relative;
  width: min(100%, 940px);
  max-height: min(760px, calc(100vh - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  animation: product-in 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.product-dialog-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
}

.product-detail-visual {
  min-height: 580px;
  min-width: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
}

.product-detail-visual svg {
  width: 68%;
  max-width: 360px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.product-detail-visual .product-placeholder {
  width: min(76%, 390px);
  min-height: 300px;
  padding: 34px;
}

.product-detail-visual .product-placeholder strong {
  font-size: clamp(24px, 3vw, 38px);
}

.product-detail-photo {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 580px;
  display: block;
  object-fit: cover;
}

.product-detail-content {
  min-height: 0;
  padding: 76px 42px 40px;
  overflow-y: auto;
}

.product-detail-category {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-content h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.product-detail-price {
  display: block;
  margin-top: 20px;
  font-size: 17px;
}

.product-detail-description {
  margin: 32px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.product-facts div {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.product-facts dt,
.product-facts dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.product-facts dt {
  color: var(--muted);
}

.product-detail-actions {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 9px;
}

.favorite-detail-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.favorite-detail-button[aria-pressed="true"] {
  background: var(--paper);
}

.drawer-layer {
  position: fixed;
  z-index: 50;
  inset: 0;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgb(23 24 21 / 25%);
  cursor: default;
  animation: fade-in 220ms ease both;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 520px);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: var(--shadow);
  animation: slide-in 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.drawer-header {
  min-height: 110px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: 35px;
  font-weight: 400;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--ink);
}

.icon-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.drawer-body {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  padding: 0 30px 30px;
}

.cart-items {
  min-height: 320px;
}

.empty-cart {
  min-height: 420px;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.empty-cart svg {
  width: 48px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.2;
}

.empty-cart h3,
.checkout-heading h3,
.success-view h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
}

.empty-cart p,
.checkout-heading > p:last-child,
.success-view > p:not(.drawer-kicker) {
  max-width: 32ch;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.cart-line {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 16px;
  border-bottom: 1px solid var(--soft-line);
}

.cart-line-art {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--paper);
}

.cart-line-art .product-placeholder {
  width: calc(100% - 12px);
  min-height: calc(100% - 12px);
  gap: 4px;
  padding: 8px;
}

.cart-line-art .product-placeholder small {
  display: none;
}

.cart-line-art .product-placeholder strong {
  font-family: var(--body);
  font-size: 9px;
  line-height: 1.15;
}

.cart-line-art svg {
  width: 75%;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-line-info h3 {
  margin: 4px 0 8px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
}

.cart-line-price {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.quantity-control {
  width: fit-content;
  margin-top: 13px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.quantity-control button {
  width: 30px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity-control span {
  min-width: 24px;
  font-size: 12px;
  text-align: center;
}

.line-total {
  padding-top: 4px;
  font-size: 13px;
  font-weight: 600;
}

.cart-footer {
  padding-top: 26px;
}

.cart-total-row {
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}

.cart-total-row strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.primary-button {
  width: 100%;
  min-height: 54px;
  padding: 14px 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.primary-button:hover {
  background: var(--white);
  color: var(--ink);
}

.primary-button:disabled,
.icon-button:disabled {
  cursor: wait;
  opacity: 0.45;
}

.small-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.checkout-view,
.success-view {
  padding-top: 26px;
}

.back-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
}

.back-button:hover {
  color: var(--ink);
}

.checkout-heading {
  margin: 50px 0 32px;
}

.checkout-heading .drawer-kicker {
  margin-bottom: 10px;
}

.profile-form {
  display: grid;
  gap: 20px;
}

.profile-form label {
  display: grid;
  gap: 8px;
}

.profile-form label > span {
  font-size: 12px;
  font-weight: 600;
}

.profile-form label > span small {
  margin-left: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}

.profile-form input,
.profile-form textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  resize: vertical;
  background: var(--white);
}

.profile-form input:focus,
.profile-form textarea:focus {
  border-color: var(--orange);
}

.profile-form input::placeholder,
.profile-form textarea::placeholder {
  color: #a7a8a3;
}

.profile-form .primary-button {
  margin-top: 12px;
}

.form-error {
  margin: 0;
  color: #9f2f24;
  font-size: 12px;
}

.profile-drawer-body {
  padding-top: 28px;
}

.cashback-card {
  position: relative;
  min-height: 174px;
  padding: 25px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.cashback-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -45px;
  bottom: -65px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 50%;
}

.cashback-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--orange);
}

.cashback-card p,
.cashback-card small {
  margin: 0;
}

.cashback-card p {
  margin-bottom: 8px;
  color: rgb(255 255 255 / 62%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cashback-card strong {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.cashback-card small {
  max-width: 32ch;
  color: rgb(255 255 255 / 62%);
  font-size: 11px;
  line-height: 1.45;
}

.cashback-mark {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--display);
  font-size: 12px;
  font-style: italic;
}

.account-heading {
  margin: 42px 0 28px;
}

.account-heading h3 {
  margin: 9px 0 0;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 400;
}

.account-heading > p:last-child {
  max-width: 40ch;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.profile-storage-note {
  margin: 0;
  padding: 13px 15px;
  border-left: 3px solid var(--orange);
  background: var(--paper);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.profile-storage-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 11px;
}

.form-success {
  margin: 0;
  color: #286b42;
  font-size: 12px;
}

.success-view:not([hidden]) {
  min-height: 620px;
  display: grid;
  align-content: center;
  justify-items: start;
}

.success-mark {
  width: 52px;
  height: 52px;
  margin-bottom: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 20px;
}

.success-view .drawer-kicker {
  margin-bottom: 10px;
}

.success-view .primary-button {
  margin-top: 32px;
}

.experience-layer {
  position: fixed;
  z-index: 60;
  inset: 0;
  background: var(--white);
  animation: fade-in 180ms ease both;
}

.experience-dialog {
  width: 100%;
  min-height: 100%;
  height: 100%;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
}

.experience-header {
  min-height: 104px;
  padding: 20px max(24px, calc((100vw - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.experience-heading {
  min-width: 0;
}

.experience-heading .drawer-kicker {
  margin-bottom: 5px;
  color: var(--orange);
}

.experience-header .icon-button:hover,
.experience-header .icon-button:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
  outline: none;
}

.experience-header h2 {
  margin: 0;
  outline: none;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.experience-main {
  width: min(100%, 1280px);
  min-height: 0;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 68px);
  flex: 1;
  overflow: auto;
  overscroll-behavior: contain;
}

.experience-view {
  animation: experience-in 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.experience-section-label {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-view:not([hidden]) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
}

.cart-list-panel {
  min-width: 0;
}

.cart-list-panel .cart-items {
  min-height: 360px;
  border-top: 1px solid var(--ink);
}

.application-summary {
  position: sticky;
  top: 0;
  padding: 34px 28px 28px;
  border: 1px solid var(--ink);
  background: var(--white);
  text-align: center;
  overflow: hidden;
}

.application-summary::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--orange);
}

.application-summary .drawer-kicker {
  margin-bottom: 38px;
  color: var(--orange);
}

.application-summary .cart-total-row {
  margin-bottom: 28px;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.application-summary .primary-button {
  width: 100%;
}

.application-summary .small-note,
.application-summary .form-error {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.application-summary .cart-total-row span {
  color: var(--muted);
  font-size: 12px;
}

.application-summary .cart-total-row strong {
  color: var(--orange);
  font-size: clamp(38px, 4vw, 54px);
  letter-spacing: -0.045em;
}

.application-draft-view:not([hidden]) {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: block;
}

.application-draft-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.draft-products-panel {
  min-width: 0;
}

.draft-products-panel h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.draft-explainer {
  max-width: 560px;
  margin: 18px 0 34px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.draft-items {
  border-top: 1px solid var(--ink);
}

.draft-line {
  min-height: 112px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.draft-line-copy h4,
.application-file-copy strong {
  margin: 0;
  font-size: 14px;
}

.draft-line-copy p,
.application-file-copy span {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.draft-line-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.draft-remove-button,
.application-file-remove,
.application-file-retry {
  padding: 5px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  cursor: pointer;
}

.draft-remove-button:hover,
.application-file-remove:hover,
.application-file-retry:hover {
  color: var(--ink);
}

.draft-back-button {
  margin-top: 28px;
}

.draft-form-panel {
  border: 1px solid var(--ink);
  background: var(--white);
}

.draft-profile-card {
  padding: 24px;
  display: grid;
  gap: 4px;
  background: var(--ink);
  color: var(--white);
}

.draft-profile-card .experience-section-label {
  margin-bottom: 12px;
  color: rgb(255 255 255 / 58%);
}

.draft-profile-card strong {
  font-size: 18px;
}

.draft-profile-card span {
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
}

.application-wishes-field,
.application-attachments,
.draft-submit-panel {
  padding: 24px;
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.application-wishes-field > span {
  font-size: 12px;
  font-weight: 700;
}

.application-wishes-field textarea {
  width: 100%;
  min-height: 130px;
  resize: vertical;
  padding: 14px;
  border: 1px solid var(--line);
  outline: none;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

.application-wishes-field textarea:focus-visible {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgb(255 90 31 / 18%);
}

.application-upload-zone {
  min-height: 116px;
  display: grid;
  place-content: center;
  gap: 7px;
  padding: 18px;
  border: 1px dashed var(--ink);
  background: var(--paper);
  text-align: center;
  cursor: pointer;
}

.application-upload-zone:hover {
  background: var(--white);
}

.application-upload-zone strong {
  font-size: 14px;
}

.application-upload-zone span {
  color: var(--muted);
  font-size: 11px;
}

#application-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.application-files {
  display: grid;
  gap: 8px;
}

.application-file-row {
  position: relative;
  min-width: 0;
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  overflow: hidden;
}

.application-file-progress {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--line);
}

.application-file-progress span {
  display: block;
  width: var(--file-progress, 0%);
  height: 100%;
  background: var(--orange);
  transition: width 160ms ease;
}

.application-file-row[data-state="error"] {
  border-color: var(--orange);
}

.application-file-copy {
  min-width: 0;
}

.application-file-copy strong,
.application-file-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.draft-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.draft-total-row span {
  color: var(--muted);
  font-size: 12px;
}

.draft-total-row strong {
  font-size: 28px;
  letter-spacing: -0.035em;
}

.draft-submit-panel .primary-button {
  width: 100%;
}

.draft-submit-panel .small-note,
.draft-submit-panel .form-error {
  margin: 0;
  text-align: left;
}

.registration-view:not([hidden]) {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: start;
}

.registration-intro {
  position: sticky;
  top: 0;
}

.profile-view:not([hidden]) {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: block;
}

.account-dashboard {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.45fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.account-summary-column {
  min-width: 0;
  display: grid;
  gap: 18px;
  align-content: start;
}

.applications-panel {
  min-width: 0;
}

.account-section-heading {
  margin-bottom: 20px;
}

.account-section-heading h3 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.application-empty {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.application-empty strong {
  font-size: 15px;
}

.application-empty p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.application-history {
  display: grid;
  border-top: 1px solid var(--ink);
}

.application-row {
  padding: 20px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 10px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.application-row-main {
  grid-column: 1;
}

.application-row-meta {
  grid-column: 1;
}

.application-row-main,
.application-row-meta {
  display: grid;
  gap: 5px;
}

.application-row-main strong {
  font-size: 14px;
}

.application-row-main small,
.application-row-meta small {
  color: var(--muted);
  font-size: 11px;
}

.application-status {
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
}

.application-status[data-status="cancelled"] {
  color: var(--muted);
  text-decoration: line-through;
}

.application-status[data-status="submitted"] {
  border-color: var(--orange-soft);
  background: rgb(255 90 31 / 8%);
  color: var(--orange);
}

.application-row-actions {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.application-row-actions button,
.text-button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  cursor: pointer;
}

.application-row-actions button:hover,
.text-button:hover {
  border-color: var(--ink);
}

.application-row-actions .cancel-application-button {
  width: 38px;
  min-width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.cancel-application-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.application-row-actions .cancel-application-button:hover,
.application-row-actions .cancel-application-button:focus-visible {
  border-color: #b3261e;
  color: #b3261e;
  outline: none;
}

.application-detail {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.application-detail[hidden] {
  display: none;
}

.application-detail > header {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.application-detail h4 {
  margin: 7px 0 0;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
}

.application-detail-line {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.application-detail-summary {
  margin-top: 18px;
  padding-top: 18px;
  display: grid;
  gap: 6px;
  border-top: 1px solid var(--ink);
}

.application-detail-summary span {
  color: var(--muted);
  font-size: 11px;
}

.application-detail-summary strong {
  font-size: 24px;
}

.experience-step {
  width: 56px;
  height: 56px;
  margin-bottom: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
}

.registration-intro h3,
.submitting-view h3,
.success-view h3 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.registration-intro > p:last-of-type,
.submitting-view > p:last-child,
.success-view > p:not(.drawer-kicker) {
  max-width: 38ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.registration-benefits {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.registration-benefits li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.registration-benefits li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--orange);
}

.form-sheet {
  position: relative;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 26px 80px rgb(23 24 21 / 7%);
  overflow: hidden;
}

.form-sheet::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--orange);
}

.form-sheet .profile-form {
  gap: 24px;
}

.form-sheet .profile-form input,
.form-sheet .profile-form textarea {
  padding: 15px 0;
}

.submitting-view:not([hidden]),
.success-view:not([hidden]) {
  min-height: calc(100dvh - 240px);
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.loading-mark {
  width: 56px;
  height: 56px;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: loading-spin 900ms linear infinite;
}

.success-view .success-mark {
  width: 68px;
  height: 68px;
  margin-bottom: 38px;
  font-size: 24px;
}

.success-view .primary-button {
  width: min(100%, 320px);
}

.toast {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: 24px;
  margin: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

@keyframes slide-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes product-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes experience-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loading-spin {
  to { transform: rotate(360deg); }
}

@keyframes hero-copy-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-36px);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

@keyframes category-rise {
  from { opacity: 0; translate: 0 24px; }
  to { opacity: 1; translate: 0 0; }
}

@media (max-width: 700px) {
  .experience-header {
    min-height: 78px;
    padding: 12px 14px;
  }

  .experience-header h2 {
    font-size: 31px;
  }

  .experience-header .icon-button {
    width: 42px;
    height: 42px;
  }

  .experience-main {
    padding: 26px 14px 42px;
  }

  .cart-view:not([hidden]),
  .registration-view:not([hidden]),
  .application-draft-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .registration-intro,
  .application-summary {
    position: static;
  }

  .account-dashboard {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cart-list-panel .cart-items {
    min-height: 280px;
  }

  .application-summary,
  .form-sheet {
    padding: 22px;
  }

  .draft-line {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .draft-line-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .draft-form-panel {
    margin-inline: -1px;
  }

  .experience-step {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
  }

  .registration-intro h3,
  .submitting-view h3,
  .success-view h3 {
    font-size: 42px;
  }

  .submitting-view:not([hidden]),
  .success-view:not([hidden]) {
    min-height: calc(100dvh - 170px);
  }
}

@media (max-width: 980px) {
  .supply-hero {
    min-height: 0;
  }

  .supply-network {
    height: auto;
    min-height: 520px;
    display: block;
  }

  .supply-network::before {
    display: block;
    width: min(72vw, 620px);
  }

  .supply-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(58vw, 460px);
    margin: 0;
    transform: translate(-50%, -48%);
  }

  .supply-hub-mark {
    font-size: clamp(120px, 22vw, 210px);
  }

  .business-category-grid {
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(150px, 1fr));
    gap: 10px;
  }

  .business-category {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    min-height: 150px;
    transform: translateY(var(--card-offset));
  }

  .business-category:hover,
  .business-category:focus-visible {
    transform: translateY(calc(var(--card-offset) - 5px));
  }

  .business-category-grid::before {
    display: none;
  }

  .business-category-node {
    grid-template-columns: minmax(92px, 36%) minmax(0, 1fr);
    grid-template-rows: 1fr;
    gap: 9px;
    padding: 7px;
  }

  .section-heading {
    display: grid;
  }

  .catalog-tools {
    width: 100%;
  }

  .search-field {
    width: auto;
    flex: 1;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 42px;
  }
}

@media (min-width: 981px) and (max-width: 1240px) {
  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .business-directions {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: stretch;
    gap: 8px;
    padding: 14px max(18px, calc((100vw - 860px) / 2)) 14px;
  }

  .directions-heading {
    width: min(100%, 680px);
  }

  .directions-heading h2 {
    margin-block: 6px 0;
    font-size: clamp(24px, 4vw, 34px);
  }

  .directions-heading > p:last-child {
    display: none;
  }

  .supply-network {
    min-height: 520px;
    max-height: none;
  }

  .supply-network::before {
    display: block;
  }

  .supply-hub {
    width: min(62vw, 460px);
    min-height: 0;
    padding: 0;
  }

  .supply-hub-mark {
    width: auto;
    height: auto;
    font-size: clamp(110px, 22vw, 190px);
  }

  .business-category-grid {
    gap: 10px;
  }

  .business-category-grid::before {
    display: none;
  }

  .business-category,
  .business-category-node {
    min-height: 0;
  }

  .business-category-node {
    grid-template-columns: minmax(78px, 34%) minmax(0, 1fr);
    grid-template-rows: 1fr;
    gap: 8px;
    padding: 7px;
  }

  .site-header {
    height: auto;
    min-height: 86px;
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .header-nav {
    order: 3;
    width: 100%;
    margin: 8px 0 0;
    justify-content: center;
    gap: clamp(14px, 4vw, 28px);
  }
}

@media (max-width: 620px) {
  .catalog-intro {
    min-height: 410px;
    padding: 56px 18px 72px;
  }

  .catalog-intro::after {
    top: 8%;
    right: -145px;
    width: 290px;
    opacity: 0.26;
  }

  .catalog-back {
    margin-bottom: 62px;
  }

  .catalog-intro h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: 1.02;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }
  .supply-hero {
    --route-size: 74px;
    min-height: calc(100svh - 126px);
    padding: 86px 18px 72px;
  }

  .supply-hero::before {
    inset: 14px;
  }

  .supply-route {
    width: 190vw;
  }

  .supply-hero h1 {
    margin-top: 20px;
    max-width: 100%;
    font-size: clamp(40px, 11.5vw, 52px);
    line-height: 1.02;
  }

  .supply-hero h1 span {
    white-space: normal;
  }

  .supply-hero h1 span:last-child {
    margin: 8px 0 0;
  }

  .supply-hero-foot {
    margin-top: 38px;
    display: grid;
    gap: 24px;
  }

  .business-directions {
    padding: 10px 12px 12px;
    overflow: hidden;
  }

  .directions-heading {
    margin-bottom: 0;
  }

  .directions-heading h2 {
    margin-block: 4px 0;
    font-size: 22px;
    line-height: 1.02;
  }

  .supply-network {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    display: block;
    padding: 0;
  }

  .supply-network::before {
    display: block;
    width: 420px;
    opacity: 0.8;
  }

  .supply-hub {
    top: 50%;
    left: 50%;
    width: 360px;
    min-width: 0;
    margin: 0;
    padding: 0;
    opacity: 0.07;
    transform: translate(-50%, -50%);
  }

  .supply-hub-mark {
    width: auto;
    height: auto;
    font-size: 150px;
  }

  .business-category-grid {
    position: relative;
    z-index: 2;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: minmax(168px, auto);
    gap: 6px;
    padding: 0;
  }

  .business-category {
    --card-offset: 0px;
    min-height: 168px;
    aspect-ratio: auto;
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    transform: none;
  }

  .business-category:hover,
  .business-category:focus-visible {
    transform: none;
  }

  .business-category::before {
    content: none;
  }

  .business-category-node {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(60px, 0.8fr) auto;
    gap: 5px;
    padding: 6px;
  }

  .business-category-label {
    gap: 3px;
    padding: 1px 3px 4px;
  }

  .business-category-label strong {
    font-size: 10px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .business-category-label > span {
    display: -webkit-box;
    font-size: 8.5px;
    line-height: 1.2;
  }
  .catalog,
  .site-footer {
    width: min(100% - 28px, 1440px);
  }

  .site-header {
    height: auto;
    min-height: 76px;
    padding: 10px 14px;
  }

  .header-nav button {
    font-size: 10px;
  }

  .brand-name {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .account-trigger {
    min-width: 50px;
    min-height: 52px;
    padding: 5px;
    border-radius: 12px;
  }

  .account-icon {
    width: 40px;
    height: 40px;
  }

  .account-label {
    display: none;
  }

  .cart-trigger {
    min-width: 152px;
    min-height: 52px;
    gap: 8px;
    padding: 6px;
    border-radius: 12px;
  }

  .cart-icon {
    width: 31px;
  }

  .cart-label {
    min-width: 66px;
  }

  .cart-label small {
    display: none;
  }

  .cart-count {
    min-width: 38px;
    height: 38px;
  }

  .catalog {
    padding-top: 38px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .catalog-tools {
    gap: 8px;
  }

  .search-field {
    height: 48px;
    padding-inline: 12px;
  }

  .filter-trigger {
    min-width: 118px;
    height: 48px;
    padding-inline: 13px;
  }

  .filter-menu {
    width: min(230px, calc(100vw - 28px));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 10px;
  }

  .product-visual {
    aspect-ratio: 1;
  }

  .product-more {
    display: none;
  }

  .product-title-row h3 {
    font-size: 16px;
  }

  .catalog {
    padding-bottom: 80px;
  }

  .site-footer {
    min-height: 90px;
  }

  .site-footer span:last-child {
    display: none;
  }

  .drawer-header,
  .drawer-body {
    padding-right: 20px;
    padding-left: 20px;
  }

  .cart-line {
    grid-template-columns: 70px 1fr;
  }

  .line-total {
    display: none;
  }

  .product-layer {
    align-items: end;
    padding: 0;
  }

  .information-layer {
    padding: 14px;
  }

  .information-dialog {
    padding: 34px 24px;
  }

  .product-dialog {
    width: 100%;
    max-height: 92vh;
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .product-detail-visual {
    min-height: auto;
    aspect-ratio: 1.5;
  }

  .product-detail-photo {
    min-height: 0;
  }

  .product-detail-visual svg {
    width: 48%;
  }

  .product-detail-content {
    padding: 34px 20px 24px;
    overflow: visible;
  }

  .product-detail-content h2 {
    padding-right: 42px;
    font-size: 36px;
  }

  .product-detail-description {
    margin-block: 24px;
  }

  .product-detail-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .business-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(168px, auto);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .supply-shutter-scene,
  .supply-shutter-scene *,
  .supply-hero-copy > * {
    animation: none !important;
  }

  .supply-shutter-scene,
  .supply-hero-copy {
    opacity: 1;
    transform: none;
  }

  .supply-route--upper {
    opacity: var(--route-final-opacity);
    transform: translate3d(calc(-50% + 16vw), calc(-50% - var(--route-offset)), 0) rotate(7deg) scaleX(1.02) scaleY(1.02);
  }

  .supply-route--lower {
    opacity: var(--route-final-opacity);
    transform: translate3d(calc(-50% + 16vw), calc(-50% + var(--route-offset)), 0) rotate(-7deg) scaleX(1.02) scaleY(1.02);
  }

  .supply-hero-copy > * {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
