:root {
  --black: #11110f;
  --black-soft: #1d1d1a;
  --white: #f4f4f1;
  --white-pure: #ffffff;
  --grey: #757570;
  --grey-light: #d9d9d4;
  --grey-soft: #e9e9e5;
  --orange: #ee6a24;
  --orange-light: #f47c3f;
  --display: "Antonio", "Arial Narrow", sans-serif;
  --body: "Public Sans", "Helvetica Neue", sans-serif;
  --page: 92rem;
  --gutter: clamp(1rem, 3.5vw, 4rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --z-header: 20;
  --z-menu: 19;
  --z-backdrop: 29;
  --z-drawer: 30;
  --z-dialog: 40;
}

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

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

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  border-radius: 0;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--orange);
  color: var(--black);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--white-pure);
  color: var(--black);
  transform: translateY(-150%);
  transition: transform 200ms ease;
}

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

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

.announcement {
  min-height: 2rem;
  display: grid;
  place-items: center;
  padding: 0.4rem var(--gutter);
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.announcement p {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-header {
  position: sticky;
  z-index: var(--z-header);
  top: 0;
  display: grid;
  min-height: 4.8rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem var(--gutter);
  border-bottom: 1px solid transparent;
  background: rgb(244 244 241 / 0.96);
  transition:
    min-height 300ms var(--ease),
    border-color 300ms var(--ease),
    backdrop-filter 300ms ease;
}

.shop-header.is-scrolled {
  min-height: 4.15rem;
  border-color: var(--grey-light);
  backdrop-filter: blur(14px);
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.25rem);
}

.header-actions {
  justify-content: flex-end;
}

.desktop-nav a,
.header-actions a,
.bag-button,
.nav-toggle {
  border: 0;
  background: none;
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a,
.header-actions a {
  position: relative;
  padding: 0.35rem 0;
}

.desktop-nav a::after,
.header-actions a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--black);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.desktop-nav a:hover::after,
.header-actions a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.brand {
  display: grid;
  justify-items: center;
  color: var(--black);
  font-family: var(--display);
  line-height: 0.78;
  text-decoration: none;
}

.brand span {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  transform: translateX(0.15em);
}

.brand strong {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.bag-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.bag-button span {
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  background: var(--black);
  color: var(--white);
  font-size: 0.65rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 0;
}

.nav-toggle > span:first-child {
  width: 1.2rem;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0.35rem 0 currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: var(--z-menu);
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  min-height: 100svh;
  align-content: center;
  gap: 0.15rem;
  padding: 7rem var(--gutter) 3rem;
  background: var(--white);
  transform: translateY(-105%);
  transition: transform 500ms var(--ease);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--black);
  font-family: var(--display);
  font-size: clamp(3rem, 14vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 250ms ease,
    border-color 250ms ease,
    color 250ms ease,
    transform 250ms var(--ease);
}

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

.button--light {
  background: var(--white);
  color: var(--black);
}

.button--light:hover {
  background: var(--orange);
}

.button--dark {
  background: var(--black);
  color: var(--white);
}

.button--dark:hover {
  background: var(--orange);
  color: var(--black);
}

.button--orange {
  width: 100%;
  background: var(--orange);
  color: var(--black);
}

.button--orange:hover {
  background: var(--orange-light);
}

.shop-hero {
  position: relative;
  display: grid;
  min-height: min(52rem, calc(100svh - 6.8rem));
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  isolation: isolate;
}

.shop-hero > img,
.shop-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.shop-hero > img {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  animation: hero-image 1.2s var(--ease) both;
}

.shop-hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(12 12 10 / 0.86), rgb(12 12 10 / 0.42) 46%, transparent 74%),
    linear-gradient(0deg, rgb(12 12 10 / 0.56), transparent 52%);
}

.shop-hero__content {
  width: min(100%, var(--page));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
}

.shop-hero__content > p:first-child {
  margin-bottom: 1rem;
  color: var(--orange-light);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.shop-hero h1 {
  max-width: 8ch;
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-size: clamp(4.5rem, 10vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 0.96;
  text-transform: uppercase;
}

.shop-hero__lede {
  max-width: 35ch;
  margin-bottom: 2rem;
  color: #e2e2dc;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.shop-hero__note {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  display: flex;
  gap: 1.5rem;
  color: #e2e2dc;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.shop {
  padding: clamp(4.5rem, 8vw, 7rem) var(--gutter) clamp(5rem, 9vw, 8rem);
  background: var(--white);
}

.shop-heading,
.shop-tools,
.product-grid,
.empty-state {
  width: min(100%, var(--page));
  margin-right: auto;
  margin-left: auto;
}

.shop-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.shop-heading > div > p {
  margin-bottom: 0.7rem;
  color: var(--grey);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.shop-heading h2,
.sell-section h2,
.concierge h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}

.shop-heading > p {
  margin-bottom: 0.35rem;
  color: var(--grey);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.shop-tools {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--grey-light);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.filter {
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: var(--grey);
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter:hover,
.filter.is-active {
  color: var(--black);
}

.filter.is-active {
  border-color: var(--black);
}

.search input {
  width: min(15rem, 28vw);
  padding: 0.7rem 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--black);
  font-size: 0.8rem;
  text-align: right;
}

.search input::placeholder {
  color: var(--grey);
  opacity: 1;
}

.search input:focus {
  border-color: var(--orange);
  outline: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem) clamp(0.75rem, 1.6vw, 1.4rem);
}

.product-card[hidden] {
  display: none;
}

.product-card__media {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--grey-soft);
  overflow: hidden;
}

.product-card__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(17 17 15 / 0.08);
  content: "";
  pointer-events: none;
}

.product-card__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.product-card__media:hover img,
.product-card__media:focus-visible img {
  transform: scale(1.025);
}

.quick-view {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(0.5rem);
  transition:
    opacity 250ms var(--ease),
    transform 250ms var(--ease);
}

.product-card__media:hover .quick-view,
.product-card__media:focus-visible .quick-view {
  opacity: 1;
  transform: translateY(0);
}

.product-card__details {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.3rem 0.75rem;
  padding: 0.9rem 0 0.2rem;
}

.product-card__brand,
.product-card__price {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card__price {
  text-align: right;
}

.product-card__name {
  grid-column: 1;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.product-card__add {
  grid-column: 2;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--black);
  background: none;
  color: var(--black);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card__add:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.empty-state {
  padding: 5rem 0;
  text-align: center;
}

.empty-state p {
  color: var(--grey);
}

.empty-state button {
  padding: 0.4rem 0;
  border: 0;
  border-bottom: 1px solid var(--black);
  background: none;
  color: var(--black);
}

.sell-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 42rem;
  background: var(--black);
  color: var(--white);
}

.sell-section__image {
  min-width: 0;
  overflow: hidden;
}

.sell-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sell-section__content {
  display: grid;
  align-content: center;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
}

.sell-section__content > p:first-child,
.concierge__intro > p:first-child {
  margin-bottom: 1rem;
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 600;
}

.sell-section h2 {
  max-width: 9ch;
  margin-bottom: 1.75rem;
}

.sell-section__content > p:not(:first-child) {
  max-width: 48ch;
  color: #c8c8c2;
}

.sell-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.sell-options button {
  padding: 0.4rem 0;
  border: 0;
  border-bottom: 1px solid var(--white);
  background: none;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sell-options button:hover {
  border-color: var(--orange);
  color: var(--orange-light);
}

.concierge {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 9vw, 8rem) var(--gutter);
  background: var(--white);
}

.concierge__intro > p:first-child {
  color: var(--orange);
}

.concierge h2 {
  max-width: 8ch;
  margin-bottom: 1.75rem;
}

.concierge__intro > p:last-child {
  max-width: 42ch;
  color: var(--grey);
}

.concierge-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-content: start;
}

.concierge-form label {
  display: grid;
  gap: 0.45rem;
}

.concierge-form label > span {
  color: var(--grey);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.concierge-form :where(input, select, textarea) {
  width: 100%;
  border: 1px solid var(--grey-light);
  background: var(--white-pure);
  color: var(--black);
}

.concierge-form :where(input, select) {
  min-height: 3.2rem;
  padding: 0 0.85rem;
}

.concierge-form textarea {
  min-height: 8rem;
  padding: 0.8rem;
  resize: vertical;
}

.concierge-form :where(input, textarea)::placeholder {
  color: var(--grey);
  opacity: 1;
}

.concierge-form :where(input, select, textarea):focus {
  border-color: var(--black);
  outline: 0;
}

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

.concierge-form .button {
  grid-column: 1 / -1;
  justify-self: start;
}

.message-preview {
  grid-column: 2;
  padding: 1.25rem;
  border: 1px solid var(--grey-light);
  background: var(--white-pure);
}

.message-preview > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.message-preview > div p,
.message-preview > div button {
  margin: 0;
  border: 0;
  background: none;
  color: var(--grey);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.message-preview > div button {
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--black);
  color: var(--black);
}

.message-preview pre {
  margin: 0;
  font-family: var(--body);
  font-size: 0.88rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

.message-preview > p {
  min-height: 1.25rem;
  margin: 0.75rem 0 0;
  color: var(--orange);
  font-size: 0.78rem;
}

.shop-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr auto;
  align-items: end;
  gap: 2rem;
  padding: 3rem var(--gutter);
  border-top: 1px solid var(--grey-light);
  background: var(--white);
}

.brand--footer {
  justify-items: start;
}

.shop-footer p {
  margin: 0;
  color: var(--grey);
  font-size: 0.76rem;
}

.shop-footer a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.drawer-backdrop {
  position: fixed;
  z-index: var(--z-backdrop);
  inset: 0;
  background: rgb(17 17 15 / 0.52);
  opacity: 0;
  transition: opacity 300ms ease;
}

.drawer-backdrop.is-visible {
  opacity: 1;
}

.bag-drawer {
  position: fixed;
  z-index: var(--z-drawer);
  top: 0;
  right: 0;
  display: flex;
  width: min(30rem, 100%);
  height: 100svh;
  flex-direction: column;
  padding: 1.4rem;
  background: var(--white);
  box-shadow: -2rem 0 5rem rgb(17 17 15 / 0.18);
  transform: translateX(105%);
  transition: transform 450ms var(--ease);
}

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

.bag-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-light);
}

.bag-drawer__header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 500;
  text-transform: uppercase;
}

.bag-drawer__header button,
.dialog-close {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 0;
  background: none;
  color: inherit;
  font-size: 1.8rem;
}

.bag-items {
  flex: 1;
  overflow-y: auto;
}

.bag-item {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--grey-light);
}

.bag-item img {
  width: 5.5rem;
  height: 7rem;
  object-fit: cover;
}

.bag-item__details p {
  margin-bottom: 0.2rem;
  color: var(--grey);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.bag-item__details h3 {
  margin-bottom: 0.3rem;
  font-size: 0.86rem;
  font-weight: 500;
}

.bag-item__details span {
  color: var(--grey);
  font-size: 0.7rem;
}

.bag-item > button {
  align-self: start;
  padding: 0;
  border: 0;
  background: none;
  color: var(--grey);
  font-size: 0.68rem;
  text-decoration: underline;
}

.bag-empty {
  display: grid;
  flex: 1;
  place-content: center;
  text-align: center;
}

.bag-empty p {
  color: var(--grey);
}

.bag-empty a {
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.bag-drawer__footer {
  padding-top: 1rem;
  border-top: 1px solid var(--grey-light);
}

.bag-drawer__footer p {
  color: var(--grey);
  font-size: 0.76rem;
}

.product-dialog {
  width: min(68rem, calc(100% - 2rem));
  max-height: calc(100svh - 2rem);
  padding: 0;
  border: 0;
  background: var(--white);
  color: var(--black);
  overflow: auto;
}

.product-dialog::backdrop {
  background: rgb(17 17 15 / 0.68);
  backdrop-filter: blur(5px);
}

.product-dialog[open] {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.dialog-close {
  position: fixed;
  z-index: 2;
  top: max(1.5rem, calc((100svh - min(100svh - 2rem, 48rem)) / 2 + 0.6rem));
  right: max(1.5rem, calc((100vw - min(68rem, 100vw - 2rem)) / 2 + 0.6rem));
  background: var(--white);
}

.product-dialog__media {
  min-height: 42rem;
  background: var(--grey-soft);
}

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

.product-dialog__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.product-dialog__details > p:first-child {
  margin-bottom: 0.6rem;
  color: var(--grey);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-dialog__details h2 {
  margin-bottom: 0.7rem;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.product-dialog__price {
  margin-bottom: 1.8rem;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
}

.product-dialog__details > p:not(:first-child, .product-dialog__price) {
  color: var(--grey);
}

.product-dialog dl {
  margin: 1.2rem 0 2rem;
  border-top: 1px solid var(--grey-light);
}

.product-dialog dl div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--grey-light);
}

.product-dialog dt,
.product-dialog dd {
  margin: 0;
  font-size: 0.75rem;
}

.product-dialog dt {
  color: var(--grey);
  text-transform: uppercase;
}

@keyframes hero-image {
  from {
    filter: saturate(0.7);
    transform: scale(1.04);
  }
  to {
    filter: saturate(1);
    transform: scale(1);
  }
}

@media (max-width: 70rem) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sell-section {
    grid-template-columns: 1fr;
  }

  .sell-section__image {
    min-height: 30rem;
  }

  .concierge {
    grid-template-columns: 1fr;
  }

  .message-preview {
    grid-column: 1;
  }

  .shop-footer {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

@media (max-width: 52rem) {
  .desktop-nav,
  .header-actions > a {
    display: none;
  }

  .shop-header {
    grid-template-columns: 1fr auto 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions {
    display: flex;
  }

  .shop-hero {
    min-height: 44rem;
  }

  .shop-hero__content {
    padding-bottom: 6rem;
  }

  .shop-hero__note {
    display: none;
  }

  .shop-tools {
    display: grid;
    gap: 0.7rem;
  }

  .filters {
    gap: 1rem;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .search {
    width: 100%;
  }

  .search input {
    width: 100%;
    text-align: left;
  }

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

  .quick-view {
    opacity: 1;
    transform: none;
  }

  .concierge-form {
    grid-template-columns: 1fr;
  }

  .concierge-form label,
  .field-wide,
  .concierge-form .button {
    grid-column: 1;
  }

  .product-dialog[open] {
    grid-template-columns: 1fr;
  }

  .product-dialog__media {
    min-height: min(58svh, 34rem);
  }
}

@media (max-width: 34rem) {
  .announcement p {
    max-width: 34ch;
  }

  .shop-header {
    gap: 0.5rem;
  }

  .nav-toggle > span:last-child {
    display: none;
  }

  .brand strong {
    font-size: 1.7rem;
  }

  .shop-hero h1 {
    font-size: clamp(4rem, 20vw, 5.5rem);
    line-height: 0.94;
  }

  .shop-heading {
    align-items: start;
  }

  .product-grid {
    gap: 1.5rem 0.65rem;
  }

  .product-card__details {
    display: block;
  }

  .product-card__brand,
  .product-card__price,
  .product-card__name {
    margin-bottom: 0.25rem;
    text-align: left;
  }

  .product-card__add {
    margin-top: 0.45rem;
  }

  .sell-section__image {
    min-height: 22rem;
  }

  .shop-footer {
    grid-template-columns: 1fr;
  }

  .product-dialog {
    width: calc(100% - 0.75rem);
    max-height: calc(100svh - 0.75rem);
  }
}

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

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