.cart {
  padding: 16px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  font-size: 15px;
}

.cart-item-variant {
  font-size: 13px;
  color: #666;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 600;
  margin-top: 4px;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.cart-qty button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
}

.cart-remove {
  margin-top: 8px;
  background: none;
  border: none;
  color: #d00;
  font-size: 13px;
}

.cart-summary {
  margin-top: 20px;
  background: white;
  padding: 14px;
  border-radius: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.summary-row.total {
  font-weight: 700;
  font-size: 18px;
}

.checkout-btn {
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: black;
  color: white;
  font-weight: 600;
}

.cart-item-line-total{
  font-weight:600;
  margin-top:2px;
}