@view-transition {
  navigation: auto;
}
.product-page {
  background: #fff;
  --pdp-muted: #656b64;
}
.product-page main {
  overflow: clip;
}
.pdp-header {
  min-height: 100px;
  padding: 20px 4.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.pdp-header .brand-mt {
  font-size: 50px;
  letter-spacing: -6px;
}
.pdp-header nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
.pdp-header nav a {
  padding: 12px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pdp-header nav a:hover,
.pdp-inline-link:hover,
.pdp-finish a:hover {
  color: var(--accent);
}
.pdp-breadcrumb {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 26px 4.5%;
  color: var(--pdp-muted);
  font-size: 12px;
}
.pdp-breadcrumb [aria-current] {
  color: var(--ink);
}
.pdp-product {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 1fr);
  gap: clamp(32px, 5vw, 90px);
  padding: 0 4.5% 64px;
  max-width: 1800px;
  margin: auto;
}
.pdp-gallery {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(300px, 1fr) auto;
  background: #f6f7f4;
  padding: 26px;
  position: relative;
}
.pdp-gallery-top,
.pdp-gallery-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.09em;
  color: var(--pdp-muted);
}
.pdp-gallery-top > :first-child {
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
}
.pdp-gallery-top > :last-child {
  font-size: 12px;
  letter-spacing: 0.025em;
}
.pdp-image-stage {
  align-self: center;
  width: 100%;
  padding: 35px 0;
}
.pdp-main-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  mix-blend-mode: multiply;
  view-transition-name: bicycle;
  animation: pdp-bike-enter 1s var(--ease) both;
}
.pdp-zoom {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 12px;
  padding: 10px 0 10px 12px;
}
.pdp-zoom[hidden] {
  display: none;
}
.pdp-zoom svg {
  width: 22px;
}
.pdp-summary {
  align-self: center;
  padding: 20px 0 10px;
  animation: pdp-enter 0.7s var(--ease) both;
}
.pdp-eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.13em;
  font-weight: 500;
  color: var(--pdp-muted);
}
.pdp-eyebrow > span {
  margin: 0 9px;
  color: #afb3ad;
}
.pdp-summary h1 {
  font-size: clamp(40px, 4.7vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 750;
  margin: 15px 0 18px;
  view-transition-name: product-name;
  overflow-wrap: anywhere;
}
.pdp-summary h1 span {
  color: #7f847a;
  font-weight: 400;
}
.pdp-intro {
  color: var(--pdp-muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 480px;
}
.pdp-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 26px 0;
  margin: 0;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.pdp-highlights > div {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 6px;
}
.pdp-highlights dt {
  font-size: 12px;
  color: var(--pdp-muted);
}
.pdp-highlights dd {
  font-size: clamp(19px, 1.75vw, 28px);
  letter-spacing: -0.04em;
  margin: 0;
  font-weight: 500;
}
.pdp-finish {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--pdp-muted);
  padding: 20px 0 25px;
}
.pdp-swatch {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--swatch);
  outline: 1px solid #cbd0c6;
  outline-offset: 3px;
  margin: 0 3px;
}
.pdp-finish a {
  margin-left: auto;
  padding: 5px 0;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.pdp-enquiry {
  border-top: 1px solid var(--line);
  padding-top: 21px;
}
.pdp-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.pdp-price > span {
  font-size: 12px;
  color: var(--pdp-muted);
}
.pdp-price strong {
  font-size: 17px;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.pdp-button {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  color: #fff;
  background: #263d31;
  font-size: 14px;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.pdp-button svg {
  width: 28px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.pdp-button:hover {
  background: #172c20;
}
.pdp-button:hover svg {
  transform: translateX(4px);
}
.pdp-button:active {
  transform: translateY(1px);
}
.pdp-enquiry-note {
  font-size: 12px;
  text-align: center;
  color: var(--pdp-muted);
  margin-top: 12px;
  line-height: 1.5;
}
.pdp-local-proof {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  color: var(--pdp-muted);
  font-size: 12px;
}
.pdp-local-proof > span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pdp-local-proof > span:before {
  content: "✓";
  color: #365641;
}
.pdp-section-nav {
  display: flex;
  gap: 38px;
  padding: 0 4.5%;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 5;
}
.pdp-section-nav a {
  font-size: 14px;
  padding: 22px 0;
  position: relative;
}
.pdp-section-nav a:after {
  content: "";
  position: absolute;
  bottom: -1px;
  height: 2px;
  width: 100%;
  left: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.pdp-section-nav a:hover:after,
.pdp-section-nav a:focus-visible:after {
  transform: scaleX(1);
}
.pdp-section-nav > span {
  margin-left: auto;
  font-size: 12px;
  color: var(--pdp-muted);
}
.pdp-section {
  padding: 100px 7%;
  max-width: 1800px;
  margin: 0 auto;
}
.pdp-section h2,
.pdp-contact h2 {
  font-size: clamp(32px, 3.8vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.055em;
  font-weight: 500;
}
.pdp-section h2 {
  margin-top: 22px;
}
.pdp-story {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  column-gap: 10%;
  row-gap: 64px;
}
.pdp-story-intro {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: -0.015em;
  color: var(--pdp-muted);
  align-self: end;
  max-width: 550px;
}
.pdp-features {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
}
.pdp-feature {
  border-top: 1px solid #cdd1c8;
  padding-top: 20px;
}
.pdp-feature-number {
  color: var(--accent);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.pdp-feature h3 {
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin-top: 28px;
}
.pdp-feature p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--pdp-muted);
  margin-top: 14px;
}
.pdp-details {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12%;
  background: #f6f7f4;
}
.pdp-detail-intro {
  max-width: 340px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--pdp-muted);
  margin: 26px 0;
}
.pdp-inline-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 0;
  border-bottom: 1px solid #bfc5bc;
}
.pdp-inline-link svg {
  width: 26px;
  flex-shrink: 0;
}
.pdp-specification dl {
  margin: 0;
}
.pdp-specification dl > div {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 25px;
  padding: 19px 0;
  border-bottom: 1px solid #dce0d6;
  font-size: 14px;
  line-height: 1.6;
}
.pdp-specification dt {
  color: var(--pdp-muted);
}
.pdp-specification dd {
  margin: 0;
}
.pdp-specification > p {
  font-size: 12px;
  color: var(--pdp-muted);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 550px;
}
.pdp-faq {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12%;
}
.pdp-questions details {
  border-bottom: 1px solid var(--line);
}
.pdp-questions summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
  line-height: 1.5;
  padding: 25px 0;
}
.pdp-questions summary::-webkit-details-marker {
  display: none;
}
.pdp-questions summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.pdp-questions summary > span {
  font-size: 26px;
  font-weight: 300;
  color: var(--pdp-muted);
  transition: transform 0.2s;
}
.pdp-questions details[open] summary > span {
  transform: rotate(45deg);
}
.pdp-questions details p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--pdp-muted);
  padding: 0 28px 26px 0;
}
.pdp-questions details[open] p {
  animation: pdp-enter 0.3s var(--ease);
}
.pdp-questions p a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.pdp-contact {
  background: #263d31;
  color: #fff;
  margin: 0 4.5%;
  padding: 75px 32px;
  text-align: center;
}
.pdp-contact .pdp-eyebrow {
  color: #c3cec4;
}
.pdp-contact h2 {
  margin: 22px 0;
}
.pdp-contact > p:not(.pdp-eyebrow) {
  color: #d0d8d0;
  font-size: 16px;
  line-height: 1.7;
}
.pdp-button-light {
  background: #fff;
  color: var(--ink);
  max-width: 340px;
  margin: 32px auto 0;
}
.pdp-button-light:hover {
  background: #edf0e9;
}
.pdp-related-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 40px;
}
.pdp-related-heading h2 {
  font-size: clamp(30px, 3vw, 46px);
  margin-top: 12px;
}
.pdp-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.pdp-related-image {
  background: #f6f7f4;
  padding: 35px 28px;
  overflow: hidden;
}
.pdp-related-image img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  transition: transform 0.65s var(--ease);
}
.pdp-related-item:hover img {
  transform: scale(1.04);
}
.pdp-related-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
}
.pdp-related-caption h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin: 10px 0;
}
.pdp-related-caption > div > p:last-child {
  font-size: 14px;
  color: var(--pdp-muted);
  line-height: 1.6;
}
.pdp-related-arrow {
  align-self: center;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 0.2s;
}
.pdp-related-arrow svg {
  width: 24px;
}
.pdp-related-item:hover .pdp-related-arrow {
  border-color: var(--ink);
}
.product-page .stores {
  border-top: 1px solid var(--line);
  margin-top: 0;
}
.pdp-dock {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, calc(100% + 30px));
  opacity: 0;
  visibility: hidden;
  width: min(720px, calc(100% - 40px));
  padding: 12px 12px 12px 20px;
  background: #fff;
  border: 1px solid #dbe0d5;
  box-shadow: 0 10px 50px #18281b18;
  z-index: 8;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  transition:
    transform 0.35s var(--ease),
    opacity 0.35s,
    visibility 0.35s;
}
.pdp-dock.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}
.pdp-dock > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.pdp-dock img {
  object-fit: contain;
  mix-blend-mode: multiply;
}
.pdp-dock > div > span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pdp-dock strong {
  font-size: 14px;
  font-weight: 500;
}
.pdp-dock > div > span > span {
  font-size: 12px;
  color: var(--pdp-muted);
}
.pdp-dock .pdp-button {
  flex-shrink: 0;
  min-height: 48px;
}
.pdp-dialog {
  border: 0;
  color: var(--ink);
  padding: 0;
  max-height: calc(100svh - 32px);
  overscroll-behavior: contain;
}
.pdp-dialog::backdrop {
  background: #10201688;
  backdrop-filter: blur(7px);
}
.pdp-dialog[open] {
  animation: pdp-enter 0.3s var(--ease);
}
.pdp-contact-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 46px;
}
.pdp-dialog h2 {
  font-size: clamp(30px, 3.5vw, 45px);
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin: 20px 0;
}
.pdp-contact-dialog > p:not(.pdp-eyebrow) {
  font-size: 16px;
  line-height: 1.7;
  color: var(--pdp-muted);
}
.pdp-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 30px;
  line-height: 1;
  z-index: 1;
}
.pdp-branch-choice {
  border: 0;
  padding: 0;
  margin: 28px 0 24px;
  display: grid;
  gap: 10px;
}
.pdp-branch-choice legend {
  font-size: 12px;
  color: var(--pdp-muted);
  margin-bottom: 12px;
}
.pdp-branch-choice label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid #dce0d6;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.pdp-branch-choice label:has(:checked) {
  border-color: #52694f;
  background: #f4f6f1;
}
.pdp-branch-choice input {
  accent-color: #263d31;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.pdp-branch-choice span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pdp-branch-choice strong {
  font-size: 14px;
  font-weight: 500;
}
.pdp-branch-choice small {
  font-size: 12px;
  color: var(--pdp-muted);
}
.pdp-email-link {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 23px 0 10px;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.pdp-contact-dialog > .pdp-dialog-note {
  text-align: center;
  font-size: 12px !important;
  margin-top: 10px;
}
.pdp-image-dialog {
  width: min(1300px, calc(100% - 32px));
  padding: 48px 32px 24px;
}
.pdp-image-dialog img {
  width: 100%;
  height: auto;
  max-height: calc(100svh - 180px);
  object-fit: contain;
  display: block;
}
.pdp-image-dialog > p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: var(--pdp-muted);
  padding-top: 20px;
}
.pdp-dialog-open {
  overflow: hidden;
}
[data-reveal] {
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.pdp-await-reveal {
  opacity: 0;
  transform: translateY(22px);
}
@keyframes pdp-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pdp-bike-enter {
  from {
    opacity: 0;
    transform: translateX(-20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@media (min-width: 1800px) {
  .pdp-breadcrumb {
    max-width: 1800px;
    margin: auto;
  }
}
@media (max-width: 1000px) {
  .pdp-product {
    gap: 32px;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 1fr);
    padding-left: 3%;
    padding-right: 3%;
  }
  .pdp-gallery {
    padding: 20px;
  }
  .pdp-gallery-top > :last-child {
    display: none;
  }
  .pdp-summary h1 {
    font-size: 44px;
  }
  .pdp-section {
    padding: 75px 5%;
  }
  .pdp-story,
  .pdp-details,
  .pdp-faq {
    column-gap: 7%;
  }
  .pdp-features {
    gap: 28px;
  }
  .pdp-related-image img {
    height: 210px;
  }
}
@media (max-width: 740px) {
  .pdp-header {
    padding: 18px 22px;
    min-height: 86px;
  }
  .pdp-header .brand-mt {
    font-size: 43px;
    letter-spacing: -5px;
  }
  .pdp-header .brand {
    gap: 10px;
  }
  .pdp-header .brand-name {
    font-size: 9px;
  }
  .pdp-header nav {
    gap: 22px;
    font-size: 14px;
  }
  .pdp-header nav .pdp-workshop-link {
    display: none;
  }
  .pdp-breadcrumb {
    padding: 20px 22px;
    gap: 10px;
  }
  .pdp-product {
    display: flex;
    flex-direction: column;
    padding: 0 0 40px;
    gap: 0;
  }
  .pdp-gallery {
    margin: 0 12px;
    padding: 20px;
    grid-template-rows: auto minmax(210px, 1fr) auto;
  }
  .pdp-gallery-top > :last-child {
    display: block;
  }
  .pdp-image-stage {
    padding: 24px 0;
  }
  .pdp-main-image {
    max-height: 360px;
  }
  .pdp-gallery-bottom > span {
    font-size: 12px;
  }
  .pdp-summary {
    padding: 32px 24px 0;
    align-self: auto;
  }
  .pdp-summary h1 {
    font-size: clamp(40px, 10vw, 58px);
    margin: 12px 0 16px;
  }
  .pdp-intro {
    max-width: none;
  }
  .pdp-highlights {
    padding: 24px 0;
    gap: 12px;
  }
  .pdp-highlights dd {
    font-size: 24px;
  }
  .pdp-finish {
    padding: 20px 0;
  }
  .pdp-local-proof {
    padding-top: 24px;
  }
  .pdp-section-nav {
    gap: 28px;
    padding: 0 24px;
  }
  .pdp-section-nav a {
    padding: 20px 0;
  }
  .pdp-section-nav > span {
    display: none;
  }
  .pdp-section {
    padding: 64px 24px;
  }
  .pdp-section h2 {
    font-size: 38px;
  }
  .pdp-story,
  .pdp-details,
  .pdp-faq {
    display: block;
  }
  .pdp-story-intro {
    font-size: 18px;
    margin-top: 28px;
  }
  .pdp-features {
    display: block;
    margin-top: 38px;
  }
  .pdp-feature {
    padding: 22px 0;
    position: relative;
  }
  .pdp-feature h3 {
    padding-left: 36px;
    margin-top: 0;
  }
  .pdp-feature-number {
    position: absolute;
    top: 28px;
    left: 0;
  }
  .pdp-feature p {
    padding-left: 36px;
    margin-top: 10px;
  }
  .pdp-feature:last-child {
    padding-bottom: 0;
  }
  .pdp-details {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .pdp-detail-intro {
    max-width: none;
  }
  .pdp-specification {
    margin-top: 36px;
  }
  .pdp-specification dl > div {
    gap: 18px;
    padding: 16px 0;
  }
  .pdp-questions {
    margin-top: 25px;
  }
  .pdp-questions details p {
    padding-right: 0;
  }
  .pdp-contact {
    margin: 0 12px;
    padding: 54px 24px;
  }
  .pdp-contact h2 {
    font-size: clamp(30px, 8vw, 42px);
  }
  .pdp-related-heading {
    display: block;
    margin-bottom: 28px;
  }
  .pdp-related-heading h2 {
    font-size: 32px;
  }
  .pdp-related-heading > a {
    margin-top: 18px;
  }
  .pdp-related-grid {
    gap: 32px;
    grid-template-columns: 1fr;
  }
  .pdp-related-image {
    padding: 26px;
  }
  .pdp-related-image img {
    height: 230px;
  }
  .pdp-related-caption {
    padding-top: 20px;
  }
  .pdp-dock {
    bottom: 0;
    width: 100%;
    padding: 12px 16px max(12px, env(safe-area-inset-bottom));
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    gap: 16px;
  }
  .pdp-dock img {
    display: none;
  }
  .pdp-dock > div > span > span {
    display: none;
  }
  .pdp-dock .pdp-button {
    padding: 14px 16px;
    gap: 12px;
  }
  .pdp-dock .pdp-button svg {
    width: 20px;
  }
  .pdp-contact-dialog {
    padding: 46px 24px 28px;
  }
  .pdp-image-dialog {
    padding: 52px 16px 20px;
  }
  .pdp-image-dialog > p {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 360px) {
  .pdp-header {
    padding-left: 16px;
    padding-right: 16px;
  }
  .pdp-header .brand-name {
    display: none;
  }
  .pdp-summary {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pdp-finish {
    column-gap: 9px;
    row-gap: 12px;
  }
  .pdp-finish a {
    margin-left: 0;
    width: 100%;
  }
  .pdp-price {
    flex-wrap: wrap;
    gap: 7px;
  }
  .pdp-highlights dd {
    font-size: 21px;
  }
  .pdp-dock {
    padding-left: 12px;
    padding-right: 12px;
    gap: 10px;
  }
  .pdp-dock .pdp-button {
    font-size: 14px;
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pdp-main-image,
  .pdp-summary,
  .pdp-dialog[open],
  .pdp-questions details[open] p {
    animation: none;
  }
  [data-reveal],
  .pdp-dock,
  .pdp-button,
  .pdp-button svg,
  .pdp-related-image img {
    transition: none;
  }
  .pdp-await-reveal {
    opacity: 1;
    transform: none;
  }
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation: none;
  }
}

/* Reserve a separate touch target for chat beside the mobile enquiry action. */
@media (max-width: 740px) {
  body:has(#nemdesk-widget-host) .pdp-dock {
    padding-right: 132px;
  }
  body:has(#nemdesk-widget-host) .pdp-dock > div {
    display: none;
  }
  body:has(#nemdesk-widget-host) .pdp-dock .pdp-button {
    width: 100%;
    justify-content: center;
  }
}
