.item-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.item-row img {
  max-width: 100%;
  height: auto;
}

.buybox {
  margin-left: auto;
  padding: 8px 0px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.item-price {
  padding: 0px 4px;
  font-size: 14px;
}

.buybox select,
.buybox button,
#cart-bar button,
#cart-box button {
  margin: 1px 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight:bold;
}

#cart-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  border-top: 1px solid #999;
  background: #eee;
  text-align: center;
  z-index: 10;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}

#cart-window {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .35);
  z-index: 20;
}

#cart-box {
  margin: 40px auto;
  padding: 16px;
  max-width: 720px;
  max-height: 80vh;
  overflow: auto;
  border: 1px solid #999;
  background: white;
}

.cart-line {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.cart-line input {
  width: 42px;
}

#cart-message {
  color: #900;
}

@media (max-width: 760px) {
  .item-row {
    display: block;
  }

  .buybox {
    margin: 8px 0 24px 0;
    text-align: left;
    white-space: normal;
  }
}
