:root {
  font-family:
    "DM Sans",
    "Noto Sans SC",
    -apple-system,
    BlinkMacSystemFont,
    "PingFang SC",
    sans-serif;
  color: #262923;
  background: #f8f7f3;
  font-synthesis: none;
  font-weight: 400;
  --ink: #262923;
  --muted: #82857c;
  --line: #e4e5dc;
  --orange: #e88b54;
  --green: #5d7359;
  --white: #fff;
  --radius: 12px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
button {
  color: inherit;
}
input,
textarea,
select {
  border: 1px solid #dedfd5;
  background: #fff;
  padding: 11px 13px;
  border-radius: 7px;
  width: 100%;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #8f9e83;
  box-shadow: 0 0 0 3px #73816515;
}
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  accent-color: var(--ink);
}
textarea {
  resize: vertical;
  line-height: 1.7;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  margin: 15px 0;
}
label input,
label textarea,
label select {
  display: block;
  margin-top: 7px;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1 {
  font-size: 34px;
  letter-spacing: -1px;
  font-weight: 600;
  line-height: 1.4;
}
h2 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
h4 {
  font-size: 14px;
}
p {
  line-height: 1.85;
}
small {
  font-size: 11px;
}
strong {
  font-weight: 600;
}
svg {
  flex-shrink: 0;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.announcement {
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #e8ecdf;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #54604b;
}
.header {
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 600;
  white-space: nowrap;
}
.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: 2px;
  margin-top: 2px;
  font-weight: 500;
  color: #82857c;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
}
.header nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #70756a;
}
.header nav a:hover,
.header nav a.active {
  color: #252923;
}
.tiny-dot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 19px;
}
.account-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #dadcd2;
  background: #fff;
  border-radius: 7px;
  padding: 13px 21px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  transition:
    background 0.15s,
    transform 0.15s;
}
.btn:hover {
  background: #f0f0e9;
  transform: translateY(-1px);
}
.btn.dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn.dark:hover {
  background: #414a3b;
}
.btn.primary {
  background: #e99b68;
  color: #272820;
  border-color: #e99b68;
}
.btn.small {
  padding: 9px 13px;
  font-size: 12px;
}
.btn.full {
  width: 100%;
}
.icon-btn {
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 7px;
}
.icon-btn:hover {
  background: #e9ece3;
}
.link,
.text-link {
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.link {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.text-link:hover {
  color: var(--green);
}
.mobile-toggle {
  display: none;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: #7c8273;
  margin-bottom: 16px;
}
.eyebrow i {
  width: 6px;
  height: 6px;
  background: #80936f;
  border-radius: 50%;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 473px;
  padding-top: 35px;
  padding-bottom: 52px;
}
.hero h1 {
  white-space: pre-line;
  font-size: 49px;
  max-width: 480px;
  font-weight: 600;
  letter-spacing: -2.5px;
  line-height: 1.35;
  margin-bottom: 23px;
}
.hero-copy > p {
  max-width: 410px;
  font-size: 14px;
  color: #7a7f72;
  line-height: 2;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 33px;
  font-size: 10px;
  color: #93968d;
  line-height: 1.8;
}
.hero-note strong {
  font-weight: 400;
  color: #6d7568;
}
.mini-avatars {
  display: flex;
  padding-left: 3px;
}
.mini-avatars b {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #f8f7f3;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #dfe5d5;
  margin-left: -4px;
  color: #65765b;
  font-size: 11px;
}
.mini-avatars b:nth-child(2) {
  background: #efdbc5;
  color: #876c55;
}
.mini-avatars b:nth-child(3) {
  background: #e4e0d5;
  color: #827967;
}
.hero-visual {
  height: 365px;
  position: relative;
  border-radius: 18px;
  background: #efefe6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-top {
  position: absolute;
  top: 24px;
  left: 25px;
  font-size: 8px;
  letter-spacing: 2px;
  color: #8e9583;
}
.visual-bottom {
  position: absolute;
  bottom: 21px;
  left: 25px;
  font-size: 9px;
  color: #959b8c;
  letter-spacing: 2px;
}
.orbit {
  position: absolute;
  border: 1px solid #dcded0;
  border-radius: 50%;
  width: 430px;
  height: 430px;
  transform: rotate(-20deg);
}
.orbit-two {
  width: 280px;
  height: 280px;
}
.code-card {
  position: relative;
  background: #2a302a;
  color: #d9dfcf;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 20px 35px #4d564325;
  transform: rotate(-4deg);
  z-index: 1;
}
.code-header {
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #41483b;
  color: #9da992;
  font-size: 9px;
}
.code-header > span:first-child {
  display: flex;
  gap: 5px;
}
.code-header i {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #a27862;
}
.code-header i:nth-child(2) {
  background: #b3a86b;
}
.code-header i:nth-child(3) {
  background: #8a9f73;
}
.code-card pre {
  font-size: 12px;
  line-height: 1.95;
  padding: 4px 23px 13px;
  font-family: Menlo, Consolas, monospace;
}
.code-purple {
  color: #bab0d1;
}
.code-green {
  color: #b9ca97;
}
.code-yellow {
  color: #e1bd7b;
}
.cursor {
  color: #cfd8b7;
}
.code-status {
  border-top: 1px solid #41483b;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 12px 18px;
  font-size: 9px;
  color: #a3b88c;
}
.code-status > span:last-child {
  margin-left: auto;
}
.green-dot {
  width: 5px;
  height: 5px;
  background: #a0be79;
  border-radius: 50%;
}
.floating-label {
  z-index: 2;
  position: absolute;
  bottom: 41px;
  right: 17px;
  background: #fffefa;
  padding: 14px 16px;
  border-radius: 10px;
  display: flex;
  gap: 13px;
  align-items: center;
  box-shadow: 0 6px 20px #58674313;
  font-size: 11px;
  transform: rotate(3deg);
}
.floating-label small {
  display: block;
  font-size: 7px;
  letter-spacing: 1.5px;
  color: #aaa99d;
  margin-top: 4px;
}
.check-circle {
  width: 30px;
  height: 30px;
  background: #edf1e4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7f9467;
}
.orange-square {
  position: absolute;
  top: 50px;
  right: 21px;
  background: #eaa170;
  width: 47px;
  height: 47px;
  border-radius: 10px;
  font-size: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(12deg);
  z-index: 3;
}
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-strip > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  color: #606c56;
  border-right: 1px solid var(--line);
}
.feature-strip > div:last-child {
  border: 0;
}
.catalog-section {
  padding-top: 64px;
  padding-bottom: 65px;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.section-heading h2 {
  margin-bottom: 11px;
}
.section-heading p {
  font-size: 13px;
  color: #858a7d;
  margin-bottom: 0;
}
.section-heading > .text-link {
  align-self: flex-end;
  margin-bottom: 5px;
}
.filter-pills {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.filter-pills button {
  background: none;
  border: 1px solid transparent;
  font-size: 12px;
  color: #84897d;
  padding: 9px 18px;
  border-radius: 30px;
}
.filter-pills button.active {
  color: #454f3c;
  background: #e7ecde;
  border-color: #d7dfcb;
}
.filter-pills button:hover {
  background: #eceee6;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
.product-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-card {
  border: 1px solid #e3e5dc;
  background: #fdfdf9;
  border-radius: 11px;
  overflow: hidden;
  display: block;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px #333b2710;
}
.product-art {
  height: 203px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8ecdf;
  color: #758866;
}
.art-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff50 1px, transparent 1px),
    linear-gradient(90deg, #ffffff50 1px, transparent 1px);
  background-size: 25px 25px;
  opacity: 0.6;
  mask-image: linear-gradient(110deg, transparent, #000);
}
.product-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.art-window {
  width: 190px;
  height: 120px;
  border: 1px solid #a5b39366;
  border-radius: 7px;
  background: #fafbf1c9;
  transform: rotate(-5deg);
  box-shadow: 0 10px 16px #4c5b3210;
}
.window-bar {
  height: 25px;
  border-bottom: 1px solid #b9c6a750;
  display: flex;
  gap: 3px;
  align-items: center;
  padding: 0 10px;
}
.window-bar i {
  width: 4px;
  height: 4px;
  background: currentColor;
  opacity: 0.45;
  border-radius: 50%;
}
.window-bar span {
  font-size: 5px;
  letter-spacing: 1px;
  margin-left: auto;
}
.window-content {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 90px;
  justify-content: center;
}
.mock-lines {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 57px;
}
.mock-lines b {
  height: 4px;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.3;
}
.mock-lines b:nth-child(2) {
  width: 75%;
}
.mock-lines b:nth-child(3) {
  width: 90%;
  opacity: 0.16;
}
.art-number {
  position: absolute;
  right: 18px;
  bottom: 12px;
  font-size: 37px;
  font-weight: 500;
  opacity: 0.18;
}
.type-label {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 9px;
  padding: 5px 9px;
  border-radius: 4px;
  background: #ffffffa3;
  color: #617154;
}
.art-1 {
  background: #ece4db;
  color: #a3896d;
}
.art-2 {
  background: #e5e8ed;
  color: #778aa7;
}
.art-3 {
  background: #e8e7de;
  color: #8e9179;
}
.art-4 {
  background: #e9e4ec;
  color: #9583a1;
}
.art-5 {
  background: #eee4dc;
  color: #ba957f;
}
.card-body {
  padding: 19px 21px 17px;
}
.card-tags {
  font-size: 9px;
  color: #8c9282;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}
.card-body h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  margin-bottom: 9px;
}
.card-body h3 svg {
  color: #8a927e;
}
.card-body p {
  font-size: 11px;
  color: #8a8f82;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 19px;
}
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eceee6;
  padding-top: 13px;
}
.card-bottom strong {
  font-size: 17px;
}
.card-bottom strong small {
  font-size: 10px;
  font-weight: 400;
  color: #909687;
}
.card-bottom > span {
  font-size: 10px;
  color: #89917e;
}
.card-bottom > span span {
  margin-left: 8px;
}
.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #eeeadf;
  border: 1px solid #e7e2d3;
  border-radius: 13px;
  padding: 36px 40px;
  margin-bottom: 64px;
}
.cta-block h2 {
  font-size: 24px;
  margin-bottom: 12px;
}
.cta-block p {
  font-size: 12px;
  color: #878576;
  margin: 0;
}
.cta-block .eyebrow {
  font-size: 8px;
  color: #a1947b;
}
.footer {
  border-top: 1px solid var(--line);
  background: #f2f2eb;
  padding-top: 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 35px;
  padding-bottom: 36px;
}
.footer-top .brand {
  font-size: 17px;
}
.footer-top .brand-mark {
  width: 34px;
  height: 34px;
}
.footer-top p {
  font-size: 11px;
  color: #8e9485;
  margin-top: 13px;
}
.footer-top > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 11px;
  color: #919687;
}
.footer-top strong {
  color: #555d4c;
  font-size: 11px;
  margin-bottom: 3px;
}
.footer-bottom {
  border-top: 1px solid #e2e5da;
  padding-top: 17px;
  padding-bottom: 19px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #9aa08f;
}
.page {
  padding-top: 38px;
  padding-bottom: 70px;
  min-height: 65vh;
}
.page-heading {
  margin-bottom: 30px;
}
.page-heading h1 {
  margin-bottom: 13px;
}
.page-heading p {
  color: #848b7b;
  font-size: 13px;
}
.catalog-search {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 6px 8px 6px 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  margin-bottom: 27px;
}
.catalog-search input {
  border: 0;
  box-shadow: none;
}
.catalog-search svg {
  color: #8b9580;
}
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.catalog-toolbar select {
  width: auto;
  font-size: 12px;
}
.inline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.result-count {
  font-size: 12px;
  margin-bottom: 20px;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 35px;
}
.muted {
  color: var(--muted);
}
.empty {
  text-align: center;
  padding: 55px 20px;
  color: #909588;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  line-height: 1.8;
}
.empty h2,
.empty p {
  margin: 0;
}
.panel {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffefa;
  margin-bottom: 20px;
}
.list-row {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #eceee6;
  font-size: 13px;
}
.list-row:last-child {
  border: 0;
}
.list-row > div:first-child {
  flex: 1;
}
.list-row small {
  display: block;
  color: #939b88;
  margin: 4px 0;
}
.list-row strong {
  display: block;
}
.prose {
  white-space: pre-wrap;
  line-height: 2;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  color: #969c8e;
  margin-bottom: 27px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
}
.detail-art {
  height: 380px;
  border-radius: 14px;
}
.big-code {
  text-align: center;
  position: relative;
}
.big-code span {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  margin-top: 25px;
}
.detail-guarantees {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px 0;
  font-size: 11px;
  color: #818c74;
}
.detail-guarantees span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.detail-copy {
  padding: 15px 0;
}
.detail-copy h1 {
  font-size: 29px;
}
.detail-copy .muted {
  font-size: 13px;
}
.price {
  font-size: 31px;
  margin: 22px 0;
  color: #4a5940;
  font-weight: 600;
}
.sku-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sku-options button {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.sku-options button.chosen {
  background: #eff3e7;
  border-color: #899c73;
  color: #596d47;
}
.quantity {
  width: 78px;
}
.buy-actions {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}
.hint {
  font-size: 11px;
  line-height: 1.8;
  color: #8b9380;
  margin-top: 14px;
}
.hint .link {
  font-size: 11px;
  margin-right: 6px;
}
.detail-bottom {
  margin-top: 35px;
}
.tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  margin-bottom: 25px;
  gap: 25px;
}
.tabs button {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 14px 4px;
  font-size: 13px;
  color: #818b75;
}
.tabs button.active {
  border-bottom-color: #596a4a;
  color: #35432b;
}
.review {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.review p {
  font-size: 13px;
  margin: 10px 0;
}
.review small {
  color: #959c8c;
}
.stars {
  color: #cb9a54;
  margin-left: 12px;
}
.mt {
  margin-top: 22px;
}
.required {
  color: #c7765f;
}
.green {
  color: #70855e;
}
.auth-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 80px;
}
.auth-story h1 {
  font-size: 42px;
  line-height: 1.5;
}
.auth-story p {
  font-size: 14px;
  color: #849076;
}
.auth-graphic {
  font-size: 90px;
  letter-spacing: -8px;
  color: #ccd6be;
  font-weight: 500;
}
.auth-graphic span {
  color: #e2b08c;
}
.auth-card {
  padding: 35px;
  max-width: 430px;
  width: 100%;
}
.auth-card h2 {
  margin-bottom: 8px;
}
.auth-card p {
  font-size: 12px;
}
.auth-card label {
  margin: 20px 0;
}
.auth-switch {
  text-align: center;
  margin: 22px 0 0;
}
.login-required {
  min-height: 65vh;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
}
.cart-item-header {
  display: flex;
  align-items: center;
  gap: 17px;
}
.cart-item-header > div {
  flex: 1;
}
.cart-item-header strong {
  font-size: 13px;
}
.cart-item-header p {
  font-size: 11px;
  margin: 6px 0 0;
}
.cart-icon {
  background: #edf0e5;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #809270;
}
.service-form {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.order-summary {
  align-self: start;
  position: sticky;
  top: 20px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin: 22px 0;
}
.summary-row.total {
  border-top: 1px solid var(--line);
  padding-top: 23px;
  align-items: center;
}
.summary-row.total strong {
  font-size: 25px;
}
.radio-row {
  display: flex;
  gap: 10px;
  font-weight: 400;
}
.address-form {
  display: grid;
  gap: 10px;
}
.account-layout {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  gap: 42px;
  padding-top: 35px;
  padding-bottom: 70px;
  min-height: 65vh;
}
.account-sidebar {
  border-right: 1px solid var(--line);
  padding: 12px 25px 20px 0;
}
.account-sidebar h2 {
  font-size: 20px;
  margin-bottom: 6px;
}
.account-sidebar > p {
  font-size: 10px;
  overflow-wrap: anywhere;
}
.account-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 30px;
}
.account-sidebar nav a {
  padding: 12px 15px;
  border-radius: 6px;
  font-size: 12px;
  color: #7e8871;
}
.account-sidebar nav a.router-link-active {
  background: #e8eddf;
  color: #4e623e;
}
.account-main {
  min-width: 0;
}
.account-main .page-heading h1 {
  font-size: 27px;
}
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  padding: 5px 9px;
  background: #f0f0e9;
  color: #808775;
  font-size: 10px;
  white-space: nowrap;
}
.badge.paid,
.badge.completed,
.badge.accepted {
  background: #e9f1e1;
  color: #6f8659;
}
.badge.pending,
.badge.review {
  background: #faf0dd;
  color: #ac8c57;
}
.order-list-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.order-list-card small {
  font-size: 10px;
  color: #a0a692;
}
.order-list-card h3 {
  font-size: 14px;
  margin: 12px 0;
}
.order-list-card > div:last-child {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.back-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #87927a;
  font-size: 12px;
  border: 0;
  background: none;
  padding: 0;
  margin-bottom: 24px;
}
.order-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
}
.order-meta strong {
  font-size: 22px;
  margin-left: 8px;
}
.payment-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.test-payment {
  background: #f6ecd8;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 13px;
}
.test-payment p {
  margin: 10px 0;
}
.qr-payment {
  text-align: center;
  padding: 20px;
  font-size: 12px;
}
.qr-payment img {
  width: 220px;
}
.form-snapshot {
  padding: 15px;
  background: #f4f5ee;
  border-radius: 7px;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.form-snapshot p {
  margin: 6px 0;
}
.delivery {
  background: #f0f4e9;
  padding: 18px;
  border-radius: 7px;
  margin-top: 16px;
  font-size: 12px;
}
.delivery p:last-child {
  margin-bottom: 0;
}
.download-link {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  padding: 12px 14px;
  background: #edf2e4;
  border-radius: 7px;
  margin-top: 12px;
  color: #5d704b;
}
.download-link small {
  margin-left: auto;
}
.timeline {
  list-style: none;
  padding: 10px 0 0 15px;
  margin-bottom: 0;
}
.timeline li {
  position: relative;
  border-left: 1px solid #dce4d2;
  padding: 0 0 18px 22px;
  font-size: 12px;
}
.timeline li:before {
  content: "";
  position: absolute;
  left: -4px;
  top: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #91a67a;
}
.timeline li:last-child {
  padding-bottom: 0;
}
.timeline span {
  color: #8d9980;
  font-size: 11px;
}
.timeline small {
  margin-left: 8px;
}
.timeline p {
  margin: 8px 0 0;
}
.ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
}
.ticket-row small {
  color: #969f8b;
}
.messages {
  padding: 20px 0;
}
.message {
  background: #f1f2eb;
  padding: 17px;
  border-radius: 9px;
  margin: 12px 40px 12px 0;
  font-size: 12px;
}
.message.staff {
  background: #eaf0e0;
  margin: 12px 0 12px 40px;
}
.message small {
  font-weight: 400;
  margin-left: 10px;
  color: #909c82;
}
.message p {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 10px 0 0;
}
summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
details[open] > summary {
  margin-bottom: 20px;
}
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #2c3428;
  color: #fff;
  padding: 15px 22px;
  border-radius: 9px;
  box-shadow: 0 10px 30px #0002;
  z-index: 100;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 13px;
  max-width: 90vw;
}
.toast button {
  display: flex;
  background: none;
  border: 0;
  color: #fff;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 25px;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkbox input {
  margin: 0;
}
.short {
  width: 160px;
}
.form-footer {
  display: flex;
  gap: 12px;
  margin: 28px 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.admin-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  background: #f5f6f1;
  min-height: 100vh;
}
.admin-sidebar {
  background: #fbfcf7;
  border-right: 1px solid #e4e8dc;
  padding: 30px 19px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
}
.admin-sidebar .brand {
  font-size: 18px;
  margin-left: 4px;
}
.admin-sidebar .brand small {
  letter-spacing: 2px;
  font-size: 9px;
}
.admin-sidebar .brand-mark {
  width: 35px;
  height: 35px;
}
.sidebar-label {
  font-size: 9px;
  letter-spacing: 1.7px;
  color: #9da58f;
  margin: 40px 12px 18px;
}
.admin-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: auto;
}
.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #838d76;
  padding: 12px 14px;
  border-radius: 7px;
}
.admin-sidebar nav a.selected {
  background: #e6eddc;
  color: #4c6439;
  font-weight: 500;
}
.admin-store-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 12px;
  font-size: 12px;
  color: #81916f;
  margin-top: auto;
}
.admin-person {
  display: flex;
  gap: 10px;
  align-items: center;
  border-top: 1px solid #e3e8d9;
  padding: 21px 10px 0;
  font-size: 11px;
}
.admin-person > span {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #eadfcf;
  color: #947450;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-person small {
  display: block;
  font-size: 9px;
  color: #9ba58e;
  margin-top: 4px;
}
.admin-header {
  height: 76px;
  border-bottom: 1px solid #e5e9dd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 38px;
  font-size: 12px;
  background: #fcfdf9;
}
.admin-header .muted {
  margin: 0 15px;
}
.admin-content {
  padding: 34px 38px;
  max-width: 1600px;
}
.admin-content h1 {
  font-size: 25px;
  margin-bottom: 10px;
}
.admin-content .eyebrow {
  font-size: 9px;
  margin-bottom: 12px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}
.stat-card {
  background: #fffefa;
  border: 1px solid #e3e7d9;
  border-radius: 10px;
  padding: 23px;
}
.stat-card > span {
  font-size: 12px;
  color: #8a957d;
}
.stat-card strong {
  display: block;
  font-size: 29px;
  letter-spacing: -0.5px;
  margin: 18px 0 10px;
}
.stat-card small {
  font-size: 9px;
  color: #a2ac94;
}
.admin-dashboard-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 23px;
}
.table-wrap {
  overflow: auto;
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 9px;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
  text-align: left;
}
th {
  font-weight: 500;
  color: #8c977e;
  background: #f0f3e9;
  padding: 15px 19px;
  white-space: nowrap;
}
td {
  padding: 18px 19px;
  border-top: 1px solid #ecefe5;
  line-height: 1.7;
  max-width: 330px;
  overflow-wrap: anywhere;
}
td small {
  display: block;
  color: #9ba58e;
  font-size: 10px;
  margin-top: 3px;
}
td .link {
  font-size: 11px;
  white-space: nowrap;
}
td strong {
  font-size: 12px;
}
.table-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: #9ba58e;
}
.table-toolbar input {
  max-width: 360px;
  font-size: 12px;
}
.category-manager {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
}
.category-manager form {
  margin-left: auto;
}
.sku-editor {
  display: flex;
  gap: 15px;
  align-items: center;
}
.sku-editor > label {
  flex: 1;
}
.sku-editor > .icon-btn {
  margin-top: 23px;
}
.admin-order-item {
  padding: 25px 0;
  border-top: 1px solid var(--line);
}
.sticky-save {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  bottom: 0;
  padding: 18px 22px;
  background: #fffefaeb;
  border: 1px solid var(--line);
  border-radius: 9px;
  backdrop-filter: blur(8px);
  font-size: 12px;
}
.custom-text {
  margin-bottom: 35px;
}
.block-editor .section-heading {
  margin-bottom: 10px;
}
@media (min-width: 1600px) {
  .wrap {
    max-width: 1300px;
  }
  .hero {
    min-height: 520px;
  }
  .hero-visual {
    height: 400px;
  }
  .hero h1 {
    font-size: 55px;
  }
}
@media (max-width: 1050px) {
  .header nav {
    gap: 17px;
  }
  .header {
    gap: 15px;
  }
  .hero {
    gap: 28px;
  }
  .hero h1 {
    font-size: 39px;
  }
  .hero-visual {
    height: 330px;
  }
  .code-card {
    width: 280px;
  }
  .code-card pre {
    font-size: 10px;
    padding-left: 15px;
  }
  .floating-label {
    right: 8px;
    bottom: 27px;
  }
  .product-grid {
    gap: 17px;
  }
  .card-body {
    padding: 17px;
  }
  .card-body h3 {
    font-size: 13px;
  }
  .admin-shell {
    grid-template-columns: 185px minmax(0, 1fr);
  }
  .admin-content {
    padding: 28px 25px;
  }
  .admin-sidebar {
    padding: 25px 12px;
  }
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }
  .checkout-grid {
    grid-template-columns: 1fr 290px;
  }
  .cart-item-header {
    gap: 10px;
  }
  .cart-item-header .cart-icon {
    display: none;
  }
  .account-layout {
    gap: 25px;
    grid-template-columns: 175px minmax(0, 1fr);
  }
  .auth-page {
    gap: 35px;
  }
}
@media (max-width: 760px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header {
    height: 78px;
  }
  .brand {
    font-size: 18px;
  }
  .brand-mark {
    width: 35px;
    height: 35px;
  }
  .brand small {
    font-size: 7px;
  }
  .header nav {
    display: none;
    position: absolute;
    left: 15px;
    right: 15px;
    top: 106px;
    z-index: 10;
    background: #fffefa;
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 20px;
    box-shadow: 0 10px 25px #0001;
  }
  .header nav.open {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-actions .btn {
    padding: 8px 10px;
    font-size: 10px;
  }
  .header-actions .btn svg {
    display: none;
  }
  .account-link span {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 30px;
    padding-bottom: 33px;
  }
  .hero h1 {
    font-size: 40px;
    max-width: 370px;
    letter-spacing: -2px;
  }
  .hero-copy > p {
    font-size: 13px;
  }
  .hero-note {
    margin-top: 25px;
  }
  .hero-visual {
    height: 325px;
  }
  .code-card {
    width: 300px;
  }
  .code-card pre {
    font-size: 11px;
    padding-left: 20px;
  }
  .floating-label {
    right: 13px;
    bottom: 26px;
  }
  .feature-strip {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding-top: 25px;
    padding-bottom: 25px;
    margin: 0 20px;
    padding-left: 0;
    padding-right: 0;
  }
  .feature-strip > div {
    font-size: 11px;
    gap: 10px;
  }
  .feature-strip > div:nth-child(2) {
    border: 0;
  }
  .catalog-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-heading h2 {
    font-size: 22px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 12px;
  }
  .section-heading > .text-link {
    white-space: nowrap;
    font-size: 10px;
  }
  .section-heading p {
    font-size: 11px;
  }
  .section-heading .eyebrow {
    font-size: 8px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .product-art {
    height: 158px;
  }
  .art-window {
    width: 127px;
    height: 87px;
  }
  .window-bar {
    height: 20px;
    padding: 0 7px;
  }
  .window-bar span {
    font-size: 3px;
  }
  .window-content {
    height: 65px;
    gap: 12px;
  }
  .window-content svg {
    width: 32px;
  }
  .mock-lines {
    width: 36px;
    gap: 6px;
  }
  .mock-lines b {
    height: 3px;
  }
  .type-label {
    font-size: 8px;
    left: 9px;
    top: 9px;
    padding: 4px 7px;
  }
  .art-number {
    font-size: 26px;
    right: 9px;
    bottom: 7px;
  }
  .card-body {
    padding: 12px;
  }
  .card-tags {
    font-size: 7px;
  }
  .card-body h3 {
    font-size: 12px;
    line-height: 1.6;
  }
  .card-body h3 svg {
    display: none;
  }
  .card-body p {
    font-size: 9px;
    margin-bottom: 11px;
  }
  .card-bottom strong {
    font-size: 14px;
  }
  .card-bottom > span {
    font-size: 8px;
  }
  .card-bottom > span span {
    display: none;
  }
  .cta-block {
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  .cta-block h2 {
    font-size: 22px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    font-size: 8px;
  }
  .catalog-toolbar {
    flex-direction: column;
    gap: 0;
  }
  .catalog-toolbar > .inline {
    margin-bottom: 15px;
  }
  .filter-pills {
    gap: 5px;
    margin-bottom: 19px;
  }
  .filter-pills button {
    padding: 8px 13px;
    font-size: 10px;
  }
  .page-heading h1 {
    font-size: 27px;
  }
  .page-heading p {
    font-size: 12px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .detail-art {
    height: 280px;
  }
  .detail-copy {
    padding: 0;
  }
  .detail-copy h1 {
    font-size: 27px;
  }
  .buy-actions {
    gap: 8px;
  }
  .buy-actions .btn {
    padding: 12px 15px;
  }
  .detail-bottom {
    margin-top: 25px;
  }
  .auth-page {
    grid-template-columns: 1fr;
    padding-top: 20px;
    padding-bottom: 40px;
    gap: 15px;
  }
  .auth-story {
    display: none;
  }
  .auth-card {
    margin: 0 auto;
    padding: 25px;
  }
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .cart-item {
    padding: 17px;
  }
  .cart-item-header {
    flex-wrap: wrap;
  }
  .cart-item-header > div {
    min-width: 140px;
  }
  .cart-item-header .quantity {
    width: 60px;
  }
  .order-summary {
    position: static;
  }
  .account-layout {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .account-sidebar {
    border: 0;
    padding: 0;
  }
  .account-sidebar > .eyebrow,
  .account-sidebar > h2,
  .account-sidebar > p {
    display: none;
  }
  .account-sidebar nav {
    flex-direction: row;
    overflow: auto;
    gap: 4px;
    margin-top: 0;
    padding-bottom: 7px;
  }
  .account-sidebar nav a {
    white-space: nowrap;
    font-size: 11px;
    padding: 10px 12px;
  }
  .account-main .section-heading h2 {
    font-size: 18px;
    word-break: break-all;
  }
  .panel {
    padding: 19px;
  }
  .order-meta {
    flex-wrap: wrap;
  }
  .order-meta strong {
    font-size: 20px;
  }
  .order-list-card {
    padding: 17px;
  }
  .order-list-card h3 {
    font-size: 12px;
  }
  .order-list-card > div:last-child strong {
    font-size: 16px;
  }
  .list-row {
    flex-wrap: wrap;
    gap: 10px;
  }
  .message {
    margin-right: 15px;
  }
  .message.staff {
    margin-left: 15px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .admin-shell {
    grid-template-columns: minmax(0, 1fr);
  }
  .admin-sidebar {
    position: static;
    height: auto;
    padding: 15px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .admin-sidebar .brand {
    font-size: 17px;
  }
  .sidebar-label,
  .admin-person,
  .admin-store-link {
    display: none;
  }
  .admin-sidebar nav {
    flex-direction: row;
    margin-top: 15px;
    overflow: auto;
  }
  .admin-sidebar nav a {
    white-space: nowrap;
    padding: 9px 11px;
    font-size: 11px;
    gap: 6px;
  }
  .admin-sidebar nav a svg {
    width: 14px;
  }
  .admin-header {
    height: 55px;
    padding: 0 18px;
    font-size: 10px;
  }
  .admin-content {
    padding: 25px 18px;
  }
  .admin-content h1 {
    font-size: 22px;
  }
  .admin-content .section-heading .btn {
    font-size: 10px;
    padding: 9px 10px;
  }
  .stat-grid {
    gap: 10px;
    margin: 20px 0;
  }
  .stat-card {
    padding: 18px 15px;
  }
  .stat-card strong {
    font-size: 24px;
    margin: 12px 0;
  }
  .stat-card > span {
    font-size: 10px;
  }
  .stat-card small {
    font-size: 8px;
  }
  .admin-dashboard-grid {
    gap: 0;
  }
  .sku-editor {
    flex-wrap: wrap;
    gap: 8px;
  }
  .sku-editor > label {
    min-width: 90px;
  }
  .category-manager form {
    margin-left: 0;
  }
  .category-manager .short {
    width: 145px;
  }
  .sticky-save {
    font-size: 10px;
    gap: 12px;
  }
  .table-toolbar input {
    font-size: 11px;
  }
  .section-heading .eyebrow {
    letter-spacing: 1px;
  }
  .toast {
    width: max-content;
    max-width: 90vw;
    font-size: 12px;
  }
  .inline input[type="file"] {
    max-width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Shared storefront visual system: spacious typography, clear routes and states. */
:root { --muted: #65716b; --ink: #152a27; --green: #346957; --line: #dfe6e0; }
.wrap { max-width: 1320px; }
.header { height: 104px; }
.header nav a.active { color: #235e4d; font-weight: 700; }
.header nav a.active::after { content: ''; width: 5px; height: 5px; background: #39715a; border-radius: 50%; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid #568f77; outline-offset: 5px; }
.announcement { background: #172e29; color: #e2ede6; letter-spacing: 1px; height: 36px; }
.hero { min-height: 580px; gap: 64px; padding-top: 58px; padding-bottom: 70px; }
.hero h1 { font-size: clamp(40px, 4.4vw, 64px); letter-spacing: -2px; max-width: 600px; font-weight: 650; line-height: 1.24; }
.hero-copy > p { font-size: 16px; max-width: 480px; color: #63716a; }
.hero-visual { height: 420px; border-radius: 24px; background: radial-gradient(ellipse at 85% 10%, #477861 0%, #203b33 48%, #152923 100%); box-shadow: 0 24px 70px #162f2618; }
.hero-visual .orbit { border-color: #d7edd329; }
.hero-visual .visual-top, .hero-visual .visual-bottom { color: #b6cfbd; }
.hero-visual .code-card { box-shadow: 0 24px 60px #071b2855; }
.hero-visual .floating-label { box-shadow: 0 12px 32px #0c251e33; }
.feature-strip { padding-top: 25px; padding-bottom: 25px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading h2 { font-size: clamp(26px, 3vw, 36px); letter-spacing: -1px; }
.catalog-section { padding-top: 78px; padding-bottom: 78px; }
.collection-empty { display: grid; grid-template-columns: 1.3fr 1fr; border: 1px solid #d8e3d8; border-radius: 20px; overflow: hidden; background: #f0f4ed; margin: 26px 0; }
.collection-empty-copy { padding: 48px; }
.collection-empty-copy h2 { font-size: 29px; line-height: 1.5; }
.collection-empty-copy p { max-width: 450px; color: #65746a; font-size: 14px; }
.collection-empty-art { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 28px; padding: 35px; border-left: 1px solid #d8e3d8; background: linear-gradient(135deg, #e5ecdf, #f6f5ea); }
.collection-empty-art strong { font: 500 clamp(22px, 2.6vw, 38px) monospace; letter-spacing: -2px; color: #426955; }
.collection-empty-art span { font-size: 11px; letter-spacing: 2px; color: #6a7c6c; }
.page-heading h1 { font-size: clamp(30px, 3.2vw, 44px); }
.cta-block { padding: 48px; border-radius: 20px; background: #e8eee1; }
.footer { margin-top: 64px; }
.footer-top { padding-top: 54px; padding-bottom: 54px; }
.auth-card { box-shadow: 0 20px 65px #203e2810; }
.panel { border-color: var(--line); }
@media (max-width: 900px) {
  .hero { gap: 28px; min-height: auto; padding-top: 30px; padding-bottom: 42px; }
  .hero-visual { height: 350px; }
  .header { height: 86px; }
  .collection-empty-copy { padding: 30px; }
}
@media (max-width: 700px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .hero { grid-template-columns: minmax(0, 1fr); }
  .hero h1 { font-size: 40px; letter-spacing: -1px; }
  .hero-copy > p { font-size: 15px; }
  .hero-visual { height: 330px; }
  .collection-empty { grid-template-columns: minmax(0, 1fr); }
  .collection-empty-art { border-left: 0; border-top: 1px solid #d8e3d8; padding: 30px 20px; gap: 18px; }
  .collection-empty-copy { padding: 28px 22px; }
  .collection-empty-copy h2 { font-size: 25px; }
  .hero-actions { flex-wrap: wrap; gap: 18px; }
  .catalog-section { padding-top: 44px; padding-bottom: 36px; }
  .cta-block { padding: 30px 24px; }
  .header nav.open { z-index: 30; box-shadow: 0 12px 24px #173c2318; }
  .section-heading { flex-wrap: wrap; gap: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
.payment-unavailable { padding: 20px 24px; background: #f3f5ee; border: 1px solid #dfe6d8; border-radius: 12px; margin: 18px 0; }
.payment-unavailable p { color: #627061; font-size: 13px; margin: 10px 0; }

.admin-shell > *, .admin-sidebar, .admin-content, .table-wrap { min-width: 0; }
.admin-sidebar nav { max-width: 100%; }
@media (max-width: 760px) { .header nav { top: 118px; } }
