:root {
  --ink: #081010;
  --muted: #60515a;
  --paper: #fff3f8;
  --linen: #ffe2f0;
  --charcoal: #101010;
  --pink: #f82890;
  --pink-deep: #9c0f54;
  --pink-soft: #ffe0ef;
  --hot-pink-bg: #f82890;
  --gold: #dca64f;
  --white: #fffefb;
  --shadow: 0 18px 55px rgba(8, 16, 16, 0.24);
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.5rem;
  color: #7d1b55;
}

.site-footer a {
  color: #c60c72;
}

.analytics-launch {
  display: grid;
  gap: 18px;
  justify-items: start;
  margin-bottom: 24px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.analytics-launch h3 { margin: 0 0 8px; }
.analytics-launch p:not(.eyebrow) { margin: 0; color: var(--muted); }

.analytics-dashboard__header,
.analytics-dashboard__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.analytics-dashboard__header h3,
.analytics-dashboard h4 { margin: 0; }
.analytics-dashboard__controls select { min-width: 145px; }

.analytics-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.analytics-metric {
  padding: 15px;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.analytics-metric strong { display: block; color: var(--pink-deep); font-size: 1.7rem; }
.analytics-metric span { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; }

.analytics-tables { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 18px; }
.analytics-table { width: 100%; margin-top: 10px; border-collapse: collapse; font-size: 0.84rem; }
.analytics-table th, .analytics-table td { padding: 8px 6px; border-bottom: 1px solid #e6c7d5; text-align: right; }
.analytics-table th:first-child, .analytics-table td:first-child { text-align: left; }

@media (max-width: 800px) {
  .analytics-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .analytics-tables { grid-template-columns: 1fr; }
  .analytics-dashboard__header { align-items: flex-start; flex-direction: column; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--hot-pink-bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.support-chat { position: fixed; z-index: 80; right: 18px; bottom: 18px; font-family: inherit; }
.support-chat__bubble { display: flex; align-items: center; gap: 9px; min-height: 50px; padding: 0 17px; border: 0; border-radius: 999px; background: var(--hot-pink-bg); color: white; box-shadow: 0 12px 35px rgba(8,16,16,.35); font-weight: 900; cursor: pointer; }
.support-chat__bubble span { font-size: 1.1rem; }
.support-chat__panel { position: absolute; right: 0; bottom: 62px; display: grid; grid-template-rows: auto minmax(190px, 1fr) auto auto; width: min(370px, calc(100vw - 24px)); height: min(530px, calc(100vh - 110px)); overflow: hidden; border: 2px solid var(--ink); border-radius: 17px; background: white; color: var(--ink); box-shadow: 0 24px 70px rgba(0,0,0,.38); }
.support-chat__panel[hidden] { display: none; }
.support-chat__panel header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px; background: var(--hot-pink-bg); color: white; }
.support-chat__panel header div { display: grid; }.support-chat__panel header span { font-size: .74rem; opacity: .9; }.support-chat__panel header button { border: 0; background: transparent; color: white; font-size: 1.8rem; cursor: pointer; }
.support-chat__messages { padding: 15px; overflow-y: auto; background: #fff6fa; }.support-chat__welcome { color: #745365; font-size: .86rem; text-align: center; }
.support-chat__message { display: flex; margin: 8px 0; }.support-chat__message span { max-width: 82%; padding: 10px 12px; border-radius: 13px; white-space: pre-wrap; font-size: .88rem; }
.support-chat__message--visitor { justify-content: flex-end; }.support-chat__message--visitor span { background: var(--hot-pink-bg); color: white; border-bottom-right-radius: 3px; }.support-chat__message--owner span { background: #e7ecff; color: #132f9c; border-bottom-left-radius: 3px; }
.support-chat__panel form { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 11px; border-top: 1px solid #ead3de; }.support-chat__panel textarea { min-width: 0; resize: none; border: 1px solid #c9aebc; border-radius: 9px; padding: 9px; color: var(--ink); background: white; }.support-chat__panel form button { border: 0; border-radius: 9px; padding: 0 14px; background: var(--hot-pink-bg); color: white; font-weight: 900; }
.support-chat__panel > small { padding: 0 12px 10px; color: #795b6b; }
@media (max-width: 560px) { .support-chat { right: 10px; bottom: 10px; }.support-chat__bubble { width: 38px; min-height: 38px; padding: 0; justify-content: center; gap: 0; overflow: hidden; font-size: 0; }.support-chat__bubble span { font-size: .92rem; }.support-chat__panel { bottom: 48px; height: min(520px, calc(100vh - 78px)); } }

.signin-offer { position: fixed; z-index: 75; left: 22px; bottom: 22px; width: min(440px, calc(100vw - 44px)); padding: 24px; border: 2px solid var(--ink); border-radius: 17px; background: var(--white); color: var(--ink); box-shadow: 0 22px 70px rgba(0,0,0,.38); }
.signin-offer[hidden] { display: none; }.signin-offer h2 { margin: 0 30px 9px 0; color: var(--pink-deep); font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.08; }.signin-offer p:not(.eyebrow) { color: var(--muted); }.signin-offer__close { position: absolute; top: 9px; right: 11px; border: 0; background: transparent; color: var(--ink); font-size: 1.8rem; cursor: pointer; }
.signin-offer__code { display: flex; align-items: center; justify-content: space-between; gap: 15px; width: 100%; padding: 14px 16px; border: 2px dashed var(--pink); border-radius: 10px; background: var(--pink-soft); color: var(--pink-deep); cursor: pointer; }.signin-offer__code strong { font-size: 1.55rem; letter-spacing: .12em; }.signin-offer__code span { font-weight: 850; }
@media (max-width: 560px) { .signin-offer { left: 12px; bottom: 74px; width: calc(100vw - 24px); padding: 20px; } }

body.order-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 60% 24%;
}

@media (max-width: 640px) {
  .hero__image { object-position: 63% 22%; }
}

.hero__shade {
  background: linear-gradient(90deg, rgba(8, 16, 16, 0.9), rgba(8, 16, 16, 0.54) 58%, rgba(248, 40, 144, 0.42));
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px clamp(18px, 5vw, 64px);
  background: rgba(8, 16, 16, 0.84);
  backdrop-filter: blur(10px);
}

.topbar a {
  text-decoration: none;
  font-size: 0.95rem;
  color: rgba(255, 254, 251, 0.88);
}

.topbar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  color: var(--white);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--pink);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 254, 251, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.topbar-account {
  max-width: 210px;
  min-height: 38px;
  padding: 0 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 254, 251, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 254, 251, 0.1);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.topbar-account:hover,
.topbar-account:focus-visible {
  border-color: var(--pink);
  background: rgba(248, 40, 144, 0.24);
}

.inventory-sale-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(207, 255, 77, 0.58);
  border-radius: 999px;
  color: #efffc1;
  background: rgba(87, 124, 0, 0.42);
  font-size: .76rem;
  font-weight: 900;
  white-space: nowrap;
}

.price-was {
  margin-right: 6px;
  color: rgba(255,255,255,.55);
  font-size: .72em;
  text-decoration: line-through;
}

.inventory-sale-line {
  color: #d7ff72 !important;
  font-weight: 800;
}

.cart-button:hover {
  background: var(--pink-deep);
}

.cart-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.cart-button strong {
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
}

.cart-button__count {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--pink-soft);
  font-size: 0.76rem;
  line-height: 1;
}

.cart-drawer {
  position: fixed;
  top: 86px;
  right: clamp(12px, 4vw, 48px);
  z-index: 11;
  display: grid;
  gap: 18px;
  width: min(390px, calc(100vw - 24px));
  max-height: calc(100vh - 112px);
  padding: 20px;
  overflow: auto;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(8, 16, 16, 0.26);
}

.cart-drawer[hidden] {
  display: none;
}

.cart-drawer__header,
.cart-total-row,
.cart-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.cart-drawer__header h2 {
  margin-bottom: 0;
  font-size: 1.7rem;
}

.cart-drawer__header .icon-button {
  flex: 0 0 auto;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  padding: 14px;
  border: 1px solid rgba(8, 16, 16, 0.1);
  border-radius: 8px;
  background: var(--pink-soft);
}

.cart-item__side {
  display: grid;
  justify-items: end;
  gap: 8px;
  flex: 0 0 auto;
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item__price {
  color: var(--pink-deep);
  font-size: 1.1rem;
}

.cart-item__remove {
  padding: 0;
  border: 0;
  color: var(--pink-deep);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.cart-drawer__footer {
  display: grid;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(8, 16, 16, 0.1);
}

.discount-form {
  display: grid;
  gap: 8px;
}

.discount-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.discount-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.discount-form input {
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 2px solid rgba(8, 16, 16, 0.16);
  border-radius: 8px;
  font: inherit;
  text-transform: uppercase;
}

.cart-total-row {
  align-items: center;
  font-size: 1.1rem;
}

.cart-total-row strong {
  color: var(--pink-deep);
  font-size: 1.5rem;
}

.cart-drawer__actions,
.cart-form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
}

.checkout-modal[hidden] {
  display: none;
}

.checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.72);
}

.checkout-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(18px, 4vw, 28px);
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(5, 5, 5, 0.32);
}

.checkout-modal__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--pink);
}

.checkout-modal__header h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.checkout-modal__content {
  display: grid;
  gap: 16px;
}

.checkout-modal__summary {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--hot-pink-bg);
  color: var(--white);
}

.checkout-modal__summary strong,
.checkout-modal__summary span {
  display: block;
}

.checkout-modal__items {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.checkout-modal__notice {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.checkout-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.music-player {
  position: fixed;
  left: clamp(12px, 4vw, 48px);
  bottom: 14px;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(420px, calc(100vw - 24px));
  padding: 10px 12px;
  border: 1px solid rgba(255, 254, 251, 0.2);
  border-radius: 999px;
  color: var(--pink);
  background: rgba(8, 16, 16, 0.88);
  box-shadow: 0 12px 28px rgba(8, 16, 16, 0.26);
}

.music-player__button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(248, 40, 144, 0.8);
  border-radius: 999px;
  color: var(--ink);
  background: var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.music-player span {
  overflow: hidden;
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#youtubeMusicPlayer {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(700px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 88px);
  padding-top: 64px;
}

.hero__logo {
  width: clamp(108px, 16vw, 176px);
  height: clamp(108px, 16vw, 176px);
  margin-bottom: 22px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px var(--pink), 0 20px 45px rgba(0, 0, 0, 0.32);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--pink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  color: var(--hot-pink-bg);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(8, 16, 16, 0.72);
}

h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero__content p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 254, 251, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.button--primary {
  color: var(--white);
  background: var(--ink);
}

.button--primary:hover {
  background: var(--pink-deep);
}

.button--quiet {
  min-height: 38px;
  color: var(--white);
  background: var(--pink-deep);
  border: 1px solid rgba(8, 16, 16, 0.16);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.section {
  padding: clamp(48px, 8vw, 92px) clamp(18px, 5vw, 64px);
}

.section__heading {
  max-width: 1120px;
  margin: 0 auto 26px;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(8, 16, 16, 0.22);
}

.gallery-band {
  background: var(--hot-pink-bg);
}

.collection-cart-button {
  align-self: center;
  justify-self: end;
  max-width: 360px;
  box-shadow: 5px 5px 0 var(--ink);
}

.collection-cart-message {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: var(--pink-deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.gallery {
  max-width: 1120px;
  margin: 0 auto;
}

.collection-bar {
  position: sticky;
  top: 86px;
  z-index: 8;
  display: flex;
  gap: 10px;
  max-width: 1120px;
  margin: 0 auto 24px;
  padding: 12px;
  overflow-x: auto;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(8, 16, 16, 0.2);
  scrollbar-width: thin;
}

.collection-bar a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-bottom: 3px solid transparent;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.collection-bar a:hover,
.collection-bar a:focus-visible {
  border-bottom-color: var(--hot-pink-bg);
  color: var(--pink-deep);
  outline: none;
}

.collection-heading h3,
#individual-paintings-title {
  scroll-margin-top: 170px;
}

.collection-group {
  position: relative;
  margin: 0 0 26px;
  padding: 16px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 12px 28px rgba(8, 16, 16, 0.16);
}

.collection-group--ungrouped {
  margin-top: 64px;
  padding-top: 28px;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.42);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.collection-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 24px;
  margin: 0 0 22px;
  padding: 22px 26px 20px;
  border: 3px solid var(--ink);
  border-left: 14px solid #ff0a78;
  border-radius: 10px;
  background: linear-gradient(105deg, #fff 0%, #fff 72%, #ffd4e8 100%);
  color: var(--ink);
  box-shadow: 0 7px 0 var(--ink);
}

.collection-heading .eyebrow {
  display: inline-block;
  margin: 0 0 9px;
  padding: 5px 12px;
  border-radius: 4px;
  background: #ff0a78;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  box-shadow: 3px 3px 0 var(--ink);
}

.collection-heading h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.collection-heading--ungrouped {
  display: block;
  border-left-color: #ff0a78;
  background: linear-gradient(105deg, #fff 0%, #fff 72%, #ffe1ef 100%);
  box-shadow: 0 7px 0 #4b1932;
}

.section__heading--dark {
  color: var(--ink);
  text-shadow: none;
}

.bookmarks-band {
  background: linear-gradient(145deg, #fff7fb, #ffd9eb);
}

.bookmark-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.bookmark-card {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 28px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 9px 9px 0 var(--ink);
}

.bookmark-card h3 {
  margin: 4px 0 8px;
  color: var(--pink-deep);
  font: 700 clamp(1.4rem, 3vw, 2rem) Georgia, "Times New Roman", serif;
}

.bookmark-card p:not(.eyebrow) {
  color: var(--muted);
}

.bookmark-shape {
  display: grid;
  place-items: center;
  width: 92px;
  height: 220px;
  margin: 0 auto;
  border: 3px solid var(--ink);
  border-radius: 46px 46px 10px 10px;
  color: white;
  box-shadow: 6px 6px 0 var(--ink);
}

.bookmark-shape::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: -28px;
  border: 3px solid white;
  border-radius: 50%;
}

.bookmark-shape span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bookmark-shape--handmade {
  background: linear-gradient(180deg, #ff0a78, #74103f);
}

.bookmark-shape--printed {
  background: linear-gradient(180deg, #241b17, #dca64f);
}

.coming-soon-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rental-promo-band {
  background: var(--charcoal);
}

.rental-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border: 3px solid var(--white);
  border-radius: 18px;
  background: linear-gradient(120deg, #1a1216, #5d1038);
  color: var(--white);
}

.rental-promo h2 {
  margin: 4px 0 10px;
  font: 700 clamp(2rem, 5vw, 3.6rem) Georgia, "Times New Roman", serif;
}

.rental-promo p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: #f8dfea;
}

.rental-promo .button {
  background: var(--pink);
}

.merch-promo-band {
  background: linear-gradient(135deg, #ffe0ef, #fff8fb 60%, #f8e9cf);
}

.merch-promo {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: white;
  box-shadow: 9px 9px 0 var(--pink-deep);
}

.merch-promo__art {
  position: relative;
  width: 108px;
  aspect-ratio: 4 / 6;
  padding: 7px;
  transform: rotate(-4deg);
  border: 3px solid var(--ink);
  border-radius: 9px;
  background: white;
  box-shadow: 6px 7px 0 var(--pink);
}

.merch-promo__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merch-promo__art span {
  position: absolute;
  right: -17px;
  bottom: 10px;
  padding: 5px 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #d7ff72;
  font-size: 0.7rem;
  font-weight: 900;
}

.merch-promo h2 {
  margin: 4px 0 10px;
  font: 700 clamp(2rem, 5vw, 3.6rem) Georgia, "Times New Roman", serif;
}

.merch-promo p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.art-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(8, 16, 16, 0.2);
}

.watermarked-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--paper);
}

.watermarked-image--selectable {
  display: block;
  box-sizing: border-box;
  padding: 10px 7px 6px;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  text-align: initial;
  cursor: pointer;
}

.watermarked-image--selectable:focus-visible {
  outline: 4px solid var(--pink);
  outline-offset: -4px;
}

.watermarked-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--paper);
  -webkit-user-drag: none;
  user-select: none;
}

.watermarked-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
}

.watermarked-image span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150%;
  transform: translate(-50%, -50%) rotate(-24deg);
  color: rgba(255, 254, 251, 0.34);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-shadow:
    0 1px 7px rgba(8, 16, 16, 0.34),
    -220px -125px 0 rgba(255, 254, 251, 0.16),
    220px 125px 0 rgba(255, 254, 251, 0.16);
  pointer-events: none;
  user-select: none;
}

.watermarked-image--viewer {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  background: var(--ink);
}

.watermarked-image--viewer img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
}

.watermarked-image--viewer span {
  color: rgba(255, 254, 251, 0.28);
  font-size: clamp(1.8rem, 5vw, 4rem);
}

.art-card__body {
  display: grid;
  grid-template-rows: 58px 48px auto minmax(88px, auto) auto;
  align-items: start;
  gap: 9px;
  min-height: 360px;
  padding: 14px;
}

.art-card h3 {
  display: -webkit-box;
  overflow: hidden;
  min-height: calc(1.18em * 2);
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.art-card__engagement {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 28px;
}

.art-card__engagement span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  border: 1px solid #d9277f;
  border-radius: 999px;
  background: #fff0f7;
  color: #4b1932;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.art-card__engagement span:first-child::before {
  content: "♥";
  color: #d9277f;
}

.art-card__engagement span:last-child::before {
  content: "↗";
  color: #2457ff;
}

.art-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  min-height: calc(1.45em * 5);
  max-height: calc(1.45em * 5);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}

.art-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 6px 14px;
  margin-bottom: 0;
  color: var(--hot-pink-bg);
  font-size: 0.9rem;
  font-weight: 700;
  min-height: 52px;
  text-align: center;
}

.art-card__meta span {
  display: inline;
  color: var(--hot-pink-bg);
  font-size: 0.82rem;
  line-height: 1.35;
}

.art-card__meta span + span::before {
  content: "•";
  margin-right: 14px;
  color: var(--hot-pink-bg);
}

.art-card .button {
  align-self: end;
  justify-self: stretch;
  min-height: 36px;
  padding: 0 9px;
  font-size: 0.72rem;
  text-align: center;
  white-space: nowrap;
}

.art-card__actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  align-self: end;
}

.art-like-button.is-liked,
.button.is-liked {
  border-color: var(--pink-deep);
  background: var(--pink-soft);
  color: var(--pink-deep);
}

.reviews-band {
  background:
    radial-gradient(circle at top left, rgba(248, 40, 144, 0.24), transparent 35%),
    linear-gradient(135deg, #fffefb 0%, #fff3f8 100%);
}

.reviews-band .section__heading,
.about-band .section__heading {
  color: var(--ink);
  text-shadow: none;
}

.review-carousel {
  position: relative;
  max-width: 860px;
  min-height: 250px;
  margin: 0 auto;
}

.review-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(24px, 5vw, 44px);
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.review-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.review-card__stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.35;
}

.review-card strong {
  color: var(--pink-deep);
}

.review-card span {
  color: var(--muted);
}

.review-form-band {
  background: var(--linen);
}

.about-band {
  background: linear-gradient(135deg, var(--charcoal) 0%, #37172a 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.about-card {
  padding: clamp(24px, 4vw, 38px);
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 0 rgba(248, 40, 144, 0.6), var(--shadow);
}

.about-card h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.about-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.order-band {
  background: var(--hot-pink-bg);
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
}

.order-modal[hidden] {
  display: none;
}

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 16, 0.78);
  backdrop-filter: blur(5px);
}

.order-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1380px, 100%);
  height: min(760px, calc(100dvh - 48px));
  max-height: calc(100dvh - 48px);
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.order-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  margin: 0;
  background: var(--white);
}

.order-modal .order-layout {
  height: 100%;
}

.order-modal .order-layout > div:first-child {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
}

.order-modal .media-viewer {
  width: 100%;
  margin-top: 0;
  align-self: center;
}

.order-modal .media-frame,
.order-modal .watermarked-image--viewer,
.order-modal .media-frame img,
.order-modal .media-frame iframe {
  height: min(620px, calc(100dvh - 310px));
  min-height: 260px;
}

.order-modal .watermarked-image--viewer img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.65fr);
  gap: clamp(24px, 5vw, 58px);
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}

.order-layout > div:first-child,
.account-layout > div:first-child {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(8, 16, 16, 0.2);
}

.intro {
  max-width: 620px;
  color: rgba(255, 254, 251, 0.9);
}

.media-viewer {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.media-frame {
  height: 620px;
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.media-frame img,
.media-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  object-fit: contain;
}

.external-photo-panel {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  min-height: 360px;
  padding: 24px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, rgba(8, 16, 16, 0.94), rgba(189, 23, 103, 0.72));
}

.external-photo-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.external-photo-panel span {
  max-width: 330px;
  color: rgba(255, 254, 251, 0.84);
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.order-panel {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 26px);
  border-radius: 8px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}

.order-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

#sizeWrap small {
  color: var(--pink-deep);
  font-size: 0.76rem;
  font-weight: 800;
}

label,
fieldset {
  display: grid;
  gap: 7px;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

fieldset {
  padding: 14px;
  border: 1px solid rgba(248, 40, 144, 0.2);
  border-radius: 8px;
}

legend {
  padding: 0 6px;
}

.format-options {
  gap: 9px;
  padding: 16px;
  background: var(--pink-soft);
}

.choice {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(8, 16, 16, 0.12);
  border-radius: 6px;
  background: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.choice:has(input:checked) {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(248, 40, 144, 0.38);
}

[hidden] {
  display: none !important;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(8, 16, 16, 0.18);
  border-radius: 6px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.choice input {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--pink-deep);
}

.checkout-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}

.total-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: end;
  padding: 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--pink);
}

.total-box span {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.1;
}

.total-box strong {
  font-size: 2rem;
  line-height: 1;
}

.total-box small {
  grid-column: 1 / -1;
  color: rgba(255, 254, 251, 0.84);
}

.order-message {
  min-height: 24px;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.paypal-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(0, 48, 135, 0.18);
  border-radius: 8px;
  background: #f7fbff;
  box-shadow: 0 8px 22px rgba(8, 16, 16, 0.08);
}

.paypal-panel strong,
.paypal-panel span,
.paypal-panel small {
  display: block;
}

.paypal-panel p {
  margin: 4px 0 0;
  color: var(--muted);
}

.paypal-panel small {
  color: var(--muted);
}

.paypal-panel__eyebrow {
  color: #003087;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.account-band {
  background: var(--hot-pink-bg);
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 5vw, 58px);
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.account-layout > div:first-child .account-note {
  color: rgba(255, 254, 251, 0.9);
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guest-checkout-fields {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 2px solid var(--pink-deep);
  border-radius: 12px;
}

.guest-checkout-fields .address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.guest-checkout-fields label {
  display: grid;
  gap: 4px;
}

.guest-checkout-fields input.checkout-field--invalid {
  border-color: #d60039;
  outline: 3px solid rgba(214, 0, 57, 0.24);
  background: #fff1f4;
  box-shadow: 0 0 0 1px #d60039;
}

@media (max-width: 560px) {
  .guest-checkout-fields .address-grid {
    grid-template-columns: 1fr;
  }
}

/* Merchandise */
.merch-page {
  background: #fff8fb;
}

.merch-hero {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 152, 202, 0.42), transparent 28%),
    radial-gradient(circle at 12% 85%, rgba(207, 255, 77, 0.2), transparent 26%),
    linear-gradient(135deg, #170e13 0%, #4b1932 58%, #9a225e 100%);
}

.merch-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.merch-topbar {
  position: absolute;
}

.merch-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
  width: min(1120px, calc(100% - 36px));
  margin: 110px auto 60px;
}

.merch-hero__content h1 {
  max-width: 730px;
  margin: 10px 0 20px;
  font: 700 clamp(3rem, 7vw, 6.4rem)/0.94 Georgia, "Times New Roman", serif;
}

.merch-hero__content > div:first-child > p:not(.eyebrow) {
  max-width: 700px;
  color: #ffe9f3;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.merch-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 16px;
}

.merch-hero__content small {
  color: #f0c8da;
}

.merch-hero__preview {
  position: relative;
  min-height: 480px;
}

.merch-preview-card {
  position: absolute;
  display: grid;
  border: 4px solid var(--ink);
  border-radius: 18px;
  box-shadow: 14px 18px 0 rgba(8, 16, 16, 0.5);
}

.merch-preview-card--back {
  inset: 72px 0 20px 76px;
  place-items: end center;
  padding: 24px;
  transform: rotate(8deg);
  background: #d7ff72;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.merch-preview-card--front {
  inset: 0 60px 68px 0;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 5px;
  padding: 14px 14px 20px;
  transform: rotate(-5deg);
  background: white;
  color: var(--ink);
}

.merch-preview-card--front img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 10px;
}

.merch-preview-card--front strong {
  margin-top: 10px;
  font: 700 clamp(1.5rem, 3vw, 2.2rem) Georgia, "Times New Roman", serif;
}

.merch-preview-card--front span {
  color: var(--pink-deep);
  font-weight: 800;
}

.merch-intro {
  background: #fff8fb;
}

.merch-products-band {
  color: white;
  background:
    radial-gradient(circle at top left, rgba(248, 40, 144, 0.2), transparent 35%),
    #190f14;
}

.merch-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.merch-product-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1.18fr);
  min-height: 390px;
  overflow: hidden;
  border: 3px solid white;
  border-radius: 18px;
  background: white;
  color: var(--ink);
  box-shadow: 10px 10px 0 rgba(248, 40, 144, 0.72);
}

.merch-product-card--featured {
  border-color: #d7ff72;
  box-shadow: 10px 10px 0 #d7ff72;
}

.merch-product-visual {
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.64), transparent 25%),
    linear-gradient(145deg, #ffd6e9, #f49ac5);
}

.merch-product-visual > div {
  position: relative;
  display: grid;
  place-items: center;
}

.merch-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merch-magnet-visual > div {
  width: 128px;
  aspect-ratio: 4 / 6;
  padding: 7px;
  transform: rotate(-4deg);
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: white;
  box-shadow: 8px 10px 0 var(--pink-deep);
}

.merch-mug-visual > div {
  width: 156px;
  height: 142px;
  padding: 22px 10px 13px;
  border: 4px solid var(--ink);
  border-radius: 12px 12px 42px 42px;
  background: white;
  box-shadow: 0 12px 0 rgba(8, 16, 16, 0.18);
}

.merch-mug-visual > div::after {
  content: "";
  position: absolute;
  right: -52px;
  top: 25px;
  width: 58px;
  height: 68px;
  border: 14px solid var(--ink);
  border-left: 0;
  border-radius: 0 32px 32px 0;
}

.merch-mug-visual img {
  height: 86px;
  border-radius: 5px;
}

.merch-tote-visual > div {
  width: 164px;
  height: 176px;
  margin-top: 35px;
  padding: 24px 20px;
  border: 4px solid var(--ink);
  border-radius: 8px 8px 18px 18px;
  background: #f9ead0;
  box-shadow: 7px 10px 0 rgba(8, 16, 16, 0.18);
}

.merch-tote-visual > div::before {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: -52px;
  height: 70px;
  border: 10px solid var(--ink);
  border-bottom: 0;
  border-radius: 38px 38px 0 0;
}

.merch-tote-visual img {
  border-radius: 5px;
}

.merch-shirt-visual > div {
  width: 205px;
  height: 190px;
  padding: 54px 55px 30px;
  clip-path: polygon(26% 0, 40% 8%, 60% 8%, 74% 0, 100% 19%, 84% 42%, 73% 34%, 73% 100%, 27% 100%, 27% 34%, 16% 42%, 0 19%);
  background: var(--ink);
}

.merch-shirt-visual img {
  border: 3px solid white;
  border-radius: 4px;
}

.merch-product-card__body {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.merch-product-card__body h3 {
  margin: 14px 0 0;
  font: 700 clamp(1.8rem, 3vw, 2.6rem)/1 Georgia, "Times New Roman", serif;
}

.merch-product-card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.merch-product-card__body ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  color: var(--pink-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.merch-process-band {
  background: #fff8fb;
}

.merch-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.merch-process li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: white;
  box-shadow: 7px 7px 0 var(--pink);
}

.merch-process li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-deep);
  color: white;
  font-weight: 900;
}

.merch-process h3 {
  margin: 0 0 7px;
}

.merch-process p {
  margin: 0;
  color: var(--muted);
}

.merch-contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  color: white;
  background: linear-gradient(120deg, #4b1932, #941a57);
}

.merch-contact-band h2 {
  max-width: 800px;
  margin: 5px 0 12px;
  font: 700 clamp(2.2rem, 5vw, 4.5rem)/1 Georgia, "Times New Roman", serif;
}

.merch-contact-band p:not(.eyebrow) {
  color: #ffe3f0;
}

.merch-footer {
  background: #160d12;
  color: white;
}

.merch-bookmark-visual > div {
  display: grid;
  place-items: center;
  width: 86px;
  height: 210px;
  border: 3px solid var(--ink);
  border-radius: 42px 42px 10px 10px;
  background: linear-gradient(180deg, #ff0a78, #74103f);
  color: white;
  box-shadow: 7px 7px 0 var(--ink);
}

.merch-bookmark-visual span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-page {
  background: #fff8fb;
}

.about-page-hero {
  position: relative;
  min-height: min(720px, 80vh);
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.about-page-hero__image,
.about-page-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-page-hero__image {
  object-fit: cover;
  object-position: center 38%;
}

.about-page-hero__shade {
  background: linear-gradient(90deg, rgba(12, 8, 10, 0.88), rgba(12, 8, 10, 0.22));
}

.about-topbar,
.about-page-hero__content {
  position: relative;
  z-index: 1;
}

.about-page-hero__content {
  width: min(660px, calc(100% - 40px));
  margin: clamp(130px, 24vh, 220px) auto 80px;
  transform: translateX(-25%);
}

.about-page-hero__content h1 {
  margin: 8px 0 18px;
  font: 700 clamp(2.7rem, 7vw, 5.8rem)/0.96 Georgia, "Times New Roman", serif;
}

.about-page-hero__content p:not(.eyebrow) {
  max-width: 580px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.about-values-band {
  background: linear-gradient(145deg, #fff7fb, #ffd9eb);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.about-values article {
  padding: 28px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: white;
  box-shadow: 7px 7px 0 var(--ink);
}

.about-values strong {
  display: block;
  margin-bottom: 10px;
  color: var(--pink-deep);
  font: 700 1.35rem Georgia, "Times New Roman", serif;
}

.about-values p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Art rental */
.rental-page,
.agreement-page {
  background: #fff8fb;
}

.rental-hero {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
}

.rental-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rental-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 16, 16, 0.9), rgba(8, 16, 16, 0.55) 58%, rgba(8, 16, 16, 0.35));
}

.rental-topbar {
  position: absolute;
  gap: 14px;
}

.rental-cart-button {
  flex: 0 0 auto;
  border-color: rgba(255, 255, 255, 0.45);
}

.rental-cart-button.has-items {
  background: var(--pink-deep);
}

.rental-cart-button strong {
  color: #ffbfdd;
  white-space: nowrap;
}

.rental-cart-drawer {
  z-index: 30;
}

.rental-cart-items .rental-cart-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
}

.rental-cart-item__image {
  display: grid !important;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  color: var(--pink-deep) !important;
  font-size: 1.6rem !important;
  font-weight: 900;
}

.rental-cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rental-hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(760px, calc(100% - 36px));
  margin: 110px auto 70px max(18px, calc((100% - 1120px) / 2));
}

.rental-hero__content h1 {
  max-width: 720px;
  margin: 10px 0 18px;
  font: 700 clamp(3rem, 8vw, 6.5rem)/0.96 Georgia, "Times New Roman", serif;
}

.rental-hero__content > p:not(.eyebrow) {
  max-width: 680px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.rental-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 16px;
}

.rental-pricing-band,
.rental-protection-band {
  background: #fff8fb;
}

.rental-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.rental-price-card {
  padding: 28px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: white;
  box-shadow: 8px 8px 0 var(--ink);
}

.rental-price-card--featured {
  transform: translateY(-10px);
  background: var(--pink-soft);
  box-shadow: 8px 8px 0 var(--pink-deep);
}

.rental-price-card h3 {
  margin: 6px 0 18px;
  font: 700 clamp(1.5rem, 3vw, 2.2rem) Georgia, "Times New Roman", serif;
}

.rental-price-card > strong {
  display: block;
  color: var(--pink-deep);
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1;
}

.rental-price-card > strong span {
  font-size: 0.9rem;
}

.rental-price-card p {
  color: var(--muted);
}

.rental-price-card small {
  display: block;
  margin-top: 6px;
}

.rental-price-card p + small {
  color: var(--pink-deep);
  font-weight: 900;
}

.rental-savings {
  max-width: 1120px;
  margin: 28px auto 0;
  padding: 18px 22px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--pink-soft);
  line-height: 1.7;
}

.rental-process-band {
  background: var(--pink-deep);
  color: white;
}

.rental-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.rental-process li {
  padding: 20px;
  border: 2px solid white;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.rental-process li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--pink-deep);
  font-weight: 900;
}

.rental-process h3 {
  margin-bottom: 6px;
}

.rental-process p {
  margin: 0;
  color: #ffeaf4;
  font-size: 0.9rem;
}

.rental-shop-band {
  background:
    radial-gradient(circle at 10% 0%, rgba(248, 40, 144, 0.18), transparent 30%),
    linear-gradient(180deg, #fff8fb, #ffe6f1);
}

.rental-collection-bar {
  max-width: 1120px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
}

.rental-shop-gallery {
  display: grid;
  gap: 38px;
  max-width: 1120px;
  margin: 0 auto;
}

.rental-collection-group {
  scroll-margin-top: 98px;
}

.rental-collection-group .collection-heading > span {
  color: var(--pink-deep);
  font-weight: 900;
}

.rental-art-card {
  display: grid;
  grid-template-rows: minmax(0, auto) 1fr;
  min-width: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 24px rgba(8, 16, 16, 0.16);
}

.rental-art-card__image {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
  color: var(--pink-deep);
  font: 900 3rem Georgia, "Times New Roman", serif;
}

.rental-art-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease;
}

.rental-art-card__image:hover img {
  transform: scale(1.025);
}

.rental-art-card__body {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 16px;
}

.rental-art-card__body .eyebrow {
  margin: 0 0 6px;
  color: var(--pink-deep);
  font-size: 0.67rem;
}

.rental-art-card h4 {
  margin: 0;
  font: 700 1.12rem/1.22 Georgia, "Times New Roman", serif;
  overflow-wrap: anywhere;
}

.rental-art-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 8px;
}

.rental-art-card__actions .button {
  min-height: 42px;
  padding: 0 8px;
  font-size: 0.74rem;
  text-align: center;
}

.rental-art-card__actions .button.is-selected {
  border-color: var(--pink-deep);
  background: var(--pink-soft);
  color: var(--pink-deep);
}

.rental-gallery-error {
  padding: 30px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: white;
  text-align: center;
}

.rental-request-band {
  background: #1b1116;
  color: white;
}

.rental-request-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(24px, 5vw, 70px);
  max-width: 1120px;
  margin: 0 auto;
}

.rental-request-copy {
  position: sticky;
  top: 110px;
}

.rental-request-copy h2 {
  margin: 6px 0 14px;
  font: 700 clamp(2.4rem, 5vw, 4.5rem)/1 Georgia, "Times New Roman", serif;
}

.rental-estimate {
  margin-top: 26px;
  padding: 22px;
  border: 2px solid white;
  border-radius: 14px;
  background: #311721;
}

.rental-estimate > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.rental-estimate > div strong {
  color: #ff71b5;
  font-size: 1.55rem;
}

.rental-estimate dl {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.rental-estimate dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.rental-estimate dt {
  color: #e7bdcf;
}

.rental-estimate dd {
  margin: 0;
  font-weight: 900;
}

.rental-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 18px;
  background: white;
  color: var(--ink);
}

.rental-form fieldset {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 18px;
  border: 2px solid #ebc4d6;
  border-radius: 12px;
}

.rental-form legend {
  padding: 0 8px;
  color: var(--pink-deep);
  font-weight: 900;
}

.rental-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.rental-form input,
.rental-form select,
.rental-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #bfa3af;
  border-radius: 8px;
  background: white;
  color: var(--ink);
}

.rental-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rental-check {
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: start;
  font-weight: 600 !important;
}

.rental-check input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.rental-terms-check {
  padding: 16px;
  border-radius: 10px;
  background: var(--pink-soft);
}

.rental-form-note,
.rental-form-message {
  margin: 0;
  color: var(--muted);
}

.rental-form-message {
  min-height: 1.5em;
  color: var(--pink-deep);
  font-weight: 800;
}

.rental-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.rental-artwork-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  max-height: 520px;
  padding: 4px;
  overflow-y: auto;
}

.rental-artwork-picker--hidden {
  display: none !important;
}

.rental-form-cart-summary {
  padding: 14px;
  border: 1px solid #d9bdc9;
  border-radius: 10px;
  background: #fff8fb;
}

.rental-form-cart-summary p {
  margin: 0;
  color: var(--muted);
}

.rental-form-cart-summary ul {
  display: grid;
  gap: 8px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.rental-form-cart-summary li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ead5de;
}

.rental-form-cart-summary li span {
  color: var(--muted);
  font-size: 0.78rem;
}

.rental-artwork-choice {
  grid-template-columns: auto 62px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 9px !important;
  padding: 8px;
  border: 1px solid #d9bdc9;
  border-radius: 9px;
  cursor: pointer;
}

.rental-artwork-choice:has(input:checked) {
  border-color: var(--pink-deep);
  background: var(--pink-soft);
}

.rental-artwork-choice input {
  width: 18px;
  height: 18px;
}

.rental-artwork-choice__image {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  border-radius: 7px;
  background: var(--pink-soft);
  color: var(--pink-deep);
  font-size: 1.6rem;
}

.rental-artwork-choice__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rental-artwork-choice strong,
.rental-artwork-choice small {
  display: block;
}

.rental-artwork-choice small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.rental-term-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.rental-term-grid article {
  padding: 22px;
  border-top: 6px solid var(--pink);
  background: white;
  box-shadow: 0 10px 30px rgba(8, 16, 16, 0.12);
}

.rental-term-grid h3 {
  margin-top: 0;
}

.rental-term-grid p {
  color: var(--muted);
}

.rental-footer {
  background: #1b1116;
  color: white;
}

.agreement-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: #1b1116;
  color: white;
}

.agreement-header > div {
  display: flex;
  gap: 10px;
}

.agreement-document {
  width: min(920px, calc(100% - 32px));
  margin: 42px auto;
  padding: clamp(24px, 5vw, 58px);
  background: white;
  box-shadow: 0 15px 50px rgba(8, 16, 16, 0.14);
}

.agreement-document h1 {
  margin: 5px 0 10px;
  font: 700 clamp(2.2rem, 6vw, 4.2rem) Georgia, "Times New Roman", serif;
}

.agreement-intro,
.agreement-note {
  color: var(--muted);
}

.agreement-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 24px;
  margin: 28px 0;
  padding: 18px;
  border: 2px solid var(--ink);
}

.agreement-table {
  width: 100%;
  border-collapse: collapse;
}

.agreement-table th,
.agreement-table td {
  min-height: 42px;
  padding: 10px;
  border: 1px solid #777;
  text-align: left;
}

.agreement-clauses {
  display: grid;
  gap: 14px;
  padding-left: 24px;
}

.agreement-signatures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  margin-top: 48px;
}

.agreement-note {
  margin-top: 40px;
  padding: 14px;
  border-left: 5px solid var(--pink);
  background: var(--pink-soft);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .merch-product-grid,
  .merch-process {
    grid-template-columns: 1fr;
  }

  .merch-product-card {
    grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  }

  .rental-price-grid,
  .rental-process,
  .rental-term-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rental-request-layout {
    grid-template-columns: 1fr;
  }

  .rental-request-copy {
    position: static;
  }

  .rental-topbar a:not(.brand):not(.button) {
    display: none;
  }
}

@media (max-width: 600px) {
  .merch-hero {
    min-height: 940px;
  }

  .merch-hero__content {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 100px;
  }

  .merch-hero__preview {
    min-height: 330px;
  }

  .merch-preview-card--back {
    inset: 52px 0 10px 55px;
  }

  .merch-preview-card--front {
    inset: 0 40px 45px 0;
  }

  .merch-product-card {
    grid-template-columns: 1fr;
  }

  .merch-product-visual {
    min-height: 280px;
  }

  .merch-contact-band {
    grid-template-columns: 1fr;
  }

  .rental-hero {
    min-height: 720px;
  }

  .rental-hero__content {
    margin: 120px 18px 54px;
  }

  .rental-price-grid,
  .rental-process,
  .rental-term-grid,
  .rental-form-grid,
  .agreement-fields,
  .agreement-signatures {
    grid-template-columns: 1fr;
  }

  .rental-collection-grid {
    grid-template-columns: 1fr;
  }

  .rental-collection-bar {
    top: 62px;
  }

  .rental-cart-drawer {
    top: 62px;
  }

  .rental-cart-items .rental-cart-item {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .rental-cart-item__image {
    width: 54px;
    height: 54px;
  }

  .rental-price-card--featured {
    transform: none;
  }

  .agreement-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .agreement-header > div {
    width: 100%;
  }

  .agreement-header .button {
    flex: 1;
  }

  .agreement-document {
    margin: 20px auto;
  }
}

@media print {
  .agreement-header,
  .agreement-note {
    display: none;
  }

  .agreement-page {
    background: white;
  }

  .agreement-document {
    width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: none;
  }
}

.account-panel {
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}

.account-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.profile-summary {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(248, 40, 144, 0.16);
}

.profile-summary img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--linen);
}

.profile-summary strong,
.profile-summary span {
  display: block;
}

.profile-summary span,
.history-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.profile-form {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

.address-fields {
  display: grid;
  gap: 12px;
}

.address-grid {
  display: grid;
  grid-template-columns: minmax(96px, 0.45fr) minmax(180px, 1fr);
  gap: 12px;
}

.address-grid label:nth-child(n + 3) {
  grid-column: span 1;
}

.address-grid label:nth-child(2),
.address-grid label:nth-child(6) {
  grid-column: span 1;
}

.history-block {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(248, 40, 144, 0.16);
}

.history-heading,
.history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.history-heading h3 {
  margin: 0;
  font-size: 1.1rem;
}

.history-list {
  display: grid;
  gap: 10px;
}

.history-item {
  padding: 13px;
  border-radius: 8px;
  background: var(--pink-soft);
}

.history-item div:last-child {
  text-align: right;
}

.owner-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  background: var(--hot-pink-bg);
  color: var(--white);
}

.owner-band .owner-copy p:not(.eyebrow),
.owner-band .owner-copy code {
  color: var(--white);
}

.owner-copy,
.owner-panel {
  max-width: 560px;
}

.owner-panel {
  display: grid;
  gap: 22px;
}

.owner-refresh {
  display: grid;
  gap: 8px;
  justify-items: start;
  margin-top: 18px;
}

.owner-refresh[hidden] {
  display: none;
}

.owner-refresh span {
  color: rgba(255, 254, 251, 0.9);
  font-size: 0.92rem;
}

.owner-pricing {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.owner-pricing[hidden] {
  display: none;
}

.owner-pricing h3 {
  margin: 0;
  font-size: 1.05rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.owner-pricing span {
  color: var(--muted);
  font-size: 0.92rem;
}

.owner-history {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
}

.history-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.owner-history-list {
  display: grid;
  gap: 10px;
}

.owner-history-item {
  overflow: hidden;
  border-radius: 8px;
  background: var(--pink-soft);
  box-shadow: 0 8px 26px rgba(8, 16, 16, 0.08);
}

.owner-history-item__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 14px;
  cursor: pointer;
  list-style: none;
}

.owner-history-item__summary::-webkit-details-marker {
  display: none;
}

.owner-history-item__summary:hover {
  background: rgba(255, 255, 255, 0.55);
}

.owner-history-item__main,
.owner-history-item__meta {
  display: grid;
  gap: 3px;
}

.owner-history-item__main span,
.owner-history-item__meta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.owner-history-item__meta {
  text-align: right;
}

.order-status-badge {
  justify-self: start;
  padding: 4px 9px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink) !important;
  font-size: 0.78rem !important;
  font-weight: 800;
}

.owner-history-item__meta .order-status-badge {
  justify-self: end;
}

.owner-order-details {
  display: grid;
  gap: 16px;
  padding: 0 14px 16px;
  border-top: 2px solid rgba(8, 16, 16, 0.12);
  background: #fff;
}

.owner-order-details__copy {
  display: grid;
  gap: 5px;
  padding-top: 14px;
}

.owner-order-details__copy span {
  color: var(--muted);
  font-size: 0.9rem;
  white-space: pre-line;
}

.order-workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.order-workflow legend {
  padding: 0 6px;
  font-weight: 800;
}

.order-workflow label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px;
  border-radius: 6px;
  background: var(--pink-soft);
  cursor: pointer;
  font-weight: 700;
}

.order-workflow input {
  width: 18px;
  height: 18px;
  accent-color: #ff0a78;
}

.order-workflow-message {
  min-height: 1.2em;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

code {
  color: var(--pink-deep);
  font-weight: 700;
}

@media (max-width: 820px) {
  .order-modal__panel {
    height: calc(100dvh - 24px);
    max-height: calc(100dvh - 24px);
    padding: 18px;
  }

  .order-modal .order-layout {
    gap: 10px;
  }

  .order-modal .order-layout > div:first-child .intro {
    display: none;
  }

  .order-modal .order-layout > div:first-child {
    height: auto;
  }

  .order-modal .media-viewer {
    margin-top: 0;
  }

  .order-modal .media-frame,
  .order-modal .watermarked-image--viewer,
  .order-modal .media-frame img,
  .order-modal .media-frame iframe {
    height: clamp(120px, 20dvh, 170px);
    min-height: 120px;
  }

  .order-modal .watermarked-image--viewer img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    min-height: 0;
  }

  .order-modal .order-panel {
    gap: 8px;
    padding: 12px;
  }

  .order-modal .order-fields,
  .order-modal .format-options,
  .order-modal .cart-form-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-modal .format-options {
    gap: 6px;
    padding: 10px;
  }

  .order-modal .format-options legend {
    grid-column: 1 / -1;
  }

  .order-modal .choice {
    min-height: 36px;
    padding: 7px 8px;
    font-size: 0.82rem;
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar {
    gap: 14px;
    padding: 16px 18px;
  }

  .topbar a:not(.brand) {
    font-size: 0.86rem;
  }

  .cart-button {
    min-height: 38px;
    padding: 0 10px;
  }

  .cart-drawer {
    top: 74px;
    right: 12px;
  }

  .order-layout,
  .account-layout,
  .owner-band,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .order-fields,
  .checkout-summary {
    grid-template-columns: 1fr;
  }

  .media-viewer {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .media-frame,
  .media-frame img,
  .media-frame iframe {
    height: 420px;
    min-height: 280px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 560px) {
  .order-modal {
    padding: 8px;
  }

  .order-modal__panel {
    height: calc(100dvh - 16px);
    max-height: calc(100dvh - 16px);
    padding: 14px 10px;
  }

  .order-modal__close {
    top: 6px;
    right: 6px;
  }

  .collection-bar {
    position: sticky;
    top: 72px;
    z-index: 9;
    margin-right: -8px;
    margin-left: -8px;
    padding: 9px 10px;
    border-radius: 8px;
  }

  .media-frame,
  .media-frame img,
  .media-frame iframe {
    height: 340px;
  }

  .collection-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .art-card__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .art-card .button {
    font-size: .78rem;
  }

  .collection-cart-button {
    width: 100%;
    max-width: none;
  }

  .collection-heading {
    grid-template-columns: 1fr;
  }

  .collection-cart-button {
    justify-self: stretch;
  }

  .bookmark-grid,
  .rental-promo,
  .merch-promo {
    grid-template-columns: 1fr;
  }

  .merch-promo__art {
    justify-self: center;
  }

  .bookmark-card {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
  }

  .bookmark-shape {
    width: 66px;
    height: 170px;
  }

  .review-carousel {
    min-height: 330px;
  }

  .review-card {
    position: relative;
    display: none;
  }

  .review-card.is-active {
    display: grid;
  }

  .hero {
    min-height: 88vh;
  }

  .hero__shade {
    background: rgba(8, 16, 16, 0.72);
  }

  .topbar {
    width: 100%;
    max-width: 100vw;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 10px 12px;
    overflow: hidden;
  }

  .topbar > * {
    min-width: 0;
  }

  .topbar .brand {
    flex: 0 0 auto;
    min-width: 0;
    gap: 7px;
    margin-right: 0;
    font-size: .78rem;
    line-height: 1.1;
  }

  .topbar .brand span {
    display: none;
  }

  .topbar a:not(.brand) {
    display: none;
  }

  .cart-button {
    flex: 0 0 auto;
    margin-left: 0;
    min-height: 34px;
    gap: 5px;
    padding: 0 7px;
  }

  .topbar-account {
    flex: 0 1 100px;
    max-width: min(28vw, 100px);
    min-height: 34px;
    padding: 0 9px;
    font-size: .72rem;
  }

  .inventory-sale-badge {
    flex: 1 1 86px;
    min-height: 30px;
    max-width: 108px;
    padding: 0 7px;
    font-size: .62rem;
    line-height: 1.05;
    text-align: center;
    white-space: normal;
  }

  .cart-button > span:not(.cart-button__count),
  .cart-button > strong {
    display: none;
  }

  .cart-button svg {
    width: 16px;
    height: 16px;
  }

  .cart-button__count {
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    font-size: .68rem;
  }

  .cart-form-actions,
  .cart-drawer__actions {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .music-player {
    left: 10px;
    bottom: 10px;
    padding: 5px;
  }

  .music-player span {
    display: none;
  }

  .music-player__button {
    min-width: 54px;
    min-height: 34px;
    padding: 0 10px;
    font-size: .72rem;
  }

  .hero__content {
    margin: 0 18px;
  }

  .profile-summary,
  .history-heading,
  .history-item,
  .owner-history-item {
    align-items: start;
  }

  .owner-history-item {
    grid-template-columns: 1fr;
  }

  .address-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .address-grid label:nth-child(n) {
    grid-column: auto;
  }

  .owner-history-item__meta {
    text-align: left;
  }

  .profile-summary {
    grid-template-columns: 46px 1fr;
  }

  .profile-summary .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}
.privacy-choice {
  position: fixed;
  z-index: 10000;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: max(1rem, env(safe-area-inset-left));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(900px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 1rem 1.1rem;
  color: #fff;
  background: #090909;
  border: 2px solid #fff;
  border-bottom: 5px solid #ed168c;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

.privacy-choice__copy {
  max-width: 640px;
}

.privacy-choice__copy strong {
  display: block;
  margin-bottom: .3rem;
  font-size: 1.05rem;
}

.privacy-choice__copy p {
  margin: 0 0 .35rem;
  font-size: .9rem;
  line-height: 1.45;
}

.privacy-choice__copy a {
  color: #fff;
  text-decoration: underline;
}

.privacy-choice__actions {
  display: flex;
  flex: 0 0 auto;
  gap: .55rem;
}

.privacy-choice__actions .button {
  min-height: 42px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .privacy-choice {
    align-items: stretch;
    flex-direction: column;
    gap: .8rem;
  }

  .privacy-choice__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .privacy-choice__actions .button {
    width: 100%;
    padding-inline: .65rem;
  }
}

.policy-page {
  width: min(760px, calc(100% - 2rem));
  margin: 3rem auto;
}

.policy-page h1,
.policy-page h2 {
  color: #ed168c;
}

.policy-page a {
  color: #c60c72;
}

.product-page {
  max-width: 1100px;
  margin: auto;
  padding: 24px;
}

.product-page__nav {
  margin-bottom: 24px;
}

.product-page__nav .button {
  display: inline-flex;
  align-items: center;
}

.product-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
  gap: 36px;
  align-items: start;
}

.product-page__image {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  background: #f4efe7;
  border: 2px solid #111;
  border-radius: 12px;
}

.product-page__details {
  padding: 28px;
  background: #fff;
  border: 2px solid #111;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(8, 16, 16, .16);
}

.product-page__details h1 {
  margin-top: 0;
  overflow-wrap: anywhere;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: .95;
}

.product-page__price {
  font-size: 1.5rem;
  font-weight: 800;
}

.product-page__meta {
  color: #4b1932;
  font-weight: 700;
}

.product-page__engagement {
  display: inline-flex;
  gap: 7px;
  margin: 0 0 16px;
  padding: 7px 11px;
  color: #4b1932;
  font-weight: 800;
  border: 1px solid #4b1932;
  border-radius: 999px;
}

@media (max-width: 760px) {
  .about-page-hero {
    min-height: 680px;
  }

  .about-page-hero__shade {
    background: linear-gradient(180deg, rgba(12, 8, 10, 0.38), rgba(12, 8, 10, 0.92));
  }

  .about-page-hero__content {
    width: min(100% - 28px, 660px);
    margin: 320px auto 55px;
    transform: none;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .product-page {
    padding: 14px;
  }

  .product-page__layout {
    grid-template-columns: 1fr;
  }

  .product-page__nav .button {
    width: 100%;
    justify-content: center;
  }
}
