:root {
  --bg-primary: #090808;
  --bg-secondary: #100d0e;
  --bg-card: #151112;
  --bg-hover: #1e1719;
  --text-primary: #f5f2f0;
  --text-secondary: #b9adaf;
  --text-muted: #817477;
  --accent: #8f2638;
  --accent-hover: #a93449;
  --accent-light: #c75a6e;
  --accent-glow: rgba(143, 38, 56, 0.22);
  --border-color: #2a2224;
  --border-hover: #4a3439;
}

/* Owner tools: separate from the React bundle so the client can export and back up data. */
a[href="#admin"] {
  display: none !important;
}

#mv-admin-tools {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 46;
  width: min(22rem, calc(100vw - 2rem));
  color: #f7f4f2;
  background: rgba(19, 17, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
  box-shadow: 0 1.25rem 4rem rgba(20, 0, 5, 0.42);
  backdrop-filter: blur(20px);
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

.mv-admin-tools__toggle {
  width: 100%;
  min-height: 3.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.mv-admin-tools__toggle:focus-visible,
.mv-admin-tools__actions :is(button, a):focus-visible {
  outline: 2px solid #9e2338;
  outline-offset: -2px;
}

.mv-admin-tools__status {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #65a879;
  box-shadow: 0 0 0 0.22rem rgba(101, 168, 121, 0.14);
}

.mv-admin-tools__chevron {
  color: #a8a1a3;
  transition: transform 180ms ease;
}

#mv-admin-tools.is-open .mv-admin-tools__chevron {
  transform: rotate(180deg);
}

.mv-admin-tools__body {
  display: none;
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#mv-admin-tools.is-open .mv-admin-tools__body {
  display: block;
}

.mv-admin-tools__summary {
  margin: 1rem 0 0.15rem;
  color: #f7f4f2;
  font-size: 0.82rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.mv-admin-tools__sync {
  margin: 0 0 0.9rem;
  color: #9e9699;
  font-size: 0.68rem;
}

.mv-admin-tools__integration {
  width: fit-content;
  margin: -0.35rem 0 0.9rem;
  padding: 0.3rem 0.5rem;
  color: #c7b9bc;
  background: #211b1d;
  border: 1px solid #3a2d31;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 650;
}

.mv-admin-tools__integration.is-ready {
  color: #bfe0c7;
  background: #17231b;
  border-color: #355b40;
}

.mv-admin-tools__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.mv-admin-tools__actions :is(button, a) {
  min-height: 2.55rem;
  display: grid;
  place-items: center;
  padding: 0.65rem 0.75rem;
  color: #f7f4f2;
  background: #242023;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.mv-admin-tools__actions :is(button, a):hover {
  background: #30272a;
  border-color: rgba(158, 35, 56, 0.75);
}

.mv-admin-tools__actions :is(button, a):active {
  transform: translateY(1px);
}

.mv-admin-tools__body details {
  margin-top: 0.8rem;
  color: #b7afb1;
  font-size: 0.7rem;
  line-height: 1.55;
}

.mv-admin-tools__body summary {
  cursor: pointer;
  color: #d8d1d3;
  font-weight: 600;
}

.mv-admin-tools__body ol {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

#mv-admin-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 100;
  max-width: min(28rem, calc(100vw - 2rem));
  padding: 0.85rem 1rem;
  color: #f7f4f2;
  background: #213127;
  border: 1px solid rgba(101, 168, 121, 0.4);
  border-radius: 0.6rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.75rem);
  transition: opacity 180ms ease, transform 180ms ease;
  font: 600 0.76rem/1.4 "Montserrat", sans-serif;
}

#mv-admin-toast.is-error {
  background: #3b1d24;
  border-color: rgba(158, 35, 56, 0.58);
}

#mv-admin-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Order deletion stays secondary until requested, then becomes an explicit two-step action. */
.mv-order-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
  padding-top: 0.15rem;
}

.mv-order-delete,
.mv-order-return {
  display: inline-flex;
  min-height: 2.45rem;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.78rem;
  color: #bb999f;
  background: transparent;
  border: 1px solid #4a3035;
  border-radius: 0.5rem;
  cursor: pointer;
  font: 650 0.66rem/1 "Montserrat", sans-serif;
  transition: color 180ms cubic-bezier(0.22, 1, 0.36, 1), background-color 180ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-order-return {
  color: #d8cdd0;
  background: #171214;
  border-color: #49373c;
}

.mv-order-return:hover {
  color: #f5f2f0;
  background: #25161a;
  border-color: #a04658;
}

.mv-order-delete:hover {
  color: #f5f2f0;
  background: #3a171f;
  border-color: #8f2638;
}

.mv-order-delete:focus-visible,
.mv-order-return:focus-visible,
.mv-order-delete-confirm button:focus-visible {
  outline: 2px solid #c75a6e;
  outline-offset: 2px;
}

.mv-order-delete svg,
.mv-order-return svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.mv-order-delete-confirm {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem;
  background: #1c1114;
  border: 1px solid #63303a;
  border-radius: 0.65rem;
}

.mv-order-delete-confirm__copy {
  display: grid;
  min-width: 0;
  gap: 0.2rem;
}

.mv-order-delete-confirm__copy strong {
  color: #f5f2f0;
  font-size: 0.72rem;
}

.mv-order-delete-confirm__copy span {
  color: #9e898e;
  font-size: 0.61rem;
  line-height: 1.45;
}

.mv-order-delete-confirm__actions {
  display: flex;
  gap: 0.45rem;
}

.mv-order-delete-confirm button {
  min-height: 2.35rem;
  padding: 0.55rem 0.72rem;
  color: #d7ced0;
  background: #201b1d;
  border: 1px solid #463a3d;
  border-radius: 0.45rem;
  cursor: pointer;
  font: 650 0.62rem/1 "Montserrat", sans-serif;
}

.mv-order-delete-confirm button[data-action="confirm"] {
  color: #f5f2f0;
  background: #8f2638;
  border-color: #a93449;
}

.mv-order-delete-confirm button:hover:not(:disabled) {
  border-color: #c75a6e;
}

.mv-order-delete-confirm button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.mv-order-card--deleting {
  pointer-events: none;
  opacity: 0.45;
}

/* Checkout delivery choice and the official CDEK widget. */
.mv-delivery-choice {
  padding: 0.2rem 0 0.35rem;
  font-family: "Montserrat", sans-serif;
}

.mv-delivery-choice__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
  color: #b9adaf;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mv-delivery-choice__heading small {
  color: #756b6d;
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.mv-delivery-choice__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.mv-delivery-choice__options button {
  min-height: 4.35rem;
  padding: 0.75rem;
  color: #b9adaf;
  background: #0c0a0b;
  border: 1px solid #2a2224;
  border-radius: 0.65rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.mv-delivery-choice__options button:hover:not(:disabled) {
  background: #151112;
  border-color: #68414a;
}

.mv-delivery-choice__options button.is-active {
  color: #f5f2f0;
  background: #1b1416;
  border-color: #8f2638;
}

.mv-delivery-choice__options button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.mv-delivery-choice__options strong,
.mv-delivery-choice__options span {
  display: block;
}

.mv-delivery-choice__options strong {
  margin-bottom: 0.3rem;
  color: inherit;
  font-size: 0.69rem;
  font-weight: 680;
}

.mv-delivery-choice__options span {
  color: #817477;
  font-size: 0.6rem;
  line-height: 1.45;
}

.mv-delivery-choice__summary {
  margin: 0.6rem 0 0;
  padding-left: 0.7rem;
  color: #d8cdd0;
  border-left: 2px solid #8f2638;
  font-size: 0.65rem;
  line-height: 1.5;
}

body.mv-cdek-open,
body.mv-cdek-admin-open {
  overflow: hidden;
}

#mv-cdek-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(5, 4, 4, 0.88);
  font-family: "Montserrat", sans-serif;
}

.mv-cdek-dialog {
  width: min(72rem, 100%);
  height: min(52rem, calc(100dvh - 2.5rem));
  display: grid;
  grid-template-rows: auto auto minmax(22rem, 1fr) auto;
  overflow: hidden;
  color: #f5f2f0;
  background: #100d0e;
  border: 1px solid #35272b;
  border-radius: 1rem;
  box-shadow: 0 2.2rem 7rem rgba(0, 0, 0, 0.62);
}

.mv-cdek-dialog__header {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.35rem 0.9rem;
  background: #100d0e !important;
  border: 0 !important;
  box-shadow: none !important;
}

.mv-cdek-eyebrow,
.mv-cdek-admin__header span {
  display: block;
  margin-bottom: 0.3rem;
  color: #c75a6e;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mv-cdek-dialog__header h2,
.mv-cdek-admin__header h2 {
  margin: 0;
  color: #f5f2f0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 620;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.mv-cdek-dialog__close,
.mv-cdek-admin__close {
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  color: #d4c9cc;
  background: #191416;
  border: 1px solid #392c30;
  border-radius: 50%;
  cursor: pointer;
  font: 300 1.7rem/1 "Montserrat", sans-serif;
}

.mv-cdek-dialog__hint {
  margin: 0;
  padding: 0 1.35rem 1rem;
  color: #8f8386;
  font-size: 0.72rem;
  line-height: 1.55;
}

.mv-cdek-map {
  min-width: 0;
  min-height: 22rem;
  overflow: hidden;
  background: #e9e6e2;
}

.mv-cdek-confirm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: #171214;
  border-top: 1px solid #35272b;
}

.mv-cdek-confirm[hidden] {
  display: none;
}

.mv-cdek-confirm__copy {
  min-width: 0;
}

.mv-cdek-confirm__copy strong,
.mv-cdek-confirm__copy span {
  display: block;
}

.mv-cdek-confirm__copy strong {
  margin-bottom: 0.22rem;
  color: #f5f2f0;
  font-size: 0.75rem;
}

.mv-cdek-confirm__copy span {
  overflow: hidden;
  color: #a99da0;
  font-size: 0.65rem;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mv-cdek-confirm button {
  min-height: 2.75rem;
  flex: 0 0 auto;
  padding: 0.7rem 1rem;
  color: #fff;
  background: #a7243d;
  border: 1px solid #bd3550;
  border-radius: 0.55rem;
  cursor: pointer;
  font: 700 0.65rem/1.2 "Montserrat", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mv-cdek-loading,
.mv-cdek-error {
  height: 100%;
  min-height: 22rem;
  display: grid;
  place-content: center;
  gap: 0.75rem;
  color: #51484a;
  text-align: center;
  font-size: 0.82rem;
}

.mv-cdek-loading span {
  width: 1.4rem;
  height: 1.4rem;
  justify-self: center;
  border: 2px solid #cfc6c8;
  border-top-color: #8f2638;
  border-radius: 50%;
  animation: mv-cdek-spin 700ms linear infinite;
}

.mv-cdek-error strong,
.mv-cdek-error span {
  display: block;
}

.mv-cdek-error span {
  max-width: 28rem;
  color: #766b6e;
}

@keyframes mv-cdek-spin {
  to { transform: rotate(360deg); }
}

/* Server-backed CDEK settings drawer for the store owner. */
#mv-cdek-admin {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr min(40rem, 100%);
  font-family: "Montserrat", sans-serif;
}

.mv-cdek-admin__backdrop {
  min-width: 0;
  background: rgba(5, 4, 4, 0.78);
  border: 0;
  cursor: default;
}

.mv-cdek-admin__drawer {
  height: 100dvh;
  overflow-y: auto;
  padding: 1.5rem clamp(1.15rem, 4vw, 2.25rem) 3rem;
  color: #f5f2f0;
  background: #100d0e;
  border-left: 1px solid #35272b;
  box-shadow: -2rem 0 6rem rgba(0, 0, 0, 0.48);
}

.mv-cdek-admin__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.mv-cdek-admin__status {
  margin-bottom: 1.65rem;
  padding: 1rem 0;
  border-top: 1px solid #302529;
  border-bottom: 1px solid #302529;
}

.mv-cdek-admin__status strong {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #e4d9dc;
  font-size: 0.74rem;
}

.mv-cdek-admin__status strong::before {
  width: 0.55rem;
  height: 0.55rem;
  background: #a06943;
  border-radius: 50%;
  content: "";
}

.mv-cdek-admin__status strong.is-ready::before {
  background: #65a879;
}

.mv-cdek-admin__status p {
  margin: 0.45rem 0 0;
  color: #8f8386;
  font-size: 0.7rem;
  line-height: 1.55;
}

.mv-cdek-admin__form {
  display: grid;
  gap: 1.5rem;
}

.mv-cdek-admin__section {
  display: grid;
  gap: 0.85rem;
}

.mv-cdek-admin__section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid #2a2224;
}

.mv-cdek-admin__section-heading strong {
  color: #e9e2e4;
  font-size: 0.75rem;
}

.mv-cdek-admin__section-heading span {
  color: #776d70;
  font-size: 0.61rem;
  text-align: right;
}

.mv-cdek-admin__form label:not(.mv-cdek-admin__switch) {
  display: grid;
  gap: 0.42rem;
  color: #a99da0;
  font-size: 0.66rem;
  font-weight: 600;
}

.mv-cdek-admin__form label em {
  color: #6f6568;
  font-style: normal;
  font-weight: 450;
}

.mv-cdek-admin__form :is(input[type="text"], input[type="password"]) {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #352a2d !important;
  border-radius: 0.55rem;
  font: 500 0.74rem/1.3 "Montserrat", sans-serif;
}

.mv-cdek-admin__form label small {
  color: #71676a;
  font-size: 0.59rem;
  font-weight: 450;
  line-height: 1.5;
}

.mv-cdek-admin__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mv-cdek-admin__switch {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #171315;
  border: 1px solid #352a2d;
  border-radius: 0.65rem;
  cursor: pointer;
}

.mv-cdek-admin__switch input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.1rem;
  accent-color: #8f2638;
}

.mv-cdek-admin__switch strong,
.mv-cdek-admin__switch small {
  display: block;
}

.mv-cdek-admin__switch strong {
  color: #e7dfe1;
  font-size: 0.72rem;
}

.mv-cdek-admin__switch small {
  margin-top: 0.25rem;
  color: #827679;
  font-size: 0.61rem;
  line-height: 1.45;
}

.mv-cdek-admin__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.mv-cdek-admin__actions button {
  min-height: 3rem;
  padding: 0.75rem 1rem;
  color: #ddd4d6;
  background: #211b1d;
  border: 1px solid #3a2e31;
  border-radius: 0.55rem;
  cursor: pointer;
  font: 650 0.68rem/1 "Montserrat", sans-serif;
}

.mv-cdek-admin__actions button.is-primary {
  color: #fff;
  background: #8f2638;
  border-color: #8f2638;
}

.mv-cdek-admin__actions button:only-child {
  grid-column: 1 / -1;
}

.mv-cdek-admin__actions button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.mv-cdek-admin__note {
  margin-top: 2rem;
  padding-top: 1.15rem;
  color: #94898c;
  border-top: 1px solid #302529;
  font-size: 0.67rem;
  line-height: 1.6;
}

.mv-cdek-admin__note strong {
  color: #d7ced0;
}

.mv-cdek-admin__note ol {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

/* Per-product print variants: live products stay clickable; planned products are clearly labelled. */
.mv-related-products {
  padding-top: 1.1rem;
  border-top: 1px solid #2a2224;
  font-family: "Montserrat", sans-serif;
}

.mv-related-products__heading {
  margin-bottom: 0.75rem;
}

.mv-related-products__heading > span {
  display: block;
  margin-bottom: 0.3rem;
  color: #c75a6e;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mv-related-products__heading h4 {
  margin: 0;
  color: #f5f2f0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.mv-related-products__heading p {
  margin: 0.3rem 0 0;
  color: #817477;
  font-size: 0.62rem;
  line-height: 1.5;
}

.mv-related-products__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.mv-related-products.is-single .mv-related-products__list {
  grid-template-columns: minmax(0, 1fr);
}

.mv-related-products.is-single .mv-related-product {
  display: grid;
  grid-template-columns: minmax(7rem, 34%) minmax(0, 1fr);
}

.mv-related-products.is-single .mv-related-product__image {
  height: 100%;
  min-height: 7.5rem;
  aspect-ratio: auto;
}

.mv-related-products.is-single .mv-related-product__meta {
  align-content: center;
  padding: 0.85rem;
}

.mv-related-product {
  min-width: 0;
  overflow: hidden;
  padding: 0;
  color: #f5f2f0;
  background: #0c0a0b;
  border: 1px solid #2a2224;
  border-radius: 0.7rem;
  cursor: pointer;
  text-align: left;
  transition: background-color 180ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms cubic-bezier(0.22, 1, 0.36, 1), transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-related-product:hover {
  background: #151112;
  border-color: #68414a;
  transform: translateY(-2px);
}

.mv-related-product:active {
  transform: translateY(0);
}

.mv-related-product--future {
  cursor: default;
}

.mv-related-product--future:hover {
  background: #0c0a0b;
  border-color: #2a2224;
  transform: none;
}

.mv-related-product__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #151112;
}

.mv-related-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-related-product:hover .mv-related-product__image img {
  transform: scale(1.025);
}

.mv-related-product__image.has-error::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #6f6265;
  content: "M / V";
  font: 700 0.75rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.14em;
}

.mv-related-product__image.has-error img {
  display: none;
}

.mv-related-product__image--future {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, transparent 46%, rgba(159, 37, 61, 0.14) 47%, rgba(159, 37, 61, 0.14) 53%, transparent 54%),
    #121011;
}

.mv-related-product__image--future > span {
  color: #76696c;
  font: 700 0.72rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.18em;
}

.mv-related-product__meta {
  display: grid;
  gap: 0.25rem;
  padding: 0.65rem 0.7rem 0.75rem;
}

.mv-related-product__meta small {
  color: #9a4151;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mv-related-product__meta strong {
  min-height: 2.4em;
  overflow: hidden;
  color: #e9e2e4;
  font-size: 0.65rem;
  font-weight: 650;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mv-related-product__meta > span {
  color: #c6b9bc;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.67rem;
  font-weight: 650;
}

.mv-related-product__meta > .mv-related-product__status {
  width: max-content;
  padding: 0.28rem 0.42rem;
  color: #d98b99;
  background: rgba(159, 37, 61, 0.12);
  border: 1px solid rgba(199, 90, 110, 0.3);
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

/* Product photography: the whole image is an explicit, accessible zoom target. */
.mv-product-photo {
  position: relative;
}

.mv-product-photo__zoom {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0.7rem;
  color: #f5f2f0;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.mv-product-photo__zoom > span {
  display: inline-flex;
  min-height: 2.4rem;
  align-items: center;
  gap: 0.42rem;
  padding: 0.55rem 0.7rem;
  background: rgba(9, 8, 8, 0.88);
  border: 1px solid rgba(245, 242, 240, 0.24);
  border-radius: 0.45rem;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 180ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-product-photo__zoom svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.mv-product-photo__zoom:hover > span {
  background: #8f2638;
  border-color: #c75a6e;
}

.mv-product-photo__zoom:focus-visible {
  outline: 2px solid #c75a6e;
  outline-offset: -4px;
}

body.mv-product-viewer-open {
  overflow: hidden;
}

.mv-product-viewer {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #f5f2f0;
  background: #090808;
  border: 0;
  overscroll-behavior: none;
  touch-action: none;
}

.mv-product-viewer::backdrop {
  background: #090808;
}

.mv-product-viewer__stage {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: clamp(4.8rem, 9vh, 7rem) clamp(1rem, 5vw, 5rem) clamp(7.3rem, 15vh, 9rem);
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

.mv-product-viewer__figure {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  place-items: center;
}

.mv-product-viewer__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  cursor: grab;
  overscroll-behavior: none;
  touch-action: none;
}

.mv-product-viewer.is-zoomed .mv-product-viewer__viewport {
  cursor: grabbing;
}

.mv-product-viewer__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  user-select: none;
  will-change: transform;
}

.mv-product-viewer__caption {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(5.4rem, 10vh, 6.2rem);
  left: clamp(1rem, 4vw, 3rem);
  overflow: hidden;
  color: #d7ced0;
  font: 650 clamp(0.68rem, 1.2vw, 0.82rem)/1.4 "Montserrat", sans-serif;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mv-product-viewer__controls {
  position: absolute;
  z-index: 3;
  bottom: max(1.6rem, env(safe-area-inset-bottom));
  left: 50%;
  display: flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  background: rgba(17, 14, 15, 0.94);
  border: 1px solid #4a3a3e;
  border-radius: 999px;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
}

.mv-product-viewer__controls button {
  display: grid;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0 0.85rem;
  color: #f5f2f0;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: 700 1rem/1 "Montserrat", sans-serif;
  place-items: center;
}

.mv-product-viewer__controls button:hover,
.mv-product-viewer__controls button:focus-visible {
  background: #8f2638;
  outline: 0;
}

.mv-product-viewer__controls .mv-product-viewer__reset {
  min-width: 5.6rem;
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mv-product-viewer__scale {
  min-width: 3.2rem;
  color: #d7ced0;
  font: 650 0.68rem/1 "Space Grotesk", sans-serif;
  text-align: center;
}

.mv-product-viewer__hint {
  position: absolute;
  right: 1rem;
  bottom: max(0.35rem, calc(env(safe-area-inset-bottom) - 0.1rem));
  left: 1rem;
  margin: 0;
  color: #776a6d;
  font: 500 0.55rem/1.25 "Montserrat", sans-serif;
  text-align: center;
}

.mv-product-viewer__close {
  position: absolute;
  z-index: 2;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: #f5f2f0;
  background: #151112;
  border: 1px solid #4a3a3e;
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
}

.mv-product-viewer__close:hover {
  background: #8f2638;
  border-color: #c75a6e;
}

.mv-product-viewer__close:focus-visible {
  outline: 2px solid #c75a6e;
  outline-offset: 3px;
}

.mv-product-viewer__close svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

@media (max-width: 640px) {
  .mv-product-viewer__stage {
    padding: max(4.5rem, env(safe-area-inset-top)) 0.55rem max(8.6rem, calc(env(safe-area-inset-bottom) + 7.4rem));
  }

  .mv-product-viewer__close {
    top: max(0.8rem, env(safe-area-inset-top));
    right: 0.8rem;
    width: 2.75rem;
    height: 2.75rem;
  }

  .mv-product-viewer__caption {
    right: 0.75rem;
    bottom: max(6.6rem, calc(env(safe-area-inset-bottom) + 5.5rem));
    left: 0.75rem;
  }

  .mv-product-viewer__controls {
    bottom: max(1.8rem, calc(env(safe-area-inset-bottom) + 0.35rem));
  }
}

.mv-admin-variant-field {
  padding: 0.85rem;
  background: #141417;
  border: 1px solid #2a2224;
  border-radius: 0.75rem;
}

.mv-admin-variant-choice {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.7rem;
  color: #a99da0;
  background: #0a0a0b;
  border: 1px solid #2a2224;
  border-radius: 0.6rem;
  cursor: pointer;
}

.mv-admin-variant-choice.is-active {
  color: #f5f2f0;
  background: rgba(159, 37, 61, 0.1);
  border-color: rgba(199, 90, 110, 0.55);
}

.mv-admin-variant-choice input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: #a6273f;
}

.mv-admin-variant-choice > span {
  display: grid;
  gap: 0.1rem;
}

.mv-admin-variant-choice strong {
  font-size: 0.68rem;
  line-height: 1.2;
}

.mv-admin-variant-choice small {
  color: #76696c;
  font-size: 0.56rem;
  line-height: 1.2;
}

@media (max-width: 640px) {
  #mv-admin-tools {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100vw - 1.5rem);
  }

  .mv-admin-tools__actions {
    grid-template-columns: 1fr;
  }

  #mv-admin-toast {
    bottom: 5rem;
  }

  .mv-order-delete {
    width: 100%;
    justify-content: center;
  }

  .mv-order-delete-confirm {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
  }

  .mv-order-delete-confirm__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mv-delivery-choice__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .mv-delivery-choice__options,
  .mv-cdek-admin__grid,
  .mv-cdek-admin__actions {
    grid-template-columns: 1fr;
  }

  #mv-cdek-overlay {
    padding: 0;
  }

  .mv-cdek-dialog {
    width: 100%;
    height: 100dvh;
    min-height: 0;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    border: 0;
    border-radius: 0;
  }

  .mv-cdek-dialog__header {
    padding: 1rem 1rem 0.7rem;
  }

  .mv-cdek-dialog__hint {
    padding: 0 1rem 0.8rem;
    font-size: 0.65rem;
  }

  .mv-cdek-map {
    min-height: 0;
  }

  .mv-cdek-confirm {
    align-items: stretch;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.75rem 1rem max(0.75rem, env(safe-area-inset-bottom));
  }

  .mv-cdek-confirm__copy span {
    white-space: normal;
  }

  .mv-cdek-confirm button {
    width: 100%;
  }

  #mv-cdek-admin {
    display: block;
  }

  .mv-cdek-admin__backdrop {
    display: none;
  }

  .mv-cdek-admin__drawer {
    width: 100%;
    border-left: 0;
  }

  .mv-cdek-admin__section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .mv-cdek-admin__section-heading span {
    text-align: left;
  }

  .mv-related-products__list {
    gap: 0.5rem;
  }

  .mv-related-product__meta {
    padding: 0.6rem;
  }
}

html {
  background: var(--bg-primary);
  scrollbar-color: var(--accent) var(--bg-primary);
}

body {
  background:
    radial-gradient(circle at 82% 8%, rgba(99, 24, 38, 0.12), transparent 30rem),
    var(--bg-primary);
  color: var(--text-primary);
  font-weight: 400;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.025;
  pointer-events: none;
}

::selection {
  background: var(--accent);
  color: #fff;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: #4b2830;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

.text-accent,
.group:hover .group-hover\:text-accent {
  color: var(--accent-light) !important;
}

.bg-accent {
  background-color: var(--accent) !important;
}

.bg-accent\/10 {
  background-color: rgba(143, 38, 56, 0.12) !important;
}

.bg-accent\/20 {
  background-color: rgba(143, 38, 56, 0.2) !important;
}

.bg-surface,
[class~="bg-[#101012]"],
[class~="bg-[#101012]/90"] {
  background-color: var(--bg-secondary) !important;
}

[class~="bg-[#141417]"],
[class~="bg-[#141417]/90"] {
  background-color: var(--bg-card) !important;
}

[class~="border-[#212126]"] {
  border-color: var(--border-color) !important;
}

[class~="hover:border-[#34343c]"]:hover {
  border-color: var(--border-hover) !important;
}

.border-accent,
.hover\:border-accent:hover,
.focus\:border-accent:focus {
  border-color: var(--accent) !important;
}

.hover\:bg-accent:hover,
.hover\:bg-accenth:hover {
  background-color: var(--accent-hover) !important;
}

.shadow-accent\/20,
.shadow-accent\/40 {
  --tw-shadow-color: var(--accent-glow) !important;
}

.text-muted,
.text-muted\/70 {
  color: var(--text-secondary) !important;
}

p,
li {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

a,
button,
[role="button"] {
  transition-duration: 240ms !important;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}

button:active,
a:active,
[role="button"]:active {
  transform: translateY(1px) scale(0.985);
}

:focus-visible {
  outline: 2px solid var(--accent-light) !important;
  outline-offset: 3px;
}

header {
  border-color: rgba(87, 64, 68, 0.45) !important;
  background: rgba(9, 8, 8, 0.9) !important;
  box-shadow: 0 12px 40px rgba(3, 2, 2, 0.2);
}

header nav a {
  color: #b9adaf !important;
}

header nav a:hover {
  color: #fff !important;
}

section:first-of-type {
  border-color: var(--border-color) !important;
}

#catalog,
#custom-print,
#faq {
  scroll-margin-top: 5.5rem;
}

#catalog > div:first-child {
  align-items: end;
}

#catalog .group.cursor-pointer {
  border-color: var(--border-color) !important;
  border-radius: 0.75rem;
  background: var(--bg-secondary) !important;
  box-shadow: 0 18px 50px rgba(3, 2, 2, 0.14);
}

#catalog .group.cursor-pointer:hover {
  border-color: var(--border-hover) !important;
  box-shadow: 0 24px 64px rgba(47, 18, 24, 0.24);
  transform: translateY(-3px);
}

#catalog .group.cursor-pointer > div:last-child {
  border-color: var(--border-color) !important;
  background: var(--bg-secondary) !important;
}

#catalog h3.line-clamp-1 {
  display: -webkit-box;
  min-height: 2.35em;
  overflow: hidden;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#catalog button {
  border-color: var(--border-color) !important;
}

#catalog button:hover {
  border-color: var(--accent) !important;
}

.catalog-empty-state {
  position: relative;
  grid-column: 1 / -1;
  display: flex;
  min-height: clamp(19rem, 32vw, 27rem);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: clamp(2.5rem, 7vw, 5.5rem);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: radial-gradient(circle at 82% 50%, rgba(143, 38, 56, 0.12), transparent 32rem);
  text-align: left;
}

.catalog-empty-state::after {
  position: absolute;
  right: clamp(-2rem, 3vw, 3rem);
  color: var(--text-primary);
  content: "M / V";
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.8;
  opacity: 0.035;
  pointer-events: none;
}

.catalog-empty-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
  color: var(--accent-light);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.catalog-empty-title {
  position: relative;
  z-index: 1;
  max-width: 13ch;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-transform: uppercase;
}

.catalog-empty-copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

#custom-print > div,
#faq > div {
  position: relative;
}

#custom-print [class~="bg-[#141417]/90"],
#faq [class~="bg-[#101012]/90"] {
  border-color: var(--border-color) !important;
  background: linear-gradient(145deg, rgba(25, 19, 21, 0.96), rgba(14, 12, 12, 0.96)) !important;
  box-shadow: 0 24px 70px rgba(3, 2, 2, 0.18);
}

#faq [class~="bg-[#101012]/90"]:hover {
  border-color: var(--border-hover) !important;
}

footer {
  border-color: var(--border-color) !important;
  background: #0b090a !important;
}

.fixed.inset-0.z-50 {
  background: rgba(5, 3, 4, 0.76);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

[class*="max-w-[500px]"][class*="overflow-y-auto"] {
  max-height: min(90dvh, 54rem) !important;
  border-color: var(--border-color) !important;
  background: var(--bg-secondary) !important;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(143, 38, 56, 0.08) !important;
  scrollbar-width: thin;
}

[class*="max-w-[500px]"][class*="overflow-y-auto"] > .border-t {
  position: sticky;
  bottom: -1px;
  z-index: 3;
  border-color: var(--border-color) !important;
  background: linear-gradient(to bottom, rgba(16, 13, 14, 0.92), var(--bg-secondary) 28%);
  box-shadow: 0 -16px 30px rgba(16, 13, 14, 0.76);
}

input,
textarea,
select {
  border-color: var(--border-color) !important;
  background: #0c0a0b !important;
  color: var(--text-primary) !important;
}

input::placeholder,
textarea::placeholder {
  color: #766b6e !important;
}

@media (max-width: 639px) {
  body {
    font-size: 0.9375rem;
  }

  #root > div > header:has(> div > nav) > div {
    min-height: 4.25rem;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"]) {
    min-height: auto !important;
    padding-top: 6.25rem !important;
    padding-bottom: 4.5rem !important;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"]) p {
    max-width: 38rem;
    color: var(--text-secondary) !important;
    font-size: 0.84rem !important;
    line-height: 1.65 !important;
  }

  #catalog,
  #custom-print,
  #faq {
    padding-top: 4.75rem !important;
    padding-bottom: 5.25rem !important;
  }

  #catalog > div:first-child {
    align-items: start;
    gap: 1.25rem;
  }

  #catalog h2,
  #custom-print h2,
  #faq h2 {
    font-size: clamp(1.55rem, 7.4vw, 2rem) !important;
    line-height: 1.02 !important;
  }

  #catalog .grid.grid-cols-2 {
    gap: 0.875rem !important;
  }

  .catalog-empty-state {
    min-height: 22rem;
    align-items: center;
    padding: 3rem 1.25rem;
    text-align: center;
  }

  .catalog-empty-state::after {
    right: 50%;
    transform: translateX(50%);
  }

  .catalog-empty-title {
    max-width: 11ch;
    font-size: clamp(2.1rem, 11vw, 3rem) !important;
  }

  .catalog-empty-copy {
    max-width: 26rem;
    font-size: 0.82rem;
  }

  #catalog .group.cursor-pointer > div:last-child {
    padding: 0.875rem !important;
  }

  #catalog h3.line-clamp-1 {
    min-height: 2.45em;
    font-size: 0.78rem !important;
  }

  #catalog .group.cursor-pointer > div:last-child > div:last-child {
    align-items: center;
    gap: 0.35rem;
  }

  #custom-print p,
  #custom-print li,
  #faq [class~="text-muted"] {
    font-size: 0.82rem !important;
    line-height: 1.62 !important;
  }

  #custom-print [class~="bg-[#141417]/90"] {
    padding: 1.25rem !important;
  }

  #faq [class~="bg-[#101012]/90"] {
    padding: 1.125rem !important;
  }

  footer {
    font-size: 0.82rem;
  }

  [class*="max-w-[500px]"][class*="overflow-y-auto"] {
    max-height: calc(100dvh - 1.5rem) !important;
    margin-block: 0 !important;
    padding: 1.25rem !important;
    border-radius: 1rem !important;
  }

  [class*="max-w-[500px]"][class*="overflow-y-auto"] > .border-t {
    margin-inline: -0.25rem;
    padding: 1rem 0.25rem 0.25rem !important;
  }

  [class*="max-w-[500px]"][class*="overflow-y-auto"] > .space-y-5 {
    padding-bottom: 4.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Public contact center and privacy-preserving order tracker. */
.mv-order-status,
.mv-contact-section {
  position: relative;
  z-index: 1;
  width: min(100%, 80rem);
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 4vw, 1.5rem);
  border-top: 1px solid var(--border-color);
  font-family: var(--font-body);
}

.mv-order-status {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(22rem, 1.14fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.mv-order-status__intro > span,
.mv-contact-section__heading > span {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--accent-light);
  font: 650 0.64rem/1 var(--font-display);
  letter-spacing: 0.22em;
}

.mv-order-status h2,
.mv-contact-section h2 {
  margin: 0;
  color: var(--text-primary);
  font: 700 clamp(2rem, 5vw, 4.25rem)/0.96 var(--font-display);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.mv-order-status__intro > p,
.mv-contact-section__heading > p {
  max-width: 35rem;
  margin: 1.35rem 0 0;
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.7;
}

.mv-order-status__form {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.mv-order-status__form label {
  display: grid;
  gap: 0.42rem;
  color: #a99da0;
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mv-order-status__form input {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid #34292c !important;
  border-radius: 0.55rem;
  font: 500 0.78rem/1.3 var(--font-body);
}

.mv-order-status__form input:focus-visible,
.mv-order-status__form button:focus-visible,
.mv-contact-item:focus-visible {
  outline: 2px solid #d05a70;
  outline-offset: 3px;
}

.mv-order-status__form button {
  min-height: 3.15rem;
  margin-top: 0.2rem;
  padding: 0.85rem 1rem;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 0.55rem;
  cursor: pointer;
  font: 700 0.69rem/1 var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.mv-order-status__form button:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.mv-order-status__form button:active {
  transform: translateY(1px);
}

.mv-order-status__form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.mv-order-status__message {
  display: grid;
  gap: 0.45rem;
  min-height: 1.25rem;
  margin-top: 0.8rem;
  color: #94898c;
  font-size: 0.68rem;
  line-height: 1.55;
}

.mv-order-status__message.is-success {
  color: #8fc49e;
}

.mv-order-status__message.is-error {
  color: #e7909e;
}

.mv-order-status__message a {
  width: fit-content;
  color: #f0dadd;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.mv-order-progress {
  padding: clamp(1.35rem, 4vw, 2.25rem);
  background: #100d0e;
  border: 1px solid #302629;
  border-radius: 0.9rem;
}

.mv-order-progress__meta {
  padding-bottom: 1.2rem;
  color: #9d9295;
  border-bottom: 1px solid #302629;
  font-size: 0.67rem;
  line-height: 1.55;
}

.mv-order-progress ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mv-order-progress li {
  position: relative;
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.95rem;
  padding: 1.15rem 0;
  color: #6f6668;
  border-bottom: 1px solid #292124;
}

.mv-order-progress li::before {
  position: absolute;
  left: 1rem;
  top: 3rem;
  bottom: -1rem;
  width: 1px;
  background: #31272a;
  content: "";
}

.mv-order-progress li:last-child {
  border-bottom: 0;
}

.mv-order-progress li:last-child::before {
  display: none;
}

.mv-order-progress__number {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: #8e8386;
  background: #171315;
  border: 1px solid #382d30;
  border-radius: 50%;
  font: 600 0.61rem/1 var(--font-display);
}

.mv-order-progress__copy strong,
.mv-order-progress__copy small {
  display: block;
}

.mv-order-progress__copy strong {
  padding-top: 0.15rem;
  color: #b7adaf;
  font-size: 0.74rem;
  font-weight: 650;
}

.mv-order-progress__copy small {
  margin-top: 0.35rem;
  color: #746b6d;
  font-size: 0.64rem;
  line-height: 1.5;
}

.mv-order-progress li.is-complete .mv-order-progress__number,
.mv-order-progress li.is-current .mv-order-progress__number {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent-light);
}

.mv-order-progress li.is-complete::before {
  background: var(--accent);
}

.mv-order-progress li.is-current .mv-order-progress__copy strong {
  color: #fff;
}

.mv-order-progress li.is-current .mv-order-progress__copy small {
  color: #afa3a6;
}

.mv-order-progress__address {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 1rem;
  color: #c7bcbf;
  background: #1a1416;
  border-left: 2px solid var(--accent);
  font-size: 0.7rem;
  line-height: 1.55;
}

.mv-order-progress__address[hidden] {
  display: none;
}

.mv-order-progress__address strong {
  color: #fff;
  font-size: 0.68rem;
}

.mv-contact-section {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(22rem, 1.2fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: end;
}

.mv-contact-list {
  border-top: 1px solid #3a2e31;
}

.mv-contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 5rem;
  padding: 1.15rem 0.25rem;
  color: #fff;
  border-bottom: 1px solid #3a2e31;
  text-decoration: none;
  transition: color 160ms ease, padding 160ms ease;
}

a.mv-contact-item:hover {
  padding-left: 0.55rem;
  color: var(--accent-light);
}

.mv-contact-item.is-pending {
  color: #786e71;
}

.mv-contact-item__copy strong,
.mv-contact-item__copy small {
  display: block;
}

.mv-contact-item__copy strong {
  font: 650 0.85rem/1.25 var(--font-display);
  letter-spacing: 0.02em;
}

.mv-contact-item__copy small {
  margin-top: 0.35rem;
  color: #8e8386;
  font-size: 0.65rem;
}

.mv-contact-item__action {
  color: var(--accent-light);
  font: 650 0.62rem/1 var(--font-display);
  letter-spacing: 0.12em;
}

@media (max-width: 767px) {
  .mv-order-status,
  .mv-contact-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 4.75rem;
    padding-bottom: 5.25rem;
  }

  .mv-order-status h2,
  .mv-contact-section h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .mv-order-progress {
    padding: 1.15rem;
  }

  .mv-order-progress li {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .mv-contact-section {
    align-items: start;
  }

  .mv-delivery-choice__options {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-order-status__form button,
  .mv-contact-item {
    transition: none !important;
  }
}

/* Care, verified reviews and official social channels. */
.mv-care-section,
.mv-reviews-section,
.mv-socials-section {
  position: relative;
  z-index: 1;
  width: min(100%, 80rem);
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 4vw, 1.5rem);
  color: var(--text-primary);
  border-top: 1px solid var(--border-color);
  font-family: "Montserrat", sans-serif;
}

.mv-care-section,
.mv-socials-section {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(22rem, 1.2fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.mv-care-section__heading > span,
.mv-reviews-section__copy > span,
.mv-socials-section__heading > span {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--accent-light);
  font: 650 0.64rem/1 var(--font-display);
  letter-spacing: 0.22em;
}

.mv-care-section h2,
.mv-reviews-section h2,
.mv-socials-section h2 {
  margin: 0;
  color: var(--text-primary);
  font: 700 clamp(2rem, 5vw, 4.25rem)/0.96 var(--font-display);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.mv-care-section__heading > p,
.mv-reviews-section__copy > p,
.mv-socials-section__heading > p {
  max-width: 35rem;
  margin: 1.35rem 0 0;
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.7;
}

.mv-care-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-hover);
  list-style: none;
}

.mv-care-list li {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: clamp(0.9rem, 3vw, 1.5rem);
  align-items: start;
  padding: 1.25rem 0.25rem;
  border-bottom: 1px solid var(--border-hover);
}

.mv-care-list__number {
  padding-top: 0.12rem;
  color: var(--accent-light);
  font: 650 0.66rem/1.4 var(--font-display);
  letter-spacing: 0.08em;
}

.mv-care-list p {
  max-width: 52ch;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(0.78rem, 1.4vw, 0.88rem);
  line-height: 1.65;
}

.mv-reviews-section {
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(143, 38, 56, 0.2), transparent 52%),
    var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}

.mv-reviews-section::after {
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  top: 50%;
  z-index: -1;
  color: rgba(199, 90, 110, 0.06);
  content: "M / V";
  font: 700 clamp(6rem, 18vw, 14rem)/0.8 var(--font-display);
  letter-spacing: -0.1em;
  transform: translateY(-50%);
}

.mv-reviews-section__copy {
  max-width: 46rem;
}

.mv-reviews-section__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(16rem, 0.7fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: end;
}

.mv-reviews-section__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
  padding: 1rem 1.2rem;
  color: var(--text-primary);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 0.45rem;
  text-decoration: none;
  transition:
    background-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-reviews-section__action span {
  font: 700 0.72rem/1 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mv-reviews-section__action strong {
  font-size: 1.2rem;
}

.mv-reviews-section__action:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}

.mv-review-bonus {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(7rem, 0.42fr) minmax(15rem, 0.78fr) minmax(19rem, 1.2fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  padding: clamp(1.35rem, 4vw, 2.25rem);
  background: #100d0e;
  border: 1px solid #392d30;
}

.mv-review-bonus__amount {
  color: var(--accent-light);
  font: 700 clamp(2.35rem, 5vw, 4rem)/0.9 var(--font-display);
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.mv-review-bonus__copy > span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--accent-light);
  font: 650 0.56rem/1 var(--font-display);
  letter-spacing: 0.16em;
}

.mv-review-bonus__copy h3 {
  margin: 0;
  color: var(--text-primary);
  font: 700 clamp(1.15rem, 2.3vw, 1.7rem)/1.05 var(--font-display);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.mv-review-bonus__copy p {
  max-width: 43ch;
  margin: 0.7rem 0 0;
  color: var(--text-secondary);
  font-size: 0.67rem;
  line-height: 1.6;
}

.mv-review-bonus__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-hover);
  list-style: none;
}

.mv-review-bonus__steps li {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  min-height: 3.2rem;
  padding: 0.75rem 0.35rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-hover);
  font-size: 0.67rem;
  line-height: 1.4;
}

.mv-review-bonus__steps li:nth-child(odd) {
  padding-right: 0.9rem;
}

.mv-review-bonus__steps li:nth-child(even) {
  padding-left: 0.9rem;
  border-left: 1px solid var(--border-hover);
}

.mv-review-bonus__steps span {
  flex: 0 0 auto;
  color: var(--accent-light);
  font: 650 0.56rem/1 var(--font-display);
  letter-spacing: 0.08em;
}

.mv-reviews-section__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.mv-review-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mv-review-feed__empty {
  grid-column: 1 / -1;
  min-height: 12rem;
  margin: 0;
  padding: 2rem;
  color: var(--text-secondary);
  background: rgba(12, 9, 10, 0.76);
  border: 1px solid var(--border-hover);
  font-size: 0.8rem;
  line-height: 1.7;
}

.mv-review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 18rem;
  color: var(--text-primary);
  background: rgba(12, 9, 10, 0.9);
  border: 1px solid var(--border-hover);
  overflow: hidden;
}

.mv-review-card.is-featured {
  grid-column: 1 / -1;
  min-height: 19rem;
  background:
    linear-gradient(125deg, rgba(143, 38, 56, 0.22), transparent 62%),
    #0d0a0b;
}

.mv-review-card.has-photo {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(11rem, 0.82fr) minmax(0, 1.18fr);
  min-height: 21rem;
}

.mv-review-card.has-photo:nth-child(even) {
  grid-template-columns: minmax(0, 1.18fr) minmax(11rem, 0.82fr);
}

.mv-review-card.has-photo:nth-child(even) .mv-review-card__photo {
  order: 2;
}

.mv-review-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.mv-review-card__photo {
  position: relative;
  min-width: 0;
  min-height: 100%;
  padding: 0;
  color: #f5f2f0;
  background: #090808;
  border: 0;
  cursor: zoom-in;
  overflow: hidden;
}

.mv-review-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 21rem;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-review-card__photo::after {
  content: "Увеличить ↗";
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.55rem 0.7rem;
  color: #f5f2f0;
  background: rgba(9, 8, 8, 0.86);
  border: 1px solid rgba(245, 242, 240, 0.22);
  font: 650 0.54rem/1 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mv-review-card__photo:hover img {
  transform: scale(1.025);
}

.mv-review-card__photo:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: -4px;
}

.mv-review-card blockquote {
  max-width: 43ch;
  margin: 0;
  color: #f4edef;
  font: 500 clamp(1rem, 2.1vw, 1.38rem)/1.55 var(--font-body);
  letter-spacing: -0.018em;
}

.mv-review-card.is-featured blockquote {
  max-width: 48ch;
  font-size: clamp(1.15rem, 2.6vw, 1.65rem);
}

.mv-review-card footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.1rem;
  background: none !important;
  border-top: 1px solid var(--border-hover);
}

.mv-review-card__identity strong,
.mv-review-card__identity span {
  display: block;
}

.mv-review-card__identity strong {
  color: #fff;
  font: 650 0.78rem/1.3 var(--font-display);
}

.mv-review-card__identity span {
  margin-top: 0.25rem;
  color: var(--text-secondary);
  font-size: 0.61rem;
  line-height: 1.45;
}

.mv-review-card footer > a,
.mv-review-card__verified {
  flex: 0 0 auto;
  color: var(--accent-light);
  font: 650 0.58rem/1 var(--font-display);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.mv-review-card footer > a:hover {
  color: #fff;
}

.mv-review-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: #0e0b0c;
  border: 1px solid var(--border-hover);
}

.mv-review-form__heading {
  margin-bottom: 0.5rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border-hover);
}

.mv-review-form__heading > span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--accent-light);
  font: 650 0.58rem/1 var(--font-display);
  letter-spacing: 0.18em;
}

.mv-review-form__heading h3 {
  margin: 0;
  color: #fff;
  font: 700 clamp(1.35rem, 3vw, 1.9rem)/1 var(--font-display);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.mv-review-form__heading p,
.mv-review-form__privacy {
  margin: 0.75rem 0 0;
  color: var(--text-secondary);
  font-size: 0.65rem;
  line-height: 1.55;
}

.mv-review-form label {
  display: grid;
  gap: 0.42rem;
}

.mv-review-form label > span {
  color: #a99da0;
  font: 650 0.61rem/1 var(--font-display);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mv-review-form :is(input, textarea) {
  width: 100%;
  padding: 0.85rem 0.9rem;
  color: #fff !important;
  background: #090708 !important;
  border: 1px solid #392d30 !important;
  border-radius: 0.35rem;
  font: 500 0.76rem/1.5 var(--font-body);
  resize: vertical;
}

.mv-review-form textarea {
  min-height: 8.5rem;
}

.mv-review-form input[type="file"] {
  min-height: 3.25rem;
  padding: 0.5rem;
  cursor: pointer;
}

.mv-review-form input[type="file"]::file-selector-button {
  min-height: 2.2rem;
  margin-right: 0.75rem;
  padding: 0.55rem 0.7rem;
  color: #f5f2f0;
  background: #151112;
  border: 1px solid #49383d;
  border-radius: 0.25rem;
  cursor: pointer;
  font: 650 0.58rem/1 var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mv-review-form__hint {
  color: var(--text-secondary);
  font-size: 0.58rem;
  line-height: 1.45;
}

.mv-review-form :is(input, textarea):focus-visible,
.mv-review-form button:focus-visible,
.mv-review-card footer > a:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
}

.mv-review-form button {
  min-height: 3.25rem;
  margin-top: 0.25rem;
  padding: 0.9rem 1rem;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 0.35rem;
  cursor: pointer;
  font: 700 0.65rem/1 var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.mv-review-form button:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.mv-review-form button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.mv-review-form__privacy {
  margin-top: 0;
}

.mv-review-form__message {
  min-height: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.66rem;
  line-height: 1.55;
}

.mv-review-form__message.is-success {
  color: #8fc49e;
}

.mv-review-form__message.is-error {
  color: #e7909e;
}

.mv-review-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.mv-socials-list {
  border-top: 1px solid var(--border-hover);
}

.mv-socials-link {
  display: grid;
  grid-template-columns: minmax(6rem, 0.6fr) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 5rem;
  padding: 1.15rem 0.25rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-hover);
  text-decoration: none;
  transition:
    color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-socials-link > span:first-child {
  color: var(--text-secondary);
  font-size: 0.7rem;
}

.mv-socials-link strong {
  overflow: hidden;
  font: 650 0.88rem/1.3 var(--font-display);
  letter-spacing: 0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mv-socials-link__action {
  color: var(--accent-light);
  font-size: 1rem;
}

.mv-socials-link:hover {
  padding-left: 0.55rem;
  color: var(--accent-light);
}

.mv-reviews-section__action:focus-visible,
.mv-socials-link:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .mv-care-section,
  .mv-reviews-section,
  .mv-socials-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 4.75rem;
    padding-bottom: 5.25rem;
  }

  .mv-care-section h2,
  .mv-reviews-section h2,
  .mv-socials-section h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .mv-reviews-section__head,
  .mv-reviews-section__body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mv-reviews-section__body {
    margin-top: 3rem;
  }

  .mv-review-bonus {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-top: 2.5rem;
  }

  .mv-review-bonus__steps {
    grid-template-columns: 1fr;
  }

  .mv-review-bonus__steps li:nth-child(odd),
  .mv-review-bonus__steps li:nth-child(even) {
    padding-inline: 0.25rem;
    border-left: 0;
  }

  .mv-review-feed {
    grid-template-columns: 1fr;
  }

  .mv-review-card,
  .mv-review-card.is-featured {
    grid-column: auto;
    min-height: 16rem;
  }

  .mv-review-card.has-photo,
  .mv-review-card.has-photo:nth-child(even) {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mv-review-card.has-photo:nth-child(even) .mv-review-card__photo {
    order: 0;
  }

  .mv-review-card__photo,
  .mv-review-card__photo img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .mv-review-card blockquote,
  .mv-review-card.is-featured blockquote {
    font-size: 1rem;
    line-height: 1.6;
  }

  .mv-care-list li {
    padding-block: 1.1rem;
  }

  .mv-socials-link {
    grid-template-columns: minmax(5.5rem, 0.6fr) minmax(0, 1fr) auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-reviews-section__action,
  .mv-review-form button,
  .mv-socials-link {
    transition: none !important;
  }
}

/* Review moderation drawer: private contacts stay in the authenticated admin area. */
body.mv-reviews-admin-open {
  overflow: hidden;
}

#mv-reviews-admin {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  justify-items: end;
  font-family: var(--font-body);
}

.mv-reviews-admin__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(4, 3, 3, 0.8);
  border: 0;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.mv-reviews-admin__drawer {
  position: relative;
  z-index: 1;
  width: min(100%, 52rem);
  height: 100dvh;
  padding: clamp(1.2rem, 3vw, 2rem);
  overflow-y: auto;
  color: #f6f1f2;
  background: #0d0a0b;
  border-left: 1px solid #3b2d31;
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.45);
}

.mv-reviews-admin__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid #34282b;
}

.mv-reviews-admin__header span {
  display: block;
  margin-bottom: 0.45rem;
  color: #c75a6e;
  font: 650 0.6rem/1 var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mv-reviews-admin__header h2 {
  margin: 0;
  color: #fff;
  font: 700 clamp(1.7rem, 4vw, 2.45rem)/1 var(--font-display);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.mv-reviews-admin__close {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  color: #d7cccf;
  background: #151112;
  border: 1px solid #3a2d30;
  border-radius: 0.45rem;
  cursor: pointer;
  font-size: 1.4rem;
}

.mv-reviews-admin__summary {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  color: #b9aeb1;
  background: #151012;
  border-left: 2px solid #a4263f;
  font-size: 0.72rem;
  line-height: 1.55;
}

.mv-reviews-admin__filters {
  display: flex;
  gap: 0.55rem;
  margin: 1.25rem 0;
  padding-bottom: 0.2rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.mv-reviews-admin__filters button {
  flex: 0 0 auto;
  min-height: 2.45rem;
  padding: 0.68rem 0.85rem;
  color: #a89da0;
  background: #131011;
  border: 1px solid #362b2e;
  border-radius: 999px;
  cursor: pointer;
  font: 650 0.61rem/1 var(--font-display);
  letter-spacing: 0.03em;
}

.mv-reviews-admin__filters button.is-active {
  color: #fff;
  background: #8f2638;
  border-color: #c75a6e;
}

.mv-reviews-admin__filters span {
  margin-left: 0.25rem;
  opacity: 0.75;
}

.mv-reviews-admin__list {
  display: grid;
  gap: 0.85rem;
}

.mv-reviews-admin__empty {
  min-height: 12rem;
  margin: 0;
  padding: 2rem;
  color: #8f8386;
  background: #110e0f;
  border: 1px dashed #392d30;
  font-size: 0.75rem;
  line-height: 1.6;
}

.mv-admin-review-card {
  padding: clamp(1.1rem, 3vw, 1.5rem);
  background: #121011;
  border: 1px solid #382c2f;
}

.mv-admin-review-card.is-pending {
  border-left: 3px solid #d98942;
}

.mv-admin-review-card.is-approved {
  border-left: 3px solid #5baf75;
}

.mv-admin-review-card.is-rejected {
  border-left: 3px solid #776c70;
}

.mv-admin-review-card > header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.mv-admin-review-card > header strong,
.mv-admin-review-card > header span {
  display: block;
}

.mv-admin-review-card > header strong {
  color: #fff;
  font: 650 0.84rem/1.3 var(--font-display);
}

.mv-admin-review-card > header div > span {
  margin-top: 0.25rem;
  color: #84797c;
  font-size: 0.6rem;
}

.mv-admin-review-card__status {
  flex: 0 0 auto;
  padding: 0.45rem 0.6rem;
  color: #d7cdd0;
  background: #1a1517;
  border: 1px solid #3c3033;
  border-radius: 999px;
  font: 650 0.54rem/1 var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mv-admin-review-card blockquote {
  margin: 1.25rem 0 0;
  color: #e9e1e3;
  font-size: 0.8rem;
  line-height: 1.7;
}

.mv-admin-review-card__image {
  display: block;
  width: 100%;
  max-height: 15rem;
  margin-top: 1rem;
  background: #090808;
  border: 1px solid #312629;
  object-fit: cover;
}

.mv-admin-review-card__private {
  display: grid;
  gap: 0;
  margin: 1rem 0 0;
  padding: 0;
  color: #d8cbd0;
  background: #0b090a;
  border: 1px solid #312629;
  font-size: 0.66rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.mv-admin-review-card__private > div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.7fr) minmax(0, 1.3fr);
  gap: 0.8rem;
  padding: 0.7rem 0.75rem;
  border-bottom: 1px solid #312629;
}

.mv-admin-review-card__private > div:last-child {
  border-bottom: 0;
}

.mv-admin-review-card__private dt {
  color: #8d8185;
}

.mv-admin-review-card__private dd {
  margin: 0;
  color: #f1e9eb;
  font-weight: 600;
}

.mv-admin-review-card__source {
  display: inline-block;
  margin-top: 0.85rem;
  color: #d46c80;
  font-size: 0.64rem;
  text-decoration: none;
}

.mv-admin-review-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid #302629;
}

.mv-admin-review-card__actions button {
  min-height: 2.55rem;
  padding: 0.7rem 0.85rem;
  color: #d9d0d2;
  background: #1a1517;
  border: 1px solid #423438;
  border-radius: 0.35rem;
  cursor: pointer;
  font: 650 0.59rem/1 var(--font-display);
}

.mv-admin-review-card__actions button.is-primary {
  color: #fff;
  background: #8f2638;
  border-color: #b5465b;
}

.mv-admin-review-card__actions button.is-danger {
  margin-left: auto;
  color: #c99ca5;
  background: transparent;
}

.mv-admin-review-card__actions button.is-confirming {
  color: #fff;
  background: #791f31;
  border-color: #d45d73;
}

.mv-admin-review-card__actions button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.mv-reviews-admin__close:focus-visible,
.mv-reviews-admin__filters button:focus-visible,
.mv-admin-review-card__actions button:focus-visible,
.mv-admin-review-card__source:focus-visible {
  outline: 2px solid #d45d73;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .mv-reviews-admin__drawer {
    width: 100%;
    padding: 1rem;
  }

  .mv-reviews-admin__backdrop {
    display: none;
  }

  .mv-admin-review-card__actions button {
    flex: 1 1 calc(50% - 0.3rem);
  }

  .mv-admin-review-card__actions button.is-danger {
    margin-left: 0;
  }
}

/* Return tracking drawer: internal workflow only, no automatic money movement. */
body.mv-returns-admin-open {
  overflow: hidden;
}

#mv-returns-admin {
  position: fixed;
  inset: 0;
  z-index: 125;
  display: grid;
  justify-items: end;
  font-family: var(--font-body);
}

.mv-returns-admin__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(4, 3, 3, 0.82);
  border: 0;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.mv-returns-admin__drawer {
  position: relative;
  z-index: 1;
  width: min(100%, 54rem);
  height: 100dvh;
  padding: clamp(1.2rem, 3vw, 2rem);
  overflow-y: auto;
  color: #f5f2f0;
  background: #0d0a0b;
  border-left: 1px solid #3b2d31;
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.45);
}

.mv-returns-admin__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid #34282b;
}

.mv-returns-admin__header span {
  display: block;
  margin-bottom: 0.45rem;
  color: #c75a6e;
  font: 650 0.6rem/1 var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mv-returns-admin__header h2 {
  margin: 0;
  color: #f5f2f0;
  font: 700 clamp(1.7rem, 4vw, 2.45rem)/1 var(--font-display);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.mv-returns-admin__close {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  color: #d7cccf;
  background: #151112;
  border: 1px solid #3a2d30;
  border-radius: 0.45rem;
  cursor: pointer;
  font-size: 1.4rem;
}

.mv-returns-admin__summary,
.mv-returns-admin__notice {
  margin-top: 1.1rem;
  padding: 0.9rem 1rem;
  color: #b9adaf;
  background: #151112;
  border: 1px solid #392c30;
  font-size: 0.7rem;
  line-height: 1.55;
}

.mv-returns-admin__notice {
  color: #d7b7bd;
  background: #1b1114;
  border-color: #56303a;
}

.mv-return-create {
  margin-top: 1rem;
  background: #100d0e;
  border: 1px solid #392c30;
}

.mv-return-create > summary {
  padding: 0.95rem 1rem;
  color: #e5dcde;
  cursor: pointer;
  font: 650 0.7rem/1 var(--font-display);
}

.mv-return-create form,
.mv-return-card__editor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.mv-return-create form {
  padding: 0 1rem 1rem;
  border-top: 1px solid #302629;
}

.mv-return-create label,
.mv-return-card__editor label {
  display: grid;
  gap: 0.4rem;
  padding-top: 0.85rem;
  color: #94878a;
  font-size: 0.6rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mv-return-create .is-wide,
.mv-return-card__editor .is-wide {
  grid-column: 1 / -1;
}

.mv-return-create :is(input, select, textarea),
.mv-return-card__editor :is(input, select, textarea) {
  width: 100%;
  min-height: 2.7rem;
  padding: 0.68rem 0.75rem;
  color: #f0e9eb;
  background: #0b090a;
  border: 1px solid #3b3033;
  border-radius: 0.35rem;
  font: 500 0.7rem/1.45 var(--font-body);
  text-transform: none;
  letter-spacing: normal;
}

.mv-return-create textarea,
.mv-return-card__editor textarea {
  resize: vertical;
}

.mv-return-create button[type="submit"] {
  grid-column: 1 / -1;
  min-height: 2.8rem;
  color: #f5f2f0;
  background: #8f2638;
  border: 1px solid #b34559;
  border-radius: 0.35rem;
  cursor: pointer;
  font: 650 0.64rem/1 var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mv-returns-admin__filters {
  display: flex;
  gap: 0.55rem;
  margin: 1.15rem 0;
  overflow-x: auto;
}

.mv-returns-admin__filters button {
  flex: 0 0 auto;
  min-height: 2.45rem;
  padding: 0.68rem 0.85rem;
  color: #a89da0;
  background: #131011;
  border: 1px solid #362b2e;
  border-radius: 999px;
  cursor: pointer;
  font: 650 0.61rem/1 var(--font-display);
}

.mv-returns-admin__filters button.is-active {
  color: #f5f2f0;
  background: #8f2638;
  border-color: #c75a6e;
}

.mv-returns-admin__filters span {
  margin-left: 0.25rem;
  opacity: 0.75;
}

.mv-returns-admin__list {
  display: grid;
  gap: 0.85rem;
}

.mv-returns-admin__empty {
  min-height: 10rem;
  margin: 0;
  padding: 2rem;
  color: #8f8386;
  background: #110e0f;
  border: 1px dashed #392d30;
  font-size: 0.75rem;
}

.mv-return-card {
  padding: clamp(1rem, 3vw, 1.4rem);
  background: #121011;
  border: 1px solid #493238;
}

.mv-return-card.is-refunded {
  border-color: #315d46;
}

.mv-return-card.is-rejected {
  border-color: #3b3436;
  opacity: 0.8;
}

.mv-return-card > header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.mv-return-card > header strong,
.mv-return-card > header span {
  display: block;
}

.mv-return-card > header strong {
  color: #f5f2f0;
  font: 650 0.85rem/1.3 var(--font-display);
}

.mv-return-card > header div > span {
  margin-top: 0.28rem;
  color: #897d80;
  font-size: 0.61rem;
}

.mv-return-card__badge {
  flex: 0 0 auto;
  padding: 0.45rem 0.6rem;
  color: #e1d5d8;
  background: #1c1517;
  border: 1px solid #49363b;
  border-radius: 999px;
  font: 650 0.54rem/1 var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mv-return-card__facts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 0.8rem;
  color: #a99da0;
  background: #0b090a;
  border: 1px solid #302629;
  font-size: 0.64rem;
  line-height: 1.45;
}

.mv-return-card__facts strong {
  color: #f0e8ea;
  font: 700 0.75rem/1 var(--font-display);
  white-space: nowrap;
}

.mv-return-card__reason {
  margin: 1rem 0 0;
  color: #e3dade;
  font-size: 0.75rem;
  line-height: 1.65;
}

.mv-return-card__payment {
  display: block;
  margin-top: 0.8rem;
  color: #bdaeb2;
  overflow-wrap: anywhere;
  font-size: 0.61rem;
}

.mv-return-card__editor {
  margin-top: 0.25rem;
}

.mv-return-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #302629;
}

.mv-return-card__actions button {
  min-height: 2.55rem;
  padding: 0.7rem 0.85rem;
  color: #d9d0d2;
  background: #1a1517;
  border: 1px solid #423438;
  border-radius: 0.35rem;
  cursor: pointer;
  font: 650 0.59rem/1 var(--font-display);
}

.mv-return-card__actions button.is-primary {
  color: #f5f2f0;
  background: #8f2638;
  border-color: #b5465b;
}

.mv-return-card__actions button.is-danger {
  margin-left: auto;
  color: #c99ca5;
  background: transparent;
}

.mv-return-create :is(input, select, textarea):focus-visible,
.mv-return-card__editor :is(input, select, textarea):focus-visible,
.mv-return-create button:focus-visible,
.mv-returns-admin__close:focus-visible,
.mv-returns-admin__filters button:focus-visible,
.mv-return-card__actions button:focus-visible {
  outline: 2px solid #d45d73;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .mv-returns-admin__drawer {
    width: 100%;
    padding: 1rem;
  }

  .mv-returns-admin__backdrop {
    display: none;
  }

  .mv-return-create form,
  .mv-return-card__editor,
  .mv-return-card__facts {
    grid-template-columns: 1fr;
  }

  .mv-return-create .is-wide,
  .mv-return-card__editor .is-wide {
    grid-column: auto;
  }

  .mv-return-card > header {
    align-items: stretch;
    flex-direction: column;
  }

  .mv-return-card__badge {
    align-self: start;
  }

  .mv-return-card__actions button {
    flex: 1 1 100%;
  }

  .mv-return-card__actions button.is-danger {
    margin-left: 0;
  }
}

.mv-mobile-drawer-enhanced {
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #5d2732 #100d0e;
}

.mv-mobile-nav-enhanced > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem !important;
}

.mv-mobile-nav-enhanced > a,
.mv-mobile-nav-enhanced > button {
  min-height: 2.75rem;
}

.mv-mobile-quicklinks {
  padding-top: 0.85rem;
  border-top: 1px solid #2a2224;
}

.mv-mobile-quicklinks__label {
  margin: 0 0 0.65rem;
  color: #817477;
  font: 650 0.56rem/1.2 var(--font-display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mv-mobile-quicklinks__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.mv-mobile-quicklink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.75rem;
  padding: 0.65rem 0.7rem;
  color: #d8d0d2;
  background: #151112;
  border: 1px solid #2f2528;
  border-radius: 0.35rem;
  font: 600 0.62rem/1.25 var(--font-display);
  text-decoration: none;
  transition:
    color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-mobile-quicklink::after {
  content: "›";
  flex: 0 0 auto;
  margin-left: 0.45rem;
  color: #c75a6e;
  font-size: 1rem;
  line-height: 1;
}

.mv-mobile-quicklink:hover,
.mv-mobile-quicklink:focus-visible {
  color: #f5f2f0;
  background: #1a1416;
  border-color: #79404b;
}

.mv-mobile-quicklink:focus-visible {
  outline: 2px solid #c75a6e;
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .mv-mobile-quicklinks {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-mobile-quicklink {
    transition: none;
  }
}

.mv-order-email {
  margin: 0.9rem 0 0;
  padding-top: 0.9rem;
  color: #92878a;
  border-top: 1px solid #2a2224;
  font-size: 0.72rem;
  line-height: 1.5;
}

.mv-order-email a {
  color: #d46b7e;
  overflow-wrap: anywhere;
}

.mv-payment-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 11px 13px;
  border: 1px solid rgba(168, 39, 67, .28);
  border-radius: 8px;
  background: rgba(168, 39, 67, .08);
  color: #d7cbd0;
  font-size: .72rem;
}

.mv-payment-status[data-status="succeeded"] {
  border-color: rgba(66, 190, 137, .35);
  background: rgba(66, 190, 137, .08);
  color: #72e0ae;
}

.mv-payment-status[data-status="canceled"] {
  color: #ef8ba2;
}

.mv-payment-status code {
  max-width: 180px;
  overflow: hidden;
  color: #81777b;
  font-size: .62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Mobile storefront and delivery polish — scoped so checkout dialogs do not
   inherit the homepage's first-section spacing. */
.mv-cdek-dialog__hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mv-cdek-dialog__status {
  min-width: 0;
}

.mv-cdek-dialog__status.is-ready {
  color: #b9adaf;
}

.mv-cdek-dialog__status.is-slow,
.mv-cdek-dialog__status.is-error {
  color: #d7a0aa;
}

.mv-cdek-region-toggle {
  min-height: 2.75rem;
  flex: 0 0 auto;
  padding: 0.6rem 0.75rem;
  color: #d9cdd0;
  background: #191416;
  border: 1px solid #49363b;
  border-radius: 0.45rem;
  cursor: pointer;
  font: 650 0.62rem/1.15 var(--font-display);
  letter-spacing: 0.04em;
}

.mv-cdek-region-toggle:hover {
  color: #fff;
  border-color: #8f4b58;
}

.mv-cdek-region-toggle:disabled {
  cursor: wait;
  opacity: 0.62;
}

.mv-cdek-region-toggle.is-loaded {
  color: #9ccdad;
  border-color: #396b4b;
  cursor: default;
  opacity: 1;
}

.mv-cdek-error__actions {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.3rem;
}

.mv-cdek-error__actions button {
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  color: #f5f2f0;
  background: #8f2638;
  border: 1px solid #b5465b;
  border-radius: 0.45rem;
  cursor: pointer;
  font: 650 0.59rem/1.2 var(--font-display);
}

.mv-cdek-error__actions button:last-child {
  color: #cfc4c7;
  background: #191416;
  border-color: #49363b;
}

@media (max-width: 767px) {
  #root > div > header:has(> div > nav) > div {
    height: 4rem !important;
    min-height: 4rem !important;
    padding-inline: 0.875rem !important;
  }

  #root > div > header:has(> div > nav) img[alt="MÚVEN BRND Logo"] {
    height: 2.35rem !important;
  }

  #root > div > header:has(> div > nav) > div > div:last-child {
    gap: 0.5rem !important;
  }

  #root > div > header:has(> div > nav) > div > div:last-child > button {
    width: 2.75rem !important;
    height: 2.75rem !important;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.6rem !important;
    border-radius: 0.55rem !important;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"]) {
    min-height: 0 !important;
    padding: 5rem 0.875rem 2rem !important;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"]) > div {
    gap: 1.25rem !important;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"]) > div > div:first-child > * + * {
    margin-top: 1rem !important;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"]) > div > div:first-child > div:first-child > div {
    gap: 0.4rem !important;
    padding: 0.45rem 0.7rem !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.15em !important;
    box-shadow: none !important;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"]) > div > div:first-child > div:nth-child(2) > * + * {
    margin-top: 0.55rem !important;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"]) img[alt="MÚVEN BRND - YAKUT CULTURE"] {
    width: min(100%, 20rem) !important;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"]) .font-serif-accent {
    padding-top: 0 !important;
    font-size: clamp(1.55rem, 7.5vw, 1.95rem) !important;
    line-height: 1 !important;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"]) p {
    display: -webkit-box;
    max-width: 36rem;
    overflow: hidden;
    color: var(--text-secondary) !important;
    font-size: 0.78rem !important;
    line-height: 1.55 !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"]) > div > div:first-child > div:last-child {
    display: grid !important;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 0.5rem !important;
    padding-top: 0.15rem !important;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"]) > div > div:first-child > div:last-child > * {
    width: 100% !important;
    min-height: 2.75rem;
    padding: 0.7rem 0.5rem !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.08em !important;
    line-height: 1.25;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"]) > div > div:last-child {
    padding-top: 0 !important;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"]) > div > div:last-child > div {
    width: 100%;
    max-width: none !important;
    height: clamp(17rem, 82vw, 20rem);
    padding: 0.35rem !important;
    border-radius: 0.65rem !important;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"]) img[alt="MÚVEN «ARA:S TANAS»"] {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 50% 38%;
    border-radius: 0.45rem !important;
  }

  #mv-cdek-overlay {
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 0;
    padding: 0;
    place-items: stretch;
    overflow: hidden;
    background: #090808;
    overscroll-behavior: contain;
  }

  #mv-cdek-overlay > .mv-cdek-dialog {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 0 !important;
    max-height: none;
    padding: 0 !important;
    grid-template-rows: auto auto minmax(0, 1fr);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .mv-cdek-dialog__header {
    min-height: 0 !important;
    padding: 0.75rem 0.875rem 0.55rem !important;
  }

  .mv-cdek-dialog__header > div {
    min-height: 0 !important;
  }

  .mv-cdek-eyebrow {
    margin-bottom: 0.2rem;
    font-size: 0.54rem;
    letter-spacing: 0.13em;
  }

  .mv-cdek-dialog__header h2 {
    max-width: 18rem;
    font-size: 1rem;
    line-height: 1.12;
  }

  .mv-cdek-dialog__close {
    width: 2.75rem;
    height: 2.75rem;
  }

  .mv-cdek-dialog__hint {
    gap: 0.65rem;
    min-height: 0;
    padding: 0 0.875rem 0.65rem;
    font-size: 0.62rem;
    line-height: 1.4;
  }

  .mv-cdek-map,
  .mv-cdek-map > :first-child {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .mv-cdek-confirm {
    position: absolute;
    right: 0.6rem;
    bottom: max(0.6rem, env(safe-area-inset-bottom));
    left: 0.6rem;
    z-index: 50;
    align-items: stretch;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.75rem;
    border: 1px solid #49363b;
    border-radius: 0.65rem;
    box-shadow: 0 1.1rem 3rem rgba(0, 0, 0, 0.42);
    animation: mv-cdek-confirm-in 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .mv-cdek-confirm button {
    width: 100%;
    min-height: 2.75rem;
  }
}

@media (max-width: 350px) {
  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"]) > div > div:first-child > div:last-child {
    grid-template-columns: 1fr;
  }

  .mv-cdek-dialog__hint {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .mv-cdek-region-toggle {
    min-height: 2.75rem;
  }
}

@keyframes mv-cdek-confirm-in {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-cdek-confirm {
    animation: none;
  }
}

/* M7 storefront update: regional filter and persistent custom-print entry. */
.mv-catalog-filter {
  min-height: 2.75rem;
  padding: 0.62rem 1rem;
  color: #b9adaf;
  background: transparent;
  border: 1px solid #3a2a2e;
  border-radius: 0.28rem;
  cursor: pointer;
  font: 650 0.68rem/1.2 var(--font-display, "Space Grotesk", sans-serif);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.mv-catalog-filter:hover,
.mv-catalog-filter:focus-visible {
  color: #fff;
  border-color: #8f4b58;
  outline: none;
}

.mv-catalog-filter.is-active {
  color: #fff;
  background: #8f2638;
  border-color: #bd3550;
}

.mv-catalog-card--filtered-out {
  display: none !important;
}

.mv-custom-print-float {
  position: fixed;
  right: 1.25rem;
  bottom: max(1.25rem, calc(env(safe-area-inset-bottom) + 0.75rem));
  z-index: 38;
  width: 10.75rem;
  min-height: 4.25rem;
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.55rem;
  align-content: center;
  padding: 0.72rem 0.85rem;
  color: #f5f2f0;
  background: rgba(15, 12, 13, 0.94);
  border: 1px solid #71313d;
  border-radius: 0.42rem;
  box-shadow: 0 1rem 2.8rem rgba(0, 0, 0, 0.42);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  text-decoration: none;
  transform: translateZ(0);
  transition: transform 200ms ease, border-color 200ms ease, opacity 160ms ease;
}

.mv-custom-print-float > span {
  grid-row: 1 / 3;
  align-self: center;
  color: #d84b66;
  font-size: 1rem;
  text-align: center;
}

.mv-custom-print-float strong {
  align-self: end;
  font: 700 0.78rem/1.1 var(--font-display, "Space Grotesk", sans-serif);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mv-custom-print-float small {
  align-self: start;
  margin-top: 0.18rem;
  color: #9e8f92;
  font: 550 0.58rem/1.15 var(--font-display, "Space Grotesk", sans-serif);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mv-custom-print-float:hover,
.mv-custom-print-float:focus-visible {
  border-color: #c75a6e;
  outline: none;
  transform: translateY(-0.18rem) translateZ(0);
}

.mv-custom-print-float.is-hidden,
body.mv-cdek-open .mv-custom-print-float {
  pointer-events: none;
  opacity: 0;
  transform: translateY(0.65rem) translateZ(0);
}

@media (max-width: 767px) {
  .mv-catalog-filter {
    min-height: 2.75rem;
    padding-inline: 0.82rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .mv-custom-print-float {
    right: 0.72rem;
    bottom: max(0.72rem, calc(env(safe-area-inset-bottom) + 0.45rem));
    width: 8.75rem;
    min-height: 3.75rem;
    grid-template-columns: 1.1rem minmax(0, 1fr);
    column-gap: 0.42rem;
    padding: 0.62rem 0.68rem;
  }

  .mv-custom-print-float strong {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .mv-custom-print-float small {
    font-size: 0.55rem;
    letter-spacing: 0.11em;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"])
    img[alt="MÚVEN «ARA:S TANAS»"] {
    display: block !important;
    border-bottom-right-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"])
    img[alt="MÚVEN «ARA:S TANAS»"] ~ * {
    display: none !important;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"])
    > div > div:last-child > div > div:nth-child(3),
  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"])
    > div > div:last-child > div > div:nth-child(4) {
    display: none !important;
  }

  #root > div > section:first-of-type:has(img[alt="MÚVEN BRND - YAKUT CULTURE"])
    > div > div:last-child > div {
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-catalog-filter,
  .mv-custom-print-float {
    transition: none;
  }
}

/* Artist feature: editorial social proof with real MÚVEN photography. */
#chosen-by {
  scroll-margin-top: 5.5rem;
}

.mv-chosen {
  position: relative;
  z-index: 1;
  width: min(100%, 80rem);
  margin-inline: auto;
  padding: clamp(5.5rem, 9vw, 8.5rem) clamp(1rem, 4vw, 1.5rem);
  overflow: hidden;
  color: var(--text-primary, #f5f2f0);
  background: #0b090a;
  border-top: 1px solid var(--border-color, #2a2325);
  border-bottom: 1px solid var(--border-color, #2a2325);
  font-family: var(--font-body, "Montserrat", sans-serif);
}

.mv-chosen::before {
  content: "";
  position: absolute;
  top: clamp(5.5rem, 9vw, 8.5rem);
  bottom: clamp(5.5rem, 9vw, 8.5rem);
  left: clamp(1rem, 4vw, 1.5rem);
  width: 1px;
  background: #8f2638;
  opacity: 0.8;
}

.mv-chosen__inner {
  display: grid;
  grid-template-columns: minmax(15rem, 0.68fr) minmax(0, 1.42fr);
  gap: clamp(2.75rem, 7vw, 6.5rem);
  align-items: center;
  padding-left: clamp(1.4rem, 3vw, 2.75rem);
}

.mv-chosen__intro {
  align-self: center;
}

.mv-chosen__eyebrow {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--accent-light, #d1586f);
  font: 650 0.64rem/1.3 var(--font-display, "Space Grotesk", sans-serif);
  letter-spacing: 0.22em;
}

.mv-chosen h2 {
  max-width: 7.2ch;
  margin: 0;
  color: var(--accent-light, #d1586f);
  font: 700 clamp(3.1rem, 4.5vw, 4.2rem)/0.84 var(--font-display, "Space Grotesk", sans-serif);
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.mv-chosen h2 span {
  display: block;
  color: var(--text-primary, #f5f2f0);
}

.mv-chosen__intro > p {
  max-width: 27rem;
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  color: var(--text-secondary, #b9adaf);
  font-size: 0.78rem;
  line-height: 1.75;
}

.mv-chosen__mark {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  width: min(100%, 13rem);
  margin-top: clamp(2rem, 4vw, 3.75rem);
  padding-top: 1rem;
  border-top: 1px solid var(--border-color, #2a2325);
}

.mv-chosen__mark strong {
  color: var(--accent-light, #d1586f);
  font: 700 1.55rem/1 var(--font-display, "Space Grotesk", sans-serif);
  letter-spacing: -0.06em;
}

.mv-chosen__mark span {
  color: var(--text-muted, #8f8386);
  font: 600 0.56rem/1.45 var(--font-display, "Space Grotesk", sans-serif);
  letter-spacing: 0.14em;
}

.mv-chosen__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(0.7rem, 1.5vw, 1.2rem);
  align-items: start;
}

.mv-chosen__portrait {
  min-width: 0;
  margin: 0;
}

.mv-chosen__portrait--back {
  margin-top: clamp(3rem, 7vw, 6.75rem);
}

.mv-chosen__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #171315;
  border: 1px solid #3a2a2e;
}

.mv-chosen__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 0 solid transparent;
  box-shadow: inset 0 -5rem 5rem -4.5rem rgba(8, 7, 7, 0.72);
}

.mv-chosen__image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.mv-chosen__portrait--front img {
  object-position: 50% 38%;
}

.mv-chosen__portrait--back img {
  object-position: 50% 42%;
}

.mv-chosen__image-wrap > span {
  position: absolute;
  right: 0.75rem;
  bottom: 0.7rem;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  font: 650 0.52rem/1 var(--font-display, "Space Grotesk", sans-serif);
  letter-spacing: 0.14em;
}

.mv-chosen__portrait:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.015);
}

.mv-chosen figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border-color, #2a2325);
}

.mv-chosen figcaption span {
  color: var(--accent-light, #d1586f);
  font: 700 0.58rem/1 var(--font-display, "Space Grotesk", sans-serif);
  letter-spacing: 0.1em;
}

.mv-chosen figcaption strong {
  color: var(--text-secondary, #b9adaf);
  font: 600 0.58rem/1.2 var(--font-display, "Space Grotesk", sans-serif);
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .mv-chosen {
    padding: 4.75rem 1rem 5.25rem;
  }

  .mv-chosen::before {
    top: 4.75rem;
    bottom: 5.25rem;
    left: 1rem;
  }

  .mv-chosen__inner {
    grid-template-columns: 1fr;
    gap: 3.25rem;
    padding-left: 1.15rem;
  }

  .mv-chosen__eyebrow {
    margin-bottom: 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }

  .mv-chosen h2 {
    max-width: 7.4ch;
    font-size: clamp(3rem, 15vw, 4.2rem);
    line-height: 0.86;
  }

  .mv-chosen__intro > p {
    max-width: 31rem;
    margin-top: 1.65rem;
    font-size: 0.74rem;
    line-height: 1.7;
  }

  .mv-chosen__mark {
    margin-top: 1.75rem;
  }

  .mv-chosen__gallery {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.7rem;
  }

  .mv-chosen__portrait--front {
    width: min(100%, 23rem);
  }

  .mv-chosen__portrait--back {
    width: min(86%, 20rem);
    margin: 0 0 0 auto;
  }

  .mv-chosen__image-wrap > span {
    right: 0.65rem;
    bottom: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-chosen__image-wrap img {
    transition: none;
  }
}
