:root {
  color-scheme: light;
  --paper: #f7f1e8;
  --paper-2: #fffaf2;
  --ink: #17130f;
  --muted: #6f6559;
  --line: rgba(35, 28, 21, 0.14);
  --charcoal: #26221d;
  --brass: #aa7a38;
  --brass-dark: #78501e;
  --olive: #596047;
  --clay: #b85d38;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(30, 24, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.55;
}

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

button,
a,
select {
  cursor: pointer;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(200px, 270px) auto;
  align-items: center;
  gap: clamp(12px, 1.25vw, 20px);
  min-height: 68px;
  padding: 12px clamp(14px, 2.8vw, 40px);
  background: rgba(255, 250, 242, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--ink);
  color: var(--paper-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.brand strong {
  display: block;
  font-size: 16px;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.25vw, 22px);
  min-width: 0;
  color: #393029;
  font-size: 14px;
  white-space: nowrap;
}

.desktop-nav a {
  flex: 0 0 auto;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  border-color: var(--brass);
}

.header-search {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--white);
}

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

.header-search button,
.cart-button,
.primary-action,
.secondary-action,
.text-button,
.icon-button {
  border: 0;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.header-search button {
  align-self: stretch;
  padding: 0 14px;
  background: var(--charcoal);
  color: var(--paper-2);
  font-size: 14px;
}

.cart-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-width: 88px;
  height: 40px;
  padding: 0 12px;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 14px;
  white-space: nowrap;
}

.cart-button span {
  display: inline-block;
  min-width: 45px;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.account-shell {
  position: relative;
}

.account-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  min-width: 104px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--ink);
  padding: 0 10px;
  font-size: 14px;
  font-weight: 800;
}

.account-avatar {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  overflow: hidden;
  background-color: var(--brass);
  background-position: center;
  background-size: cover;
  color: var(--white);
  font-size: 12px;
}

.account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: none;
  min-width: 220px;
  padding: 8px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.account-menu.open {
  display: grid;
}

.account-menu button,
.site-footer button {
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.account-menu button {
  min-height: 38px;
  padding: 0 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.account-menu button:hover {
  background: var(--paper);
}

.danger-link {
  color: #9d3324 !important;
}

.admin-only,
.login-required,
.danger-link,
.is-logged-in .account-menu [data-account-action="auth"] {
  display: none;
}

.is-admin .admin-only,
.is-logged-in .login-required,
.is-logged-in .danger-link {
  display: block;
}

.cart-button strong {
  display: grid;
  flex: 0 0 auto;
  min-width: 24px;
  height: 24px;
  place-items: center;
  background: var(--ink);
  color: var(--paper-2);
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: #f4eee5;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: none;
  transform: scale(1.015);
  transition:
    opacity 1400ms ease,
    transform 5200ms ease;
}

.hero-slide-bg.active {
  opacity: 1;
  transform: scale(1);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0.92) 0%, rgba(255, 252, 246, 0.76) 30%, rgba(255, 252, 246, 0.24) 52%, rgba(255, 252, 246, 0.02) 76%),
    radial-gradient(circle at 20% 44%, rgba(255, 255, 255, 0.7), transparent 24%);
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(700px, calc(100% - 36px));
  padding: clamp(72px, 11vw, 148px) clamp(18px, 5vw, 72px);
  transition:
    opacity 360ms ease,
    transform 520ms ease;
}

.hero.is-fading .hero-content,
.hero.is-fading .hero-panel {
  opacity: 0.68;
  transform: translateY(4px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brass-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 700px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: #40372f;
  font-size: clamp(18px, 2vw, 22px);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  min-height: 50px;
  padding: 0 22px;
  font-weight: 700;
}

.primary-action {
  background: var(--ink);
  color: var(--paper-2);
}

.secondary-action {
  background: rgba(255, 250, 242, 0.82);
  color: var(--ink);
  border: 1px solid rgba(23, 19, 15, 0.28);
}

.primary-action:hover,
.secondary-action:hover,
.cart-button:hover,
.header-search button:hover,
.text-button:hover {
  transform: translateY(-1px);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 30px;
  z-index: 2;
  width: min(360px, calc(100% - 36px));
  padding: 20px;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transition:
    opacity 360ms ease,
    transform 520ms ease;
}

.hero-art {
  display: none;
}

.hero-art-frame {
  position: absolute;
  right: clamp(72px, 10vw, 170px);
  top: clamp(86px, 12vh, 142px);
  z-index: 2;
  width: min(38vw, 580px);
  padding: clamp(7px, 0.65vw, 11px);
  background: #2b241c;
  box-shadow:
    0 22px 55px rgba(70, 52, 34, 0.24),
    11px 14px 0 rgba(61, 43, 27, 0.08);
}

.hero-art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #e8ded1;
}

.hero-art figcaption {
  position: absolute;
  right: clamp(72px, 10vw, 170px);
  top: calc(clamp(86px, 12vh, 142px) + min(38vw, 580px) + 24px);
  z-index: 3;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.hero-side-room {
  position: absolute;
  right: 0;
  top: 0;
  width: 18%;
  height: 72%;
  background:
    linear-gradient(90deg, rgba(66, 52, 39, 0.16), transparent 12%),
    linear-gradient(180deg, #d8cab9 0%, #eee7dd 100%);
  box-shadow: inset 18px 0 30px rgba(70, 52, 34, 0.11);
}

.hero-side-room::before {
  content: "";
  position: absolute;
  right: 18%;
  top: 16%;
  width: 70%;
  height: 1px;
  background: rgba(64, 52, 42, 0.26);
  box-shadow:
    34px 18px 0 -1px rgba(64, 52, 42, 0.24),
    68px 36px 0 -1px rgba(64, 52, 42, 0.2);
  transform: rotate(-16deg);
}

.hero-bench {
  position: absolute;
  right: clamp(38px, 7vw, 126px);
  bottom: 11%;
  z-index: 2;
  width: min(44vw, 720px);
  height: 34px;
  background: linear-gradient(180deg, #b89670, #8e6845);
  box-shadow:
    0 12px 24px rgba(72, 50, 31, 0.18),
    inset 0 4px 0 rgba(255, 235, 205, 0.23);
}

.hero-bench::before,
.hero-bench::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 28px;
  height: 84px;
  background: linear-gradient(180deg, #9f7750, #765333);
}

.hero-bench::before {
  left: 18%;
}

.hero-bench::after {
  right: 13%;
}

.hero-small-art {
  position: absolute;
  right: clamp(16px, 3vw, 48px);
  top: 43%;
  z-index: 2;
  width: 72px;
  height: 112px;
  border: 6px solid #6b5032;
  background:
    linear-gradient(135deg, rgba(170, 122, 56, 0.35), transparent),
    #efe5d8;
  box-shadow: 0 14px 24px rgba(70, 52, 34, 0.13);
}

.hero-dots {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 9px;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  background: rgba(23, 19, 15, 0.25);
  transition:
    background 300ms ease,
    width 300ms ease;
}

.hero-dots button.active {
  width: 46px;
  background: var(--ink);
}

.hero-variant-2 {
  background:
    linear-gradient(90deg, #faf5ed 0%, #f0e8dc 42%, #ded0bf 100%);
}

.hero-variant-3 {
  background:
    linear-gradient(90deg, #fbf8f1 0%, #f1f1e9 42%, #dce5df 100%);
}

.hero-variant-4 {
  background:
    linear-gradient(90deg, #fbf4ec 0%, #efe4dd 42%, #dfd0c6 100%);
}

.hero-variant-5 {
  background:
    linear-gradient(90deg, #fbf7ec 0%, #eff0df 42%, #d8dbc3 100%);
}

.hero-panel span,
.format-cards span,
.cart-header span {
  color: var(--brass-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.hero-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--paper-2);
}

.quick-strip div {
  min-height: 138px;
  padding: 28px clamp(18px, 4vw, 52px);
  border-right: 1px solid var(--line);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip span {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.quick-strip strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
}

.quick-strip p {
  margin: 8px 0 0;
  color: var(--muted);
}

.account-page {
  display: none;
  max-width: 1160px;
  margin: 0 auto;
  padding: 76px clamp(18px, 4vw, 40px);
  min-height: calc(100vh - 90px);
}

.account-page.open {
  display: block;
}

.function-page main > :not(.account-page) {
  display: none;
}

.account-page-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.account-page h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.08;
}

.account-page-body {
  display: grid;
  gap: 16px;
}

.inline-panel {
  border: 1px solid var(--line);
  background: var(--paper-2);
  box-shadow: none;
}

.text-button.compact {
  width: auto;
  min-width: 120px;
  padding: 0 16px;
}

.avatar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
  gap: 10px;
  max-height: 360px;
  overflow: auto;
  margin-top: 12px;
  padding: 12px;
  background: var(--paper);
}

.avatar-choice {
  position: relative;
  display: block !important;
  width: 48px;
  height: 48px;
  padding: 0;
  color: transparent;
}

.avatar-choice input {
  position: absolute;
  opacity: 0;
}

.avatar-choice span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid transparent;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  background-size: cover;
}

.avatar-choice.active span,
.avatar-choice input:checked + span {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(170, 122, 56, 0.24);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 34px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 86px clamp(18px, 4vw, 40px) 28px;
}

.section-intro.compact {
  padding: 0;
}

.section-intro h2,
.promise h2 {
  margin: 0;
  max-width: 900px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

.section-intro p:not(.eyebrow),
.promise p {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.inline-action {
  width: auto;
  margin-top: 22px;
  padding-inline: 22px;
}

.collections-action-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
}

.collections-action-row .collections-copy {
  flex: 1 1 auto;
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.collections-action-row .inline-action {
  flex: 0 0 auto;
  margin-top: 0;
  min-height: 42px;
  padding-inline: 18px;
  font-size: 14px;
  white-space: nowrap;
}

body.all-works-view main > :not(#collections):not(#shopLayout):not(.account-page) {
  display: none;
}

body.all-works-view #collections {
  padding-top: 72px;
}

body.all-works-view #shopLayout {
  padding-bottom: 120px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px clamp(18px, 4vw, 40px) 96px;
}

.space-guide,
.gallery-walls,
.trust-band,
.guide-library {
  padding: 90px clamp(18px, 4vw, 56px);
}

.space-guide {
  background: #f6efe5;
}

.space-guide .section-intro,
.gallery-walls .section-intro,
.trust-band .section-intro,
.guide-library .section-intro {
  max-width: 1160px;
  margin: 0 auto 34px;
}

.space-guide-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1160px;
  margin: 0 auto;
}

.space-card {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  min-height: 100%;
  border: 1px solid rgba(35, 28, 21, 0.12);
  background: rgba(255, 250, 242, 0.78);
  color: var(--ink);
}

.space-card-image {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #e8ded1;
}

.space-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.space-card-image:hover img,
.space-card-image:focus-visible img {
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.035);
}

.space-card-copy {
  display: grid;
  grid-template-rows: 22px 42px minmax(132px, 1fr) auto;
  padding: 16px 16px 18px;
}

.space-card span {
  color: var(--brass-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.space-card h3 {
  margin: 4px 0 0;
  font-size: 26px;
  line-height: 1.15;
}

.space-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.space-card dl {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}

.space-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.space-card dd {
  margin: 2px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.filters {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 22px;
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid var(--line);
}

.filter-group {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.filter-group label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.filter-group select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0 12px;
}

.filters .filter-group:nth-of-type(n + 4) select {
  height: 42px;
  background: #f9f5ee;
}

.text-button {
  width: 100%;
  min-height: 44px;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
}

.products-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.products-toolbar p {
  margin: 0;
  color: var(--muted);
}

.view-note {
  color: var(--brass-dark);
  font-size: 13px;
  font-weight: 800;
}

.display-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}

.display-tools > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.segmented-control {
  display: inline-grid;
  grid-template-columns: repeat(3, 44px);
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.segmented-control button {
  min-height: 36px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-weight: 800;
}

.segmented-control button:last-child {
  border-right: 0;
}

.segmented-control button.active {
  background: var(--ink);
  color: var(--paper-2);
}

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

.product-grid.size-small {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.product-card {
  position: relative;
  display: grid;
  background: var(--paper-2);
  border: 1px solid var(--line);
  overflow: hidden;
}

.art-wrap {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e8ded1;
}

.art-wrap:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: -3px;
}

.art-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 280ms ease, transform 420ms ease;
}

.art-layer-primary {
  z-index: 1;
  opacity: 1;
}

.art-layer-scene {
  z-index: 2;
  opacity: 0;
}

.product-card:hover .art-wrap img {
  transform: scale(1.035);
}

.product-card:hover .art-layer-primary,
.product-card:focus-within .art-layer-primary {
  opacity: 0;
}

.product-card:hover .art-layer-scene,
.product-card:focus-within .art-layer-scene {
  opacity: 1;
}

.discount-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 3;
  padding: 6px 10px;
  background: var(--ink);
  color: var(--paper-2);
  font-size: 12px;
  font-weight: 800;
}

.favorite-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-height: 34px;
  border: 1px solid rgba(255, 250, 242, 0.78);
  background: rgba(255, 250, 242, 0.92);
  color: var(--ink);
  padding: 0 11px;
  font-size: 12px;
  font-weight: 900;
}

.favorite-button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-2);
}

.product-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.product-title-row {
  display: block;
}

.product-card h3 {
  margin: 0;
  font-size: 20px;
}

.product-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.art-code,
.product-card .art-code,
.admin-art-card .art-code {
  display: block;
  margin: 0 0 6px;
  color: #92897e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.product-grid.size-small .product-body {
  gap: 10px;
  padding: 14px;
}

.product-grid.size-small .product-card h3 {
  font-size: 17px;
}

.product-grid.size-small .product-card p {
  display: none;
}

.product-grid.size-small .product-card .art-code {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
}

.product-grid.size-large .product-card h3 {
  font-size: 24px;
}

.product-grid.size-large .product-card p {
  font-size: 15px;
}

.price {
  white-space: nowrap;
  color: var(--brass-dark);
  font-weight: 800;
}

.price strong,
.mini-line strong,
.preview-caption strong {
  color: var(--brass-dark);
}

.price del,
.mini-line del,
.preview-caption del {
  margin-left: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.tag-row,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  padding: 5px 8px;
  background: rgba(170, 122, 56, 0.11);
  color: #5d4225;
  font-size: 12px;
}

.product-actions .price-option {
  flex: 1 1 100%;
  min-height: 56px;
  border: 1px solid rgba(35, 28, 21, 0.12);
  background: #f1eee8;
  color: var(--ink);
  font-weight: 800;
}

.product-actions .price-option:first-child {
  background: #e5e0d8;
  color: var(--ink);
}

.price-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  text-align: left;
  padding: 9px 10px 9px 12px;
}

.price-content {
  display: grid;
  grid-template-columns: minmax(52px, auto) minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
  min-width: 0;
}

.price-content span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.price-values {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  flex-wrap: wrap;
}

.price-option strong {
  color: #241f1a;
  font-size: 13px;
  line-height: 1.1;
  white-space: nowrap;
}

.price-option del {
  color: #8f867b;
  font-size: 11px;
  line-height: 1.1;
  white-space: nowrap;
}

.add-cart-button {
  position: relative;
  width: 36px;
  height: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 0;
}

.add-cart-button.small {
  width: 34px;
  height: 34px;
  min-height: 34px;
}

.add-cart-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.add-cart-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.product-grid.size-small .price-option {
  min-height: 54px;
  padding: 8px 9px 8px 10px;
  gap: 8px;
}

.product-grid.size-small .price-content {
  grid-template-columns: 1fr;
  gap: 3px;
}

.product-grid.size-small .price-values {
  justify-content: flex-start;
  gap: 5px 7px;
}

.product-grid.size-small .price-option strong {
  font-size: 12px;
}

.product-grid.size-small .price-option del {
  font-size: 10px;
}

.product-grid.size-small .add-cart-button {
  width: 34px;
  height: 34px;
  min-height: 34px;
}

.product-grid.size-large .price-option {
  min-height: 60px;
  padding: 11px 12px 11px 14px;
}

.product-grid.size-large .price-content {
  grid-template-columns: minmax(64px, auto) minmax(0, 1fr);
}

.product-grid.size-large .price-option strong {
  font-size: 14px;
}

.gallery-walls {
  background: var(--paper);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}

.bundle-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.bundle-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  align-content: center;
  padding: 18px;
  background: #e7dfd4;
}

.bundle-images img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid rgba(255, 250, 242, 0.86);
  box-shadow: 0 12px 26px rgba(35, 28, 21, 0.08);
}

.bundle-images img:first-child {
  grid-row: span 2;
  align-self: center;
}

.bundle-copy {
  padding: clamp(22px, 3vw, 34px);
}

.bundle-copy > span {
  color: var(--brass-dark);
  font-size: 12px;
  font-weight: 900;
}

.bundle-copy h3 {
  margin: 10px 0 0;
  font-size: 28px;
}

.bundle-copy p,
.bundle-copy li {
  color: var(--muted);
  line-height: 1.7;
}

.bundle-copy ul {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.bundle-copy li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(35, 28, 21, 0.08);
  padding-bottom: 6px;
}

.bundle-copy em {
  color: #92897e;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.bundle-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.format-band,
.framing,
.promise {
  padding: 90px clamp(18px, 4vw, 56px);
}

.format-band {
  background: #201c18;
  color: var(--paper-2);
}

.format-band .section-intro {
  max-width: 1160px;
  margin: 0 auto 34px;
}

.format-band .section-intro p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.72);
}

.format-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}

.format-cards article {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 250, 242, 0.18);
  background: rgba(255, 250, 242, 0.045);
}

.format-cards h3 {
  margin: 12px 0 0;
  font-size: 30px;
}

.format-cards p,
.format-cards li {
  color: rgba(255, 250, 242, 0.72);
}

.format-cards ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.personalization-band,
.assurance-band,
.trust-band {
  background: #eee8df;
}

.personalization-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1.18fr;
  gap: clamp(22px, 4vw, 52px);
  padding: 84px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(115deg, rgba(255, 250, 242, 0.96), rgba(238, 229, 216, 0.88)),
    url("assets/artwork-scenes/morning-jade-veins-scene.jpg") center / cover;
  border-top: 1px solid rgba(35, 28, 21, 0.08);
  border-bottom: 1px solid rgba(35, 28, 21, 0.08);
}

.personalization-copy {
  align-self: center;
  max-width: 560px;
}

.personalization-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 500;
  line-height: 1.08;
}

.personalization-copy p:not(.eyebrow) {
  color: #62584d;
  font-size: 17px;
  line-height: 1.9;
}

.personalization-grid,
.assurance-grid {
  display: grid;
  gap: 14px;
}

.personalization-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
}

.personalization-grid article,
.assurance-grid article {
  border: 1px solid rgba(35, 28, 21, 0.12);
  background: rgba(255, 250, 242, 0.78);
  padding: 22px;
  backdrop-filter: blur(10px);
}

.personalization-grid strong,
.assurance-grid strong {
  display: block;
  font-size: 20px;
}

.personalization-grid p,
.assurance-grid p {
  margin: 10px 0 0;
  color: #665d52;
  font-size: 14px;
  line-height: 1.7;
}

.assurance-band {
  padding: 84px clamp(18px, 4vw, 56px);
  background: #f4ede4;
}

.assurance-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1160px;
  margin: 0 auto;
}

.assurance-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--brass-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.trust-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
}

.trust-grid article,
.guide-grid article {
  border: 1px solid rgba(35, 28, 21, 0.12);
  background: rgba(255, 250, 242, 0.74);
  padding: 24px;
}

.trust-grid strong {
  display: block;
  font-size: 20px;
}

.trust-grid p,
.guide-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.guide-library {
  background: #f7f1e8;
}

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

.guide-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 8px;
  background: rgba(170, 122, 56, 0.12);
  color: var(--brass-dark);
  font-size: 12px;
  font-weight: 900;
}

.guide-grid h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.guide-grid p {
  font-size: 14px;
}

.checkout-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 18px;
}

.checkout-trust span {
  border: 1px solid rgba(35, 28, 21, 0.1);
  background: #f6f0e8;
  color: #695f54;
  padding: 9px 11px;
  font-size: 12px;
  font-weight: 800;
}

.framing {
  background: var(--paper-2);
}

.framing .section-intro,
.promise {
  max-width: 1160px;
  margin: 0 auto;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.process li {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.process span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--brass);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.process strong {
  display: block;
  margin-top: 26px;
  font-size: 22px;
}

.process p {
  margin: 10px 0 0;
  color: var(--muted);
}

.promise {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.4fr;
  gap: 48px;
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(35, 28, 21, 0.12);
  background:
    linear-gradient(118deg, rgba(255, 250, 242, 0.98) 0%, rgba(244, 235, 221, 0.9) 46%, rgba(228, 214, 197, 0.74) 100%),
    url("assets/hero-scenes/hero-photo-2-living-room.png") center / cover;
  box-shadow: 0 34px 90px rgba(46, 36, 25, 0.08);
}

.promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.76), transparent 27%),
    linear-gradient(90deg, rgba(255, 250, 242, 0.88), rgba(255, 250, 242, 0.28));
  pointer-events: none;
}

.promise::after {
  content: "";
  position: absolute;
  right: clamp(18px, 6vw, 80px);
  top: clamp(28px, 5vw, 70px);
  width: min(26vw, 300px);
  aspect-ratio: 0.78;
  border: 12px solid rgba(244, 235, 221, 0.76);
  outline: 1px solid rgba(120, 80, 30, 0.28);
  background:
    linear-gradient(135deg, rgba(173, 143, 104, 0.2), transparent 44%),
    linear-gradient(160deg, rgba(23, 19, 15, 0.16), transparent 24%),
    rgba(255, 250, 242, 0.42);
  box-shadow: 0 24px 48px rgba(35, 28, 21, 0.1);
  opacity: 0.7;
  pointer-events: none;
}

.promise > * {
  position: relative;
  z-index: 1;
}

.promise-copy {
  align-self: end;
}

.promise-copy h2 {
  max-width: 520px;
}

.promise-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.8;
}

.promise-grid {
  display: grid;
  gap: 12px;
  align-content: end;
}

.promise-grid article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px 16px;
  padding: 22px;
  border: 1px solid rgba(35, 28, 21, 0.12);
  background: rgba(255, 250, 242, 0.78);
  backdrop-filter: blur(12px);
}

.promise-grid span {
  grid-row: span 2;
  color: var(--brass-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.promise-grid strong {
  font-size: 21px;
}

.promise-grid p {
  margin: 0;
  color: #62584d;
  font-size: 15px;
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: var(--paper-2);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 250, 242, 0.68);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-drawer.open {
  pointer-events: auto;
  opacity: 1;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 13, 10, 0.46);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  width: min(430px, 100%);
  height: 100%;
  padding: 24px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
  transform: translateX(24px);
  transition: transform 180ms ease;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.cart-header h2 {
  margin: 4px 0 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 34px;
  font-weight: 500;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--ink);
  color: var(--paper-2);
  font-size: 28px;
  line-height: 1;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: auto;
  padding: 24px 0;
}

.empty-cart {
  padding: 28px;
  background: var(--paper);
  color: var(--muted);
}

.checkout-result {
  display: grid;
  gap: 8px;
  padding: 18px;
  margin-bottom: 12px;
  background: #f4efe7;
  border: 1px solid var(--line);
  color: var(--olive);
  font-weight: 900;
}

.checkout-result small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.cart-line {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--paper);
}

.cart-line img {
  width: 76px;
  height: 76px;
  object-fit: cover;
}

.cart-line h3 {
  margin: 0;
  font-size: 16px;
}

.cart-line p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.remove-line {
  min-width: 34px;
  min-height: 34px;
  border: 1px solid var(--line);
  background: transparent;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.primary-action.full {
  width: 100%;
}

.account-dialog,
.content-dialog {
  width: min(540px, calc(100% - 28px));
  border: 0;
  padding: 0;
  background: transparent;
}

.checkout-dialog {
  width: min(820px, calc(100% - 28px));
  border: 0;
  padding: 0;
  background: transparent;
}

.content-dialog {
  width: min(760px, calc(100% - 28px));
}

.content-dialog.wide {
  width: min(980px, calc(100% - 28px));
}

.checkout-dialog::backdrop,
.account-dialog::backdrop,
.content-dialog::backdrop {
  background: rgba(17, 13, 10, 0.48);
}

.checkout-form,
.account-form,
.content-panel {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.content-dialog.wide .content-panel {
  max-height: calc(100vh - 42px);
  overflow: auto;
}

.form-note {
  margin: 0;
  color: var(--muted);
}

.checkout-form label,
.account-form label,
.content-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select,
.account-form input,
.account-form select,
.account-form textarea,
.content-panel input,
.content-panel textarea,
.content-panel select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 12px;
  outline: none;
}

.checkout-form input[readonly],
.account-form input[readonly] {
  background: #f4f0e8;
  color: var(--muted);
}

.checkout-step {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.checkout-step[hidden] {
  display: none;
}

.checkout-step h3,
.checkout-breakdown h3 {
  margin: 0;
  font-size: 18px;
}

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

.stacked-choice {
  grid-template-columns: 1fr;
}

.segmented-choice label {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
}

.segmented-choice input {
  width: auto;
  flex: 0 0 auto;
}

.segmented-choice span {
  display: flex;
  align-items: baseline;
  gap: 16px;
  min-width: 0;
}

.segmented-choice strong,
.segmented-choice small {
  display: inline;
}

.segmented-choice small {
  margin-top: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.framed-config {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.framed-config img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.framed-config h4 {
  margin: 0 0 8px;
  font-size: 15px;
}

.frame-select-row {
  display: grid;
  grid-template-columns: 1fr;
}

.framed-config p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.frame-selected-preview {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  padding: 10px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.frame-selected-preview img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: #f4f0e8;
}

.verify-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.verify-panel p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.verify-code {
  padding: 8px 10px;
  background: #efe7da;
}

.inline-verify {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto auto;
  gap: 8px;
  align-items: center;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.auth-tabs button {
  min-height: 42px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
}

.auth-tabs button:last-child {
  border-right: 0;
}

.auth-tabs button.active {
  background: var(--ink);
  color: var(--paper-2);
}

.register-field {
  display: none !important;
}

.account-form.registering .register-field {
  display: grid !important;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.checkbox-line {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.checkbox-line input {
  width: auto;
}

.address-panel {
  display: grid;
  gap: 16px;
}

.address-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.address-head h3 {
  margin: 4px 0 0;
  font-size: 22px;
}

.address-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.address-list {
  display: grid;
  gap: 10px;
}

.address-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.address-card h4 {
  margin: 0;
  font-size: 16px;
}

.address-card h4 span {
  margin-left: 8px;
  padding: 4px 7px;
  background: rgba(89, 96, 71, 0.13);
  color: var(--olive);
  font-size: 12px;
}

.address-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.message-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.message-card.unread {
  border-color: var(--brass);
  box-shadow: inset 4px 0 0 var(--brass);
}

.message-card strong {
  display: block;
  font-size: 15px;
}

.message-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.address-form {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.form-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-dashboard {
  display: grid;
  gap: 18px;
}

.admin-workspace {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.admin-side-menu {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.admin-side-menu button {
  border: 0;
  padding: 9px 10px;
  color: var(--ink);
  background: var(--paper-2);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.admin-side-menu button.active {
  background: var(--ink);
  color: var(--paper-2);
}

.admin-section {
  display: none;
}

.admin-section.active {
  display: block;
}

.admin-main {
  display: grid;
  gap: 18px;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.admin-metric,
.admin-section {
  background: var(--paper);
  border: 1px solid var(--line);
}

.admin-metric {
  padding: 16px;
}

.admin-metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-metric strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.admin-section {
  padding: 16px;
}

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

.admin-section-head h3 {
  margin: 0;
  font-size: 22px;
}

.admin-section-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-table {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.admin-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr 0.8fr 0.8fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--paper-2);
  font-size: 13px;
}

.admin-row span {
  color: var(--muted);
}

.admin-record-list {
  display: grid;
  gap: 10px;
}

.admin-record {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(360px, 1.1fr);
  gap: 14px;
  padding: 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.admin-order-record {
  grid-template-columns: minmax(520px, 1fr) minmax(240px, 280px);
}

.admin-record p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.admin-order-title-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.admin-order-detail {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.admin-order-record:not(.is-expanded) .admin-order-detail {
  display: none;
}

.admin-control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.admin-order-controls {
  grid-template-columns: 1fr;
  align-self: end;
}

.admin-order-controls .primary-action {
  width: 100%;
}

.admin-order-record:not(.is-expanded) .admin-order-controls .document-actions {
  display: none;
}

.admin-control-grid label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-control-grid input,
.admin-control-grid select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 10px;
}

.admin-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-2);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.admin-art-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-art-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  padding: 10px;
  background: var(--paper-2);
}

.admin-art-card img {
  width: 74px;
  height: 74px;
  object-fit: cover;
}

.admin-art-card h4 {
  margin: 0;
  font-size: 15px;
}

.admin-art-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.admin-art-card .art-code {
  margin: 3px 0 2px;
  font-size: 10px;
}

.frame-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.frame-admin-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.frame-admin-card.disabled {
  opacity: 0.56;
}

.frame-admin-card img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: #f4f0e8;
}

.frame-admin-card h4 {
  margin: 6px 0 0;
  font-size: 14px;
}

.frame-admin-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.mini-list {
  display: grid;
  gap: 12px;
  max-height: min(62vh, 620px);
  overflow: auto;
}

.mini-line,
.order-line {
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: var(--paper);
}

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

.mini-line img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.mini-art-button {
  border: 0;
  padding: 0;
  background: transparent;
}

.mini-line h3,
.order-line h3 {
  margin: 0;
  font-size: 17px;
}

.mini-line p,
.order-line p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.mini-line button {
  min-height: 36px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--ink);
  padding: 0 10px;
}

.order-toolbar {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 940px);
  padding: 14px;
  margin: 0 auto 14px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.order-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.orders-page-list {
  display: grid;
  gap: 18px;
  width: min(100%, 940px);
  margin: 0 auto;
  overflow: visible;
}

.order-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.order-card-head {
  display: flex;
  gap: 16px;
  align-items: start;
  justify-content: space-between;
}

.order-card-head h3 {
  margin: 8px 0 0;
  font-size: 18px;
}

.order-card-head p,
.order-footnote,
.order-hint {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.order-status {
  display: inline-flex;
  width: fit-content;
}

.order-summary-line {
  display: grid;
  gap: 8px;
}

.order-expanded-content {
  display: none;
  gap: 14px;
}

.order-card.is-expanded .order-expanded-content {
  display: grid;
}

.order-card.is-expanded .order-summary-line {
  display: none;
}

.order-items {
  display: grid;
  gap: 10px;
}

.order-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: var(--paper-2);
}

.order-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.order-item h4 {
  margin: 0;
  font-size: 15px;
}

.order-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.order-item-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  min-width: 126px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}

.download-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
}

.download-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
}

.order-item-download span:last-child {
  display: grid;
  gap: 2px;
}

.order-item-download strong {
  font-size: 13px;
  line-height: 1;
}

.order-item-download small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.order-actions .download-card-list {
  flex: 1 0 100%;
}

.order-toggle {
  justify-self: end;
  min-width: 86px;
  min-height: 38px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 10px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.document-actions.compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 8px;
}

.document-actions span {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.document-actions.compact span {
  grid-column: 1 / -1;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.document-actions button,
.document-toolbar button {
  min-height: 34px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 0 10px;
  font-weight: 800;
  cursor: pointer;
}

.document-actions.compact button {
  min-height: 30px;
  padding: 0 6px;
  font-size: 11px;
  line-height: 1.15;
}

.document-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}

.financial-document {
  display: grid;
  gap: 20px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 28px;
  color: var(--ink);
}

.financial-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.financial-kicker,
.financial-meta span,
.financial-total span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.financial-header h1 {
  margin: 4px 0 10px;
  font-size: 34px;
}

.financial-header p,
.financial-parties p,
.financial-footer p {
  margin: 4px 0;
  color: var(--muted);
  line-height: 1.5;
}

.financial-stamp {
  min-width: 160px;
  border: 2px solid var(--ink);
  padding: 14px;
  text-align: center;
}

.financial-stamp strong,
.financial-stamp span {
  display: block;
}

.financial-stamp span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.financial-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.financial-meta div,
.financial-parties div {
  display: grid;
  gap: 5px;
}

.financial-parties {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.financial-parties h2 {
  margin: 0 0 6px;
  font-size: 16px;
}

.financial-payment {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.financial-payment div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.financial-payment span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.financial-table {
  width: 100%;
  border-collapse: collapse;
}

.financial-table th,
.financial-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.financial-table th:nth-child(n + 2),
.financial-table td:nth-child(n + 2) {
  text-align: right;
}

.financial-table td span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.financial-total {
  width: min(420px, 100%);
  margin-left: auto;
  display: grid;
  gap: 7px;
}

.financial-total div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

.financial-total .total {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.financial-footer {
  color: var(--muted);
  font-size: 13px;
}

.order-pricing,
.checkout-breakdown {
  display: grid;
  gap: 6px;
  padding: 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.order-pricing div,
.breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.order-pricing .total,
.breakdown-row.total {
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.small-action {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.admin-save-artwork {
  min-width: 86px;
  justify-self: start;
}

.secondary-link,
.danger-link {
  min-height: 36px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--ink);
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.danger-link {
  color: #9a2f24;
}

.account-menu button.danger-link {
  display: none;
  width: 100%;
  min-height: 38px;
  border: 0;
  background: transparent;
  padding: 0 12px;
  color: #9d3324 !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.account-menu button.danger-link:hover {
  background: var(--paper);
}

.is-logged-in .account-menu button.danger-link {
  display: block;
}

.mini-actions {
  display: grid;
  gap: 8px;
}

.order-line {
  grid-template-columns: 1fr auto;
}

.status-pill {
  padding: 6px 9px;
  background: rgba(89, 96, 71, 0.13);
  color: var(--olive);
  font-size: 12px;
  font-weight: 900;
}

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

.legal-copy {
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.legal-copy p {
  margin: 0;
}

.success-message {
  min-height: 24px;
  margin: 0;
  color: var(--olive);
  font-weight: 800;
}

.success-message small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.checkout-downloads {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.checkout-downloads.compact {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}

.download-card-list {
  display: grid;
  gap: 8px;
  width: 100%;
}

.download-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}

.download-card img,
.download-thumb-placeholder {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid rgba(35, 28, 21, 0.12);
  background: #e8ded1;
}

.download-thumb-placeholder {
  display: grid;
  place-items: center;
  color: var(--brass-dark);
  font-weight: 900;
}

.download-card span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.download-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.download-card strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-card em {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  padding: 0 10px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.checkout-downloads .download-card {
  grid-template-columns: 46px minmax(0, 1fr) auto;
  background: var(--paper-2);
}

.checkout-downloads .download-card img,
.checkout-downloads .download-thumb-placeholder {
  width: 46px;
  height: 46px;
}

.checkout-downloads .download-card strong {
  font-size: 13px;
}

.preview-dialog {
  width: min(1180px, calc(100vw - 34px));
  max-height: calc(100vh - 34px);
  border: 0;
  padding: 0;
  background: transparent;
}

.preview-dialog::backdrop {
  background: rgba(17, 13, 10, 0.72);
}

.preview-frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 0;
  max-height: calc(100vh - 34px);
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.preview-frame img {
  width: 100%;
  height: min(86vh, 900px);
  object-fit: contain;
  background: #efe6da;
}

.preview-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  min-height: 42px;
  border: 1px solid rgba(255, 250, 242, 0.76);
  background: rgba(255, 250, 242, 0.9);
  color: var(--ink);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(17, 13, 10, 0.16);
}

.preview-nav:hover,
.preview-nav:focus-visible {
  background: var(--ink);
  color: var(--paper-2);
}

.preview-nav:disabled {
  display: none;
}

.preview-prev {
  left: 18px;
}

.preview-next {
  right: 360px;
}

.preview-caption {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 32px;
  border-left: 1px solid var(--line);
}

.preview-caption h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.02;
}

.preview-caption p {
  display: grid;
  gap: 12px;
  margin: 0;
  color: var(--muted);
}

.preview-caption span {
  display: block;
}

.preview-caption .preview-code {
  margin-bottom: -2px;
  color: #948b80;
}

.preview-image-switch {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 4px;
  border: 1px solid rgba(35, 28, 21, 0.14);
  background: #f1ece4;
}

.preview-image-switch button {
  min-height: 32px;
  border: 0;
  background: transparent;
  color: #6f665d;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
}

.preview-image-switch button.active {
  background: var(--ink);
  color: var(--paper-2);
}

.preview-price-row {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.preview-price-row > span {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-description {
  color: #80776d !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.preview-detail-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.preview-detail-grid > span {
  border: 1px solid rgba(35, 28, 21, 0.1);
  background: #f4eee6;
  padding: 9px;
}

.preview-detail-grid small {
  display: block;
  color: #8d8378;
  font-size: 10px;
  font-weight: 900;
}

.preview-detail-grid b {
  display: block;
  margin-top: 3px;
  color: #3d352d;
  font-size: 12px;
  line-height: 1.35;
}

.preview-trust {
  display: grid !important;
  gap: 6px;
}

.preview-trust em {
  color: #766d63;
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.preview-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 14px;
  }

  .desktop-nav,
  .header-search {
    grid-column: 1 / -1;
  }

  .desktop-nav {
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .desktop-nav::-webkit-scrollbar {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    width: min(680px, calc(100% - 36px));
  }

  .hero-art {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 54%;
    transform: none;
  }

  .hero-art-frame {
    right: clamp(28px, 7vw, 70px);
    top: 12%;
    width: min(48vw, 420px);
  }

  .hero-bench {
    right: clamp(24px, 6vw, 70px);
    bottom: 16%;
    width: min(56vw, 520px);
  }

  .hero-side-room,
  .hero-small-art {
    display: none;
  }

  .product-grid,
  .process,
  .quick-strip,
  .space-guide-grid,
  .personalization-grid,
  .assurance-grid,
  .bundle-grid,
  .trust-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .personalization-band {
    grid-template-columns: 1fr;
  }

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

  .product-grid.size-large {
    grid-template-columns: 1fr;
  }

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

  .filters {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .filter-group {
    margin-bottom: 0;
  }

  .preview-frame {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .preview-next {
    right: 18px;
  }

  .preview-frame img {
    height: min(70vh, 760px);
  }

  .preview-caption {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: auto;
    padding: 12px 14px;
  }

  .brand strong {
    font-size: 17px;
  }

  .desktop-nav {
    gap: 8px;
    font-size: 13px;
    width: 100%;
    margin: 2px -2px 0;
    padding: 0 2px 4px;
  }

  .hero-slide-bg {
    background-position: 24% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(255, 252, 246, 0.96) 0%, rgba(255, 252, 246, 0.88) 46%, rgba(255, 252, 246, 0.36) 72%, rgba(255, 252, 246, 0.08) 100%),
      radial-gradient(circle at 20% 34%, rgba(255, 255, 255, 0.78), transparent 26%);
  }

  .header-search {
    grid-template-columns: 1fr 72px;
  }

  .header-actions {
    gap: 8px;
  }

  .profile-layout,
  .form-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .address-card {
    grid-template-columns: 1fr;
  }

  .admin-metrics,
  .admin-art-grid,
  .admin-row {
    grid-template-columns: 1fr;
  }

  .account-button {
    min-width: 92px;
    padding: 0 9px;
  }

  .cart-button span {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(40px, 11vw, 50px);
    line-height: 1.1;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 17px;
  }

  .hero-content {
    padding-top: 42px;
  }

  .hero-art,
  .hero-bench {
    display: none;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hero-dots {
    left: 18px;
    bottom: 190px;
  }

  .quick-strip,
  .section-intro,
  .format-cards,
  .process,
  .promise,
  .personalization-band,
  .personalization-grid,
  .assurance-grid,
  .space-guide-grid,
  .bundle-grid,
  .trust-grid,
  .guide-grid,
  .checkout-trust {
    grid-template-columns: 1fr;
  }

  .section-intro,
  .space-guide,
  .gallery-walls,
  .personalization-band,
  .assurance-band,
  .trust-band,
  .guide-library,
  .format-band,
  .framing,
  .promise,
  .account-page {
    scroll-margin-top: 236px;
  }

  .quick-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .personalization-band,
  .assurance-band {
    padding: 64px 18px;
  }

  .personalization-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.75;
  }

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

  .product-grid.size-small,
  .product-grid.size-medium,
  .product-grid.size-large {
    grid-template-columns: 1fr;
  }

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

  .space-guide,
  .gallery-walls,
  .trust-band,
  .guide-library {
    padding: 64px 18px;
  }

  .bundle-card {
    grid-template-columns: 1fr;
  }

  .bundle-images {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bundle-images img:first-child {
    grid-row: auto;
  }

  .guide-grid h3 {
    font-size: 20px;
  }

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

  .section-intro {
    padding-top: 64px;
  }

  .collections-action-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .collections-action-row .collections-copy {
    font-size: 14px;
  }

  .products-toolbar,
  .site-footer,
  .account-page-header {
    align-items: start;
    flex-direction: column;
  }

  .display-tools {
    justify-content: flex-start;
  }

  .preview-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .preview-frame {
    max-height: calc(100vh - 20px);
  }

  .preview-nav {
    top: 42%;
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .preview-prev {
    left: 10px;
  }

  .preview-next {
    right: 10px;
  }

  .preview-frame img {
    height: auto;
    max-height: none;
  }

  .preview-caption {
    padding: 22px;
  }

  .format-band,
  .framing,
  .promise {
    padding: 64px 18px;
  }

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

  .cart-line img {
    width: 64px;
    height: 64px;
  }

  .admin-grid,
  .mini-line,
  .order-line,
  .order-item,
  .admin-record,
  .admin-control-grid,
  .admin-workspace,
  .frame-selected-preview {
    grid-template-columns: 1fr;
  }

  .order-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.35;
  }

  .order-item-download {
    justify-self: stretch;
    justify-content: space-between;
  }

  .admin-side-menu {
    position: static;
  }

  .inline-verify,
  .framed-config {
    grid-template-columns: 1fr;
  }

  .mini-line img,
  .mini-art-button img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.35;
  }
}
