.cart-line-details {
  margin-top: 0.75rem;
  padding: 0.75rem 0.9rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 3px solid var(--primary_color, #0d6efd);
  border-radius: 6px;
}

.cart-line-details--compact {
  padding: 0.55rem 0.7rem;
  margin-top: 0.5rem;
}

.cart-line-details__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 0.5rem;
}

.cart-line-details__list {
  display: grid;
  gap: 0.35rem;
}

.cart-line-details__row {
  display: grid;
  grid-template-columns: minmax(110px, 38%) 1fr;
  gap: 0.5rem 0.75rem;
  align-items: start;
  font-size: 0.875rem;
  line-height: 1.4;
}

.cart-line-details__label {
  margin: 0;
  font-weight: 600;
  color: #334155;
}

.cart-line-details__value {
  margin: 0;
  color: #0f172a;
  word-break: break-word;
}

.checkout-review-banner {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
}

.checkout-review-banner p {
  margin: 0;
  color: #1e3a8a;
  font-size: 0.95rem;
}

.checkout-review-banner a {
  font-weight: 600;
}

.checkout-item-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.9rem;
  margin-bottom: 0.75rem;
  background: #fff;
}

.checkout-item-card .brand_name {
  margin-bottom: 0.25rem;
}

@media (max-width: 575px) {
  .cart-line-details__row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}
