/* Customer product card r165: compact price row and safe JD link footer. */
.customer-portal #customer .customer-product-card-price-row {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 7px;
}

.customer-portal #customer .customer-product-card-price-row .customer-product-card-price {
  min-width: 0;
  flex: 1 1 auto;
  width: auto;
  overflow: hidden;
  font-size: clamp(17px, 1.5vw, 22px);
  letter-spacing: -.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-portal #customer .customer-product-card-price-row .customer-product-card-labels {
  display: flex;
  min-width: max-content;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin: 0 0 0 auto;
  white-space: nowrap;
}

.customer-portal #customer .customer-product-card-price-row .customer-product-card-labels span {
  align-self: center;
  padding: 2px 5px;
  font-size: 10px;
}

.customer-portal #customer .customer-product-card-meta {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-direction: row;
  justify-content: space-between;
  gap: 8px;
}

.customer-portal #customer .customer-product-card-model {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-portal #customer .customer-product-card-jd-link {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  padding: 4px;
  border: 1px solid #f0b35b;
  border-radius: 6px;
  color: #d97706;
  background: #fff8eb;
  text-decoration: none;
  white-space: nowrap;
}

.customer-portal #customer .customer-product-card-jd-link svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-portal #customer .customer-product-card-jd-link:hover {
  border-color: #dc8b1d;
  background: #ffefd1;
}

.customer-portal #customer .customer-product-card-jd-link:focus-visible {
  outline: 2px solid #d97706;
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .customer-portal #customer .customer-product-card-price-row { gap: 4px; }
  .customer-portal #customer .customer-product-card-price-row .customer-product-card-price { font-size: 17px; }
  .customer-portal #customer .customer-product-card-price-row .customer-product-card-price small {
    margin-right: 2px;
    font-size: 11px;
  }
  .customer-portal #customer .customer-product-card-price-row .customer-product-card-labels { gap: 3px; }
  .customer-portal #customer .customer-product-card-price-row .customer-product-card-labels span {
    padding: 2px 3px;
    font-size: 8px;
  }
}
