/* Purchasing page: preserve the archived site's content order while keeping
   every product row structurally stable in modern browsers. */
.buy-page {
  box-sizing: border-box;
  width: auto !important;
  margin: 0 30px !important;
  padding: 5px 0 24px !important;
  line-height: 1.65;
}

.buy-introduction {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.buy-introduction img {
  display: block;
  width: 200px;
  height: 150px;
  object-fit: cover;
}

.buy-introduction p {
  margin: 0;
  color: #555;
}

.buy-items-list {
  margin-top: 10px;
}

.buy-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 150px;
  margin: 0 0 10px;
  scroll-margin-top: 12px;
  background: #ccccff;
  color: #000;
}

.buy-item:target {
  outline: 3px solid #e7a02c;
  outline-offset: 2px;
}

.buy-item__image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 7px;
}

.buy-item__image .product-image-button {
  width: 136px;
  height: 136px;
}

.buy-item__image img {
  display: block;
  width: 136px;
  height: 136px;
  object-fit: contain;
  background: #fff;
}

.buy-item__content {
  box-sizing: border-box;
  min-width: 0;
  padding: 7px 10px 10px;
  font-size: 14px;
  line-height: 1.55;
}

.buy-item__content h3,
.buy-item__content p {
  margin: 0;
  color: #000;
  font-size: inherit;
  font-weight: normal;
}

.buy-item__content h3 {
  color: #0000c0;
}

.buy-label {
  color: #000;
}

.buy-description {
  margin-top: 2px !important;
}

.buy-description .buy-label {
  display: block;
}

.buy-show-all {
  display: inline-block;
  margin: 8px 10px 12px;
  font-size: 14px;
}

#FAD {
  position: fixed;
  right: max(16px, calc((100vw - 980px) / 2 - 48px));
  bottom: 24px;
  z-index: 20;
}

#FAD img {
  display: block;
}

@media (max-width: 767px) {
  .buy-page {
    width: auto !important;
    margin: 0 !important;
    padding: 12px !important;
  }

  .buy-introduction {
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: start;
  }

  .buy-introduction img {
    width: 120px;
    height: 90px;
  }

  .buy-item {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 112px;
  }

  .buy-item__image {
    padding: 6px;
  }

  .buy-item__image img {
    width: 100px;
    height: 100px;
  }

  .buy-item__image .product-image-button {
    width: 100px;
    height: 100px;
  }

  .buy-item__content {
    padding: 6px 8px 9px;
    font-size: 13px;
  }

  #FAD {
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 440px) {
  .buy-introduction,
  .buy-item {
    grid-template-columns: 1fr;
  }

  .buy-introduction img {
    width: 100%;
    height: auto;
    max-height: 170px;
    object-fit: cover;
  }

  .buy-item__image img {
    width: 100%;
    height: 180px;
  }

  .buy-item__image .product-image-button {
    width: 100%;
    height: 180px;
  }
}
