/* Compact calculator rows. Separate file so browsers cannot keep the old year-cached shop.css. */
.calc-machines { display: grid; gap: 0; margin: 10px 0; }
.calc-row {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  padding: 6px 0 !important;
  min-height: 48px;
  border-bottom: 1px solid var(--line, #d5e0d8);
  grid-template-columns: none !important;
}
.calc-machine {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 8px;
  row-gap: 0;
  flex: 0 1 250px;
  min-width: 0;
}
.calc-machine strong { font-size: 0.92rem; line-height: 1.2; }
.calc-price, .calc-fee { font-size: 0.78rem; font-weight: 600; color: var(--slate); }
.calc-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  overflow: hidden;
  flex: 0 0 40px;
  background: var(--paper, #f7f4ee);
  border-radius: 8px;
}
.calc-photo img {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  object-fit: contain;
  padding: 2px;
}
.calc-blurb {
  flex: 1 1 140px;
  min-width: 0;
  margin: 0 !important;
  font-size: 0.8rem;
  line-height: 1.3;
  color: var(--slate);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.calc-blurb .card-note { display: none; }
.calc-units {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-weight: 700;
  font-size: 0.72rem;
  flex: 0 0 auto;
  white-space: nowrap;
}
.calc-units .qty-step { background: #e7ece8; border-color: rgba(11, 31, 23, 0.18); }
.calc-units .qty-step button,
.calc-units .qty-step input { width: 28px; height: 28px; color: var(--ink); font-size: 0.95rem; }
.calc-units .qty-step input { width: 36px; }
@media (max-width: 800px) {
  .calc-photo, .calc-blurb, .calc-units { grid-column: auto !important; grid-row: auto !important; }
}
@media (max-width: 560px) {
  .calc-blurb { display: none; }
}
