:root {
  color-scheme: light;
  --page: #faf6ef;
  --panel: rgba(255, 251, 244, 0.9);
  --panel-solid: #fff8ee;
  --ink: #2c211c;
  --soft-ink: #675248;
  --muted: #8a776b;
  --line: rgba(88, 62, 49, 0.16);
  --line-strong: rgba(88, 62, 49, 0.3);
  --coffee: #7b5746;
  --coffee-deep: #3b2a23;
  --fur: #eadccf;
  --blush: #ead1c0;
  --sage: #efe1cf;
  --sage-deep: #8b684e;
  --mist: #f3e8da;
  --rose: #9a6248;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(62, 42, 32, 0.16);
  --shadow-soft: 0 14px 38px rgba(62, 42, 32, 0.1);
  --radius: 8px;
  --font: "Source Sans Pro", "Segoe UI", Arial, sans-serif;
}

html {
  scroll-padding-top: 104px;
}

body {
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(239, 225, 207, 0.78) 0, rgba(250, 246, 239, 0.92) 360px, rgba(234, 209, 192, 0.3) 760px, rgba(250, 246, 239, 1) 1200px),
    var(--page);
  font-family: var(--font);
  text-align: left;
}

body::before {
  background-image:
    linear-gradient(rgba(88, 62, 49, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 62, 49, 0.04) 1px, transparent 1px);
  background-position: center top;
  background-size: 44px 44px;
  opacity: 0.42;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 238, 0.88), transparent 18%, transparent 82%, rgba(255, 248, 238, 0.88)),
    linear-gradient(180deg, transparent, rgba(255, 248, 238, 0.58));
  content: "";
  pointer-events: none;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin: 0 0 16px;
  font-size: 4.4rem;
  line-height: 0.96;
}

h1::after {
  display: none;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.45rem;
  line-height: 1.04;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.16;
}

p {
  color: var(--soft-ink);
}

a {
  color: inherit;
}

img {
  background: var(--fur);
}

:focus-visible {
  outline: 3px solid rgba(154, 98, 72, 0.35);
  outline-offset: 3px;
}

.craft-window,
.about article,
.product-card,
.review-card,
.legal-card,
.tos-list,
.cart-panel,
.price-guide-card,
.commission-shell,
.commission-price-link,
.review-form,
.policy-dialog,
.image-dialog,
.product-dialog {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 80;
  display: grid;
  width: min(calc(100% - 32px), 1180px);
  grid-template-columns: minmax(210px, 0.8fr) minmax(0, 1.4fr) auto;
  gap: 12px;
  align-items: center;
  margin: 14px auto 0;
  padding: 10px;
  border: 1px solid rgba(88, 62, 49, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 248, 238, 0.78);
  box-shadow: 0 18px 48px rgba(62, 42, 32, 0.12);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--fur);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
}

.header-actions {
  order: 0;
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-end;
}

.language-switch,
.view-tabs {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.view-tabs {
  order: 0;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  padding: 4px;
}

.view-tab,
.language-button,
.shop-tab,
.gallery-year {
  border-radius: 6px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.view-tab {
  min-height: 38px;
  padding: 8px 14px;
  color: var(--soft-ink);
}

.language-button {
  min-height: 34px;
}

.view-tab:hover,
.language-button:hover,
.shop-tab:hover,
.gallery-year:hover {
  transform: translateY(-1px);
}

.view-tab.active,
.language-button.active {
  color: var(--white);
  background: var(--coffee-deep);
  box-shadow: 0 12px 26px rgba(51, 43, 40, 0.18);
}

.page-block {
  animation: pageRise 420ms ease both;
}

.page-block-showcase,
.page-block-shop,
.page-block-order,
.page-block-trust {
  background: transparent;
  border: 0;
}

.section {
  width: min(calc(100% - 40px), 1120px);
  padding: 88px 0;
}

.section.commission {
  width: min(calc(100% - 40px), 1220px);
}

.section:not(.hero)::before,
.site-footer::before {
  display: none;
}

.section-heading,
.block-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.block-heading p:not(.eyebrow) {
  max-width: 690px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.eyebrow {
  width: fit-content;
  margin: 0 auto 14px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--coffee);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.button {
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button.primary {
  border-color: var(--coffee-deep);
  background:
    linear-gradient(135deg, var(--coffee-deep), var(--coffee));
  box-shadow: 0 16px 32px rgba(51, 43, 40, 0.22);
}

.button.primary:hover {
  background:
    linear-gradient(135deg, #2c211c, #8a604b);
}

.button.secondary {
  border-color: rgba(139, 104, 78, 0.28);
  background: rgba(239, 225, 207, 0.78);
}

.hero {
  position: relative;
  display: grid;
  width: min(calc(100% - 32px), 1180px);
  min-height: 520px;
  align-items: end;
  margin-top: 18px;
  padding: 74px 54px 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 252, 0.52);
  border-radius: var(--radius);
  background: var(--coffee-deep);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero::before {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(28, 25, 24, 0.82) 0, rgba(28, 25, 24, 0.62) 36%, rgba(28, 25, 24, 0.2) 72%, rgba(28, 25, 24, 0.28)),
    linear-gradient(180deg, rgba(28, 25, 24, 0.06), rgba(28, 25, 24, 0.74));
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(680px, 100%);
  max-width: none;
  align-items: flex-start;
  padding: 0;
  color: var(--white);
  text-align: left;
}

.hero-copy,
.hero-copy.craft-window {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-copy > .eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  color: rgba(255, 251, 244, 0.92);
  border-color: rgba(255, 255, 252, 0.28);
  background: rgba(255, 255, 252, 0.14);
}

.hero h1 {
  color: var(--white);
}

.hero-copy > p:not(.eyebrow):not(.hero-nickname),
.hero-author-role {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 252, 0.86);
  font-size: 1.14rem;
  line-height: 1.58;
}

.hero-author {
  order: 0;
  justify-items: start;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-nickname {
  color: var(--white);
  font-size: 1.04rem;
  letter-spacing: 0;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 30px;
}

.hero-actions .button.secondary {
  border-color: rgba(255, 255, 252, 0.4);
  color: var(--white);
  background: rgba(255, 255, 252, 0.16);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: var(--coffee-deep);
  box-shadow: none;
}

.hero-media::before {
  display: none;
}

.hero-image-window > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-personal-socials {
  top: 22px;
  right: 22px;
  z-index: 4;
  border-color: rgba(255, 255, 252, 0.28);
  background: rgba(44, 33, 28, 0.46);
  box-shadow: 0 16px 34px rgba(28, 25, 24, 0.22);
  backdrop-filter: blur(16px);
}

.hero-personal-socials span {
  color: rgba(255, 251, 244, 0.78);
}

.hero-personal-socials a {
  border-color: rgba(255, 255, 252, 0.28);
  color: #fff8ee;
  background: rgba(255, 255, 252, 0.12);
}

.hero-personal-socials a:hover,
.hero-personal-socials a:focus-visible {
  color: var(--coffee-deep);
  border-color: rgba(255, 248, 238, 0.9);
  background: rgba(255, 248, 238, 0.92);
}

.queue-page {
  padding-top: 64px;
}

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

.queue-column {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 248, 238, 0.82);
}

.queue-column-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.queue-column-heading h3 {
  margin: 0;
  color: var(--coffee-deep);
  font-size: 1.1rem;
}

.queue-column-heading span {
  display: grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  background: var(--coffee);
  font-size: 0.82rem;
  font-weight: 900;
}

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

.queue-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.queue-tabs button {
  flex: 1 1 0;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
}

.queue-tabs button.active {
  border-color: rgba(138, 91, 70, 0.52);
  background: var(--coffee);
  color: var(--white);
}

.queue-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.queue-item.with-image {
  grid-template-columns: 58px auto minmax(0, 1fr);
}

.queue-item.fursuit-reference.with-image {
  grid-template-columns: minmax(110px, 34%) auto minmax(0, 1fr);
  align-items: stretch;
}

.queue-image-button {
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: zoom-in;
}

.queue-image-button:hover .queue-item-image,
.queue-image-button:focus-visible .queue-item-image {
  transform: scale(1.025);
}

.queue-item-image {
  width: 58px;
  height: 58px;
  border-radius: 7px;
  object-fit: cover;
  background: rgba(239, 225, 207, 0.8);
  transition: transform 160ms ease;
}

.queue-item.fursuit-reference .queue-item-image {
  width: 100%;
  height: auto;
  min-height: 118px;
  aspect-ratio: 4 / 5;
}

.queue-position {
  display: grid;
  min-width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  background: var(--coffee);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.queue-item strong,
.queue-item small,
.queue-empty {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.queue-item.fursuit-reference small {
  display: -webkit-box;
  overflow: hidden;
  white-space: normal;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.queue-item strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.15;
}

.queue-urgent {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-left: 6px;
  place-items: center;
  border-radius: 6px;
  color: #fff8ec;
  background: var(--coffee);
  font-size: 0.82rem;
  line-height: 1;
  vertical-align: middle;
}

.queue-details,
.queue-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.queue-details span,
.queue-progress-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 5px 7px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.15;
}

.queue-progress-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.48;
}

.queue-progress-item.done {
  border-color: rgba(138, 91, 70, 0.4);
  background: rgba(138, 91, 70, 0.1);
  color: var(--coffee-dark);
  opacity: 1;
}

.queue-progress-item b {
  font-size: 0.84rem;
  line-height: 1;
}

.queue-item small,
.queue-empty {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.queue-empty {
  margin: 0;
  padding: 14px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 22px;
  align-items: stretch;
  padding-top: 54px;
}

.about-intro {
  max-width: none;
  margin: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 252, 0.74);
  box-shadow: var(--shadow-soft);
}

.about-intro .eyebrow {
  margin-left: 0;
}

.about-lead {
  max-width: 58ch;
  margin: 0;
}

.about-photo {
  display: grid;
  min-height: 100%;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: 50% 43%;
}

.about-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 252, 0.55);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(59, 42, 35, 0.52);
  font-weight: 900;
}

.about-grid {
  grid-column: 1 / -1;
  gap: 14px;
  max-width: none;
  margin: 0;
}

.about article {
  min-height: 196px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.92), rgba(239, 225, 207, 0.62));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about article:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.about article span {
  width: 40px;
  height: 34px;
  border-color: rgba(139, 104, 78, 0.28);
  color: var(--sage-deep);
  background: rgba(239, 225, 207, 0.8);
}

.gallery-carousel {
  max-width: 1080px;
}

.gallery-years,
.shop-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gallery-year,
.shop-tab {
  min-height: 38px;
  border-color: var(--line);
  background: rgba(255, 255, 252, 0.74);
}

.gallery-year.active,
.shop-tab.active {
  color: var(--white);
  border-color: var(--coffee-deep);
  background: var(--coffee-deep);
  box-shadow: 0 12px 24px rgba(51, 43, 40, 0.18);
}

.shop-tools {
  display: grid;
  gap: 12px;
  width: min(100%, 920px);
  margin: -6px auto 22px;
}

.shop-search {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.shop-search input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 252, 0.84);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  padding: 0 14px;
  outline: none;
}

.shop-search input:focus {
  border-color: var(--coffee);
  box-shadow: 0 0 0 3px rgba(139, 104, 78, 0.16);
}

.shop-subtabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.shop-subtab {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 252, 0.74);
  color: var(--muted);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 7px 12px;
  cursor: pointer;
}

.shop-subtab.active {
  color: var(--white);
  border-color: var(--coffee-deep);
  background: var(--coffee-deep);
}

.gallery-feature {
  min-height: 620px;
  padding: 22px;
  border-color: var(--line);
  background:
    linear-gradient(135deg, rgba(239, 225, 207, 0.78), rgba(234, 209, 192, 0.5)),
    var(--fur);
  box-shadow: var(--shadow);
}

.gallery-feature::after {
  display: none;
}

.gallery-feature-frame {
  min-height: 500px;
  border-radius: var(--radius);
  background: rgba(255, 255, 252, 0.62);
}

.gallery-feature-frame img {
  filter: drop-shadow(0 24px 34px rgba(62, 42, 32, 0.16));
}

.gallery-feature figcaption {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 238, 0.78);
}

.gallery-control {
  width: 46px;
  height: 54px;
  border-radius: var(--radius);
  background: rgba(255, 248, 238, 0.78);
  backdrop-filter: blur(14px);
}

.gallery-thumbs {
  padding: 2px 2px 10px;
}

.gallery-thumb {
  width: 104px;
  height: 104px;
  border-radius: var(--radius);
  background: rgba(255, 255, 252, 0.68);
}

.block-heading {
  padding-top: 84px;
}

.page-block-shop .shop,
.price-guide {
  width: min(calc(100% - 40px), 1180px);
}

.shop-legal-note,
.commission-price-link {
  border-color: rgba(139, 104, 78, 0.24);
  background:
    linear-gradient(90deg, rgba(239, 225, 207, 0.86), rgba(255, 248, 238, 0.78));
}

.shop-filter-panel {
  border-color: rgba(139, 104, 78, 0.24);
  background: rgba(255, 252, 247, 0.86);
  box-shadow: 0 16px 34px rgba(71, 46, 34, 0.08);
}

.shop-filter-heading h3 {
  color: var(--coffee);
}

.shop-legal-note {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  max-width: 920px;
  margin: 0 auto 18px;
  padding: 16px;
}

.shop-legal-note p {
  margin: 0;
}

.commission-price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.commission-price-actions .button {
  white-space: nowrap;
}

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

.product-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: rgba(255, 255, 252, 0.86);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-image-button {
  height: 250px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(239, 225, 207, 0.84), rgba(234, 220, 207, 0.74));
}

.product-image-button::before {
  display: none;
}

.product-image-button img {
  padding: 12px;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.product-card:hover .product-image-button img {
  transform: none;
}

.product-image-tag,
.product-sku,
.badge {
  border-radius: 6px;
}

.product-body {
  min-height: 230px;
  padding: 18px;
}

.product-subcategory {
  display: inline-flex;
  width: fit-content;
  margin: -4px 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(239, 225, 207, 0.68);
  color: var(--coffee);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 4px 8px;
}

.product-body-header h3 {
  font-size: 1.14rem;
}

.product-price {
  min-height: 38px;
  border-color: rgba(154, 98, 72, 0.3);
  color: var(--rose);
  background: rgba(234, 209, 192, 0.78);
}

.product-price-sale {
  border-color: rgba(177, 78, 104, 0.38);
  background: linear-gradient(135deg, rgba(255, 250, 247, 0.98), rgba(248, 230, 235, 0.94));
  box-shadow: 0 12px 28px rgba(177, 78, 104, 0.14);
}

.product-old-price {
  color: #766257;
  text-decoration-color: #b45a68;
}

.product-new-price {
  color: #9f3f5d;
}

.product-discount-badge {
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: #a94362;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(169, 67, 98, 0.25);
}

.product-random-options input:checked + span {
  border-color: rgba(177, 78, 104, 0.5);
  background: rgba(248, 230, 235, 0.58);
  box-shadow: 0 10px 22px rgba(177, 78, 104, 0.12);
}

.cart-panel {
  width: min(100%, 960px);
  max-width: 960px;
  margin: 0 auto 20px;
  overflow: hidden;
  background: rgba(255, 255, 252, 0.84);
}

.cart-panel-header {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 251, 244, 0.92), rgba(239, 225, 207, 0.64));
}

.cart-items,
.delivery-form,
.cart-summary,
.cart-checkout,
.order-status-widget {
  margin: 14px;
}

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

.order-status-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.order-status-result {
  grid-column: 1 / -1;
}

.cart-item,
.delivery-form,
.cart-summary,
.product-options,
.product-info-block,
.product-specs li,
.legal-card,
.review-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 252, 0.72);
}

.delivery-form {
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  align-items: end;
  padding: 16px;
}

.delivery-form-heading,
.delivery-form .wide,
.delivery-status {
  grid-column: 1 / -1;
}

.cart-summary {
  padding: 16px;
  border: 1px solid var(--line);
}

.price-guide-stack {
  gap: 18px;
}

.price-guide-card {
  padding: 12px;
  background: rgba(255, 255, 252, 0.82);
}

.price-guide-card img {
  border: 1px solid var(--line);
}

.tos-list {
  padding: 12px;
  background: rgba(255, 248, 238, 0.78);
}

.tos-list p {
  border-radius: var(--radius);
  background: rgba(255, 255, 252, 0.68);
}

.legal-grid {
  gap: 16px;
}

.legal-card {
  padding: 22px;
}

.legal-offer-note {
  border-color: rgba(154, 98, 72, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 251, 244, 0.94), rgba(239, 225, 207, 0.58));
}

.commission-price-link,
.commission-shell {
  max-width: 1120px;
}

.commission-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  overflow: visible;
  align-items: stretch;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.82), rgba(245, 235, 222, 0.66)),
    rgba(255, 248, 238, 0.72);
}

.commission-aside {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  color: var(--ink);
  border: 1px solid rgba(109, 79, 70, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.82), rgba(245, 235, 222, 0.62)),
    rgba(255, 248, 238, 0.72);
}

.commission-aside::after {
  display: none;
}

.commission-style-groups[hidden],
.commission-example-empty[hidden] {
  display: none;
}

.commission-style-groups {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-rows: minmax(280px, 330px);
  gap: 14px;
  height: auto;
  min-height: 0;
  padding: 14px;
}

.commission-style-strip {
  position: relative;
  display: block;
  min-height: 0;
}

.commission-style-strip figure {
  position: relative;
  min-width: 0;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(109, 79, 70, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.55), rgba(239, 225, 207, 0.42)),
    rgba(255, 248, 238, 0.8);
  box-shadow: 0 14px 30px rgba(62, 42, 32, 0.12);
}

.commission-style-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.commission-style-strip figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  transform: translateY(8px);
  opacity: 0;
  padding: 9px 10px;
  border: 1px solid rgba(255, 248, 238, 0.34);
  border-radius: 7px;
  color: var(--white);
  background: rgba(59, 42, 35, 0.72);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.commission-style-strip figcaption strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.commission-style-strip figure:hover figcaption,
.commission-style-strip figure:focus-within figcaption {
  transform: translateY(0);
  opacity: 1;
}

.commission-style-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 36px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 248, 238, 0.36);
  border-radius: 999px;
  color: var(--white);
  background: rgba(59, 42, 35, 0.62);
  font-size: 1.9rem;
  line-height: 1;
  opacity: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 160ms ease, background 160ms ease, transform 160ms ease;
}

.commission-style-arrow.prev {
  left: 10px;
}

.commission-style-arrow.next {
  right: 10px;
}

.commission-style-strip figure:hover .commission-style-arrow,
.commission-style-strip figure:focus-within .commission-style-arrow {
  opacity: 1;
}

.commission-style-arrow:hover,
.commission-style-arrow:focus-visible {
  opacity: 1;
  background: rgba(59, 42, 35, 0.86);
  transform: translateY(-50%) scale(1.04);
}

.commission-style-count {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  border: 1px solid rgba(255, 248, 238, 0.28);
  border-radius: 999px;
  padding: 4px 8px;
  color: rgba(255, 248, 238, 0.84);
  background: rgba(59, 42, 35, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
}

.commission-example-empty {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: 22px;
  color: rgba(255, 248, 238, 0.82);
  font-weight: 900;
  text-align: center;
}

.form-panel,
.review-form {
  background: rgba(255, 255, 252, 0.74);
}

.form-panel {
  display: grid;
  align-self: start;
  align-content: start;
  justify-self: center;
  width: 100%;
  max-width: 920px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 18px;
  padding: 28px;
  border: 1px solid rgba(109, 79, 70, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 252, 0.9), rgba(255, 248, 238, 0.78)),
    rgba(255, 255, 252, 0.84);
  box-shadow: 0 18px 48px rgba(72, 51, 42, 0.1);
  font-size: 1rem;
}

.form-panel .wide {
  grid-column: 1 / -1;
}

label {
  color: var(--soft-ink);
}

.form-panel label {
  gap: 9px;
  font-size: 0.98rem;
  line-height: 1.25;
}

.form-panel label > span:first-child {
  color: var(--coffee-dark);
  font-weight: 900;
}

input,
select,
textarea {
  border-color: var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  min-height: 54px;
  padding: 14px 15px;
  font-size: 1.05rem;
}

.form-panel textarea {
  min-height: 132px;
}

.form-panel textarea[name="details"] {
  min-height: 165px;
}

.form-panel .checkbox-label {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  justify-items: start;
  font-size: 0.96rem;
  line-height: 1.55;
}

.form-panel .checkbox-label input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
}

.form-panel > .button {
  min-height: 54px;
  padding: 0 24px;
  font-size: 1.02rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(109, 79, 70, 0.56);
  box-shadow: 0 0 0 4px rgba(109, 79, 70, 0.12);
}

.reviews-shell {
  max-width: 1080px;
  gap: 18px;
}

.reviews-grid {
  display: grid;
}

.review-card {
  padding: 18px;
}

.review-photo-button {
  border-color: rgba(154, 98, 72, 0.24);
  background: rgba(255, 248, 238, 0.72);
  box-shadow: 0 8px 18px rgba(72, 51, 42, 0.08);
}

.review-photo-button:hover,
.review-photo-button:focus-visible {
  border-color: rgba(110, 70, 51, 0.52);
}

.review-form {
  padding: 22px;
}

.site-footer {
  width: min(calc(100% - 40px), 1180px);
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  padding: 34px 0 58px;
}

.footer-profile {
  justify-content: flex-start;
}

.socials {
  justify-content: flex-end;
}

.socials a {
  border-radius: var(--radius);
}

.product-modal,
.policy-modal {
  backdrop-filter: blur(12px);
}

.product-dialog,
.policy-dialog {
  background: rgba(255, 255, 252, 0.95);
}

.shop-backdrop,
.policy-backdrop {
  background: rgba(44, 33, 28, 0.5);
}

.shop-close,
.modal-close,
.product-close {
  border-radius: var(--radius);
}

.product-detail {
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
}

.product-gallery {
  background:
    linear-gradient(180deg, rgba(239, 225, 207, 0.68), rgba(234, 220, 207, 0.5));
}

.product-detail-image,
.product-thumb {
  border-radius: var(--radius);
}

.product-detail-header {
  gap: 18px;
}

.product-buy-summary {
  border-radius: var(--radius);
}

.empty-state {
  width: 100%;
  padding: 24px;
  border-style: dashed;
  color: var(--soft-ink);
  text-align: center;
}

@keyframes pageRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(-1.5%, 0, 0);
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.1rem;
  }

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

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .view-tabs {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-self: stretch;
  }

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

  .about,
  .commission-shell,
  .reviews-shell {
    grid-template-columns: 1fr;
  }

  .commission-aside {
    min-height: auto;
  }

  .commission-style-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(240px, 280px);
  }

  .commission-style-groups {
    grid-template-rows: repeat(3, minmax(240px, 280px));
    min-height: 0;
    padding: 16px;
  }

}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 126px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.82rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .site-header {
    top: 8px;
    width: min(calc(100% - 18px), 1180px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .brand strong {
    max-width: 56vw;
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .language-switch {
    display: inline-flex;
  }

  .view-tabs {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px;
    scrollbar-width: none;
  }

  .view-tabs::-webkit-scrollbar {
    display: none;
  }

  .view-tab {
    flex: 0 0 auto;
    min-width: 92px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .section,
  .page-block-shop .shop,
  .price-guide {
    width: min(calc(100% - 24px), 1120px);
    padding: 58px 0;
  }

  .hero {
    width: min(calc(100% - 18px), 1180px);
    min-height: 590px;
    padding: 54px 22px 24px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(28, 25, 24, 0.3), rgba(28, 25, 24, 0.78)),
      linear-gradient(90deg, rgba(28, 25, 24, 0.82), rgba(28, 25, 24, 0.2));
  }

  .hero-image-window > img {
    min-height: 590px;
    object-position: 38% center;
  }

  .hero-personal-socials {
    top: 16px;
    right: 16px;
    left: 16px;
    justify-content: center;
  }

  .hero-copy > p:not(.eyebrow):not(.hero-nickname),
  .hero-author-role {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .about-intro {
    padding: 22px;
  }

  .about-grid,
  .product-grid,
  .queue-shell,
  .legal-grid,
  .form-panel,
  .product-specs,
  .delivery-form,
  .order-status-form {
    grid-template-columns: 1fr;
  }

  .form-panel {
    padding: 22px;
  }

  .commission-style-groups {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(210px, 240px);
    min-height: 0;
    padding: 12px;
  }

  .commission-style-strip figure {
    aspect-ratio: 16 / 11;
    min-height: 210px;
  }

  .commission-style-strip figcaption {
    opacity: 1;
    transform: none;
    font-size: 0.84rem;
  }

  .commission-style-arrow {
    opacity: 1;
  }

  .shop-legal-note,
  .commission-price-link,
  .site-footer {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .shop-legal-note {
    flex-direction: column;
  }

  .commission-price-actions {
    justify-content: stretch;
  }

  .commission-price-actions .button {
    flex: 1 1 100%;
  }

  .gallery-feature {
    min-height: 0;
    padding: 12px;
  }

  .gallery-feature-frame {
    min-height: 350px;
  }

  .gallery-feature-frame img {
    max-height: 350px;
  }

  .gallery-control {
    bottom: 84px;
  }

  .gallery-thumb {
    width: 78px;
    height: 78px;
    flex-basis: 78px;
  }

  .product-image-button {
    height: 220px;
  }

  .cart-items,
  .delivery-form,
  .cart-summary,
  .cart-checkout,
  .order-status-widget {
    margin: 12px;
  }

  .shop-page .cart-panel {
    width: 100%;
  }

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

  .product-detail-body {
    padding: 22px 16px;
  }

  .product-detail-header {
    grid-template-columns: 1fr;
    padding-right: 42px;
  }

  .site-footer {
    width: min(calc(100% - 24px), 1180px);
  }

  .footer-profile,
  .socials {
    justify-content: center;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.32rem;
  }

  h2 {
    font-size: 1.54rem;
  }

  .language-button {
    min-width: 34px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .view-tab {
    min-width: 0;
    flex: 1 1 0;
    padding-right: 4px;
    padding-left: 4px;
    font-size: clamp(0.64rem, 2.65vw, 0.74rem);
    line-height: 1;
  }

  .hero {
    min-height: 560px;
  }

  .hero-image-window > img {
    min-height: 560px;
  }

  .product-image-button {
    height: 196px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-block,
  .hero-image-window > img {
    animation: none !important;
  }
}

.product-card .product-image-button {
  height: auto !important;
  min-height: 300px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-card .product-image-button img {
  width: 100% !important;
  height: 100% !important;
  padding: 12px !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

.product-card:hover .product-image-button img {
  transform: none !important;
}

@media (max-width: 430px) {
  .product-card .product-image-button {
    min-height: 260px;
  }
}
