body.menu-open {
  overflow: hidden;
}

.desktop-nav a[aria-current="page"] {
  color: var(--blue);
}

.hero-eyebrow {
  color: var(--yellow);
  margin-bottom: 18px;
}

.service--road-transport .page-hero-bg {
  object-position: center 30%;
}

.service--art-transport .page-hero-bg {
  object-position: center 48%;
}

.service--sea-transport .page-hero-bg,
.contact-inner-page .page-hero-bg {
  object-position: center 52%;
}

.home-hero-shade,
.reviews-overlay {
  background: linear-gradient(90deg, rgba(3, 19, 40, .96), rgba(6, 27, 56, .78) 58%, rgba(6, 27, 56, .48)),
    linear-gradient(180deg, rgba(3, 19, 40, .2), rgba(3, 19, 40, .72));
}

.review-slide {
  flex-basis: 33.333333%;
}

.review-track {
  transform: translate3d(0, 0, 0);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #66758a;
  margin-bottom: 28px;
  font-size: 12px;
}

.shop-toolbar p {
  margin: 0;
  color: var(--navy);
  font-weight: 750;
}

.product-order {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.product-order label {
  grid-column: 1 / -1;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-order input {
  width: 84px;
  min-height: 56px;
  border: 1px solid #d6dee6;
  background: #f5f7f9;
  padding: 0 16px;
  color: var(--navy);
  font: inherit;
}

.product-order .button {
  margin: 0;
}

.product-note {
  color: #758397;
  margin-top: 18px;
  font-size: 11px;
  line-height: 1.55;
}

.product-thumbs button {
  cursor: pointer;
  border: 1px solid #dde4ea;
  background: #fff;
  padding: 0;
}

.product-thumbs button.is-active {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue);
}

.consent-field {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 24px;
  color: #5d6c7e;
  font-size: 11px;
  line-height: 1.5;
}

.consent-field input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--blue);
}

.date-field,
.date-input {
  cursor: pointer;
}

.form-status {
  min-height: 21px;
  margin-top: 15px;
  font-size: 12px;
  line-height: 1.5;
}

.form-status-success {
  color: #13704b;
}

.form-status-error {
  color: #aa2731;
}

.not-found-stage {
  min-height: 500px;
}

.not-found-panel {
  max-width: 780px;
  text-align: center;
}

.not-found-panel h2 {
  margin-bottom: 16px;
}

.not-found-panel > div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-toast {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  color: #fff;
  background: var(--navy);
  border-left: 5px solid var(--yellow);
  padding: 17px 20px;
  box-shadow: 0 18px 60px rgba(3, 19, 40, .34);
  font-size: 12px;
  transform: translateY(18px);
  opacity: 0;
  transition: opacity .25s, transform .25s;
}

.site-toast.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .review-slide {
    flex-basis: 50%;
  }
}

@media (max-width: 680px) {
  .review-slide {
    flex-basis: 100%;
  }

  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .product-order {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .site-toast {
    right: 12px;
    bottom: 78px;
    left: 12px;
  }
}
