.summary-products {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 14px 0 20px;
}

.summary-product {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(58, 39, 23, 0.08);
}

.summary-product:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.summary-product-img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(58, 39, 23, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

.summary-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.summary-product-name {
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
}

.summary-product-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.summary-product-total {
  font-weight: 800;
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
}

#summary-cargo-price.is-pending,
.checkout-summary-row .is-pending {
  color: #8a7f70;
  font-weight: 700;
  font-size: 12px;
}

.cart-summary-sidebar .checkout-summary-card {
  position: sticky;
  top: 100px;
}

@media (max-width: 950px) {
  .cart-summary-sidebar .checkout-summary-card {
    position: static;
  }
}
