/* Keep support actions available without covering order content. */
body.service-page .customer-contact-dock {
  right: 16px;
  bottom: 16px;
  grid-template-columns: minmax(0, 170px) auto;
  width: auto;
  max-width: calc(100vw - 32px);
  min-height: 54px;
  gap: 10px;
  align-items: center;
  padding: 7px;
  border-color: rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 42px rgba(17, 24, 20, 0.15);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

body.service-page.has-cart-float .customer-contact-dock {
  bottom: 86px;
}

body.service-page .customer-contact-copy {
  min-width: 0;
  gap: 2px;
  padding-left: 8px;
}

body.service-page .customer-contact-copy span {
  display: none;
}

body.service-page .customer-contact-copy strong {
  overflow: hidden;
  font-size: 13px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.service-page .customer-contact-actions {
  display: flex;
  gap: 6px;
}

body.service-page .customer-contact-actions a {
  min-width: 70px;
  min-height: 38px;
  padding: 8px 11px;
  border-radius: 11px;
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  body.service-page .customer-contact-dock {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: minmax(0, 1fr);
    width: auto;
    max-width: none;
    min-height: 52px;
    padding: 7px;
    border-radius: 15px;
  }

  body.service-page.has-cart-float .customer-contact-dock {
    bottom: 82px;
  }

  body.service-page .customer-contact-copy {
    display: none;
  }

  body.service-page .customer-contact-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    gap: 6px;
  }

  body.service-page .customer-contact-actions a {
    min-width: 0;
    min-height: 38px;
    padding: 8px 6px;
    font-size: 11px;
  }
}
