.shop-journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.shop-journey--preorder {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-journey li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid #ded8cb;
  border-radius: 14px;
  background: #fffdf8;
}

.shop-journey li > span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eee9df;
  color: #3e3a35;
  font-weight: 800;
}

.shop-journey strong,
.shop-journey small {
  overflow-wrap: anywhere;
}

.shop-journey strong {
  font-size: 0.92rem;
}

.shop-journey small {
  color: #6b665e;
  line-height: 1.3;
}

.shop-journey .is-current {
  border-color: var(--status-info-border);
  background: var(--status-info-soft);
}

.shop-journey .is-current > span {
  background: var(--status-info);
  color: #fff;
}

.shop-catalog-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -10px 0 28px;
  padding: 14px 16px;
  border: 1px solid var(--status-warning-border);
  border-radius: 14px;
  color: var(--status-warning);
  background: var(--status-warning-soft);
}

.shop-catalog-status[hidden] {
  display: none;
}

.shop-catalog-status p {
  margin: 0;
}

.product-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 16px;
  padding: 0;
  list-style: none;
}

.product-highlights li {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  border: 1px solid #ded8cb;
  border-radius: 12px;
  background: #fffdf8;
}

.product-highlights span {
  color: #6b665e;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-highlights strong {
  font-size: 1rem;
}

.product-order-summary {
  display: grid;
  gap: 0;
  margin: 20px 0;
  border: 1px solid #ded8cb;
  border-radius: 14px;
  background: #fffdf8;
  overflow: hidden;
}

.product-order-summary > div {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
}

.product-order-summary > div + div {
  border-top: 1px solid #ebe6dc;
}

.product-order-summary span {
  color: #6b665e;
}

.product-order-summary strong {
  max-width: 60%;
  text-align: right;
}

.product-action-note {
  margin: 12px 0 0;
  color: #5f5a53;
  font-size: 0.92rem;
}

#product-create-link[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 900px) {
  .shop-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .product-highlights {
    grid-template-columns: 1fr;
  }

  .shop-journey {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .shop-journey li {
    padding: 10px 12px;
  }

  .shop-catalog-status,
  .product-order-summary > div {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }

  .shop-catalog-status .button {
    width: 100%;
  }

  .product-order-summary strong {
    max-width: none;
    text-align: left;
  }
}
