body.delivery-times-site {
  background: var(--paper);
}

.delivery-times-site .site-header {
  background: rgba(244, 247, 245, 0.92);
  box-shadow: 0 1px 0 rgba(11, 23, 26, 0.1);
  color: var(--ink);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.delivery-times-site .site-nav a[aria-current="page"] {
  color: var(--signal-deep);
}

.delivery-hero {
  position: relative;
  overflow: hidden;
  padding: 178px 0 82px;
  background: var(--carbon);
  color: var(--white);
}

.delivery-hero-visual {
  position: absolute;
  right: max(6vw, 48px);
  bottom: 58px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: min(38vw, 470px);
  height: 210px;
  padding: 0 18px 38px;
  border-top: 1px solid rgba(85, 246, 209, 0.24);
  border-bottom: 1px solid rgba(85, 246, 209, 0.24);
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 43px,
    rgba(85, 246, 209, 0.07) 43px,
    rgba(85, 246, 209, 0.07) 44px
  );
  opacity: .8;
}

.delivery-hero-visual::before {
  position: absolute;
  right: 18px;
  bottom: 38px;
  left: 18px;
  height: 1px;
  background: rgba(255, 255, 255, .28);
  content: "";
}

.delivery-hero-visual span {
  position: relative;
  z-index: 1;
  display: block;
  width: 14px;
  height: var(--bar-height);
  background: var(--signal);
  box-shadow: 0 0 18px rgba(85, 246, 209, .2);
}

.delivery-hero-visual span:nth-child(1) { --bar-height: 42px; }
.delivery-hero-visual span:nth-child(2) { --bar-height: 67px; }
.delivery-hero-visual span:nth-child(3) { --bar-height: 56px; }
.delivery-hero-visual span:nth-child(4) { --bar-height: 112px; }
.delivery-hero-visual span:nth-child(5) { --bar-height: 88px; }
.delivery-hero-visual span:nth-child(6) { --bar-height: 132px; }
.delivery-hero-visual span:nth-child(7) { --bar-height: 104px; }
}

.delivery-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.delivery-hero-copy {
  max-width: 690px;
}

.delivery-hero .eyebrow {
  color: var(--signal);
}

.delivery-hero h1 {
  max-width: 760px;
  margin: 15px 0 18px;
  color: var(--white);
  font-size: clamp(48px, 7vw, 92px);
  line-height: .91;
  letter-spacing: -.075em;
}

.delivery-hero-copy > p:last-child {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
  line-height: 1.6;
}

.delivery-data {
  padding-top: 70px;
  padding-bottom: 106px;
}

.delivery-data-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.delivery-section-label {
  margin: 0 0 9px;
  color: var(--signal-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.delivery-data-note {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.delivery-data h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.06em;
}

.delivery-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 25px 0 27px;
  border-bottom: 1px solid var(--line);
}

.delivery-filters label {
  display: grid;
  gap: 9px;
}

.delivery-filters label > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.delivery-filters select {
  width: 100%;
  min-height: 48px;
  padding: 0 38px 0 14px;
  border: 1px solid rgba(11, 23, 26, .18);
  border-radius: 2px;
  color: var(--ink);
  background-color: rgba(255, 255, 255, .48);
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 17px) 20px, calc(100% - 13px) 20px;
  background-repeat: no-repeat;
  background-size: 4px 4px;
  font: inherit;
  font-size: 12px;
  appearance: none;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.delivery-filters select:hover,
.delivery-filters select:focus-visible {
  border-color: var(--signal-deep);
  outline: none;
  background-color: var(--white);
}

.delivery-status {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 52px;
  margin: 0;
  padding: 18px 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.delivery-status.is-loading {
  min-height: 84px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.delivery-spinner {
  display: block;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 4px solid rgba(11, 23, 26, .14);
  border-top-color: var(--signal-deep);
  border-right-color: var(--signal);
  border-radius: 50%;
  animation: delivery-spinner-rotate 760ms linear infinite;
}

@keyframes delivery-spinner-rotate {
  to { transform: rotate(360deg); }
}

.delivery-status:not(.is-loading) .delivery-spinner {
  display: none;
}

[data-results][hidden] {
  display: none;
}

.delivery-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.delivery-metric {
  display: grid;
  align-content: start;
  gap: 11px;
  min-height: 143px;
  padding: 20px 22px 18px 0;
  border-right: 1px solid var(--line);
}

.delivery-metric:not(:first-child) {
  padding-left: 22px;
}

.delivery-metric:last-child {
  border-right: 0;
}

.delivery-metric span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.delivery-metric strong {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 650;
  line-height: .95;
  letter-spacing: -.07em;
}

.delivery-metric small {
  margin-top: auto;
  color: var(--muted);
  font-size: 10px;
}

.delivery-table-wrap {
  overflow-x: auto;
  padding-top: 44px;
}

.delivery-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.delivery-table caption {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: left;
}

.delivery-table th {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-align: left;
  text-transform: uppercase;
}

.delivery-table th,
.delivery-table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
}

.delivery-table th:first-child,
.delivery-table td:first-child {
  padding-left: 0;
}

.delivery-table th:not(:first-child),
.delivery-table td:not(:first-child) {
  text-align: right;
  white-space: nowrap;
}

.delivery-table tbody tr {
  transition: background-color 160ms ease;
}

.delivery-table tbody tr:hover {
  background: rgba(85, 246, 209, .06);
}

.delivery-table td strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.delivery-table td small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 980px) {
  .delivery-hero {
    padding-top: 148px;
  }
}

@media (max-width: 700px) {
  .delivery-hero {
    padding: 132px 0 62px;
  }

  .delivery-hero-inner,
  .delivery-data-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .delivery-hero-inner {
    gap: 44px;
  }

  .delivery-hero-visual {
    display: none;
  }

  .delivery-filters,
  .delivery-summary {
    grid-template-columns: 1fr;
  }

  .delivery-metric,
  .delivery-metric:not(:first-child) {
    min-height: 100px;
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .delivery-metric:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .delivery-spinner {
    animation-duration: 1600ms;
  }
}
