@charset "UTF-8";
:root {
  --ink: #233a31;
  --muted: #64736b;
  --paper: #f5f3ec;
  --white: #fffef9;
  --line: #dcded4;
  --green: #345747;
  --acid: #e2ef99;
  --orange: #b44a31;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    14px/1.55 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
button,
input,
select,
textarea {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  color: inherit;
  border: 0;
  background: none;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.container {
  width: min(1320px, 100%);
  margin: auto;
  padding-inline: 44px;
}
.notice {
  text-align: center;
  background: var(--ink);
  color: #f3f5e9;
  font-size: 11px;
  letter-spacing: 0.35px;
  padding: 7px 16px;
}
header {
  border-bottom: 1px solid var(--line);
}
.topbar {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.logo {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 1;
  white-space: nowrap;
}
.logo span {
  font-size: 28px;
  letter-spacing: -2px;
}
.logo i {
  display: inline-block;
  background: var(--orange);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: 5px;
}
nav {
  display: flex;
  gap: 23px;
  white-space: nowrap;
  font-size: 13px;
}
nav a {
  padding-block: 10px;
  border-bottom: 2px solid transparent;
}
nav a.active {
  border-color: var(--green);
  font-weight: 700;
}
#search-form {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 15px;
  background: #efeee6;
  min-width: 140px;
}
#search-form span {
  font-size: 24px;
  line-height: 1;
}
#search {
  border: 0;
  background: transparent;
  min-width: 0;
  width: 175px;
  color: var(--ink);
}
.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  white-space: nowrap;
}
#account-button {
  max-width: 104px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.icon-button {
  font-size: 25px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
}
.icon-button:hover {
  background: #e4e7db;
}
.cart-button {
  font-size: 12px;
  font-weight: 700;
}
.cart-button span {
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  margin-left: 4px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-block: 54px 38px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 750;
  display: flex;
  gap: 9px;
  align-items: center;
}
.eyebrow:before {
  content: "";
  background: currentColor;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
h1 {
  font:
    500 clamp(42px, 5.5vw, 73px) / 1.08 Georgia,
    "Times New Roman",
    serif;
  letter-spacing: -3px;
  margin: 23px 0 22px;
}
h1 em {
  font-weight: 400;
  color: var(--orange);
}
.hero p {
  color: var(--muted);
  font-size: 15px;
  max-width: 400px;
  margin-bottom: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 40px;
  background: var(--ink);
  color: white;
  padding: 13px 23px;
  font-weight: 650;
  font-size: 13px;
}
.button:hover {
  background: #44604e;
}
.button.light {
  background: var(--acid);
  color: var(--ink);
}
.button.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.hero-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.text-button {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 12px;
  padding: 8px 0;
}
.hero-art {
  position: relative;
  min-width: 0;
  background: #e3ddc9;
  border-radius: 150px 150px 22px 22px;
  overflow: hidden;
  height: 394px;
  isolation: isolate;
}
.hero-art:before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #eee9d7;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.hero-art .art {
  position: absolute;
  width: 70%;
  height: 100%;
  left: 0;
  bottom: -22px;
}
.hero-art .secondary-art {
  width: 58%;
  left: 44%;
  bottom: -65px;
  transform: rotate(10deg);
}
.art-label {
  position: absolute;
  bottom: 22px;
  left: 24px;
  background: #fffef4e8;
  border: 1px solid #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 12px;
  box-shadow: 0 8px 25px #32432d12;
}
.art-label strong {
  display: block;
}
.edition {
  position: absolute;
  right: 20px;
  top: 30px;
  font-size: 10px;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}
.seal {
  position: absolute;
  right: 22px;
  bottom: 24px;
  border: 1px solid var(--green);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  font: italic 23px Georgia;
  transform: rotate(-12deg);
  background: var(--acid);
}
.promise-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  color: var(--muted);
  font-size: 11px;
}
.promise-strip b {
  color: var(--ink);
  font-size: 14px;
  margin-right: 8px;
}
.section {
  padding-block: 35px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
h2 {
  font:
    500 31px/1.2 Georgia,
    serif;
  letter-spacing: -0.7px;
  margin: 0;
}
h3 {
  line-height: 1.4;
}
.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.chips {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding: 4px 0 10px;
  margin-bottom: 19px;
}
.chip {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 9px 17px;
  white-space: nowrap;
  font-size: 12px;
}
.chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.filter-select {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 9px 13px;
  color: var(--ink);
  max-width: 180px;
}
.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px 20px;
}
.product {
  min-width: 0;
  position: relative;
}
.product-visual {
  border-radius: 15px;
  background: var(--tone, #e9e0d2);
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.product-visual > .detail-button {
  padding: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.art {
  width: 100%;
  height: 100%;
  transition: transform 0.35s;
}
.detail-button:hover .art {
  transform: scale(1.055);
}
.save {
  position: absolute;
  right: 11px;
  top: 11px;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  background: #fffef9d9;
  font-size: 20px;
}
.save[aria-pressed="true"] {
  color: var(--orange);
}
.tag {
  position: absolute;
  left: 12px;
  top: 14px;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
}
.product-shop {
  font-size: 10px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 15px;
}
.product h3 {
  font-size: 14px;
  margin: 4px 0 8px;
  font-weight: 550;
}
.product h3 button {
  text-align: left;
  padding: 0;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-bottom strong {
  font-size: 14px;
}
.add {
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 20px;
  width: 30px;
  height: 30px;
}
.add:hover {
  background: var(--acid);
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.story {
  position: relative;
  min-height: 235px;
  border-radius: 18px;
  background: var(--tone);
  overflow: hidden;
  text-align: left;
  padding: 0;
}
.story .art {
  position: absolute;
  width: 65%;
  right: -15px;
  bottom: -10px;
  height: 100%;
}
.story-copy {
  position: relative;
  width: 70%;
  padding: 25px;
  z-index: 1;
}
.story-copy small {
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 1px;
}
.story-copy h3 {
  font:
    500 27px/1.15 Georgia,
    serif;
  max-width: 180px;
}
.story-arrow {
  border: 1px solid #82927c;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}
.seller-banner {
  background: var(--ink);
  color: #f5f3e8;
  border-radius: 18px;
  padding: 33px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-block: 10px 45px;
}
.seller-banner h2 {
  font-size: 30px;
}
.seller-banner p {
  color: #c4d1c7;
  font-size: 13px;
}
footer {
  border-top: 1px solid var(--line);
  padding-block: 30px 35px;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
}
footer .logo {
  font-size: 28px;
}
footer .logo span {
  font-size: 20px;
}
footer p {
  flex: 1;
  color: var(--muted);
}
dialog {
  border: 1px solid var(--line);
  border-radius: 23px;
  width: min(730px, calc(100% - 28px));
  max-height: 88dvh;
  padding: 25px;
  background: var(--white);
  color: var(--ink);
}
dialog::backdrop {
  background: #122c2480;
  backdrop-filter: blur(5px);
}
body:has(dialog[open]) {
  overflow: hidden;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.modal-head h2 {
  font-size: 26px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.detail-grid .product-visual {
  align-self: start;
}
.detail-info p {
  color: var(--muted);
}
.detail-price {
  font-size: 24px;
  margin-block: 18px;
}
.meta {
  font-size: 12px;
  color: var(--muted);
}
.stack {
  display: grid;
  gap: 15px;
}
.field {
  display: grid;
  gap: 5px;
  font-size: 12px;
  font-weight: 650;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #c9d0c7;
  border-radius: 9px;
  background: white;
  color: var(--ink);
}
.field textarea {
  min-height: 80px;
  resize: vertical;
}
.cart-row {
  display: grid;
  grid-template-columns: 65px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.cart-row .product-visual {
  border-radius: 8px;
}
.cart-row h3 {
  font-size: 13px;
  margin: 0 0 4px;
}
.qty {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  margin-top: 6px;
}
.qty button {
  border: 1px solid var(--line);
  border-radius: 5px;
  min-width: 28px;
  min-height: 28px;
}
.total {
  display: flex;
  justify-content: space-between;
  margin-block: 20px;
  font-size: 17px;
}
.empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 55px 22px;
  border: 1px dashed #c6cfc4;
  border-radius: 15px;
}
.empty h3 {
  font: 27px Georgia;
}
.empty p {
  color: var(--muted);
}
.page-heading {
  padding-block: 45px 25px;
}
.page-heading h1 {
  font-size: 48px;
  margin: 0 0 12px;
}
.page-heading p {
  color: var(--muted);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-block: 10px 28px;
}
.metric {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
}
.metric span {
  font-size: 12px;
  color: var(--muted);
}
.metric strong {
  font-size: 27px;
  display: block;
}
.seller-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  margin-bottom: 40px;
}
.panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}
.panel h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.seller-item {
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  align-items: center;
}
.seller-item > div {
  flex: 1;
}
.seller-item h3 {
  font-size: 14px;
  margin: 0 0 4px;
}
.order {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
}
.order-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.badge {
  background: #e5eddc;
  color: #34503e;
  padding: 4px 9px;
  border-radius: 20px;
  font-size: 11px;
  align-self: start;
}
.order ul {
  padding-left: 18px;
  color: var(--muted);
}
.error {
  color: #9c3024;
  font-size: 13px;
}
.success {
  background: #edf3e5;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}
.success strong {
  font: 28px Georgia;
  display: block;
}
.story-detail {
  font-size: 16px;
  line-height: 1.8;
}
.story-detail .product-visual {
  max-height: 220px;
  aspect-ratio: auto;
}
.story-detail .art {
  height: 220px;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: var(--ink);
  color: #fff;
  padding: 12px 23px;
  border-radius: 12px;
  font-size: 13px;
  z-index: 10;
  transition: 0.2s;
  width: max-content;
  max-width: 90%;
}
#toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 1100px) {
  .container {
    padding-inline: 28px;
  }
  .topbar {
    gap: 20px;
  }
  nav {
    gap: 14px;
  }
  #search {
    width: 130px;
  }
  .header-actions {
    gap: 5px;
  }
  .hero-art {
    height: 350px;
  }
  .hero h1 {
    font-size: 59px;
  }
}
@media (max-width: 850px) {
  .topbar {
    flex-wrap: wrap;
    padding-block: 18px;
    gap: 12px 24px;
  }
  nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  #search-form {
    flex: 1;
  }
  #search {
    width: 100%;
  }
  .hero {
    gap: 25px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-art {
    height: 320px;
  }
  .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-links {
    flex-wrap: wrap;
    gap: 8px;
  }
  .promise-strip {
    flex-wrap: wrap;
    justify-content: center;
  }
  .story-copy {
    padding: 18px;
  }
  .story-copy h3 {
    font-size: 24px;
  }
  .seller-grid {
    grid-template-columns: 1fr;
  }
  .seller-banner {
    padding: 28px;
  }
  footer {
    flex-wrap: wrap;
  }
  footer p {
    flex-basis: 65%;
  }
}
@media (max-width: 600px) {
  .container {
    padding-inline: 20px;
  }
  .notice {
    font-size: 10px;
  }
  .topbar {
    gap: 14px;
  }
  .logo {
    font-size: 33px;
  }
  .header-actions {
    margin-left: auto;
  }
  #search-form {
    order: 3;
    flex-basis: 100%;
  }
  nav {
    order: 4;
    font-size: 12px;
    justify-content: space-between;
    gap: 8px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 30px;
    gap: 28px;
  }
  .hero h1 {
    font-size: 52px;
    margin-block: 18px;
  }
  .hero p {
    font-size: 14px;
  }
  .hero-art {
    height: 300px;
    border-radius: 110px 110px 18px 18px;
  }
  .hero-art .art {
    bottom: -25px;
  }
  .hero-art .secondary-art {
    bottom: -60px;
  }
  .hero-links {
    gap: 20px;
  }
  .promise-strip {
    justify-content: flex-start;
    gap: 8px 20px;
  }
  .promise-strip span {
    font-size: 10px;
  }
  .section {
    padding-block: 26px;
  }
  .section-head {
    align-items: start;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 27px;
  }
  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
  }
  .product h3 {
    font-size: 13px;
  }
  .tag {
    font-size: 8px;
    left: 10px;
  }
  .save {
    width: 30px;
    height: 30px;
    right: 8px;
    top: 8px;
  }
  .filter-select {
    max-width: 133px;
    font-size: 11px;
    padding-inline: 6px;
  }
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .story {
    min-height: 200px;
  }
  .story-copy {
    padding: 25px;
  }
  .story-copy h3 {
    font-size: 29px;
  }
  .story .art {
    width: 50%;
  }
  .seller-banner {
    display: block;
    padding: 26px;
  }
  .seller-banner .button {
    margin-top: 12px;
  }
  footer {
    gap: 14px;
  }
  footer p {
    font-size: 10px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-grid .product-visual {
    max-height: 240px;
    aspect-ratio: auto;
  }
  .detail-grid .art {
    height: 240px;
  }
  .metrics {
    gap: 8px;
  }
  .metric {
    padding: 13px;
  }
  .metric strong {
    font-size: 20px;
  }
  .metric span {
    font-size: 10px;
  }
  .page-heading h1 {
    font-size: 39px;
  }
  .cart-row {
    grid-template-columns: 48px 1fr auto;
    gap: 9px;
  }
  .cart-row > strong {
    font-size: 12px;
  }
  .order-top {
    flex-wrap: wrap;
  }
  .modal-head h2 {
    font-size: 23px;
  }
  dialog {
    padding: 20px;
  }
  .panel {
    padding: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 30;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
}
.skip-link:focus {
  top: 12px;
}
.search-submit {
  font-size: 26px;
  line-height: 1;
  min-width: 32px;
}
.product-shop {
  display: block;
}
.catalog-options {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 25px;
  font-size: 12px;
}
.catalog-options label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.check input {
  accent-color: var(--green);
  width: 17px;
  height: 17px;
}
.storage-banner {
  background: #fff0cf;
  border: 1px solid #d9c28c;
  color: #63481d;
  padding: 12px 18px;
  margin-top: 16px;
  border-radius: 12px;
  font-size: 12px;
}
.storage-banner .text-button {
  font-weight: 700;
  margin-left: 8px;
}
.mobile-nav {
  display: none;
}
.detail-grid {
  margin-top: 24px;
}
.product-title {
  font-size: 39px;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-block: 16px;
}
.related {
  margin-top: 24px;
}
.shop-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 48px 20px;
}
.shop-hero h1 {
  font-size: 48px;
  margin-block: 14px;
}
.shop-hero p {
  color: var(--muted);
}
.shop-monogram {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 28px;
  background: var(--acid);
  font: 48px Georgia;
}
.order-top strong {
  overflow-wrap: anywhere;
}
.order-line {
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
.order-line > div:first-child {
  flex: 1;
  min-width: 0;
}
.order-line a {
  font-weight: 650;
}
.order-line .meta {
  margin: 5px 0 8px;
}
.order-actions .button {
  max-width: 230px;
  text-align: center;
  font-size: 12px;
}
.badge.cancelled {
  background: #f1ded6;
  color: #884333;
}
.danger {
  color: #9d3827;
}
.timeline {
  font-size: 11px;
  margin-top: 12px;
}
.timeline summary {
  cursor: pointer;
  color: var(--muted);
}
.timeline ol {
  border-left: 1px solid var(--line);
  list-style: none;
  padding: 0 0 0 15px;
  margin-left: 5px;
}
.timeline li {
  position: relative;
  margin-bottom: 12px;
}
.timeline li:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  left: -19px;
  top: 5px;
}
.timeline small {
  display: block;
  color: var(--muted);
}
.cart-group {
  margin-bottom: 22px;
}
.totals {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-block: 22px;
}
.totals > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 5px;
}
.totals dd {
  margin: 0;
  font-weight: 650;
}
.totals .grand-total {
  font-size: 19px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 15px;
}
.seller-item > .product-visual {
  width: 66px;
  flex: 0 0 66px;
  border-radius: 10px;
}
.seller-item h3 {
  overflow-wrap: anywhere;
}
.seller-tools {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.panel hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 26px 0;
}
.dialog-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
#dialog-feedback:not(:empty) {
  font-size: 12px;
  background: #eaf0df;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 15px;
}
.form-error:empty {
  display: none;
}
.meta,
.detail-info p,
.order-line a {
  overflow-wrap: anywhere;
}
main:focus {
  outline: none;
}
.success .button {
  margin-top: 12px;
}
.metric strong {
  overflow-wrap: anywhere;
  font-size: clamp(18px, 2.2vw, 27px);
}
.modal-head {
  position: sticky;
  top: -25px;
  background: var(--white);
  z-index: 2;
  padding-block: 4px;
}
.cart-row > div {
  min-width: 0;
}
.cart-row h3 {
  overflow-wrap: anywhere;
}
.qty {
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
  .mobile-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    justify-content: space-around;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    width: 100%;
  }
  .mobile-nav a {
    display: grid;
    place-items: center;
    gap: 2px;
    font-size: 23px;
    line-height: 1.2;
    min-width: 65px;
    padding: 3px 8px;
  }
  .mobile-nav a span {
    font-size: 10px;
  }
  .mobile-nav a.active {
    background: #e8eddd;
    border: 0;
    border-radius: 12px;
  }
  .catalog-options {
    gap: 12px;
  }
  .catalog-options .filter-select {
    max-width: 150px;
  }
  .product-title {
    font-size: 32px;
  }
  .shop-hero {
    gap: 16px;
    padding-top: 30px;
  }
  .shop-hero h1 {
    font-size: 32px;
    overflow-wrap: anywhere;
  }
  .shop-monogram {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    font-size: 32px;
  }
  .shop-hero p {
    font-size: 12px;
  }
  .order-line {
    flex-direction: column;
    gap: 9px;
  }
  .order-actions .button {
    min-height: 42px;
    max-width: 100%;
  }
  .order {
    padding: 18px;
  }
  .qty button {
    min-width: 36px;
    min-height: 36px;
  }
  .add {
    width: 40px;
    height: 40px;
  }
  .save {
    width: 38px;
    height: 38px;
  }
  .tag {
    max-width: calc(100% - 55px);
    line-height: 1.5;
    top: 12px;
  }
  .chip {
    min-height: 42px;
  }
  .seller-tools {
    gap: 8px 16px;
  }
  .seller-tools button {
    min-height: 40px;
  }
  .seller-item > .product-visual {
    width: 48px;
    flex-basis: 48px;
  }
  .two-fields {
    grid-template-columns: 1fr;
  }
  .metric strong {
    font-size: 18px;
  }
  .storage-banner {
    padding: 12px;
  }
  .storage-banner .text-button {
    display: block;
    text-align: left;
    margin-left: 0;
  }
  #toast {
    bottom: calc(90px + env(safe-area-inset-bottom));
  }
  .modal-head {
    top: -20px;
  }
  .detail-grid {
    margin-top: 12px;
  }
  .cart-row > strong {
    font-size: 11px;
  }
  .topbar nav {
    padding-block: 0;
  }
  .topbar nav a {
    min-height: 40px;
  }
}
