.mpd-service-page {
  --mpd-service-panel-gap: 28px;
  --mpd-service-pink: var(--mpd-color-primary-light);
  --mpd-service-lightbox-offset: 96px;
  background: #eeeeee;
  color: #45464d;
  font-family: var(--mpd-font-family-base);
}

.mpd-service-hero,
.mpd-service-breadcrumb,
.mpd-service-commerce-grid,
.mpd-service-section {
  width: var(--mpd-wide);
  margin-inline: auto;
}

.mpd-service-hero {
  padding: 44px 0 24px;
  text-align: center;
}

.mpd-service-hero h1 {
  max-width: 1100px;
  margin: 0 auto;
  color: #4d4f56;
  font-size: 2.5rem;
  font-weight: 650;
  line-height: 1.15;
  text-transform: uppercase;
}

.mpd-service-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  justify-content: center;
  padding: 0 0 28px;
  color: #8c8e96;
  font-size: 1rem;
}

.mpd-service-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.mpd-service-breadcrumb a:hover,
.mpd-service-meta a {
  color: var(--mpd-service-pink);
}

.mpd-service-breadcrumb-home {
  display: inline-flex;
  align-items: center;
}

.mpd-service-breadcrumb-home svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.mpd-service-commerce-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  gap: 18px;
  align-items: start;
}

.mpd-service-gallery-column,
.mpd-service-sidebar {
  min-width: 0;
}

.mpd-service-gallery-column {
  position: relative;
  z-index: 2;
}

.mpd-service-sidebar {
  display: grid;
  gap: var(--mpd-service-panel-gap);
  align-self: start;
  max-height: none;
  z-index: 1;
  height: 100%;
}

.mpd-service-gallery {
  display: block;
  --mpd-service-thumb-rail-width: clamp(104px, 7vw, 156px);
  --mpd-service-thumb-rail-gap: 14px;
  --mpd-service-thumb-rail-pad: 10px;
  --mpd-service-gallery-viewport-offset: 156px;
  --mpd-service-gallery-max-height: calc(var(--mpd-vh) - var(--mpd-service-gallery-viewport-offset));
}

.mpd-service-gallery-main {
  display: grid;
  grid-template-columns: minmax(0, var(--mpd-service-gallery-frame-width, 1fr)) var(--mpd-service-thumb-rail-width);
  gap: var(--mpd-service-thumb-rail-gap);
  align-items: stretch;
  justify-content: center;
  max-width: 100%;
}

.mpd-service-gallery-viewer {
  position: relative;
  min-width: 0;
}

.mpd-service-gallery-viewer-track {
  --mpd-slider-x-gap: 0px;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 2px solid var(--mpd-service-pink);
  border-radius: var(--mpd-radius);
  background: var(--mpd-color-light-pure);
  min-height: 0;
  overflow: hidden;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  touch-action: pan-x;
}

.mpd-service-gallery-slide {
  position: relative;
  width: 100%;
  min-width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.mpd-service-gallery-slide img,
.mpd-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.mpd-gallery-zoom,
.mpd-gallery-nav {
  position: absolute;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: #4b4d55;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.mpd-gallery-zoom {
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(0.96);
}

.mpd-gallery-zoom svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.mpd-service-gallery-slide:hover .mpd-gallery-zoom,
.mpd-service-gallery-slide:focus-visible .mpd-gallery-zoom,
.mpd-gallery-zoom:focus-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mpd-gallery-zoom:hover,
.mpd-gallery-nav:hover,
.mpd-gallery-zoom:focus-visible,
.mpd-gallery-nav:focus-visible {
  background: var(--mpd-color-light-pure);
  outline: none;
  transform: translateY(-1px);
}

.mpd-gallery-nav {
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  color: var(--mpd-color-light-pure);
  background: rgba(79, 80, 86, 0.38);
  font-size: 2.4rem;
  transform: translateY(-50%);
}

.mpd-gallery-nav:hover,
.mpd-gallery-nav:focus-visible {
  transform: translateY(-50%);
}

.mpd-gallery-nav--prev {
  left: 12px;
}

.mpd-gallery-nav--next {
  right: 12px;
}

.mpd-gallery-nav:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.mpd-service-gallery-thumbs {
  display: block;
  align-self: stretch;
  min-width: 0;
  height: 100%;
  min-height: 0;
  overflow: visible;
}

.mpd-service-gallery-thumbs-track {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 5px;
    height: 100%;
    max-height: 100%;
    min-height: 0;
    box-sizing: border-box;
    overflow: visible;
}

.mpd-gallery-thumb {
  position: relative;
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 2px solid var(--mpd-service-pink);
  border-radius: var(--mpd-radius);
  background: var(--mpd-color-light-pure);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.72;
}

.mpd-gallery-thumb.is-active,
.mpd-gallery-thumb:hover,
.mpd-gallery-thumb:focus-visible {
  opacity: 1;
  outline: none;
}

.mpd-gallery-dots {
  display: none;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.mpd-gallery-dot,
.mpd-gallery-dots .mpd-slider-x-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--mpd-service-pink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.mpd-gallery-dot.is-active,
.mpd-gallery-dots .mpd-slider-x-dot.is-active,
.mpd-gallery-dots .mpd-slider-x-dot.active {
  background: var(--mpd-service-pink);
}

.mpd-service-lightbox[hidden] {
  display: none;
}

.mpd-service-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: calc(var(--mpd-service-lightbox-offset) / 2);
}

.mpd-service-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
}

.mpd-service-lightbox-surface {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: var(--mpd-shadow-null);
}

.mpd-service-lightbox-surface img {
  max-height: calc(var(--mpd-vh) - var(--mpd-service-lightbox-offset));
  max-width: calc(100vw - var(--mpd-service-lightbox-offset));
  border-radius: var(--mpd-radius);
  object-fit: contain;
}

.mpd-service-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  background: rgba(39, 39, 47, 0.72);
}

.mpd-service-specifications,
.mpd-service-colors-block,
.mpd-date-time-field {
  display: grid;
  gap: 12px;
}
#mpd-service-specifications-title, .mpd-service-colors-block{
  align-self: flex-end;
}

.mpd-service-request-panel h2 {
  margin: 0;
  color: #666871;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.mpd-service-panel-heading {
  margin: 0;
  color: #666871;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.mpd-spec-table {
  display: grid;
  gap: 0;
  font-size: 0.92rem;
}

.mpd-spec-table-head,
.mpd-spec-table-row {
  display: grid;
  grid-template-columns: minmax(128px, 1.08fr) minmax(58px, 0.42fr) minmax(92px, 0.72fr) minmax(92px, 0.72fr);
  gap: 14px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(79, 80, 86, 0.12);
}

.mpd-spec-table-head {
  color: #868892;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mpd-spec-table-row span {
  min-width: 0;
  color: #777983;
}

.mpd-spec-table-row span:first-child {
  color: #656871;
  font-weight: 600;
}

.mpd-spec-table-row span:not(:first-child) {
  font-style: italic;
}

.mpd-service-request-panel {
  --mpd-form-gap: 17px;
  padding-bottom: 2px;
}

.mpd-budget-field {
  gap: 10px;
}

.mpd-budget-field label {
  display: flex;
  gap: 4px;
  align-items: center;
  color: #777983;
  font-size: 0.9rem;
}

.mpd-budget-range {
  width: 100%;
  height: 16px;
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    var(--mpd-service-pink) 0%,
    var(--mpd-service-pink) var(--mpd-budget-percent, 23%),
    #dfe0e5 var(--mpd-budget-percent, 23%),
    #dfe0e5 100%
  );
  box-shadow: var(--mpd-shadow-null);
  cursor: pointer;
}

.mpd-budget-range:focus-visible {
  outline: 3px solid rgba(227, 0, 124, 0.16);
  outline-offset: 2px;
}

.mpd-budget-range::-webkit-slider-thumb {
  width: 28px;
  height: 28px;
  appearance: none;
  border: 0;
  border-radius: 50%;
  background: var(--mpd-service-pink);
  box-shadow: var(--mpd-shadow-sm);
}

.mpd-budget-range::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: var(--mpd-service-pink);
  box-shadow: var(--mpd-shadow-sm);
}

.mpd-budget-marks {
  display: flex;
  justify-content: space-between;
  color: #858792;
  font-size: 0.82rem;
}

.mpd-service-request-panel .mpd-form-control {
  --mpd-field-background: var(--mpd-color-light-pure);
  --mpd-field-border: 1px solid rgba(39, 39, 47, 0.09);
  box-shadow: var(--mpd-shadow-null);
}

.mpd-date-time-field {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
}

.mpd-date-time-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-width: 0;
}

.mpd-date-picker {
  position: relative;
  min-width: 0;
}

.mpd-date-trigger {
  width: 100%;
  color: #777983;
  text-align: left;
}

.mpd-time-picker select {
  width: 100%;
  color: #777983;
  appearance: auto;
}

.mpd-date-popover {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 8;
  width: min(308px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(79, 80, 86, 0.12);
  border-radius: 10px;
  background: var(--mpd-color-light-pure);
  box-shadow: var(--mpd-shadow-lg);
}

.mpd-date-popover[hidden] {
  display: none;
}

.mpd-date-calendar-head {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
}

.mpd-date-calendar-head strong {
  color: #55575f;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.mpd-date-calendar-head button {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #60636d;
  cursor: pointer;
}

.mpd-date-calendar-head button:hover,
.mpd-date-calendar-head button:focus-visible {
  background: rgba(227, 0, 124, 0.08);
  color: var(--mpd-service-pink);
  outline: none;
}

.mpd-date-weekdays,
.mpd-date-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
}

.mpd-date-weekdays {
  margin-top: 8px;
  color: #6c6f79;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.mpd-date-calendar-grid {
  margin-top: 6px;
}

.mpd-date-day {
  display: inline-grid;
  min-width: 0;
  height: 34px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: #666871;
  font-size: 0.86rem;
  cursor: pointer;
}

.mpd-date-day.is-outside {
  color: #c7c9d0;
}

.mpd-date-day.is-selected {
  border-color: #9fa2ad;
  color: #4f525c;
}

.mpd-date-day:hover,
.mpd-date-day:focus-visible {
  border-color: var(--mpd-service-pink);
  outline: none;
}

.mpd-date-day:disabled {
  color: #dddfe5;
  cursor: not-allowed;
}

.mpd-request-submit {
  width: 100%;
  min-height: 58px;
  gap: 0.5em;
  flex-wrap: wrap;
  font-weight: 500;
  line-height: 1.18;
  align-self: flex-end;
}

.mpd-request-submit-price {
  font-weight: 800;
}

.mpd-service-section {
  padding: 42px 0 0;
}

.mpd-service-meta {
  color: #55575f;
  font-size: 0.95rem;
}

.mpd-service-meta dl {
  display: grid;
  gap: 6px;
  margin: 0;
}

.mpd-service-meta dl > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.mpd-service-meta dt {
  font-weight: 500;
}

.mpd-service-meta dd {
  margin: 0;
}

.mpd-service-meta a {
  text-decoration: none;
}

.mpd-meta-separator {
  margin-right: 4px;
}

.mpd-related-services h2 {
  margin: 0 0 20px;
  color: #35363c;
  font-size: 1.65rem;
  font-weight: 400;
  text-align: center;
}

.mpd-related-services .mpd-service-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.mpd-related-services .mpd-service-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--mpd-radius);
  background: #d9d9df;
  box-shadow: var(--mpd-shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.mpd-related-services .mpd-service-card:hover,
.mpd-related-services .mpd-service-card:focus-within {
  box-shadow: var(--mpd-shadow-md);
  transform: scale(1.01);
}

.mpd-related-services .mpd-service-card:active {
  box-shadow: var(--mpd-shadow-null);
  transform: scale(0.99);
}

.mpd-related-services .mpd-service-card a {
  position: relative;
  display: block;
  min-height: 100%;
}

.mpd-related-services .mpd-service-card-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.mpd-related-services .mpd-service-card-body {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  padding: 34px 14px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
  color: var(--mpd-color-light-pure);
}

.mpd-related-services .mpd-service-card-title {
  color: inherit;
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.mpd-related-services .mpd-service-card-text {
  display: none;
}

.mpd-related-placeholder {
  padding: 18px;
  color: #6f7280;
  text-align: center;
}

.mpd-service-long-description {
  padding-bottom: 24px;
}

.mpd-service-copy {
  max-width: 1320px;
  color: #3f4149;
  font-size: 1.02rem;
  line-height: 1.8;
}

.mpd-service-copy > :first-child {
  margin-top: 0;
}

.mpd-service-copy > :last-child {
  margin-bottom: 0;
}

.mpd-service-copy h2,
.mpd-service-copy h3 {
  color: #3d3f46;
  font-weight: 650;
  line-height: 1.25;
  text-transform: uppercase;
}

.mpd-request-modal[hidden] {
  display: none;
}

.mpd-request-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
}

.mpd-request-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
}

.mpd-request-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: calc(var(--mpd-vh) - 36px);
  overflow: auto;
  padding: 28px;
  color: var(--mpd-color-light-ink);
}

.mpd-request-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.mpd-request-dialog-head {
  padding-right: 42px;
}

.mpd-request-dialog-head h2,
.mpd-request-success h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.mpd-request-dialog-head p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.mpd-request-event-fields {
  display: grid;
  gap: 14px;
}

.mpd-request-dialog .mpd-date-time-field {
  gap: 10px;
}

.mpd-request-dialog .mpd-service-panel-heading,
.mpd-request-dialog .mpd-form-field > span,
.mpd-request-dialog .mpd-form-field > label {
  color: rgba(255, 255, 255, 0.82);
}

.mpd-request-dialog .mpd-form-control {
  --mpd-field-background: var(--mpd-color-light-pure);
  --mpd-field-border: 1px solid rgba(255, 255, 255, 0.24);
}

.mpd-request-summary {
  padding: 16px;
  border-radius: var(--mpd-radius);
  background: var(--mpd-color-light-pure);
  color: var(--mpd-color-ink);
}

.mpd-request-summary dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.mpd-request-summary dl > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
}

.mpd-request-summary dt {
  color: var(--mpd-color-muted);
  font-weight: 700;
}

.mpd-request-summary dd {
  margin: 0;
}

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

.mpd-request-contact-grid label:first-child {
  grid-column: 1 / -1;
}

.mpd-request-contact-grid span {
  color: rgba(255, 255, 255, 0.82);
}

.mpd-request-error {
  margin: 0;
  color: #ff9cbe;
}

.mpd-request-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mpd-request-success {
  display: grid;
  gap: 16px;
}

.mpd-request-success[hidden] {
  display: none;
}

.mpd-request-modal.mpd-popup-open .mpd-request-dialog,
.mpd-service-lightbox.mpd-popup-open .mpd-service-lightbox-surface {
  animation: mpd-slide-in-top 0.4s ease forwards;
}

body.mpd-request-modal-open,
body.mpd-service-lightbox-open {
  overflow: hidden;
}

@media (min-width: 1080px) {
  .mpd-date-time-grid {
    grid-template-columns: minmax(0, 1fr) minmax(120px, 0.72fr);
  }
}

@media (min-width: 1080px) and (max-height: 780px) {
  .mpd-service-sidebar {
    max-height: var(--mpd-service-gallery-frame-height, none);
  }

  .mpd-service-request-panel {
    --mpd-form-gap: 12px;
  }

  .mpd-spec-table-head,
  .mpd-spec-table-row {
    padding: 7px 0;
  }
}

@media (max-width: 1320px) {
  .mpd-related-services .mpd-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1279px) {
  .mpd-service-hero {
    padding-top: 28px;
  }

  .mpd-service-gallery {
    --mpd-service-thumb-rail-width: clamp(124px, 12vw, 176px);
    --mpd-service-thumb-rail-gap: 12px;
    --mpd-service-gallery-viewport-offset: 144px;
  }

  .mpd-service-hero h1 {
    font-size: 2rem;
  }

  .mpd-service-commerce-grid {
    grid-template-columns: 1fr;
  }

  .mpd-service-sidebar {
    gap: 30px;
  }

  .mpd-related-services .mpd-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .mpd-service-gallery-main {
    grid-template-columns: minmax(0, var(--mpd-service-gallery-frame-width, 1fr)) var(--mpd-service-thumb-rail-width);
  }

  .mpd-service-gallery-viewer-track {
    height: var(--mpd-service-gallery-frame-height, auto);
    max-height: var(--mpd-service-gallery-max-height);
  }

  .mpd-service-gallery-thumbs {
    position: relative;
    display: block;
    height: var(--mpd-service-gallery-frame-height, 100%);
    max-height: var(--mpd-service-gallery-max-height);
    overflow: visible;
  }

  .mpd-service-gallery-thumbs-track {
    height: 100%;
    max-height: 100%;
  }

  .mpd-gallery-thumb {
    height: var(--mpd-service-gallery-thumb-height, auto);
    flex-basis: var(--mpd-service-gallery-thumb-height, auto);
  }
}

@media (min-width: 980px) and (max-height: 780px) {
  .mpd-service-gallery {
    --mpd-service-gallery-viewport-offset: 132px;
  }
}

@media (min-width: 760.01px) and (max-width: 979.98px) {
  .mpd-service-gallery-viewer-track {
    height: var(--mpd-service-gallery-frame-height, auto);
    max-height: var(--mpd-service-gallery-max-height);
  }
}

@media (max-width: 979.98px) {
  .mpd-service-gallery-main {
    grid-template-columns: 1fr;
    width: var(--mpd-service-gallery-frame-width, 100%);
    margin-inline: auto;
  }

  .mpd-service-gallery-thumbs {
    width: 100%;
    height: auto;
  }

  .mpd-service-gallery-thumbs-track {
    flex-direction: row;
    width: 100%;
    padding: var(--mpd-service-thumb-rail-pad);
  }

  .mpd-gallery-thumb {
    flex: 1 1 0;
    width: auto;
    height: auto;
    min-width: 0;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 760px) {
  .mpd-service-page {
    --mpd-service-lightbox-offset: 32px;
  }

  .mpd-service-hero {
    padding: 22px 0 20px;
  }

  .mpd-service-hero h1 {
    font-size: 1.35rem;
  }

  .mpd-service-breadcrumb {
    justify-content: flex-start;
    padding-bottom: 12px;
    font-size: 0.9rem;
  }

  .mpd-service-gallery-main {
    display: block;
  }

  .mpd-service-gallery-thumbs {
    display: none;
  }

  .mpd-service-gallery-viewer-track {
    aspect-ratio: 4 / 5.4;
    touch-action: pan-x pan-y;
  }

  .mpd-gallery-dots {
    display: flex;
  }

  .mpd-gallery-zoom {
    display: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px) scale(0.96);
  }

  .mpd-service-gallery-slide {
    cursor: grab;
  }

  .mpd-spec-table-head {
    display: none;
  }

  .mpd-spec-table-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    padding: 13px 0;
  }

  .mpd-spec-table-row span::before {
    content: attr(data-label) ": ";
    color: #8a8c94;
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 700;
  }

  .mpd-budget-marks {
    font-size: 0.76rem;
  }

  .mpd-service-section {
    padding-top: 34px;
  }

  .mpd-request-contact-grid,
  .mpd-request-summary dl > div {
    grid-template-columns: 1fr;
  }

  .mpd-request-contact-grid label:first-child {
    grid-column: auto;
  }

  .mpd-request-dialog {
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mpd-related-services .mpd-service-card {
    transition: none;
  }

  .mpd-related-services .mpd-service-card:hover,
  .mpd-related-services .mpd-service-card:focus-within,
  .mpd-related-services .mpd-service-card:active {
    transform: none;
  }
}
